html {
    scroll-behavior: smooth;
  }
html.lenis {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
section[id], div[id] {
  scroll-margin-top: 80px !important; 
  scroll-behavior: smooth;  
}
  body {
    font-size: 1rem !important;
    color: #333 !important;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
  }
  
  a,
  a:hover {
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    -webkit-transition: all 0.3s ease !important;
  }
  
  ul {
    padding-left: 0px !important;
    list-style-type: none;
    margin: 0;
  }
  img {
    display: block;
    max-width: 100%;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
  }
  .posrel{
    position: relative;
  }
  p{
    margin-bottom: 0.5rem !important;
  }
  .para{
    line-height: 26px;
    font-weight: 400;
  }
  ::selection{
    background-color: #ffd107;
    color: #000;           
}
::-moz-selection{
    background-color: #ffd107;
    color: #000;
}
  @media (min-width: 1366px) {
    .cmpad{
      max-width: 1920px;
      margin-left: auto !important;
      margin-right: auto !important;
      padding-left: 80px !important;
      padding-right: 80px !important;
    }
  }
  @media (max-width: 1366px) {
    .cmpad {
      padding-left: 60px !important;
      padding-right: 60px !important;
    }
  }
  @media (max-width: 991px) {
    .cmpad {
      padding-left: 40px !important;
      padding-right: 40px !important;
    }
  }
  @media (max-width: 767px) {
    .cmpad {
      padding-left: 15px !important;
      padding-right: 15px !important;
    }
  }
  @media (max-width: 575px) {
    html {
      font-size: 90% !important;
    }
  }
  
  @media (min-width: 768px) {
    ::-webkit-scrollbar {
      width: 10px;
      height: 6px;
    }
    ::-webkit-scrollbar-track {
      background-color: #eee;
    }
    ::-webkit-scrollbar-thumb {
      background-color: #ffd107;
    }
    ::-webkit-scrollbar-thumb:hover {
      background-color: #000;
    }
  
    .custscroll::-webkit-scrollbar,
    .custscroll::-webkit-scrollbar-thumb {
      border-radius: 13px;
      width: 6px;
      height: 6px;
      background-clip: padding-box;
      background: transparent;
    }
    .custscroll::-webkit-scrollbar-track {
      background: transparent;
    }
    .custscroll:hover::-webkit-scrollbar-thumb {
      background-color: #ccc;
    }
    .custscroll::-webkit-scrollbar-thumb:hover {
      background-color: #999;
    }
  
    .custscrollA::-webkit-scrollbar {
      border-radius: 13px;
      width: 6px;
      height: 6px;
      background-clip: padding-box;
      background: transparent;
    }
    .custscrollA::-webkit-scrollbar-track {
      background: transparent;
    }
    .custscrollA::-webkit-scrollbar-thumb {
      background-color: #ccc;
      border-radius: 6px;
    }
    .custscrollA::-webkit-scrollbar-thumb:hover {
      background-color: #999;
    }
  }

  input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

input::placeholder, textarea::placeholder {
  font-size: 0.8rem; 
  color: #333;
  opacity: .5;
}

/* For Firefox */
input::-moz-placeholder, textarea::-moz-placeholder {
  font-size: 0.8rem;
}

/* For Internet Explorer */
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  font-size: 0.8rem;
}

/* For Edge */
input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  font-size: 0.8rem;
}

  .mainhead {
    font-size: 2rem;
    color: #333;
    line-height: 45px;
    font-weight: 500;
  }


