@font-face {
    font-family: Averta-Bold;
    src: url(../fonts/Averta-Bold.otf);
}
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500&display=swap');  
html{
    scroll-behavior: smooth;
}
body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6{
    margin: 0;
    padding: 0;
    font-family: 'Averta-Bold', sans-serif;
}

p{
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
}
a{
    text-decoration: none;
    color: #000;
    font-family: 'Open Sans', sans-serif;
}
.container{
    max-width: 1140px;
    margin: 0 auto;
}
.row{
    display: flex;
}
.justify-content{
    justify-content: center;
}
.col-lg-12{
    width: 100%;
}
.col-lg-9{
    width: 75%;
}
.col-lg-8{
    width: 65%;
}
.col-lg-6{
    width: 50%;
}
.col-lg-4{
    width: 33.333%;
}
.col-lg-3{
    width: 25%;
}
ul li{
    font-family: 'Open Sans', sans-serif;
}

.navigation{
	width: 100%;
    padding: 10px 0;
    position: fixed;
    z-index: 1;
    transition: .3s;
}
.navigation .toggle-bar{
	display: none;
}
.navigation .row{
	display: flex;
}
.navigation .col-lg-6{
	width: 50%;
}
.navigation .logo{
    padding: 20px 0;
	text-align: left;
}
.navigation .row .toggle-bar{
	text-align: right;
}
.navigation .logo a{
    color: #fff;
	font-size: 30px;
    font-weight: 600;
	padding: 0;

}
.navigation .logo img{
    width: 75px;
}
.navigation .menu ul{
	list-style-type: none;
	width: 100%;
	overflow: hidden;
    margin: 0;
    padding: 0;
    text-align: right;
}
.navigation .menu ul li{
	display: inline-block;

}
.navigation .menu ul li a{
	display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 10px 15px;
    font-size: 18px;
    font-weight: 400;
    margin: 17px 5px;
    transition: .3s;
}
.navigation .menu ul .btn a{
    background: #f17c00;
    border-radius: 5px;
    color: #fff;
}
.scroll-nav{
    background: linear-gradient(145deg, #FF406F,#FF6F17);
    padding: 0 !important;
}
.navigation .logo{
    padding: 18px 0;
}
.navigation .logo a{
    font-size: 25px;
}
.scroll-nav ul li a{
    padding: 13px 10px !important;
    font-size: 16px !important;
}




.hero-section{
    background: url('../images/hero-bg.png');
    background-size: cover;
    background-attachment: fixed;
    height: 100vh;
    width: 100%;
}
.hero-section .overlay{
    background: linear-gradient(145deg, hsla(345, 100%, 63%, 0.85),#FF6F17);
    height: 100%;
    width: 100%;
}
.hero-section .row{
    height: 100vh;
    align-items: center;
}
.hero-section .content{
    padding-top: 50px;
}

.hero-section .content h2{
    font-size: 40px;
    color: #fff;
}
.hero-section .content p{
    font-size: 16px;
    color: #fff;
    line-height: 1.5em;
    margin-top: 20px;
}
.hero-section .image{
    padding-top: 70px;
    text-align: right;
}
.hero-section .image img{
    width: 70%;
}
.hero-section .app-btn{
    display: flex;
    margin-top: 30px;
}
.hero-section .app-btn a:first-child{
    margin-right: 20px;
}
.hero-section .app-btn img{
    width: 170px;
}

.client-logo{
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 30px;
    box-sizing: border-box;
    overflow: hidden;
}

@keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-250px * 7));
    }
}
.client-logo .logo-slider {
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: auto;
}
.client-logo .logo-slider .slide-track {
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(250px * 14);
}
.client-logo .logo-slider .slide {
    height: 100px;
    width: 250px;
}
.client-logo .logo-slider .slide img{
    object-fit: contain;
}
.app-function{
    padding-top: 80px;
}
.heading{
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 30px;
}
.heading h2{
    font-size: 35px;
    margin-bottom: 15px;
}
.heading p{
    line-height: 1.5em;
}
.app-function .group{
    margin-top: 30px;
    text-align: center;
}
.app-function .image{
    text-align: center;
}
.app-function .group .function-icon{
    font-size: 35px;
    color: #FF406F;
    margin-bottom: 5px;
}
.app-function .group h2{
    font-size: 20px;
    margin-bottom: 10px;
}
.app-function .group p{
    line-height: 1.5em;
}

