@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");

/* html{font-family: 'Montserrat', sans-serif;} */
* {
  box-sizing: border-box;
}
html,
body,
p,
a {
  font-family: "Roboto", sans-serif;
  color: #000;
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
figure {
  margin: 0;
  padding: 0;
}
ul {
  padding: 0;
  margin: 0;
}
li {
  list-style-type: none;
}
html {
  scroll-behavior: smooth;
}

body.no_scroll {
  overflow: hidden;
}

#backToTop {
  display: inline-block;
  background-color: #efca08;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: 0.3s;
  opacity: 0.5;
  visibility: 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
#backToTop::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  line-height: 50px;
  color: #fff;
}
#backToTop:hover {
  cursor: pointer;
  background-color: #333;
}
#backToTop:active {
  background-color: #555;
}
#backToTop.show {
  opacity: 1;
  visibility: visible;
}

/* start header section */

.navbar {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  padding: 15px 0;
}
.navbar.fixed{
  position:fixed;
  left:0;
  width:100%;
  background: #1a1a1a;
  padding: 8px 0;
  animation: fHeader 0.5s linear;
}

.navbar.fixed .navbar_links li a{
  font-size: 13px;
}

@keyframes fHeader {
  0%{
    top:-103px;
  }
  100%{
    top:0;
  }
}

.navbar .navbar_row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.navbar .hamburger_icon {
  display: none;
}

.navbar .navbar_links {
  display: flex;
  margin-left: auto;
}
.navbar .navbar_links ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
.navbar .navbar_links li:not(:last-child) {
  margin-right: 20px;
}
.navbar .navbar_links li a {
  font-size: 15px;
  font-weight: 500;
  color: #000;
}
.navbar .navbar_links li.register a {
  border-radius: 100px;
  background-color: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 50px rgb(0 0 0 / 8%);
  padding: 12px 17px;
}
.navbar.fixed .navbar_links li.register a{
  color:#000;
}

.navbar.fixed .navbar_links li.register a{
  padding: 8px 15px;
}

.navbar .hamburger_icon span {
  height: 3px;
  width: 30px;
  background-color: white;
  display: block;
  border-radius: 50px;
}

.navbar .hamburger_icon span:not(:last-child) {
  margin-bottom: 5px;
}

.navbar .navbar_links.show .close_sidebar span {
  height: 3px;
  width: 30px;
  background-color: #fff;
  display: block;
}

.navbar .navbar_links.show .close_sidebar span:not(:last-child) {
  margin-bottom: 4px;
}

.navbar .navbar_links.show .close_sidebar span:first-child {
  transform: rotate(45deg) translate(5px, 7px);
}

.navbar .navbar_links.show .close_sidebar span:last-child {
  transform: rotate(-45deg) translate(-2px, 0px);
}

.navbar .navbar_links .close_sidebar {
  position: absolute;
  left: 20px;
  top: 20px;
  height: 25px;
  cursor: pointer;
  opacity: 0.9;
}

/* end of header section */

/* start banner section */

.banner_section {
  height: 100vh;
  background-image: url("images/banner_bg_image.png");
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.banner_section::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
.banner_section .bg_strip {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: #bbdef0;
  z-index: 0;
  clip-path: polygon(23% 0, 65% 80%, 100% 30%, 100% 0);
}
.banner_section .left_content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9;
}
.banner_section .left_content h1 {
  color: #fff;
  font-family: "Montserrat";
  font-size: 46px;
  font-weight: bold;
  line-height: 54px;
}
.banner_section .left_content p {
  color: #fff;
  font-size: 17px;
  margin-top: 20px;
  line-height: 23px;
}
.banner_section .right_image {
  display: flex;
  align-items: center;
  z-index: 9;
  justify-content: center;
}
.banner_section .right_image img {
  height: 616px;
}
.banner_section .row {
  padding-top: 60px;
}
.banner_section .btns {
  display: flex;
  width: 100%;
  margin-top: 30px;
}
.banner_section .btns a {
  height: 55px;
  width: 174px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 100px;
  color: #fff;
}
.banner_section .btns a.active {
  background-color: #efca08;
  border-color: #efca08;
  color: #000;
  font-size: 17px;
  font-weight: 500;
  margin-right: 20px;
}
.banner_section .btns a img {
  margin-right: 5px;
}