*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* header */
header{
  position: fixed;
    display: flex;
    width: 100%;
    z-index: 99;
    background-color: transparent;
    transform: translate3d(0, 0, 0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.4s ease,
                background 0.4s ease;
    will-change: transform;
}
header.header-hidden {
    transform: translate3d(0, -100%, 0);
}
.logo{
    width: 200px;
    transition: width 0.4s ease;
}
header.active .logo{
    width: 140px;
}
.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.right-header ul{
    display: flex;
    gap: 40px;
}
.right-header ul li a{
  color: #fff;
}
.right-header ul li a:hover{
  color: #ffd107;
}
header.active{
  background: #000;
  padding: 0;
}

.menuend{
    display: none;
}

/* ///////// MOBILE SIDE MENU ////////// */


.sidebar .sidehead .logo {
  width: 160px;
  display: flex;
}

.sidebar .sidehead .closebtn {
  font-size: 1rem;
  padding: 5px;
  border: none;
  background-color: #ffd107;
  position: absolute;
  top: 2rem;
  right: 1.5rem;
  color: #000 !important;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  border-radius: 50px;
  height: 35px;
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar .sidehead .closebtn:hover {
  color: #3a3a3a;
}
.sidebar .logo {
  width: 100%;
  display: flex;
  margin-bottom: 15px;
}
.sidebar .para {
  color: #e1e1e1;
}

.sidebar .sidemenu {
  padding: 1.5rem 1.5rem;
  overflow-y: auto;
  height: 100vh;
  display: flex;
  flex-flow: column;
}

.sidebar h5 {
  color: #fffffff2;
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.sidebar .sidemenu ul.menulist {
  display: flex;
  flex-flow: column;
  border-bottom: 1px solid #3b3b3b;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.sidebar .sidemenu ul.menulist li a {
  color: #e1e1e1;
  display: flex;
  align-items: center;
  padding: 5px 0;
  cursor: pointer;
  font-size: 0.9rem;
}

.sidebar .sidemenu ul.menulist li a .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  font-size: 0.875rem;
  color: #e3e3e3;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  border-radius: 50px;
}
.sidebar .sidemenu ul.menulist li a p {
  margin-bottom: 0;
  flex: 1 0;
}
.sidebar .sidemenu ul.menulist li a .icon img {
  width: 15px;
}

.sidebar .dropdown.show .dropdown-toggle {
  color: #ffd107;
  background-color: #eaf3ea;
}

.sidebar .dropdown-toggle:after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  display: inline-block;
  font-weight: 600;
  position: absolute;
  right: 10px;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  border-top: 0;
}

.cen {
  display: flex;
  align-items: center;
}

.sidebar {
  width: 350px;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  overflow: hidden;
  background-color: #000;
  backdrop-filter: blur(5px);
  box-shadow: -20px 0 20px rgb(255 255 255 / 8%);
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transform: translateX(calc(100% + 1rem));
}

.sidebar.active {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  box-shadow: -15px 5px 20px rgb(0 0 0 / 10%);
}

.sidebar .social li a i{
  color: #fff !important;
}
.sidemenu .logo{
  border-bottom: 1px solid #3b3b3b;
  padding-bottom: 20px;
}
.sidemenu .logo img{
  width: 160px;
}

/* slider */
.hero-video-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.hero-video-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    pointer-events: none;
}

.hero-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-text{
  position: absolute;
  bottom: 25px;
}
.slider-text h1{
  color: #fff;
  font-size: 3.5rem;
  font-weight: 700;
}
.slider-text p{
  color: #fff;
  opacity: .8;
}
/* about section */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: flex;
    width: max-content;
    border: 1px solid #c9a404;
    color: #c9a404;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 22px;
    border-radius: 30px;
    text-transform: uppercase;
  }

.about-thumbs {
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

.thumb-pair {
    display: flex;
    gap: 16px;
}

.thumb {
    position: relative;
    margin: 0;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thumb-index {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 2;
}

.about-media {
    position: relative;
}

.about-media-img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.about-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    border-radius: 10px;
    padding: 30px;
        background: rgba(80, 80, 78, 0.35);
    backdrop-filter: blur(28px) saturate(120%) brightness(0.95);
    -webkit-backdrop-filter: blur(28px) saturate(120%) brightness(0.95);
    border: 1px solid rgba(255,255,255,0.18);

    box-shadow:
        0 12px 36px rgba(0,0,0,0.35),
        inset 0 1px 1px rgba(255,255,255,0.25),
        inset 0 -1px 1px rgba(0,0,0,0.15);
}

.about-card h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 12px;
}

.about-card p {
    color: #b8b8b8;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
}

.learn-more:hover{
  color: #ffd107;
}