.video-section{
    height: 300px;
    width: 100%;
    background: url('../images/video-bg.avif');
    background-size: cover;
    background-position: center;
    margin-top: 100px;
}
.video-section .overlay{
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.7);
}
.video-section .caption{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 300px;
}
.video-section .caption .icon i{
    color: #fff;
    font-size: 120px;
    margin-bottom: 20px;
    transition: all .3s;
}
.video-section .caption .icon i:hover{
    transform: scale(1.2);
}
.video-section .caption h2{
    font-size: 30px;
    color: #fff;
}
.process-section {
    padding-top: 100px;
    margin-bottom: 70px;
}
.process-section .heading{
     max-width: 700px;
     margin: 0 auto;
     text-align: center;
}
.process-section .content{
    margin-top: 30px;
}
.process-section .card{
    padding: 35px 25px;
    text-align: center;
    background: linear-gradient(145deg, #FF406F,#FF6F17);
    margin: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: all .3s;
}
.process-section .card:hover{
    transform: scale(1.3);
}
.process-section .card .process-icon{
    font-size: 40px;
    color: #fff;
    margin-bottom: 15px;
}
.process-section .card h2{
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
}
.process-section .card p{
    color: #fff;
    font-size: 16px;
}

.join-section{
    background: #eee;
    margin-top: 70px;
    padding-top: 120px;
    padding-bottom: 70px;
}
.join-section .content{
    margin-top: 80px;
}
.join-section .content .group-image img{
    width: 90%;
}
.join-section .content .group-details{
    padding-left: 20px;
}
.join-section .content .item .image img{
    width: 90px;
}
.join-section .content .item{
    margin-top: 25px;
}
.join-section .content .item .details{
    margin-top: 5px;
    padding-left: 10px;
}
.join-section .content .item h2{
    
}
.join-section .content .item p{
    font-size: 18px;
    padding-top: 5px;
}

.meet-section{
    margin-top: 70px;
}
.meet-section .content{
    padding-top: 50px;
}
.meet-section .content h2{
    font-size: 40px;
    margin-bottom: 10px;
}
.meet-section .content p{
    font-size: 18px;
    line-height: 1.5em;
}
.meet-section .content ul{
    margin-top: 30px;
}
.meet-section .content ul li{
    font-size: 18px;
    list-style-type: disclosure-closed;
    line-height: 1.5em;
    margin-top: 20px;
}
.meet-section .content ul li::marker {
    color: #49bbf8;
    font-weight: bold;
    display: inline-block; 
    width: 1em;
    margin-left: -1em;
  }
.meet-section .image{
    text-align: right;
}
.meet-section .image img{
    width: 70%;
}
.review-section{
    margin-top: 100px;
    margin-bottom: 0;
    padding-top: 70px;
    padding-bottom: 70px;
    background: #eee;
}


.review-section .content{
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.swiper-container {
    border-radius: 5px;
    width: 100%;
    overflow: hidden;
    height: fit-content;
    height: fit-content;
    font-size: 50px;
    position: relative;
    padding-bottom: 50px;
    font-family: sans-serif;
    margin-top: 70px;
}
  
.swiper-slide {
    width: auto;
    height: fit-content;
    display: flex;
    height: auto;
    border-radius: 5px;
    overflow: hidden;
    align-items: flex-start;
    flex-direction: column;
    padding: 0px;
    font-family: Nunito;
    background-color: white;
  
}
  
.swiper-slide .ImgHolder {
    background-color: #49bbf8;
    display: flex;
    width: 100%;
    height: auto;
    padding: 30px;
    box-sizing: border-box;
    border-bottom-left-radius: 20px;
  
}
  
.ContentHolder::before {
    background-color: #FF406F;
    content: '';
    width: 50px;
    height: 50px;
    position: absolute;
    top: -5px;
    z-index: -1;
    right: 0px;
}
  
.ContentHolder {
    position: relative;
    padding: 20px;
    text-align: center;
    background-color: white;
    border-top-right-radius: 20px;
}
.ContentHolder h3{
    font-size: 25px !important;
}
.ContentHolder p{
    font-size: 18px !important;
    font-weight: 500;

}
.swiper-pagination{
    display: none;
}
.swiper-pagination-bullet {
    background-color: white;
    opacity: 1;
    border: 1px solid #4361ee;
}
  
.swiper-pagination-bullet-active {
    background-color: #4361ee;
}
  
.swiper-button {
    border: 1px solid white;
}
  
.swiper-slide img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: auto;
    object-fit: cover;
    border: 3px solid #FF406F;
    outline: 2px solid white;
}
  
.swiper-slide h3 {
    font-size: 1.1rem;
    text-align: center;
    font-weight: bold;
}
  
.swiper-slide p {
    font-size: 0.9rem;
    padding: 5px;
}
  
  @media (max-width:638px) {
    .swiper-container {
      width: 100%;
    }
  }
  
  @media (max-width:500px) {
    .swiper-container {
      width: 70vw;
    }
  }
  
  @media (max-width:300px) {
    .swiper-container {
      width: 100%;
    }
  
    .swiper-slide {
      border-radius: 0px;
    }
  
    .swiper-container .ImgHolder {
      border-radius: 0px;
    }
    .ContentHolder{
      border-radius: 0px;
    }
  }

.rating-section{
    margin-top: 70px;
    background: url('../images/rating-bg.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: top;
    height: 350px;
    width: 100%;
}
.rating-section .overlay{
    background: rgba(0,0,0,0.7);
    height: 100%;
    width: 100%;
    padding: 65px 0;
    box-sizing: border-box;
}
.rating-section .card{
    margin: 10px;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}
.rating-section .card .fa-solid{
    color: #fff;
    font-size: 70px;
}
.rating-section .card h3{
    font-size: 25px;
    color: #fff;
    margin-top: 25px;
}
.rating-section .card p{
    color: #fff;
    font-size: 18px;
    margin-top: 10px;
}

.team-section {
    padding-top: 90px;
}
.team-section .card{
    border: 1px solid #ddd;
    margin: 10px;
    border-radius: 5px;
    overflow: hidden;
}
.team-section .card .image{
    height: 280px;
    overflow: hidden;
    transition: all .3s;
}

.team-section .card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s;
}
.team-section .card:hover img{
    transform: scale(1.3);
}

.team-section .card .details{
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}
.team-section .card .details h4{
    font-size: 16px;
    color: #FF406F;
    margin-bottom: 7px;
}
.team-section .card .details h3{
    font-size: 20px;
}
.app-img-section{
    padding-top: 80px;
}
.app-img-section .item{
    margin-top: 30px;
    margin: 10px;
}
.app-img-section .item img{
    width: 100%;
    border: 1px solid #ddd;
}
.app-img-section .slick-next{
    display: none !important;
}
.app-img-section .slick-prev{
    display: none !important;
}

.slider {
    max-width: 1000px;
    margin: 0 auto;
  }
  .slick-slide {
    margin: 0 5px;
  }
  .slick-list {
    margin: 0px -5px 0px -5px;
  }
  .slider img {
    height: 400px;
    border: 1px solid #ddd;
  }
  
  .slick-slider
  {
      position: relative;
  
      display: block;
  
      -moz-box-sizing: border-box;
           box-sizing: border-box;
  
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
  
      -webkit-touch-callout: none;
      -khtml-user-select: none;
      -ms-touch-action: pan-y;
          touch-action: pan-y;
      -webkit-tap-highlight-color: transparent;
  }
  
  .slick-list
  {
      position: relative;
  
      display: block;
      overflow: hidden;
  
      margin: 0;
      padding: 0;
  }
  .slick-list:focus
  {
      outline: none;
  }
  .slick-list.dragging
  {
      cursor: pointer;
      cursor: hand;
  }
  
  .slick-slider .slick-track,
  .slick-slider .slick-list
  {
      -webkit-transform: translate3d(0, 0, 0);
         -moz-transform: translate3d(0, 0, 0);
          -ms-transform: translate3d(0, 0, 0);
           -o-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
  }
  
  .slick-track
  {
      position: relative;
      top: 0;
      left: 0;
  
      display: block;
  }
  .slick-track:before,
  .slick-track:after
  {
      display: table;
  
      content: '';
  }
  .slick-track:after
  {
      clear: both;
  }
  .slick-loading .slick-track
  {
      visibility: hidden;
  }
  
  .slick-slide
  {
      display: none;
      float: left;
  
      height: 100%;
      min-height: 1px;
  }
  [dir='rtl'] .slick-slide
  {
      float: right;
  }
  .slick-slide img
  {
      display: block;
  }
  .slick-slide.slick-loading img
  {
      display: none;
  }
  .slick-slide.dragging img
  {
      pointer-events: none;
  }
  .slick-initialized .slick-slide
  {
      display: block;
  }
  .slick-loading .slick-slide
  {
      visibility: hidden;
  }
  .slick-vertical .slick-slide
  {
      display: block;
  
      height: auto;
  
      border: 1px solid transparent;
  }
  .slick-arrow.slick-hidden {
      display: none;
  }





.faq-section{
    margin-top: 100px;
    padding-top: 90px;
    padding-bottom: 70px;
    background: #eee;
}
.faq-section .accordion{
    margin-top: 50px;
}

.accordion .accordion-item {
    border-bottom: 1px solid #d4d4d4;
  }
  
  .accordion .accordion-item button[aria-expanded='true'] {
    border-bottom: 1px solid #FF406F;
  }
  
  .accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    color: #000;
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
  }
  
  .accordion button:hover,
  .accordion button:focus {
    cursor: pointer;
    color: #FF406F;
  }
  
  .accordion button:hover::after,
  .accordion button:focus::after {
    cursor: pointer;
    color: #FF406F;
    border: 1px solid #FF406F;
  }
  
  .accordion button .accordion-title {
    padding: 1em 1.5em 1em 0;
  }
  
  .accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 0;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
  }
  
  .accordion button .icon::before {
    display: block;
    position: absolute;
    content: '';
    top: 10px;
    left: 6px;
    width: 10px;
    height: 2px;
    background: currentColor;
  }
  .accordion button .icon::after {
    display: block;
    position: absolute;
    content: '';
    top: 6px;
    left: 10px;
    width: 2px;
    height: 10px;
    background: currentColor;
  }
  
  .accordion button[aria-expanded='true'] {
    color: #FF406F;
  }
  .accordion button[aria-expanded='true'] .icon::after {
    width: 0;
  }
  .accordion button[aria-expanded='true'] + .accordion-content {
    opacity: 1;
    max-height: 100%;
    transition: all 200ms linear;
    will-change: opacity, max-height;
  }
  .accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
  }
  .accordion .accordion-content p {
    font-size: 1rem;
    font-weight: 300;
    margin: 2em 0;
  }
  .accordion .accordion-content ul li{
    list-style-type: decimal;
  }
  .contact-section{
    padding-top: 100px;
    
  }


  .contact-section {
    margin-top: 0;
    margin-bottom: 70px;
  }
  .contact-section .section-header {
    margin-bottom: 50px;
    text-align: center;
  }
  
  .contact-section .section-header h2 {
    color: #FFF;
    font-weight: bold;
    font-size: 3em;
    margin-bottom: 20px;
  }
  
  .contact-section .section-header p {
    color: #FFF;
  }
  
  .contact-section .row  {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .contact-section .contact-info {
    width: 40%;
    padding-top: 50px;
  }
  
  .contact-section .contact-info-item {
    width: 100%;
    display: flex;
    margin-bottom: 30px;
  }
  
  .contact-section .contact-info-icon {
    height: 65px;
    width: 80px;
    background-color: #e91e63;
    text-align: center;
    border-radius: 50%;
  }
  
  .contact-section .contact-info-icon i {
    color: #fff;
    font-size: 22px;
    line-height: 65px;
  }
  
  .contact-section .contact-info-content {
    width: 100%;
    margin-left: 20px;
  }
  
  .contact-section .contact-info-content h4 {
    color: #e91e63;
    font-size: 20px;
    margin-bottom: 5px;
  }
  
  .contact-section .contact-info-content p {
    color: #000;
    line-height: 1.5em;
    font-size: 1em;
  }
  
  .contact-section .contact-form {
    background-color: #fff;
    padding: 30px;
    width: 60%;
    padding-left: 50px;
    padding-bottom: 20px;
    padding-top: 20px;
    box-sizing: border-box;
  }
  
  .contact-section .contact-form h2 {
    font-weight: bold;
    font-size: 2em;
    margin-bottom: 10px;
    color: #333;
    margin-bottom: 30px;
  }
  
  .contact-section .contact-form .input-box {
    position: relative;
    width: 100%;
    margin-top: 20px;
  }
  
  .contact-section .contact-form .input-box input,
  .contact-form .input-box textarea{
    width: 100%;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    border: none;
    border-bottom: 1px solid #757575;
    outline: none;
    resize: none;
  }
  
  .contact-section .contact-form .input-box span {
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: #666;
  }
  
  .contact-section .contact-form .input-box input:focus ~ span,
  .contact-form .input-box textarea:focus ~ span{
    color: #e91e63;
    font-size: 12px;
    transform: translateY(-20px);
  }
  
  .contact-section .contact-form .input-box input[type="submit"]
  {
    width: 100%;
    background: #e91e63;
    color: #FFF;
    border: none;
    cursor: pointer;
    padding: 12px;
    font-size: 18px;
    border: none;
    transition: 0.3s;
  }
  
  .contact-section .contact-form .input-box input[type="submit"]:hover
  {
    background: #c7134f;
    color: #fff;
  }
  
  @media (max-width: 991px) {
    
    .contact-section .row {
      flex-direction: column;
    }
    
    .contact-section .contact-info {
      margin-bottom: 40px;
      width: 100%;
    }
    
    .contact-section .contact-form {
      width: 100%;
    }
  }


footer{
    background: linear-gradient(145deg, #FF406F,#FF6F17);
    height: 400px;
    padding: 50px 0;
    box-sizing: border-box;
}
footer .footer-content .col-lg-3{
    padding-left: 30px;
    box-sizing: border-box;
}
footer .footer-content .col-lg-3:first-child{
    padding-left: 0;
}
footer .footer-content .group p{
    color: #fff;
}
footer .footer-content h2{
    font-size: 50px;
    color: #fff;
    margin-bottom: 20px;
}
footer .footer-content h3{
    font-size: 22px;
    color: #fff;
    margin-bottom: 30px;
}
footer .footer-content ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
} 
footer .footer-content ul li{
    color: #fff;
    margin-bottom: 15px;
}
footer .footer-content ul li a{
    color: #fff;
}
footer .footer-content ul li a:hover{
    text-decoration: underline;
}
footer .copyright-content{
    margin-top: 40px;
}
footer .copyright-content .image img{
    width: 150px;
    margin-top: 10px;
}
footer .copyright-content .details p{
    color: #fff;
    text-align: right;
    padding: 5px;
    margin: 10px;
    margin-right: 0;
}
footer .copyright-content .details{
    display: flex;
    justify-content: right;
}
footer .copyright-content .details ul{
    margin: 0;
    padding: 0;
}
footer .copyright-content .details li {
    display: inline-block;
}
footer .copyright-content .details li a{
    color: #fff;
    display: inline-block;
    padding: 5px;
    margin: 10px;
    text-decoration: underline;
}
footer .footer-content img{
    width: 90px;
    margin-bottom: 20px;
}





@media only screen and (max-width: 768px){
    [data-aos^=fade][data-aos^=fade]{
        opacity: 1 !important;
        transform: translateZ(0) !important;
    }
    .col-lg-4{
        width: 100%;
    }
    .col-lg-6{
        width: 100%;
    }
    .col-lg-3{
        width: 100%;
    }
    .navigation .menu ul .btn a{
        display: none;
    }
    .navigation{
        width: 100%;
    }
    
    .navigation .row{
        display: flex;
    }
    .navigation .col-lg-6{
        width: 50%;
    }
    .navigation .col-lg-9{
        width: 100%;
    }
    .navigation img{
        width: 25%;
        padding-top: 0px;
        padding: 17px;
    }
    .navigation .nav-order-btn{
        display: inline-block;
        vertical-align: sub;
    }
    .navigation .nav-order-btn a{
        display: inline-block;
        font-size: 14px;
        text-align: center;
        padding: 12px 12px;
        background: #f17c00;
        color: #fff;
        text-transform: uppercase;
        font-weight: 600;
        border-radius: 5px;
        vertical-align: super;
    }
    .navigation .toggle-bar{
        display: block;
        text-align: right;
    }
    .navigation-bar{
        display: none;
    }
    .navigation .fa{
        font-size: 27px;
        color: #000;
        padding: 18px 20px;
    }
    .navigation .menu ul{
        list-style-type: none;
        width: 100%;
        overflow: hidden;
        background: #000;
        position: absolute;
        margin-left: 0;
        left: 0;
        text-align: left;
        display: none;
        margin: 0;
        padding: 0;
        z-index: 1;
        margin-top: 0;
    }
    
    .navigation-bar-show{
    }
    .navigation .menu ul li{
        display: block;
        border-bottom: 1px solid #828282;
    }
    .navigation .menu ul li a{
        display: inline-block;
        text-decoration: none;
        padding: 18px 16px;
        font-size: 18px;
        font-weight: 600;
        width: 100%;
        margin: 0;
    }
    .scroll-nav ul li a{
        padding: 15px !important;
    }
    .navigation .logo img{
        width: 65px;
        padding: 0 10px;
    }
    .navigation .fa{
        color: #fff;
    }
    .scroll-nav .logo{
        padding-left: 15px;
    }

    .row{
        display: block;
    }
    .col-lg-3{
        width: 100%;
    }
    .col-lg-4{
        width: 100%;
    }
    .col-lg-6{
        width: 100%;
    }
    .hero-section{
        height: 100%;
    }
    .hero-section .overlay{
        padding-bottom: 40px;
    }
    .hero-section .row{
        height: 100%;
    }
    .hero-section .content{
        padding: 20px;
        padding-top: 100px;
        box-sizing: border-box;
    }
    .navigation{
        padding: 5px 15px;
        box-sizing: border-box;
    }
    .hero-section .image{
        text-align: center;
        padding-top: 30px;
    }
    .hero-section .image img{
        width: 100%;
    }
    .client-logo{
        margin-bottom: 0;
    }
    .app-function{
        padding: 15px;
        padding-top: 80px;
    }
    
    .app-function .image{
        margin-top: 40px;
    }
    .process-section{
        padding: 15px;
        padding-top: 80px;
    }
    .process-section .card{
        margin-bottom: 20px;
    }
    .process-section .card:hover{
        transform: scale(1);
    }
    .join-section{
        padding-top: 80px;
    }
    .join-section .content .group-image{
        text-align: center;
    }
    .join-section .content .group-image img{
        width: 80%;
    }
    .join-section{
        padding-left: 15px;
        padding-right: 15px;
    }
    .join-section .content .group-details .row{
        display: flex;
    }
    .join-section .content .group-details{
        padding-left: 0;
    }
    .join-section .content .item .details{
        padding-left: 5px;
    }
    .meet-section{
        margin-top: 50px;
        padding: 15px;
        box-sizing: border-box;
    }
    .meet-section .content{
        padding-top: 20px;
    }
    .meet-section .image{
        text-align: center;
    }
    .meet-section .image img{
        width: 80%;
        margin-top: 30px;
    }
    .meet-section .content h2{
        font-size: 35px;
    }
    .review-section{
        margin-top: 50px;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }
    .review-section .content h2{
        font-size: 18px;
    }
    .swiper-container{
        width: 100%;
    }
    .team-section{
        padding: 15px;
        box-sizing: border-box;
        padding-top: 80px;
    }
    .team-section .card{
        margin-bottom: 20px;
    }
    .app-img-section img{
        width: auto !important;
    }
    .app-img-section .slick-slide{
       
    }
    .rating-section{
        height: 100%;
        margin-top: 50px;
    }
    .faq-section{
        padding-left: 15px;
        padding-right: 15px;
    }
    .accordion button .accordion-title{
        display: block;
    }
    .accordion button .icon{
        top: 60px;
    }
    .contact-section{
        padding: 15px;
        box-sizing: border-box;
        padding-top: 80px;
    }
    .contact-section .contact-info{
        margin-bottom: 20px;
    }
    .contact-section .contact-form {
        background-color: #fff;
        padding: 20px;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0;
        padding-top: 0;
        box-sizing: border-box;
      }
    footer{
        height: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    footer .group{
        margin-bottom: 30px;
    }
    footer .group h3{
        margin-bottom: 15px;
    }
    footer .footer-content .col-lg-3{
        padding-left: 0;
    }
    footer .copyright-content .details p{
        text-align: center;
        margin-top: 30px;
        box-sizing: border-box;
        margin: 0;
    }
    footer .copyright-content .image{
        text-align: center;
    }
    footer .copyright-content .details{
        display: block;
    }
    footer .copyright-content .details ul{
        text-align: center;
    }
    footer .copyright-content .details ul li a{
        margin: 7px;
        display: ;
    }



}