/* end of banner section */

/*start about us section */

.about_us_section {
  padding: 70px 0;
  position: relative;
}
.about_us_section .row1 {
  display: flex;
  align-items: flex-end;
}
.about_us_section .row2 {
  display: flex;
}
.about_us_section figure {
  padding: 10px;
}
.about_us_section figure img {
  width: 100%;
}
.about_us_section .right_content h3 {
  font-size: 40px;
  font-weight: bold;
  font-family: "Montserrat";
  position: relative;
  display: table;
}
.about_us_section .right_content h3::before {
  position: absolute;
  height: 2px;
  width: 43px;
  background-color: #efca08;
  content: "";
  display: block;
  bottom: -10px;
}
.about_us_section .right_content strong {
  font-size: 16px;
  font-weight: bold;
  line-height: 28px;
  margin-top: 30px;
  display: block;
}
.about_us_section .right_content p {
  font-size: 16px;
  line-height: 28px;
  color: #666;
  margin-top: 20px;
}

.about_us_section .tree1 {
  position: absolute;
  left: 0;
  top: 0;
  padding: 0;
}
.about_us_section .tree2 {
  position: absolute;
  right: 0;
  top: 0;
  padding: 0;
}
.about_us_section .tree1 img,
.about_us_section .tree2 img {
  width: auto;
}

/* end of about us section */

/* start app work section */