.learn-more-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ffd107;
    color: #0d0d0d;
}

.learn-more-icon img{
    width: 13px;
    transform: rotate(45deg);
}

.about-card-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
}

.thumb img:hover{
  transform: scale(1.2);
}

.line{
  width: 100%;
  height: 1px;
  background-color: #00000029;
}

/* --- responsive --- */
@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-media-img {
        height: 420px;
    }
    .about-heading {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .about-thumbs {
        flex-wrap: wrap;
    }
    .about-card {
        left: 16px;
        right: 16px;
        bottom: 16px;
        padding: 20px;
    }
}

/* services */
.swiper-content{
  background-color: #49812c;
  border-radius: 10px;
  color: #fff;
  display: flex;
  flex-flow: column;
  height: 100%;
  gap: 20px;
  padding: 55px 35px;
  background: transparent;
  position: relative;
  z-index: 1;
}
.swiper-content::before{
  content: "";
  position: absolute;
  inset: 0; 
  background-color: #49812c;
  border-radius: 10px;
  z-index: -1;
  transform: scaleY(1);
  transform-origin: center;
  transition: transform .35s ease, box-shadow .35s ease;
  height: 100%;
}
.swiper-slide{
  padding-top: 20px;
  padding-bottom: 20px;
  box-sizing: border-box;
}
.swiper-content:hover::before{
  transform: scaleY(1.1);
}
.swiper-content:hover .service-btn{
  background-color: #6cc24a;
  color: #fff;
}
.service-icon img{
  width: 50px;
  height: 50px;
  filter: brightness(0)invert(1);
}
.smallhead{
  text-transform: uppercase;
  font-size: 1rem;
}
.service-cont{
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.service-cont h3{
  font-weight: 700;
}
.service-cont p{
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.service-btn{
  padding: 15px 20px;
  width: fit-content;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  line-height: 16px;
  border: 0;
  border-radius: 10px;
  transition: color 200ms cubic-bezier(0.55, 0.085, 0.68, 0.53), 
              background-color 200ms cubic-bezier(0.55, 0.085, 0.68, 0.53);
  cursor: pointer;
  color: #49812c;
  background-color: #fff;
}
.swiper-box{
  position: relative;
  height: 100%;
}
.swiper-slide:nth-child(2) .swiper-content::before{
  background-color: #1a7fa0;
}
.swiper-slide:nth-child(2) .service-btn{
  color: #3fb6d6;
}
.swiper-slide:nth-child(2) .swiper-content:hover .service-btn{
  background-color: #3fb6d6;
  color: #fff;
}
.swiper-slide:nth-child(3) .swiper-content::before{
  background-color: #a01942;
}
.swiper-slide:nth-child(3) .service-btn{
  color: #d63f6e;
}
.swiper-slide:nth-child(3) .swiper-content:hover .service-btn{
  background-color: #d63f6e;
  color: #fff;
}
.service-btns{
  position: absolute;
  top: 100px;
  right: 50px;
}
.service-prev, .test-prev{
  left: -40px;
  opacity: 1 !important;
}
.service-next, .test-next{
  right: -50px;
}
.service-next, .service-prev, .test-next, .test-prev{
  border: none;
  background-color: #ffd107;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.service-next::after, .service-prev::after, .test-next::after, .test-prev::after{
  content: none;
}
.left-arrow{
  transform: rotate(225deg);
  width: 13px;
}
.right-arrow{
  transform: rotate(45deg);
  width: 13px;
}
.swiper-slide:nth-child(4) .swiper-content::before{
  background-color: #c96a1c;
}
.swiper-slide:nth-child(4) .swiper-content:hover .service-btn{
  background-color: #e8944a;
  color: #fff;
}
.swiper-slide:nth-child(4) .service-btn{
  color: #c96a1c; 
}
.swiper-slide:nth-child(5) .swiper-content::before{ background-color: #0e7c6b; }
.swiper-slide:nth-child(5) .swiper-content:hover .service-btn{ background-color: #2fa593; color: #fff; }
.swiper-slide:nth-child(5) .service-btn{ color: #0e7c6b; }
.swiper-slide:nth-child(6) .swiper-content::before{ background-color: #5b3e96; }
.swiper-slide:nth-child(6) .swiper-content:hover .service-btn{ background-color: #7d5cc4; color: #fff; }
.swiper-slide:nth-child(6) .service-btn{ color: #5b3e96; }

.swiper-slide:nth-child(7) .swiper-content::before{ background-color: #2c4870; }
.swiper-slide:nth-child(7) .swiper-content:hover .service-btn{ background-color: #4a6ea3; color: #fff; }
.swiper-slide:nth-child(7) .service-btn{ color: #2c4870; }

.swiper-slide:nth-child(8) .swiper-content::before{ background-color: #b23a2e; }
.swiper-slide:nth-child(8) .swiper-content:hover .service-btn{ background-color: #d9614f; color: #fff; }
.swiper-slide:nth-child(8) .service-btn{ color: #b23a2e; }

.swiper-slide:nth-child(9) .swiper-content::before{ background-color: #a68a1f; }
.swiper-slide:nth-child(9) .swiper-content:hover .service-btn{ background-color: #d1ae3f; color: #fff; }
.swiper-slide:nth-child(9) .service-btn{ color: #a68a1f; }

.swiper-slide:nth-child(10) .swiper-content::before{ background-color: #7a2456; }
.swiper-slide:nth-child(10) .swiper-content:hover .service-btn{ background-color: #a84a80; color: #fff; }
.swiper-slide:nth-child(10) .service-btn{ color: #7a2456; }

.swiper-slide:nth-child(11) .swiper-content::before{ background-color: #3d4a52; }
.swiper-slide:nth-child(11) .swiper-content:hover .service-btn{ background-color: #5f7079; color: #fff; }
.swiper-slide:nth-child(11) .service-btn{ color: #3d4a52; }

/* connected section */
.connected-section img{
  width: 100%;
  height: 600px;
  object-fit: cover;
  max-height: 100%;
  border-radius: 10px;
}
.connected-cont{
  position: absolute;
  top: 27%;
  left: 7%;
  z-index: 3;
  display: flex;
  flex-flow: column;
  gap: 10px;
}
.connected-cont h6{
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  font-size: 13px;
  margin: 0;
}
.connected-cont h2{
  color: #fff;
  width: 650px;
  font-weight: 500;
  max-width: 100%;
  font-size: 2.5rem;
  margin: 0;
}
.connected-section::before, .support::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.55) 25%,
    rgba(0, 0, 0, 0.15) 55%,
    rgba(0, 0, 0, 0) 75%
  );
  border-radius: 10px;
  z-index: 1;
}
.connected-cont .service-btn{
  color: #000;
}
.connected-cont .service-btn:hover{
  background-color: #ffd107;
}
/* testimonials */
.userimg{
  width: 80px;
  border-radius: 50%;
}
.quote{
  width: 30px;
  opacity: .5;
}
.test-img{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.test-main{
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
}
.testimonials{
  background-color: #eeeeee4f;
}
.username, .usercont, .userplace{
  margin: 0 !important;
}
.username{
  font-weight: 700;
  font-size: 1.125rem;
}
.userplace{
  color: #474747;
  font-weight: 500;
  font-size: 14px;
}
.testhead{
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.testmaincontent{
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.usercont{
  line-height: 1.6;
  color: #555;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: -webkit-line-clamp .2s ease;
}
.usercont.expanded{
  -webkit-line-clamp: unset;
  display: block; 
}
.read-more-btn{
  align-self: flex-start;
  border: none;
  background: none;
  padding: 0;
  color: #c9a404; 
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: all .3s;
}

.read-more-btn:hover{
  color: #000;
}
/* client support */
.support{
  height: 780px;
  max-height: 100%;
}
.support::before{
  border-radius: unset;
}
.supportimg{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* footer */
footer {
  background-color: #000;
  color: rgb(255 255 255 / 75%);
  font-size: 0.9rem;
  padding-top: 4rem;
  padding-bottom: 1rem;
  position: relative;
}
footer:after {
  content: "";
  position: absolute;
  background-color: #1e1e1e61;
  inset: 0;
  width: 100%;
  height: 100%;
}
footer a {
  color: rgb(255 255 255 / 80%);
  transition: 0.3s;
}
footer a:hover {
  color: #ffd107;
}
footer .line {
  width: 100%;
  background-color: rgb(255 255 255 / 10%);
  height: 1px;
  margin: 2.5rem 0;
}
.pow {
  text-align: right;
}
.pos {
  position: relative;
  z-index: 1;
}
.loc,
.phone,
.mail {
  position: relative;
  padding-left: 38px;
}

.loc:after,
.phone:after,
.mail:after {
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  font-size: 0.8rem;
  color: #000;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #ffd107;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}
.loc:after {
  content: "\f3c5";
}
.phone:after {
  content: "\f095";
}
.mail:after {
  content: "\f0e0";
}
.foot-logo {
  width: 230px;
  margin-bottom: 10px;
}
footer .social:after {
  display: none;
}
footer .social {
  display: flex;
}

.end {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

footer ul.social li a i {
  font-size: 0.85rem;
}

.add-sec {
  display: flex;
  gap: 15px;
  flex-flow: column;
  flex-wrap: wrap;
}

.foot-cen {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-flow: column;
}
.foot-list li:not(:last-child) {
  padding-bottom: 10px;
}

.link-color {
  color: black;
  transition: 0.3s;
  padding-left: 2px;
  font-weight: 500;
}
.foot-add h5 {
  font-size: 1.1rem;
  color: rgb(255 255 255 / 90%);
  position: relative;
}

.foot-add h3 {
  font-size: 1rem;
  color: rgb(255 255 255 / 95%);
  position: relative;
}

.foot-add h3::before{
    position: absolute;
    content: '';
    height: 2px;
    width: 20px;
    background: #ffd107;
    bottom: -6px;
}

.foot-add p {
  font-size: 0.85rem;
}
footer .social li a i{
  background-color: #ffd107 !important;
  color: #000 !important;
  border-radius: 20px;
}
ul.social {
  display: flex;
  margin-bottom: 0;
  gap: 10px;
}
ul.social li a i {
  width: 28px;
  height: 28px;
  line-height: 28px;
  display: block;
  text-align: center;
  font-size: 0.95rem;
  color: #000;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

/* responsive */
@media(max-width: 1199px){
  .service-cont h3{
    font-size: 1.2rem;
  }
  .smallhead{
    font-size: 0.9rem;
  }
}

@media(max-width: 991px){
  .swiper-content br{
    display: none;
  }
}

@media(max-width: 767px){
  .swiper-content{
    padding: 55px 30px;
  }
  .menuend {
    display: flex !important;
    gap: 10px;
    display: none;
  }
  .mobnone{
    display: none !important;
  }
      .menuend button {
        background: #ffd107;
        border: none;
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
    }
       .menuend button img {
        width: 20px;
    }
    .logo{
      width: 160px;
    } 
    .slider-text h1{
      font-size: 2.5rem;
    }
    .connected-cont h2{
      width: 100%;
    }
}

@media(max-width: 575px){
  .badge{
    margin: unset !important;
  }
  .about-desc, .about-content h2{
    text-align: left !important;
  }
  .foot-logo{
    width: 160px;
  }
  .service-btns{
    right: 50%;
    bottom: -34px;
    top: unset;
  }
  .testimonials{
    padding-bottom: 2rem;
  }
  .mainhead{
    font-size: 1.8rem;
    line-height: 40px;
  }
  .connected-cont h2{
    font-size: 1.6rem;
  }
  .connected-section img, .support, .support::before{
    height: 450px;
  }
  .connected-cont{
    top: 27%;
  }
  .qnone{
    display: none;
  }
  .swiper-content {
    padding: 50px 23px;
  }
  .service-cont h3 {
    font-size: 1.65rem;
  }
  .hero-video-wrapper{
    height: calc(100vh - 50px);
  }
  .slider-text{
    bottom: 50px;
  }
  br{
    display: none;
  }
  .thumb-pair{
    gap: 8px;
  }
  .about-grid{
    gap: 25px;
  }
}