@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

html{
    overflow-x: hidden;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: "Rubik", sans-serif !important;
    background-color: #ffffff !important;
    overflow-x: hidden;
    padding: 0 !important;
}

a{text-decoration: none;}

h1,h2,h3,h4,h5,h6{font-family: "Jost", sans-serif;}

img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}

/*start header section */
.header-main {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 99;
}
.header-main .navbar {
    padding-top: 15px;
    padding-bottom: 15px;
}
.navbar-brand .logo-img{
    max-width: 160px;
}
.footer-logo .logo-img{
    max-width: 160px;
}
.custom-navbar .custom-nav-menu li .primary-btn {
    border-radius: 10px;
    padding: 10px 30px;
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 700;
    background: #02B4FF;
    display: inline-block;
}
.custom-navbar .custom-nav-menu li .primary-btn:hover{
    background: #473F3F;
}
.custom-navbar .custom-nav-menu li a{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 400;
    color: #473F3F;
}
.custom-navbar .custom-nav-menu li a .icon-box{
    background-color: #CEE6C1;
    border-radius: 10px;
    padding: 10px;
}
.primary-btn {
    border-radius: 10px;
    padding: 10px 30px;
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 700;
    background: #02B4FF;
    display: inline-block;
}
.primary-btn:hover{
    background: #473F3F;
}
/*end header section */

/*start banner section */
.home-section {
    height: calc(9.30px * 100);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    padding-top: 120px;
    z-index: 1;
}
.home-bg {
    background-color: rgba(217, 255, 255, 0.57);
}
.home-section .home-content {
    padding: 3rem 0 0;
}
.subheading span{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #CEE6C1;
    border-radius: 20px;
    padding: 8px 20px;
    color: #473F3F;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 2px;
}
.home-section .home-content .banner-main-title{
    font-size: 54px;
    line-height: 65px;
    color:#473F3F;
    font-weight: bold;
}
.home-section .home-content .banner-text{
    font-size: 16px;
    line-height: 30px;
    color: #6B6B6B;
    font-weight: 400;
}
.home-section .home-content .banner-main-title span{
    color: #FC3D01;
}
.home-section .header-shape {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: -1;
}
.bannerright-image{
    position: relative;
}
/*end banner section */
.ani-top-bottom{
    position: absolute;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-name: TopBottom;
    animation-timing-function: ease-in-out;
    right: 83%;
    left: inherit;
    top: -3%;
    bottom: inherit;
    rotate: 333deg;
}
@keyframes TopBottom {
    0% {
        transform: translate(0px, 0px);
    }

    65% {
        transform: translate(0, 30px);
    }
    100% {
        transform: translate(0px, 0px);
    }
}
.ani-zoom {
    position: absolute;
    animation: Zoom linear 2.5s infinite alternate;
    right: 6%;
    left: inherit;
    top: -15%;
    bottom: inherit;
}
@keyframes Zoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}
.ani-left-right {
    position: absolute;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-name: LeftRight;
    animation-timing-function: ease-in-out;
   bottom: -15%;
    top: inherit;
    z-index: 2;
    right: 50px;
}
@keyframes LeftRight {
    0% {
        transform: translate(0px, 0px);
    }

    65% {
        transform: translate(30px, 0);
    }
    100% {
        transform: translate(0px, 0px);
    }
}
/*start about section*/
.about-section{
    padding: 100px 0;
}
.section-title{
    font-size: 40px;
    color:#473F3F;
    line-height: 50px;
    position: relative;
    margin-bottom: 25px;
    font-weight: 700;
}
.about-text{
    font-size: 16px;
    line-height: 30px;
    color: #6B6B6B;
    font-weight: 400;
}
/*end about section*/