.app_work_section {
  background-color: #bbdef0;
  padding: 70px 0;
  position: relative;
}
.app_work_section h3 {
  font-size: 40px;
  font-family: "Montserrat";
  font-weight: bold;
  line-height: 52px;
  position: relative;
  margin-bottom: 90px;
}
.app_work_section h3::before {
  position: absolute;
  height: 2px;
  width: 43px;
  background-color: #efca08;
  content: "";
  display: block;
  bottom: -20px;
}
.app_work_section li:not(:last-child) {
  margin-bottom:23px !important;
}
.app_work_section li .image {
  height: 109px;
  width: 109px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  float: left;
  margin-right: 30px;
  box-shadow: 0 4px 40px rgb(0 0 0 / 8%);
}
.app_work_section li .content {
  display: flow-root;
}
.app_work_section li .content strong {
  font-size: 20px;
  font-weight: 500;
  font-family: "Montserrat";
}
.app_work_section li .content p {
  color: #222;
  margin-top: 10px;
  line-height: 28px;
}
.app_work_section .right_image .circle_image {
  width: 100%;
}
.app_work_section .right_image .images {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.app_work_section .right_image img.mockup {
  position: absolute;
  /* top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
  width: 360px;
  height: auto;
}
.app_work_section img.camera {
  position: absolute;
  left: 0;
  top: -130px;
}
.app_work_section img.work_image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* end of app work section */

/* start screenshot section */

.screenshot_section {
  padding: 70px 0;
  position: relative;
}
.screenshot_section img.screenshot_img {
  position: absolute;
  left: 0;
  top: -40px;
}
.screenshot_section h3 {
  font-size: 40px;
  font-weight: bold;
  margin: auto;
  position: relative;
  margin-bottom: 60px;
}
.screenshot_section h3::before {
  position: absolute;
  height: 2px;
  width: 63px;
  background-color: #efca08;
  content: "";
  display: block;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.screenshot_section .owl-nav {
  display: block !important;
}
.screenshot_section .owl-prev,
.screenshot_section .owl-next {
  border: 1px solid #939393;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  font-size: 0;
  position: relative;
}
.screenshot_section .owl-prev::after {
  background-image: url("../images/left-arrow.png");
  content: "";
  height: 24px;
  width: 25px;
  background-repeat: no-repeat;
  left: 50%;
  top: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  background-size: contain;
}
.screenshot_section .owl-next::after {
  background-image: url("../images/right-arrow.png");
  content: "";
  height: 24px;
  width: 25px;
  background-repeat: no-repeat;
  left: 50%;
  top: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  background-size: contain;
}
.screenshot_section .owl-carousel {
  width: 90%;
  margin: auto;
  position: relative;
}
.screenshot_section .owl-prev {
  position: absolute;
  top: 50%;
  left: -80px;
  transform: translateY(-50%);
}
.screenshot_section .owl-prev span {
  display: none;
}
.screenshot_section .owl-next {
  position: absolute;
  top: 50%;
  right: -80px;
  transform: translateY(-50%);
}
.screenshot_section .owl-next span {
  display: none;
}

/* end of screenshot section */

/* start testimonial section */

.testimonial_section {
  background-color: #f4f5f7;
  padding: 70px 0;
  position: relative;
}
.testimonial_section .testimonial_image {
  position: absolute;
  right: 0;
  top: -110px;
}
.testimonial_section h3 {
  font-size: 40px;
  font-weight: bold;
  font-family: "Montserrat";
  text-align: center;
  margin-bottom: 60px;
}
.testimonial_section h3:before{
  position: absolute;
    height: 2px;
    width: 63px;
    background-color: #efca08;
    content: "";
    display: block;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}
.testimonial_section p {
  text-align: center;
  font-size: 18px;
  line-height: 32px;
  color: #18191f;
  margin-bottom: 40px;
}
.testimonial_section .owl-carousel .content {
  background-color: #fff;
  padding: 30px;
  text-align: center;
  box-shadow: 0 30px 40px rgb(212 217 232 / 20%);
  border-radius: 10px;
  position: relative;
}
.testimonial_section .owl-carousel .content:after {
  background-color: #fff;
  height: 15px;
  width: 25px;
  position: absolute;
  content: "";
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
}
.testimonial_section .owl-carousel .content h4 {
  font-size: 22px;
  font-weight: 600;
  font-family: "Montserrat";
  line-height: 32px;
}
.testimonial_section .owl-carousel .content p {
  color: #18191f;
  font-size: 14px;
  line-height: 24px;
  margin: 0;
}
.testimonial_section .owl-carousel .user_details {
  text-align: center;
  margin-top: 30px;
}
.testimonial_section .owl-carousel .user_details img {
  width: auto;
  margin: auto;
}
.testimonial_section .owl-carousel .user_details strong {
  font-size: 16px;
  color: #18191f;
  font-weight: bold;
  font-family: "Montserrat";
  margin-top: 10px;
  display: block;
}
.testimonial_section .owl-carousel .user_details p {
  color: #474a57;
  font-size: 14px;
}
.testimonial_section .owl-carousel .owl-nav {
  display: none;
}
.testimonial_section .owl-carousel .owl-dots {
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
}
.testimonial_section .owl-carousel .owl-dot {
  height: 8px;
  width: 8px;
  background-color: #bbdef0;
  border: 1px solid #bbdef0;
  border-radius: 50%;
}
.testimonial_section .owl-carousel .owl-dot:not(:last-child) {
  margin-right: 10px;
}
.testimonial_section .owl-carousel .owl-dot.active {
  height: 14px;
  width: 14px;
  border: 3px solid #bbdef0;
  background-color: #f4f5f7;
}

/* end testimonial section */

/* start footer section */

footer {
  background-color: #000;
  padding: 40px 0;
  overflow: hidden;
}
footer .left_content ul {
  display: flex;
  margin-top: 20px;
}
footer .left_content li:not(:last-child) {
  margin-right: 20px;
}
footer .left_content li a {
  color: #fff;
}
footer .left_content p {
  font-size: 15px;
  color: #d9dbe1;
  margin: 20px 0 0;
}
footer .right_content #mc_embed_signup label {
  color: #fff;
  display: block;
}
footer .right_content p {
  color: #d9dbe1;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 5px;
}
footer .right_content .app_images img:last-child {
  margin-left: 10px;
}
footer .right_content form input.email {
  height: 45px;
  border-radius: 100px;
  border: none;
  border-radius: 100px;
  width: 100%;
  padding: 0 100px 0 15px;
}
footer .right_content form input.email:focus-visible {
  outline: none;
}
footer .right_content #mc_embed_signup {
  margin-bottom: 20px;
}
footer .right_content #mc_embed_signup_scroll {
  position: relative;
}
footer .right_content #mc_embed_signup_scroll .clear {
  position: absolute;
  overflow: hidden;
  top: 2px;
  right: 2px;
}
footer .right_content #mc_embed_signup_scroll .clear input[type="submit"] {
  height: 41px;
  border-radius: 100px;
  border: none;
  background-color: #4a99d3;
  color: #fff;
  padding: 0 15px;
  font-size: 14px;
}
footer .right_content .contents {
  width: 300px;
  margin-left: auto;
}