/*start features section*/
.features-section{
    padding: 100px 0;
    position: relative;
    z-index: 1;
    background-color: rgba(162, 203, 221, 0.08);
    counter-reset: featuresCard;
}
.features-section .shape-top {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    z-index: -1;
    background-color: rgba(162, 203, 221, 0.01);
}
.features-section .shape-bottom{
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: -1;
    background-color: rgba(162, 203, 221, 0.01);
}
.features-card {
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    background: #ffffff;
    padding: 40px 30px;
    overflow: hidden;
    counter-increment: featuresCard;
}
.features-card .features-icon-wrapper{
    position: relative;
    z-index: 2;
}
.features-card .features-icon-wrapper .features-card__shape{
    position: absolute;
    top: 20px;
    left: 96px;
    z-index: 1;
    transition: all 0.5s ease-in-out;
}
.features-card .features-icon-wrapper .features-card__shape img{width: 157px !important;}
.features-card .features-icon-wrapper .features-icon{
    width: 100px;
    height: 100px;
    position: relative;
    z-index: 2;
}
.features-card__count {
content: "";
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #676161;
    border-radius: 50%;
    position: absolute;
    top: -18px;
    right: -14px;
    color: rgba(34, 34, 34, 0);
    text-align: center;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--garlon-white, #fff);
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    padding-top: 12px;
    padding-right: 10px;
}
.features-card .card-body h3{
    font-size: 22px;
    line-height: 30px;
    color: #473F3F;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: left;
}
.features-card .card-body p{
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: #5E5B5B;
    text-align: left;
}
.features-section button.owl-dot
{
    font-size: 0;
    line-height: 0;
    display: block;
    padding: 5px;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
    display: inline-block;
    margin: 0 6px;
    position: relative;
    width: 20px;
    height: 20px;
    border: 1px solid transparent;
    border-radius: 50%;
}
.features-section button.owl-dot.active
{
    border-color: #1E9900;
    width: 24px;
    height: 24px;
}
.features-section button.owl-dot.active::before{
    background-color: #1E9900;
    width: 14px;
    height: 14px;
}
.features-section button.owl-dot::before {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    content: "";
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: #CEE6C1;
}
.features-section .owl-dots
{
  height: 100%;
  width: 100%;
  text-align: center;
  margin-top: 40px;
}
/*end features section*/

/* start howwork section */
.how-work-section{
    padding: 100px 0;
}
.process-wrapper{
    position: relative;
    text-align: center;
}
.process-wrapper .process-image {
  position: relative;
  margin-bottom: 20px;
}
.process-wrapper .process-image img {
    width: 200px;
    height: 200px;
}
.process-wrapper:before {
  content: "";
  top: 22%;
  right: -15%;
  z-index: 99;
  width: 55px;
  height: 43px;
  background: url(../images/process-arrow.webp) no-repeat 0 0;
  display: block;
  position: absolute;
}
.process-wrapper.last-arrow:before {
  content: none;
}
.process-wrapper .process-contnet h3 {
    color: #473F3F;
    font-size: 20px;
    font-weight: 700;
}
.process-wrapper .process-contnet span {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: #ffffff;
    background: #02B4FF;
    padding: 8px 20px;
    text-align: center;
    transition: all 500ms ease;
    border-radius: 10px;
    margin-bottom: 25px;
}
.process-wrapper .process-contnet span:after {
    position: absolute;
    content: '';
    background: #02B4FF;
    width: 15px;
    height: 15px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    bottom: -8px;
    z-index: 1;
    transition: all 500ms ease;
}
.process-wrapper p {
    color: #5E5B5B;
    font-size: 15px;
    line-height: 28px;
    font-weight: 400;
}
/* end howwork section */