/* end of footer section */

/* start contact page */

.contact_navbar .nav-item:not(:last-child) .nav-link {
  color: #fff;
}

.contact_banner {
  height: 420px;
  background-image: url("../images/banner_bg_image.png");
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}
.contact_banner::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
.contact_banner h1 {
  text-align: center;
  position: relative;
  color: #fff;
  margin: 0;
  padding-top: 152px;
  font-size: 46px;
  font-weight: bold;
  font-family: "Montserrat";
}

.contact_form {
  padding: 80px 0;
  position: relative;
}
.contact_form .tree1 {
  position: absolute;
  left: 0;
  top: 0;
}
.contact_form .tree2 {
  position: absolute;
  right: 0;
  top: 0;
}
.contact_form #mc_embed_signup {
  padding: 40px;
  box-shadow: 2px 10px 28px rgba(75 0 129/12%);
  border-radius: 10px;
  max-width: 750px;
  margin: auto;
}
.contact_form h3 {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin: 0;
  position: relative;
  margin-bottom: 60px;
}
.contact_form h3::before {
  position: absolute;
  height: 2px;
  width: 50px;
  background-color: #efca08;
  content: "";
  display: block;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
}
.contact_form .form-control {
  border: 1px solid #b4bec8;
  height: 45px;
}
.contact_form .form-control::placeholder {
  font-size: 15px;
  font-family: "Roboto";
  color: #878787;
}
.contact_form select option {
  color: #878787;
  font-size: 15px;
}
.contact_form .form-control:focus {
  box-shadow: none;
}
.contact_form .file_row label {
  font-size: 14px;
  color: #000;
  font-weight: 600;
}
.contact_form .file_row .form-group input[type="text"] {
  padding-left: 120px;
  background: transparent;
}
.contact_form .file_row .form-group {
  position: relative;
}
.contact_form .file_row .form-group .custom-file-uploader {
  position: absolute;
  left: 10px;
  top: 10px;
  background: #c4c4c4;
  height: calc(100% - 20px);
  font-size: 14px;
  color: #fff;
  display: flex;
  align-items: center;
}
.contact_form .file_row .form-group .custom-file-uploader input[type="file"] {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.contact_form .submit_btn {
  width: 156px;
  height: 50px;
  background-color: #4a99d3;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}
.contact_form .submit_btn:focus {
  box-shadow: none;
}

/* end of contact page */

/* subscription modal */

#subscribeModal .modal-dialog {
  max-width: 900px;
}
#subscribeModal .modal-header {
  border: none;
  padding: 15px 30px;
}
#subscribeModal .modal-header .close:focus {
  border: none;
  outline: none;
}
#subscribeModal .modal-title {
  font-family: "Montserrat";
  font-size: 22px;
}
#subscribeModal .modal-body {
  padding: 20px;
}
#subscribeModal .modal-content {
  background-color: #efefef;
}
#subscribeModal .box_row {
  display: flex;
}
#subscribeModal .box_row .sub_col {
  padding: 10px;
}
#subscribeModal .box_row .box {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s all;
}
#subscribeModal .box_row .box:hover {
  background-image: linear-gradient(159deg, #bbdef0, #69aed2);
  box-shadow: 0 30px 40px rgb(212 217 232 / 20%);
  transform: scale(1.1);
}
#subscribeModal .box h5 {
  font-family: "Montserrat";
  text-transform: uppercase;
  font-size: 17px;
}
#subscribeModal .box h3 {
  font-size: 40px;
  margin: 0;
}
#subscribeModal .box h3 i {
  font-size: 20px;
}
#subscribeModal .box strong {
  margin-bottom: 15px;
  display: block;
  margin-top: 10px;
  font-weight: normal;
  font-size: 14px;
}
#subscribeModal .box p {
  font-size: 14px;
  margin-bottom: 20px;
}
#subscribeModal .box button {
  border-radius: 100px;
  background-color: transparent;
  border: 2px solid #4a99d3;
  padding: 5px 20px;
  color: #4a99d3;
  transition: 0.3s all;
  font-size: 14px;
}
#subscribeModal .box button:focus {
  outline: none;
}
#subscribeModal .box:hover button {
  background-color: #4a99d3;
  color: #fff;
}

/*end of subscription modal */

/* start paymetn modal */

#paymentModal {
  background-color: rgba(0, 0, 0, 0.5);
}
#paymentModal .modal-body {
  padding: 30px;
}
#paymentModal .close {
  position: absolute;
  right: 10px;
  top: 5px;
}
#paymentModal .close:focus {
  outline: none;
  border: none;
}
#paymentModal .top_content {
  text-align: center;
  margin-bottom: 30px;
}
#paymentModal .top_content .plan {
  color: #4a99d3;
  font-size: 18px;
  margin-bottom: 6px;
}
#paymentModal .top_content .plan p {
  margin: 0;
  font-size: 13px;
}
#paymentModal .payment_methods {
  margin-bottom: 12px;
  text-align: right;
}
#paymentModal .payment_images img {
  width: 40px;
  margin-right: 7px;
}
#paymentModal form label {
  font-size: 14px;
}
#paymentModal form .form-control::placeholder {
  font-size: 15px;
}
#paymentModal form .form-control {
  font-size: 15px;
}
#paymentModal form .form-control:focus {
  border-color: #4a99d3;
  box-shadow: none;
}
#paymentModal form .payment_btn {
  width: 100%;
  padding: 10px;
  border-radius: 100px;
  background-color: #4a99d3;
  border: none;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}
#paymentModal form .payment_btn:focus {
  outline: none;
}

/* end of payment modal */


/* 25-june */

 .navbar .navbar-brand img{
   width:80px;
 }

 .navbar.fixed .navbar-brand img{
  width: 65px;
 }

 /* our team  */

 .our_team_section .single_col{
  display:flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 10px 0;
 }

 .our_team_section .single_col:nth-child(3),
 .our_team_section .single_col:nth-child(4){
  flex-direction: row-reverse;
 }

 .our_team_section .single_col:nth-child(3) .right_col,
 .our_team_section .single_col:nth-child(4) .right_col{
  text-align: right;
 }

 .our_team_section .left_col,
 .our_team_section .right_col{
  max-width: 50%;
  flex: 0 0 50%;
  height: 100%;
  position: relative;
 }

 .our_team_section .right_col{
  padding:10px 0px 10px 20px;
  display: flex;
    flex-direction: column;
    justify-content: center;
 }

 .our_team_section .single_col:nth-child(3) .right_col,
 .our_team_section .single_col:nth-child(4) .right_col{
  padding:10px 20px 10px 0px;
 }

 .our_team_section .right_col small{
  font-size:12px;
 }

 .our_team_section .right_col p{
  font-size: 13px;
  line-height: 18px;
  text-align: justify;
 }

 .our_team_section .left_col img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
 }

 .our_team_section .user_details h5{
  font-size: 16px;
    font-weight: 600;
    font-family: "Montserrat";
    letter-spacing: 0px;
    margin-bottom: 5px;
 }

 .our_team_section .content{
  margin-top:15px;
 }

 .our_team_section .content p{
  margin:0;
 }