/*start On-boarding screens section*/
.app-screenshots-area{
    padding: 100px 0;
    position: relative;
    z-index: 1;
    background-color: rgba(162, 203, 221, 0.08);
}
.app-screenshots-area .shape-top {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    z-index: -1;
    background-color: rgba(162, 203, 221, 0.01);
}
.app-screenshots-area .shape-bottom{
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: -1;
    background-color: rgba(162, 203, 221, 0.01);
}
.app-screenshots-title{
    font-size: 50px;
    color: #FC3D01;
    line-height: 50px;
    position: relative;
    padding-bottom: 10px;
    font-weight: bold;
    margin-bottom: 60px;
}
.app_screenshots_slides *
{
  transition-timing-function: ease-in-out;
  transition-duration: .2s;
}
.app_screenshots_slides
{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.app_screenshots_slides .single-shot
{
  opacity: 0.6;
  transform: scale(0.75);
  text-align: center;
}
.app_screenshots_slides .center .single-shot
{
  opacity: 1;
  transform: scale(1);
}
.app-screenshots-area button.owl-dot
{
    font-size: 0;
    line-height: 0;
    display: block;
    padding: 5px;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
    display: inline-block;
    margin: 0 6px;
    position: relative;
    width: 20px;
    height: 20px;
    border: 1px solid transparent;
    border-radius: 50%;
}
.app-screenshots-area button.owl-dot.active
{
    border-color: #1E9900;
    width: 24px;
    height: 24px;
}
.app-screenshots-area button.owl-dot.active::before{
    background-color: #1E9900;
    width: 14px;
    height: 14px;
}
.app-screenshots-area button.owl-dot::before {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    content: "";
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: #CEE6C1;
}
.app-screenshots-area .owl-dots
{
  height: 100%;
  width: 100%;
  text-align: center;
  margin-top: 40px;
}
/*end On-boarding screens section*/

/*start Faq section*/
.faq-section{
    padding: 100px 0;
}
.faq-image-wrapper{
    position: relative;
    margin-left: 90px;
}
.faq-image-wrapper .small-image{
    position: absolute;
    left: -100px;
    bottom: 40px;
    animation: movebounce 4s linear 0s infinite;
}
@keyframes movebounce {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}
.accordion .card {
  background: transparent;
  box-shadow: none;
  border: 0;
  border-radius: 0;
}
.accordion .card:last-child {
    margin-bottom: 0
}
.accordion .card-header {
  border: 0;
  padding: 0;
  background:none;
}
.card-header:first-child {
  border-radius: 10px 10px 0 0;
}
.accordion .accordion-button {
   border-bottom: none;
    color: #ffffff;
    font-size: 18px;
    position: relative;
    display: block;
    width: 100%;
    text-align: left;
    white-space: normal;
    box-shadow: none;
    line-height: 30px;
    font-weight: 600;
    padding: 15px 20px;
    text-decoration: none;
    background: #02B4FF;
    border: 0;
    border-radius: 10px 10px 0 0;
}
.accordion .accordion-button.collapsed {
  background: rgba(162, 203, 221, 0.08);
    color: #473F3F;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 10px;
}
.accordion .accordion-button:after {
  background: unset;
  border: none;
  content: "-";
  right: 20px;
  left: inherit;
  font-size: 30px;
  height: 35px;
  transform: none;
  line-height: 33px;
  width: 35px;
  top: 10px;
  position: absolute;
  color: #ffffff;
  text-align: center;
  border-radius: 69% 31% 17% 83%/60% 63% 37% 40%;
  background:#676161;
  transform: none !important;
}
.accordion .accordion-button.collapsed:after {
  background: unset;
  border: none;
  content: "+";
  right: 20px;
  left: inherit;
  font-size: 26px;
  height: 35px;
  line-height: 28px;
  font-weight: 600;
  transform: none;
  width: 35px;
  top: 10px;
   background-color:#02B4FF;
  border-radius: 69% 31% 17% 83%/60% 63% 37% 40%;
  text-align: center;
  color: #ffffff;
}
.accordion .accordion-collapse {
  border: none;
}
.accordion .card-body {
  font-size: 16px;
  padding: 15px 20px;
  line-height: 30px;
  font-weight: 400;
  text-align: left;
  color: #473F3F;
  border-top: 0;
  border-bottom: 0;
  border-left: 0;
  border-right: 0;
  background-color: rgba(162, 203, 221, 0.18);
  border-radius: 0 0 10px 10px;
}
/*end Faq section*/

/*start footer section*/
.footer-section{
    padding-top: 130px;
    background-color: #3f393d;
    position: relative;
    z-index: 1;
}
.footerbox-wrapper{
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    margin: 0 10px;
}
.footer-text{color:#5E5B5B;font-size: 16px;line-height: 30px;font-weight: 400;}
.footer-section .shape-top {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    z-index: -1;
    background-color: rgba(162, 203, 221, 0.01);
}
.footer-section .content a:hover{
    color: #02B4FF !important;
}
.address-icon {
    display: block;
    color: #fff;
    background: #02B4FF;
    font-size: 18px;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    border-radius: 10px
}
.footer-hour-list {
  margin: 0;
  padding: 0;
}
.footer-hour-list li {
  display: flex;
  justify-content: end;
  gap: 10px;
  margin-bottom: 15px;
}
.footer-hour-list li:last-child {
  margin-bottom: 0;
}
.footer-hour-list li i {
  font-size: 15px;
  margin-top: 3px;
}
.hours-info p {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
    display: flex;
    gap: 6px;
    margin-bottom: 0;
    align-items: center;
}
.hours-info span {
  color: #fff;
  font-size: 15px;
  margin-bottom: 0;
  font-weight: 400;
}
.footer-social-style {
  margin: 0;
  display:flex;
  justify-content: end;
  gap: 10px;
  padding: 0;
  list-style: none;
}
.footer-social-style li a {
  color: #473F3F;
  background-color: white;
  border-radius: 69% 31% 17% 83%/60% 63% 37% 40%;
  width: 40px;
  height: 40px;
  display: inline-flex;
  line-height: 40px;
  text-align: center;
  font-size: 18px;
  position: relative;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  z-index: 9;
}
.footer-social-style li:nth-child(2) a{
    font-size: 22px;
}
.footer-social-style li:nth-child(3) a{
    font-size: 20px;
}
.footer-social-style li a i {
  z-index: 9;
}
.footer-social-style li a:before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 0;
  background-color: #02B4FF;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
}
.footer-social-style li a:hover {
  color: #fff;
}
.footer-social-style li a:hover:before {
  height: 100%;
  visibility: visible;
  opacity: 1;
  border-radius: 69% 31% 17% 83%/60% 63% 37% 40%;
}
.footer-bar{
    margin-top: 80px;
    padding: 20px 0;
   border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-bar .copyright-text{
    font-size: 15px;
    color: #ffffff;
    line-height: 25px;
    font-weight: 400;
}
.footer-bar .copyright-text a{
    color: #02B4FF;
    font-weight: 600;
}
/*end footer section*/

/*start media queries */
@media screen and (min-width:992px) and (max-width:1025px){
    .custom-navbar .custom-nav-menu li a{font-size: 15px;}
    .home-section .home-content .banner-main-title{font-size: 45px;line-height: 55px;}
    .home-section .home-content .banner-text{font-size: 17px;}
    .section-title{font-size: 35px;line-height: 45px;}
    .process-wrapper .process-image img{width: 170px;height: 170px;}
    .process-wrapper:before{right: -20%;}
    .footer-bar .copyright-text{font-size: 13px;}
    .footer-menus li{font-size: 13px;}
}

@media screen and (max-width: 768px){
    .header-main .navbar{padding-top: 20px;padding-bottom: 0;}
    .bannerright-image{text-align: center;}
    .custom-nav-menu{
        background-color: #fff;
        padding: 20px 0;
        border-radius: 10px;
    }
    .custom-navbar .custom-nav-menu li{
        border-bottom: 2px solid #ededed;
        margin-bottom: 15px;
        padding: 0 25px;
        padding-bottom: 15px;
        margin-right: 0;
    }
    .custom-navbar .custom-nav-menu li:nth-child(2){
        border-bottom: 0;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    /* .custom-navbar .custom-nav-menu li:nth-child(3),.custom-navbar .custom-nav-menu li:nth-child(4){
        display: inline-block;
    } */
    .custom-navbar .custom-nav-menu li a{padding: 0;font-size: 17px;font-weight: 500;}
    .navbar-toggler:focus{box-shadow: unset;}
    .footer-hour-list li,.footer-social-style{justify-content: start;}
    .footerbox-wrapper{margin: 0;padding: 20px;}
}

@media screen and (min-width:768px) and (max-width:992px){
    .home-bg{min-height: 1170px;}
    .home-section .home-content{padding: 2rem 0 0;text-align: center;}
    .home-section .home-content .banner-main-title{font-size: 50px;line-height: 60px;}
    .home-section .home-content .banner-main-title span br{display: none;}
    .home-section .home-content .banner-text{width: 100%;font-size: 16px;}
    .navbar-brand .logo-img{max-width: 140px;}
    .footer-logo .logo-img {max-width: 140px;}
    .about-section,.features-section,.how-work-section,.app-screenshots-area,.faq-section{padding: 80px 0;text-align: center;}
    .section-title{font-size: 34px;line-height: 44px;}
    .faq-image-wrapper .small-image{left: -40px;}
    .footer-section{padding-top: 100px;}
    .footer-bar{text-align: center;}
    .footer-menus{justify-content: center;margin-top: 10px;}
}

@media screen and (max-width: 575px)
{
    .home-bg {min-height: 1000px;}
    .home-section{padding-top: 110px;}
    .home-section .home-content{padding: 2rem 0 0;text-align: center;}
    .custom-navbar .custom-nav-menu li a{font-size: 16px;}
    .navbar-brand .logo-img{max-width: 120px;}
    .footer-logo .logo-img {max-width: 140px;}
    .home-section .home-content{padding: 2rem 0 0;}
    .home-section .home-content .banner-text{width: 100%;font-size: 16px;}
    .home-section .home-content .banner-main-title{font-size: 30px;line-height: 40px;}
    .home-section .home-content .banner-main-title span br{display: none;}
    .primary-btn{font-size: 14px;}
    .section-title{font-size: 24px;line-height: 34px;margin-bottom: 20px;}
    .about-section,.features-section,.how-work-section,.app-screenshots-area,.faq-section{padding: 50px 0;text-align: center;}
    .app-screenshots-area .owl-carousel .owl-item .single-shot img{width: 240px;margin: 0 auto;}
    .app_screenshots_slides .center .single-shot{transform: scale(1);opacity: 1;}
    .app_screenshots_slides .single-shot{transform: scale(1);opacity: 1;}
    .faq-image-wrapper .small-image{width: 220px;}
    .accordion .accordion-button{font-size: 16px;padding: 15px 60px 15px 15px;}
    .accordion .accordion-button:after {right: 13px;font-size: 50px;line-height: 28px;top: 11px;}
    .accordion .accordion-button.collapsed:after {right: 13px;font-size: 30px;line-height: 28px;top: 11px;}
    .accordion .card-body{font-size: 15px;padding: 15px;}
    .footer-section{padding-top: 60px;}
    .footer-bar{text-align: center;margin-top: 40px;}
    .footer-menus{justify-content: center;margin-top: 10px;}
    .footer-bar .copyright-text,.footer-menus li{font-size: 14px;}
}
/*end media queries */