@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
/* =============================Common styles */
* {
  box-sizing: border-box;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 8px;
  }
}

.ul-reset {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

body {
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
}

img {
  width: 100%;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

.global-width {
  width: 1300px;
  margin: 0 auto;
}
@media only screen and (max-width: 1200px) {
  .global-width {
    width: 100%;
    padding: 0 15px;
  }
}

::-webkit-scrollbar {
  width: 8px;
  height: 3px;
}

::-webkit-scrollbar-thumb {
  background: #8F9BB3;
  border-radius: 0.3rem;
  opacity: 0.3;
}

::-webkit-scrollbar-thumb:hover {
  background: #8F9BB3;
  opacity: 0.3;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.0784313725);
  border-radius: 3px;
}

.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;
  -webkit-backdrop-filter: blur(5.65px);
          backdrop-filter: blur(5.65px);
  padding: 2rem 0;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -ms-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
}
.main-header .global-width {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.main-header .logo img {
  width: 150px;
}
.main-header .nav-menu {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-header .nav-menu ul {
  display: flex;
  align-items: center;
  gap: 6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .main-header .nav-menu ul {
    gap: 3rem;
  }
}
.main-header .nav-menu ul li a {
  text-decoration: none;
  color: #000;
  font-size: 1.4rem;
  font-weight: 500;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.main-header .nav-menu ul li a:hover {
  color: #01B2D6;
}
.main-header .nav-menu ul li a.active {
  color: #01B2D6;
  font-weight: 600;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .main-header .nav-menu ul li a.active {
    color: #fff;
  }
}
.main-header .nav-menu .mobile-btn {
  display: none;
}
.main-header .header-buttons {
  display: flex;
  gap: 1.5rem;
}
.main-header .header-buttons .btns {
  padding: 0.8rem 2rem;
  border-radius: 1rem;
  font-size: 1.4rem;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.main-header .header-buttons .sign-in {
  color: #000000;
}
.main-header .header-buttons .sign-up {
  background-color: #01B2D6;
  color: #fff;
  border: none;
  font-weight: 500;
  font-size: 1.4rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  z-index: 1;
  border-radius: 1.2rem;
}
.main-header .header-buttons .sign-up::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  width: 120%;
  height: 100%;
  background: rgb(0.8813953488, 156.888372093, 188.6186046512);
  transform: skew(30deg) translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.3, 1, 0.8, 1);
  z-index: -1;
}
.main-header .header-buttons .sign-up:hover::before {
  transform: skew(30deg) translateX(0);
}
.main-header .header-buttons .sign-up:active {
  transform: scale(0.97);
}
.main-header .burger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}
.main-header .burger-menu span {
  width: 2.4rem;
  height: 0.3rem;
  background: #000;
  border-radius: 0.2rem;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
.main-header .burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.main-header .burger-menu.active span:nth-child(2) {
  opacity: 0;
}
.main-header .burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
@media only screen and (max-width: 767px) {
  .main-header .burger-menu {
    display: flex;
  }
  .main-header .desktop-btn {
    display: none;
  }
  .main-header .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 68%;
    height: 100vh;
    background: #01B2D6;
    flex-direction: column;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition: right 0.4s ease;
    -webkit-transition: right 0.4s ease;
    -moz-transition: right 0.4s ease;
    -ms-transition: right 0.4s ease;
    -o-transition: right 0.4s ease;
    z-index: 1000;
    padding-top: 18rem;
    text-align: center;
  }
  .main-header .nav-menu.open {
    right: 0;
  }
  .main-header .nav-menu ul {
    flex-direction: column;
    gap: 2rem;
  }
  .main-header .nav-menu ul li a {
    font-size: 1.8rem;
    color: #fff;
    text-decoration: none;
  }
  .main-header .nav-menu ul li a.active::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: #fff;
    margin: 6px auto 0;
  }
  .main-header .nav-menu .mobile-btn {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }
  .main-header .nav-menu .mobile-btn .btn {
    width: 13rem;
    text-align: center;
  }
  .main-header .nav-menu .mobile-btn .sign-in {
    background: #fff;
    color: #01B2D6;
  }
  .main-header .nav-menu .mobile-btn .sign-up {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
  }
}

.hero-btns {
  gap: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 6rem;
}
@media only screen and (max-width: 767px) {
  .hero-btns {
    flex-wrap: nowrap;
    margin-top: 2rem;
  }
}
.hero-btns .btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  min-width: 190px;
  height: 54px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .hero-btns .btn {
    height: auto;
    font-size: 1.4rem;
    min-width: -moz-fit-content;
    min-width: fit-content;
    padding: 0.8rem 2.2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .hero-btns .btn {
    min-width: 171px;
    height: 45px;
    padding: 1rem 2rem;
  }
}
.hero-btns .btn .btn-text {
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.hero-btns .btn .arrow-icon {
  width: 2.2rem;
  height: 2.2rem;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
@media only screen and (max-width: 767px) {
  .hero-btns .btn .arrow-icon {
    width: 1.6rem;
    height: 1.6rem;
  }
}
.hero-btns .btn.primary-btn {
  background: #01B2D6;
  color: #fff;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.hero-btns .btn.primary-btn:hover {
  background: #FF4779;
}
.hero-btns .btn.primary-btn:hover .btn-text {
  opacity: 0;
  transform: translateX(-15px);
}
.hero-btns .btn.primary-btn:hover .arrow-icon {
  transform: translateX(-45px);
}
.hero-btns .btn.outline-btn {
  border: 1.5px solid #9D9191;
  color: #9D9191;
  background: transparent;
}
.hero-btns .btn.outline-btn .arrow-icon {
  position: absolute;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.hero-btns .btn.outline-btn:hover {
  background: #FF4779;
  color: #fff;
  border-color: #FF4779;
}
.hero-btns .btn.outline-btn:hover .btn-text {
  opacity: 0;
}
.hero-btns .btn.outline-btn:hover .arrow-icon {
  opacity: 1;
  transform: scale(1);
}

.main-head {
  font-size: 5rem;
  font-weight: 700;
  color: #000000;
  line-height: 62.5px;
}
@media only screen and (max-width: 767px) {
  .main-head {
    font-size: 4rem;
    text-align: center;
    margin-top: 5rem;
    line-height: 41.5px;
  }
  .main-head br {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .main-head {
    font-size: 5rem;
    text-align: center;
  }
  .main-head br {
    display: none;
  }
}

.sub-para {
  font-size: 1.6rem;
  margin-top: 2rem;
  color: #787575;
}
@media only screen and (max-width: 767px) {
  .sub-para {
    font-size: 1.4rem;
    text-align: center;
  }
  .sub-para br {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .sub-para {
    text-align: center;
  }
  .sub-para br {
    display: none;
  }
}

.sub-head {
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 47.5px;
  color: #000000;
}
@media only screen and (max-width: 767px) {
  .sub-head {
    font-size: 3.5rem;
    line-height: 36px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .sub-head {
    font-size: 3.5rem;
  }
}

.main-sec {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 15rem 0 5rem;
  min-height: 100vh;
}
.main-sec::before {
  content: "";
  position: absolute;
  top: 59px;
  left: 50%;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  background: url("../images/lin-bg.svg") center bottom no-repeat;
  background-size: cover;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .main-sec {
    padding: 3rem 0 4rem;
    min-height: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .main-sec {
    padding: 8rem 0 5rem;
    min-height: 0;
  }
}
.main-sec .hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .main-sec .hero-container {
    text-align: center;
  }
}
.main-sec .hero-card {
  position: relative;
  width: 27.5rem;
  height: 18rem;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
@media only screen and (max-width: 767px) {
  .main-sec .hero-card {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .main-sec .hero-card {
    display: none;
  }
}
.main-sec .hero-card .card-img {
  width: 100%;
  display: block;
  border-radius: 1.6rem;
  position: absolute;
  left: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  box-shadow: 0 8px 30px #bff3fa;
}
.main-sec .hero-card.left-card .default1 {
  opacity: 1;
  top: 153px;
  width: 28.5rem;
  height: 18rem;
  left: -6px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .main-sec .hero-card.left-card .default1 {
    display: none;
  }
}
.main-sec .hero-card.right-card .default2 {
  top: -138px;
  left: 4px;
  width: 24.5rem;
  height: 30rem;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .main-sec .hero-card.right-card .default2 {
    display: none;
  }
}
.main-sec .hero-content {
  max-width: 700px;
  text-align: center;
  margin-top: 8rem;
}
@media only screen and (max-width: 767px) {
  .main-sec .hero-content {
    margin-top: 0;
  }
}
.main-sec .hero-content .main-head {
  margin-top: -6rem;
  font-size: 5rem;
}
@media only screen and (max-width: 767px) {
  .main-sec .hero-content .main-head {
    margin-top: 7rem;
    font-size: 4rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .main-sec .hero-content .main-head {
    line-height: 55px;
    font-size: 4.5rem;
  }
}
.main-sec .hero-content .hero-btns {
  gap: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 6rem;
}
@media only screen and (max-width: 767px) {
  .main-sec .hero-content .hero-btns {
    flex-wrap: nowrap;
    margin-top: 2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .main-sec .hero-content .hero-btns {
    margin-top: 3rem;
  }
}
.main-sec .hero-content .hero-btns .btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem 3.2rem;
  border-radius: 1rem;
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  min-width: 190px;
  height: 5.4rem;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .main-sec .hero-content .hero-btns .btn {
    min-width: 170px;
    height: 4.4rem;
    padding: 1.4rem 2.2rem;
  }
}
@media only screen and (max-width: 767px) {
  .main-sec .hero-content .hero-btns .btn {
    height: auto;
    font-size: 1.4rem;
    min-width: -moz-fit-content;
    min-width: fit-content;
    padding: 0.8rem 2.2rem;
  }
}
.main-sec .hero-content .hero-btns .btn .btn-text {
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.main-sec .hero-content .hero-btns .btn .arrow-icon {
  width: 2.2rem;
  height: 2.2rem;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
@media only screen and (max-width: 767px) {
  .main-sec .hero-content .hero-btns .btn .arrow-icon {
    width: 1.6rem;
    height: 1.6rem;
  }
}
.main-sec .hero-content .hero-btns .btn.primary-btn {
  background: #01B2D6;
  color: #fff;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.main-sec .hero-content .hero-btns .btn.primary-btn:hover {
  background: #FF4779;
}
.main-sec .hero-content .hero-btns .btn.primary-btn:hover .btn-text {
  opacity: 0;
  transform: translateX(-15px);
}
.main-sec .hero-content .hero-btns .btn.primary-btn:hover .arrow-icon {
  transform: translateX(-45px);
}
.main-sec .hero-content .hero-btns .btn.outline-btn {
  border: 1.5px solid #9D9191;
  color: #9D9191;
  background: transparent;
}
.main-sec .hero-content .hero-btns .btn.outline-btn .arrow-icon {
  position: absolute;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.main-sec .hero-content .hero-btns .btn.outline-btn:hover {
  color: #fff;
}
.main-sec .hero-content .hero-btns .btn.outline-btn:hover .btn-text {
  opacity: 0;
}
.main-sec .hero-content .hero-btns .btn.outline-btn:hover .arrow-icon {
  opacity: 1;
  transform: scale(1);
}

.video-sec {
  background: #fff;
  padding: 6rem 0;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .video-sec {
    padding: 3rem 0;
  }
}
@media only screen and (max-width: 767px) {
  .video-sec {
    padding: 4rem 0;
  }
}
.video-sec .animated-headline {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 3rem;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .video-sec .animated-headline {
    font-weight: 600;
  }
}
.video-sec .animated-headline .gray-text,
.video-sec .animated-headline .black-text {
  display: block;
}
@media only screen and (max-width: 767px) {
  .video-sec .animated-headline .gray-text,
  .video-sec .animated-headline .black-text {
    display: contents;
  }
}
.video-sec .animated-headline .gray-text span,
.video-sec .animated-headline .black-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.video-sec .animated-headline.in-view .gray-text span,
.video-sec .animated-headline.in-view .black-text span {
  opacity: 1;
  transform: translateY(0);
}
.video-sec .animated-headline.in-view .gray-text span:nth-child(n):nth-child(1),
.video-sec .animated-headline.in-view .black-text span:nth-child(n):nth-child(1) {
  transition-delay: 0.08s;
}
.video-sec .animated-headline.in-view .gray-text span:nth-child(n):nth-child(2),
.video-sec .animated-headline.in-view .black-text span:nth-child(n):nth-child(2) {
  transition-delay: 0.16s;
}
.video-sec .animated-headline.in-view .gray-text span:nth-child(n):nth-child(3),
.video-sec .animated-headline.in-view .black-text span:nth-child(n):nth-child(3) {
  transition-delay: 0.24s;
}
.video-sec .animated-headline.in-view .gray-text span:nth-child(n):nth-child(4),
.video-sec .animated-headline.in-view .black-text span:nth-child(n):nth-child(4) {
  transition-delay: 0.32s;
}
.video-sec .animated-headline.in-view .gray-text span:nth-child(n):nth-child(5),
.video-sec .animated-headline.in-view .black-text span:nth-child(n):nth-child(5) {
  transition-delay: 0.4s;
}
.video-sec .animated-headline.in-view .gray-text span:nth-child(n):nth-child(6),
.video-sec .animated-headline.in-view .black-text span:nth-child(n):nth-child(6) {
  transition-delay: 0.48s;
}
.video-sec .animated-headline.in-view .gray-text span:nth-child(n):nth-child(7),
.video-sec .animated-headline.in-view .black-text span:nth-child(n):nth-child(7) {
  transition-delay: 0.56s;
}
.video-sec .animated-headline.in-view .gray-text span:nth-child(n):nth-child(8),
.video-sec .animated-headline.in-view .black-text span:nth-child(n):nth-child(8) {
  transition-delay: 0.64s;
}
.video-sec .animated-headline.in-view .gray-text span:nth-child(n):nth-child(9),
.video-sec .animated-headline.in-view .black-text span:nth-child(n):nth-child(9) {
  transition-delay: 0.72s;
}
.video-sec .animated-headline.in-view .gray-text span:nth-child(n):nth-child(10),
.video-sec .animated-headline.in-view .black-text span:nth-child(n):nth-child(10) {
  transition-delay: 0.8s;
}
.video-sec .animated-headline.in-view .gray-text span:nth-child(n):nth-child(11),
.video-sec .animated-headline.in-view .black-text span:nth-child(n):nth-child(11) {
  transition-delay: 0.88s;
}
.video-sec .animated-headline.in-view .gray-text span:nth-child(n):nth-child(12),
.video-sec .animated-headline.in-view .black-text span:nth-child(n):nth-child(12) {
  transition-delay: 0.96s;
}
.video-sec .animated-headline.in-view .gray-text span:nth-child(n):nth-child(13),
.video-sec .animated-headline.in-view .black-text span:nth-child(n):nth-child(13) {
  transition-delay: 1.04s;
}
.video-sec .animated-headline.in-view .gray-text span:nth-child(n):nth-child(14),
.video-sec .animated-headline.in-view .black-text span:nth-child(n):nth-child(14) {
  transition-delay: 1.12s;
}
.video-sec .animated-headline.in-view .gray-text span:nth-child(n):nth-child(15),
.video-sec .animated-headline.in-view .black-text span:nth-child(n):nth-child(15) {
  transition-delay: 1.2s;
}
.video-sec .animated-headline.in-view .gray-text span:nth-child(n):nth-child(16),
.video-sec .animated-headline.in-view .black-text span:nth-child(n):nth-child(16) {
  transition-delay: 1.28s;
}
.video-sec .animated-headline.in-view .gray-text span:nth-child(n):nth-child(17),
.video-sec .animated-headline.in-view .black-text span:nth-child(n):nth-child(17) {
  transition-delay: 1.36s;
}
.video-sec .animated-headline.in-view .gray-text span:nth-child(n):nth-child(18),
.video-sec .animated-headline.in-view .black-text span:nth-child(n):nth-child(18) {
  transition-delay: 1.44s;
}
.video-sec .animated-headline.in-view .gray-text span:nth-child(n):nth-child(19),
.video-sec .animated-headline.in-view .black-text span:nth-child(n):nth-child(19) {
  transition-delay: 1.52s;
}
.video-sec .animated-headline.in-view .gray-text span:nth-child(n):nth-child(20),
.video-sec .animated-headline.in-view .black-text span:nth-child(n):nth-child(20) {
  transition-delay: 1.6s;
}
.video-sec .video-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}
@media only screen and (max-width: 767px) {
  .video-sec .video-top-row {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
}
.video-sec .video-top-row .video-btn-sec .expand-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FF4779;
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  transition: width 0.5s ease, border-radius 0.5s ease;
  overflow: hidden;
}
.video-sec .video-top-row .video-btn-sec .expand-btn .btn-content {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem 2rem;
}
.video-sec .video-top-row .video-btn-sec .expand-btn .btn-content .arrow-icon {
  width: 2rem;
  height: 2rem;
  transition: transform 0.3s ease;
  margin-left: 5rem;
}
.video-sec .video-top-row .video-btn-sec .expand-btn .btn-content .btn-text {
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fff;
}
.video-sec .video-top-row .video-btn-sec .expand-btn:hover {
  width: 17rem;
  border-radius: 4rem;
  justify-content: flex-start;
  padding-left: 1.5rem;
}
.video-sec .video-top-row .video-btn-sec .expand-btn:hover .btn-content .arrow-icon {
  margin-left: 0;
}
.video-sec .video-top-row .video-btn-sec .expand-btn:hover .btn-content .btn-text {
  opacity: 1;
  transition-delay: 0.15s;
}
.video-sec .video-top-row .video-para-sec {
  max-width: 600px;
}
.video-sec .video-top-row .video-para-sec .animated-para {
  font-size: 1.8rem;
  line-height: 1.7;
  color: #9D9191;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .video-sec .video-top-row .video-para-sec .animated-para {
    font-size: 1.6rem;
  }
}
.video-sec .video-top-row .video-para-sec .animated-para span {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span {
  opacity: 1;
  transform: translateY(0);
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(1) {
  transition-delay: 0.05s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(2) {
  transition-delay: 0.1s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(3) {
  transition-delay: 0.15s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(4) {
  transition-delay: 0.2s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(5) {
  transition-delay: 0.25s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(6) {
  transition-delay: 0.3s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(7) {
  transition-delay: 0.35s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(8) {
  transition-delay: 0.4s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(9) {
  transition-delay: 0.45s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(10) {
  transition-delay: 0.5s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(11) {
  transition-delay: 0.55s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(12) {
  transition-delay: 0.6s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(13) {
  transition-delay: 0.65s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(14) {
  transition-delay: 0.7s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(15) {
  transition-delay: 0.75s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(16) {
  transition-delay: 0.8s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(17) {
  transition-delay: 0.85s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(18) {
  transition-delay: 0.9s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(19) {
  transition-delay: 0.95s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(20) {
  transition-delay: 1s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(21) {
  transition-delay: 1.05s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(22) {
  transition-delay: 1.1s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(23) {
  transition-delay: 1.15s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(24) {
  transition-delay: 1.2s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(25) {
  transition-delay: 1.25s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(26) {
  transition-delay: 1.3s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(27) {
  transition-delay: 1.35s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(28) {
  transition-delay: 1.4s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(29) {
  transition-delay: 1.45s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(30) {
  transition-delay: 1.5s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(31) {
  transition-delay: 1.55s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(32) {
  transition-delay: 1.6s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(33) {
  transition-delay: 1.65s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(34) {
  transition-delay: 1.7s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(35) {
  transition-delay: 1.75s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(36) {
  transition-delay: 1.8s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(37) {
  transition-delay: 1.85s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(38) {
  transition-delay: 1.9s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(39) {
  transition-delay: 1.95s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(40) {
  transition-delay: 2s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(41) {
  transition-delay: 2.05s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(42) {
  transition-delay: 2.1s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(43) {
  transition-delay: 2.15s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(44) {
  transition-delay: 2.2s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(45) {
  transition-delay: 2.25s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(46) {
  transition-delay: 2.3s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(47) {
  transition-delay: 2.35s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(48) {
  transition-delay: 2.4s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(49) {
  transition-delay: 2.45s;
}
.video-sec .video-top-row .video-para-sec .animated-para.in-view span:nth-child(50) {
  transition-delay: 2.5s;
}
@media only screen and (max-width: 767px) {
  .video-sec .animated-headline {
    font-size: 3.5rem;
    text-align: center;
  }
  .video-sec .video-para-sec .animated-para {
    text-align: center;
    font-size: 1rem;
  }
}

.tab-width {
  display: flex;
  justify-content: space-between;
}

.business-metlone {
  padding: 8rem 0;
  background: #FAF7FA;
}
@media only screen and (max-width: 767px) {
  .business-metlone {
    padding: 2rem 0;
    margin-top: -3rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .business-metlone {
    padding: 4rem 0;
  }
}
.business-metlone .sub-head {
  text-align: center;
  margin-top: 5rem;
}
@media only screen and (max-width: 767px) {
  .business-metlone .sub-head {
    margin-top: 1rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .business-metlone .sub-head {
    margin-top: 1rem;
  }
}
.business-metlone .sub-para {
  text-align: center;
}
.business-metlone .business-card-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(36.9rem, 1fr));
  justify-content: center;
  gap: 3rem;
  margin-top: 8rem;
}
@media only screen and (max-width: 767px) {
  .business-metlone .business-card-row {
    margin-top: 3rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .business-metlone .business-card-row {
    grid-template-columns: none;
    margin-top: 3rem;
  }
}
.business-metlone .business-card {
  width: 41.9rem;
  height: auto;
  background: #ffffff;
  border-radius: 2rem;
  overflow: hidden;
  text-align: left;
  padding: 2rem;
  position: relative;
  box-shadow: none;
  transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s;
  z-index: 1;
}
.business-metlone .business-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 90%, rgba(156, 39, 176, 0.65) 0%, rgba(156, 39, 176, 0.35) 25%, rgba(156, 39, 176, 0.15) 50%, transparent 70%);
  opacity: 0;
  z-index: 2;
  transition: opacity 0.4s ease;
  -webkit-transition: opacity 0.4s ease;
  -moz-transition: opacity 0.4s ease;
  -ms-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  pointer-events: none;
}
.business-metlone .business-card:hover::after {
  opacity: 1;
}
.business-metlone .business-card img {
  width: 100%;
  height: 24rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-bottom: 1px solid #eee;
  border-radius: 1.5rem;
  position: relative;
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  .business-metlone .business-card img {
    height: auto;
  }
}
@media only screen and (max-width: 767px) {
  .business-metlone .business-card {
    width: 100%;
    height: auto;
  }
}

.card-title {
  position: relative;
  z-index: 3;
  font-size: 2rem;
  font-weight: 700;
  line-height: 20px;
  color: #000000;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.card-desc {
  position: relative;
  z-index: 3;
  font-weight: 400;
}

.card-sec {
  padding: 3rem 0;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .card-sec {
    padding: 0;
  }
}
.card-sec .card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(56.8rem, 1fr));
  gap: 3rem;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .card-sec .card-grid {
    grid-template-columns: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .card-sec .card-grid {
    display: none;
  }
}
.card-sec .info-card {
  background: #ffffff;
  border-radius: 2rem;
  padding: 3rem;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
  z-index: 1;
}
.card-sec .info-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 90%, rgba(156, 39, 176, 0.65) 0%, rgba(156, 39, 176, 0.35) 25%, rgba(156, 39, 176, 0.15) 50%, transparent 70%);
  opacity: 0;
  z-index: 2;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.card-sec .info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.08);
}
.card-sec .info-card:hover::after {
  opacity: 1;
}
.card-sec .info-card .card-img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.5rem;
  margin-top: 2rem;
  position: relative;
  z-index: 3;
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .card-sec .info-card {
    padding: 2rem;
  }
  .card-sec .info-card .card-img {
    margin-top: 1.5rem;
  }
}

.tab-section {
  background: #EFFCFF;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .tab-section {
    padding: 5rem 0;
  }
}
.tab-section .tab-clr {
  background: #fff;
}
.tab-section .tab-clr .tabs {
  display: flex;
  justify-content: center;
  height: 10rem;
  background: #fff;
  width: 145rem;
}
@media only screen and (max-width: 767px) {
  .tab-section .tab-clr .tabs {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .tab-section .tab-clr .tabs {
    height: 8rem;
  }
}
.tab-section .tab-clr .tabs section.tab-width {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  border-top: 1px solid #e0e0e0;
}
.tab-section .tab-clr .tabs .tab {
  position: relative;
  flex: 1;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 600;
  font-family: inherit;
  text-align: center;
  padding: 2.5rem 0;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  border: none;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .tab-section .tab-clr .tabs .tab {
    font-size: 1.4rem;
  }
}
.tab-section .tab-clr .tabs .tab::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 1px;
  background: #EEEEEE;
}
.tab-section .tab-clr .tabs .tab:last-child::after {
  display: none;
}
.tab-section .tab-clr .tabs .tab::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: #FF4779;
  opacity: 0;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  border-radius: 1px;
}
.tab-section .tab-clr .tabs .tab.active {
  font-weight: bold;
  background: #fff;
  z-index: 2;
}
.tab-section .tab-clr .tabs .tab.active::before {
  opacity: 1;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .tab-section .tab-clr .tabs .tab {
    font-size: 1.4rem;
    padding: 1.5rem 0;
  }
  .tab-section .tab-clr .tabs .tab::before {
    width: 50%;
  }
}
.tab-section .tab-content .card {
  display: none;
  padding: 8rem 0;
  border-radius: 1rem;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  text-align: left;
}
.tab-section .tab-content .card.active {
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .tab-section .tab-content .card {
    padding: 4rem 0;
  }
}
@media only screen and (max-width: 767px) {
  .tab-section .tab-content .card {
    display: block !important;
    padding: 2rem 0;
    text-align: center;
    margin-top: -2rem;
  }
  .tab-section .tab-content .card:last-child {
    border-bottom: none;
  }
}
.tab-section .tab-content .card .tab-main {
  display: flex;
  gap: 8rem;
}
@media only screen and (max-width: 767px) {
  .tab-section .tab-content .card .tab-main {
    flex-direction: column-reverse;
    gap: 3rem;
    align-items: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .tab-section .tab-content .card .tab-main {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .tab-section .tab-content .card .left-sec {
    width: 90rem;
  }
}
.tab-section .tab-content .card .left-sec img {
  width: 59rem;
  height: 59rem;
  border-radius: 10px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .tab-section .tab-content .card .left-sec img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .tab-section .tab-content .card .left-sec img {
    width: 100%;
    height: auto;
  }
}
@media only screen and (max-width: 767px) {
  .tab-section .tab-content .card .left-sec {
    width: 100%;
    text-align: center;
  }
}
.tab-section .tab-content .card .right-sec {
  margin-top: 15rem;
}
@media only screen and (max-width: 767px) {
  .tab-section .tab-content .card .right-sec {
    margin-top: 0;
    text-align: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .tab-section .tab-content .card .right-sec {
    margin-top: 0;
  }
}
.tab-section .tab-content .card .right-sec .sub-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
@media only screen and (max-width: 767px) {
  .tab-section .tab-content .card .right-sec .sub-heading {
    justify-content: center;
  }
}
.tab-section .tab-content .card .right-sec .sub-heading .line {
  width: 4.5rem;
  height: 1.5px;
  background: #C6C6C6;
  border-radius: 2px;
}
@media only screen and (max-width: 767px) {
  .tab-section .tab-content .card .right-sec .sub-heading .line {
    width: 3rem;
  }
}
.tab-section .tab-content .card .right-sec .sub-heading .text {
  font-size: 2rem;
  font-weight: 500;
  color: #000000;
  letter-spacing: 0.5px;
}
@media only screen and (max-width: 767px) {
  .tab-section .tab-content .card .right-sec .sub-heading .text {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .tab-section .tab-content .card .right-sec .sub-heading .text {
    font-size: 1.5rem;
  }
}
.tab-section .tab-content .card .right-sec .tab-head {
  margin-bottom: 10px;
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 47.5px;
  color: #000000;
}
@media only screen and (max-width: 767px) {
  .tab-section .tab-content .card .right-sec .tab-head {
    font-size: 2.8rem;
    line-height: 1.3;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .tab-section .tab-content .card .right-sec .tab-head {
    font-size: 3.5rem;
    font-weight: 600;
  }
  .tab-section .tab-content .card .right-sec .tab-head br {
    display: none;
  }
}
.tab-section .tab-content .card .right-sec p {
  margin-bottom: 20px;
  font-size: 1.6rem;
  color: #000000;
  opacity: 0.6;
  line-height: 22.5px;
}
@media only screen and (max-width: 767px) {
  .tab-section .tab-content .card .right-sec p {
    font-size: 1.6rem;
    line-height: 2.2rem;
    max-width: 90%;
    margin: 0 auto 2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .tab-section .tab-content .card .right-sec p {
    font-size: 1.4rem;
  }
}
.tab-section .tab-content .card .right-sec .hero-btns {
  justify-content: left;
  margin-top: 3rem;
}
@media only screen and (max-width: 767px) {
  .tab-section .tab-content .card .right-sec .hero-btns {
    justify-content: center;
  }
}

.step-section {
  padding: 8rem 0;
  background: #fff;
  position: relative;
  height: 100rem;
}
@media only screen and (max-width: 767px) {
  .step-section {
    padding: 5rem 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .step-section {
    padding: 4rem 0;
  }
}
.step-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(to bottom, rgba(165, 162, 162, 0.1), rgba(162, 156, 156, 0));
  pointer-events: none;
}
.step-section .sub-head,
.step-section .sub-para {
  text-align: left;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .step-section .sub-head,
  .step-section .sub-para {
    text-align: center;
  }
}
.step-section .steps-line {
  position: relative;
  margin-top: 8rem;
}
@media only screen and (max-width: 767px) {
  .step-section .steps-line {
    margin-top: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2rem;
  }
}
.step-section .steps-line .line-img {
  width: 100%;
  display: block;
}
@media only screen and (max-width: 767px) {
  .step-section .steps-line .line-img {
    display: none;
  }
}
.step-section .steps-line .stepper {
  display: none;
}
@media only screen and (max-width: 767px) {
  .step-section .steps-line .stepper {
    display: block;
    width: 30%;
    max-width: 120px;
    height: 53rem;
  }
}
.step-section .steps-line .step-content-wrapper {
  position: absolute;
  top: 122px;
  left: 0px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .step-section .steps-line .step-content-wrapper {
    top: 75px;
  }
}
@media only screen and (max-width: 767px) {
  .step-section .steps-line .step-content-wrapper {
    position: static;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 7rem;
    align-items: flex-start;
    margin-top: 4rem;
  }
}
.step-section .steps-line .step-content-wrapper .step {
  flex: 1;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .step-section .steps-line .step-content-wrapper .step {
    text-align: left;
  }
}
.step-section .steps-line .step-content-wrapper .step p {
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 2.8rem;
}
@media only screen and (max-width: 767px) {
  .step-section .steps-line .step-content-wrapper .step p {
    font-size: 2.3rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .step-section .steps-line .step-content-wrapper .step p {
    font-size: 1.5rem;
  }
}
.step-section .steps-line .step-content-wrapper .step span {
  color: #9D9191;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .step-section .steps-line .step-content-wrapper .step span br {
    display: none;
  }
}
.step-section .img-sec {
  padding: 4rem 0;
  margin-top: 20rem;
}
@media only screen and (max-width: 767px) {
  .step-section .img-sec {
    margin-top: 4rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .step-section .img-sec {
    margin-top: 16rem;
  }
}
.step-section .img-sec .sub-head {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .step-section .img-sec .sub-head br {
    display: none;
  }
}
.step-section .img-sec .img-cont {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 6rem;
}
@media only screen and (max-width: 767px) {
  .step-section .img-sec .img-cont {
    margin-top: 6rem;
  }
}
.step-section .img-sec .img-cont img {
  width: 92rem;
  height: 45rem;
}
@media only screen and (max-width: 767px) {
  .step-section .img-sec .img-cont img {
    width: 100%;
    height: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .step-section .img-sec .img-cont img {
    width: 100%;
    height: auto;
  }
}

.mg-t-25 {
  margin-top: 28rem;
}
@media only screen and (max-width: 767px) {
  .mg-t-25 {
    margin-top: 30rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .mg-t-25 {
    margin-top: 6rem;
  }
}

.ct-section {
  position: relative;
  background: url("../images/ct-img.svg") center/cover no-repeat;
  background-size: cover;
  padding: 6rem 0;
  height: 60rem;
  border-radius: 2rem;
}
@media only screen and (max-width: 767px) {
  .ct-section {
    padding: 3rem 0;
    height: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .ct-section {
    height: auto;
    padding: 3rem 0;
  }
}
.ct-section .ct-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  padding: 2rem 5rem;
}
@media only screen and (max-width: 767px) {
  .ct-section .ct-container {
    padding: 2rem 3rem;
    flex-direction: column;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .ct-section .ct-container {
    padding: 0rem 2rem;
  }
}
.ct-section .ct-left {
  flex: 1;
}
@media only screen and (max-width: 767px) {
  .ct-section .ct-left {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}
.ct-section .ct-left span {
  font-size: 1.6rem;
  color: #000000;
  opacity: 0.6;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .ct-section .ct-left span {
    text-align: center;
  }
}
.ct-section .ct-left .ct-heading {
  font-size: 4.8rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  .ct-section .ct-left .ct-heading {
    text-align: center;
    font-size: 3.5rem;
    line-height: 36px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .ct-section .ct-left .ct-heading {
    line-height: 38px;
    font-size: 3.5rem;
    margin-top: 1rem;
  }
  .ct-section .ct-left .ct-heading br {
    display: none;
  }
}
.ct-section .ct-left .hero-btns {
  justify-content: flex-start;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .ct-section .ct-left .hero-btns {
    margin-top: 2rem;
  }
}
.ct-section .ct-left .hero-btns .primary-btn {
  color: #fff;
}
.ct-section .ct-left .hero-btns .primary-btn .btn-text {
  color: #fff;
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  opacity: 1.8;
}
.ct-section .ct-left .hero-btns .primary-btn .arrow-icon {
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
}
.ct-section .ct-left .hero-btns .primary-btn:hover {
  background: #FF4779;
}
.ct-section .ct-left .hero-btns .primary-btn:hover .btn-text {
  transform: translateX(-15px);
  opacity: 0;
}
.ct-section .ct-left .hero-btns .primary-btn:hover .arrow-icon {
  transform: translateX(-45px);
}
@media only screen and (max-width: 767px) {
  .ct-section .ct-left .hero-btns {
    justify-content: center;
  }
}
.ct-section .ct-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.ct-section .ct-right .ct-img {
  width: 45rem;
  height: 45rem;
  display: block;
}
@media only screen and (max-width: 767px) {
  .ct-section .ct-right .ct-img {
    width: 100%;
    height: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .ct-section .ct-right .ct-img {
    width: 100%;
    height: auto;
  }
}

.footer-sec {
  margin-top: 10rem;
  background: #ffffff;
  padding: 6rem 0 1rem;
  font-size: 1.2rem;
  color: #000000;
  border-top: 1px solid #f7f7f7;
  height: 39rem;
}
@media only screen and (max-width: 767px) {
  .footer-sec {
    height: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .footer-sec {
    margin-top: 4rem;
  }
}
.footer-sec .footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10rem;
  margin-bottom: 8rem;
}
@media only screen and (max-width: 767px) {
  .footer-sec .footer-content {
    gap: 0;
    display: grid;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .footer-sec .footer-content {
    display: grid;
    justify-content: normal;
    gap: 5rem;
  }
}
.footer-sec .footer-brand {
  flex: 1;
  min-width: 32.4rem;
}
@media only screen and (max-width: 767px) {
  .footer-sec .footer-brand {
    min-width: 100%;
  }
}
.footer-sec .footer-brand .logo {
  max-width: 14rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  .footer-sec .footer-brand .logo {
    width: 100%;
    height: auto;
  }
}
.footer-sec .footer-brand .footer-para {
  color: #9D9191;
  font-size: 1.4rem;
}
.footer-sec .footer-brand .social-icons {
  display: flex;
  margin-top: 4rem;
  gap: 2rem;
}
@media only screen and (max-width: 767px) {
  .footer-sec .footer-brand .social-icons {
    margin-top: 2rem;
  }
}
.footer-sec .footer-brand .social-icons img {
  width: 2rem;
  height: 2rem;
}
.footer-sec .footer-brand .social-icons .img-wd {
  width: 2rem;
  height: 1.8rem;
}
.footer-sec .footer-brand .social-icons a {
  color: #000000;
  font-size: 1.2rem;
  transition: color 0.3s;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
}
.footer-sec .footer-brand .social-icons a:hover {
  color: #01B2D6;
}
.footer-sec .footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  flex: 3;
  gap: 0;
}
@media only screen and (max-width: 767px) {
  .footer-sec .footer-links {
    gap: 0;
    margin-top: 4rem;
  }
}
.footer-sec .footer-links .footer-head {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #000000;
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .footer-sec .footer-links .footer-head {
    font-size: 1.4rem;
  }
}
.footer-sec .footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-sec .footer-links ul li {
  margin-bottom: 0.6rem;
  color: #000000;
  font-size: 1.4rem;
}
.footer-sec .footer-links ul li a {
  color: #9D9191;
  text-decoration: none;
  transition: color 0.3s;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
  font-size: 1.4rem;
}
@media only screen and (max-width: 767px) {
  .footer-sec .footer-links ul li a {
    font-size: 1.2rem;
  }
}
.footer-sec .footer-links ul li a:hover {
  color: #01B2D6;
}
.footer-sec .footer-links .contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: #9D9191;
}
@media only screen and (max-width: 767px) {
  .footer-sec .footer-links .contact-list li {
    font-size: 1.2rem;
  }
}
.footer-sec .footer-links .contact-list li img {
  width: 2rem;
  height: 2rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer-sec .footer-bottom {
  border-top: 1px solid #000000;
  font-size: 1.4rem;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  color: #000000;
}
.footer-sec .footer-bottom .all-rights {
  font-size: 1.4rem;
  color: #787575;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .footer-sec .footer-bottom .all-rights {
    font-size: 1rem;
  }
}

.feature-sec {
  position: relative;
  padding: 8rem 0;
  margin-top: 10rem;
  text-align: center;
  background: #fff;
  overflow: hidden;
  margin-bottom: -12rem;
}
@media only screen and (max-width: 767px) {
  .feature-sec {
    margin-top: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .feature-sec {
    margin-top: 3rem;
  }
}
.feature-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 330px;
  background: url("../images/feature-bg.svg") center top/cover no-repeat;
  z-index: 0;
}
.feature-sec .global-width {
  position: relative;
  z-index: 2;
}
.feature-sec .main-head,
.feature-sec .sub-para {
  text-align: center;
  margin-bottom: 3rem;
}

.platform-cards {
  position: relative;
  padding: 3rem 0;
}
@media only screen and (max-width: 767px) {
  .platform-cards {
    padding: 2rem 0;
    margin-bottom: 3rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .platform-cards {
    margin-top: -3rem;
  }
}
.platform-cards .global-width {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .platform-cards .global-width {
    padding: 0 1.5rem;
  }
}
.platform-cards .global-width .sub-head {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .platform-cards .global-width .sub-head {
    font-size: 2.4rem;
    line-height: 38px;
    letter-spacing: -1px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .platform-cards .global-width .sub-head {
    font-size: 4.8rem;
    line-height: 58px;
  }
}
.platform-cards .global-width .sub-para {
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .platform-cards .global-width .sub-para {
    margin-top: 1.2rem;
    line-height: 1.6;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .platform-cards .global-width .sub-para br {
    display: none;
  }
}
.platform-cards .card-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
@media only screen and (max-width: 767px) {
  .platform-cards .card-stack {
    position: static;
    gap: 2rem;
    margin-top: 3rem;
  }
}
.platform-cards .card-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-radius: 1.6rem;
  padding: 2rem 2rem;
  position: sticky;
  top: 80px;
  gap: 7rem;
  transform-origin: center;
  transition: transform 0.3s ease, top 0.3s ease;
  height: 40rem;
}
@media only screen and (max-width: 767px) {
  .platform-cards .card-item {
    position: static;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem;
    gap: 2.5rem;
    transform: none;
    top: auto;
    height: auto;
    min-height: -moz-fit-content;
    min-height: fit-content;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .platform-cards .card-item {
    gap: 0;
    height: 30rem;
  }
}
.platform-cards .card-item span {
  color: #B4B6B8;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: -1px;
}
@media only screen and (max-width: 767px) {
  .platform-cards .card-item span {
    font-size: 2rem;
  }
}
.platform-cards .card-item .card-img {
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .platform-cards .card-item .card-img {
    width: 26rem;
    height: 26rem;
  }
}
.platform-cards .card-item .card-img .img-desktop {
  display: block;
  border-radius: 1.2rem;
}
.platform-cards .card-item .card-img .img-mobile {
  display: none;
}
@media only screen and (max-width: 767px) {
  .platform-cards .card-item .card-img {
    order: 1;
  }
  .platform-cards .card-item .card-img .img-desktop {
    display: none;
  }
  .platform-cards .card-item .card-img .img-mobile {
    display: block;
    width: 20rem;
    margin: 0 auto;
    height: auto;
    border-radius: 1.2rem;
  }
}
.platform-cards .card-item .card-img img {
  border-radius: 1.2rem;
}
@media only screen and (max-width: 767px) {
  .platform-cards .card-item .card-img img {
    display: none;
  }
}
.platform-cards .card-item .card-content {
  flex: 1;
  text-align: left;
  margin-left: 2rem;
}
@media only screen and (max-width: 767px) {
  .platform-cards .card-item .card-content {
    text-align: center;
    order: 2;
    margin-left: 0;
  }
}
.platform-cards .card-item .card-content .card-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #000000;
  line-height: 50px;
  margin-top: 2rem;
  letter-spacing: -1px;
}
@media only screen and (max-width: 767px) {
  .platform-cards .card-item .card-content .card-title {
    font-size: 3rem;
    line-height: 32px;
    margin-top: 0rem;
    letter-spacing: 0;
    margin-bottom: 2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .platform-cards .card-item .card-content .card-title {
    line-height: 39px;
    font-size: 3rem;
  }
}
.platform-cards .card-item .card-content .card-subtitle {
  font-size: 2.4rem;
  font-weight: 500;
  color: #000000;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  .platform-cards .card-item .card-content .card-subtitle {
    font-size: 1.4rem;
    margin-bottom: 10px;
    margin-top: 2rem;
    line-height: 26px;
  }
}
.platform-cards .card-item .card-content .sub-para {
  margin-top: -1rem;
  margin-bottom: -2rem;
}
@media only screen and (max-width: 767px) {
  .platform-cards .card-item .card-content .sub-para {
    margin-top: 0rem;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: -1rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .platform-cards .card-item .card-content .sub-para {
    text-align: left;
  }
}
@media only screen and (max-width: 767px) {
  .platform-cards .card-item.reverse {
    flex-direction: column;
  }
}

.contact-section {
  position: relative;
  padding: 6rem 0;
}
@media only screen and (max-width: 767px) {
  .contact-section {
    padding: 3rem 0;
    margin-top: 3rem;
    margin-bottom: -4rem;
  }
}
@media only screen and (max-width: 767px) {
  .contact-section .sub-head {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .contact-section .sub-para {
    text-align: center;
  }
}
.contact-section .contact-content {
  gap: 7rem;
  display: flex;
  align-items: flex-start;
  margin-top: 11rem;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-content {
    flex-direction: column;
    margin-top: 3rem;
    gap: 4rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .contact-section .contact-content {
    margin-top: 6rem;
    gap: 0;
  }
}
.contact-section .contact-content .contact-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-content .contact-left {
    display: block;
    text-align: center;
    margin-top: 2rem;
  }
}
.contact-section .contact-content .contact-left .sub-head {
  margin-top: 1rem;
  color: #000000;
  font-size: 5rem;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-content .contact-left .sub-head {
    display: block;
    color: #000000;
    font-size: 4rem;
    margin-bottom: 2rem;
    font-weight: 700;
  }
}
.contact-section .contact-content .contact-left .sub-para {
  margin-top: 2rem;
  color: #787575;
  font-size: 1.6rem;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-content .contact-left .sub-para {
    margin-top: 1rem;
    font-size: 1.4rem;
    max-width: 90%;
    margin-inline: auto;
  }
}
.contact-section .contact-content .contact-left img {
  width: 100%;
  border-radius: 1.6rem;
  display: block;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-content .contact-left img {
    margin-top: 2rem;
  }
}
.contact-section .contact-content .contact-left .phone-icon,
.contact-section .contact-content .contact-left .email-icon {
  position: absolute;
  z-index: 3;
  width: 6rem;
  height: 6rem;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.contact-section .contact-content .contact-left .phone-icon:hover,
.contact-section .contact-content .contact-left .email-icon:hover {
  transform: scale(1.1);
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-content .contact-left .phone-icon,
  .contact-section .contact-content .contact-left .email-icon {
    width: 4rem;
    height: 4rem;
  }
}
.contact-section .contact-content .contact-left .phone-icon {
  background-image: url("../images/call.png");
  bottom: 14%;
  left: 10%;
}
.contact-section .contact-content .contact-left .email-icon {
  background-image: url("../images/email-contact.png");
  bottom: 14%;
  right: 66%;
}
.contact-section .contact-content .contact-left .contact-info {
  display: none;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-content .contact-left .contact-info {
    display: none;
  }
}
.contact-section .contact-content .contact-left .contact-info .details {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.contact-section .contact-content .contact-left .contact-info .details .cont-det {
  display: grid;
  gap: 1rem;
}
.contact-section .contact-content .contact-left .contact-info .details .cont-det h4 {
  margin: 0;
  color: #787575;
  font-size: 1.6rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-content .contact-left .contact-info .details .cont-det h4 {
    font-size: 1.4rem;
  }
}
.contact-section .contact-content .contact-left .contact-info .details .cont-det p {
  color: #000000;
  font-size: 2rem;
  line-height: 22px;
  font-weight: 500;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-content .contact-left .contact-info .details .cont-det p {
    font-size: 1.3rem;
  }
}
.contact-section .contact-content .contact-left .contact-info .details .cont-det p a {
  text-decoration: none;
  color: #000000;
}
.contact-section .contact-content .contact-right {
  flex: 1;
  position: sticky;
  top: 10rem;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-content .contact-right {
    width: 100%;
    position: static;
  }
}
.contact-section .contact-content .contact-right form {
  padding: 3rem;
  border-radius: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-content .contact-right form {
    padding: 2rem;
  }
}
.contact-section .contact-content .contact-right form .form-group {
  display: flex;
  gap: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-content .contact-right form .form-group {
    display: grid;
  }
}
.contact-section .contact-content .contact-right form input,
.contact-section .contact-content .contact-right form textarea {
  width: 100%;
  padding: 1.2rem 1.5rem;
  border-radius: 0.8rem;
  font-size: 1.4rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  border: 1px solid #C8C8C8;
}
.contact-section .contact-content .contact-right form textarea {
  min-height: 12rem;
  resize: none;
}
.contact-section .contact-content .contact-right form button {
  background: #01B2D6;
  color: #fff;
  border: none;
  padding: 1.4rem;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.contact-section .contact-content .contact-right form button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.contact-section .contact-content .contact-right .contact-details-mobile {
  display: none;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-content .contact-right .contact-details-mobile {
    display: flex;
    gap: 3rem;
    margin-top: 6rem;
  }
  .contact-section .contact-content .contact-right .contact-details-mobile .details {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .contact-section .contact-content .contact-right .contact-details-mobile .details .cont-det {
    display: grid;
    gap: 0.5rem;
  }
  .contact-section .contact-content .contact-right .contact-details-mobile .details .cont-det h4 {
    font-size: 1.4rem;
    color: #787575;
    margin: 0;
  }
  .contact-section .contact-content .contact-right .contact-details-mobile .details .cont-det p {
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0;
  }
  .contact-section .contact-content .contact-right .contact-details-mobile .details .cont-det p a {
    color: #000000;
    text-decoration: none;
  }
}

.about-section {
  position: relative;
  overflow: hidden;
  padding: 10.6rem 0;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .about-section {
    padding: 6.6rem 0;
  }
}
.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: bgChange 15s infinite ease-in-out;
  z-index: -1;
}
.about-section .global-width {
  position: relative;
  z-index: 2;
}
.about-section .about-hero {
  text-align: center;
  margin: 0 auto 100px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .about-section .about-hero {
    margin: 0 auto 80px;
  }
}
.about-section .about-hero .main-head {
  margin-top: 7rem;
}
@media only screen and (max-width: 767px) {
  .about-section .about-hero .main-head {
    margin-top: 6rem;
  }
}
.about-section .about-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 6rem;
  margin-top: 16rem;
}
@media only screen and (max-width: 767px) {
  .about-section .about-content {
    margin-top: 7rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .about-section .about-content {
    margin-top: 0;
    gap: 0;
  }
}
.about-section .about-content .left {
  flex: 1;
}
.about-section .about-content .left .tag-head {
  font-size: 2rem;
  color: #000000;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.5;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .about-section .about-content .left .tag-head {
    margin-bottom: -9px;
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .about-section .about-content .left .tag-head {
    font-size: 1.5rem;
  }
}
.about-section .about-content .left .tag-sub {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.4;
  color: #000000;
  opacity: 0.8;
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .about-section .about-content .left .tag-sub {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .about-section .about-content .left .tag-sub {
    font-size: 2.8rem;
  }
  .about-section .about-content .left .tag-sub br {
    display: none;
  }
}
.about-section .about-content .right {
  flex: 1.2;
  margin-top: 6rem;
}
@media only screen and (max-width: 767px) {
  .about-section .about-content .right {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .about-section .about-content .right .sub-para {
    text-align: left;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .about-section .about-content .right .sub-para {
    text-align: left;
  }
}
@media only screen and (max-width: 767px) {
  .about-section {
    padding: 6rem 0;
  }
  .about-section .about-hero {
    margin-bottom: 6rem;
  }
  .about-section .about-content {
    flex-direction: column;
    gap: 0;
  }
  .about-section .about-content .left,
  .about-section .about-content .right {
    width: 100%;
  }
}

@keyframes bgChange {
  0% {
    background-image: url("../images/grad-img.svg");
    opacity: 1;
  }
  33% {
    background-image: url("../images/grad-img2.svg");
    opacity: 1;
  }
  66% {
    background-image: url("../images/grad-img3.svg");
    opacity: 1;
  }
  100% {
    background-image: url("../images/grad-img.svg");
    opacity: 1;
  }
}
.about-card {
  background: #FAF7FA;
  padding: 8rem 0;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .about-card {
    padding: 4rem 0;
  }
}
.about-card .global-width {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .about-card .global-width {
    gap: 30px;
  }
}
.about-card .section-title {
  font-size: 3.2rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 767px) {
  .about-card .section-title {
    font-size: 3rem;
    text-align: center;
  }
}
.about-card .card-box {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 2rem;
  padding: 4rem 5rem;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .about-card .card-box {
    padding: 3rem 3rem;
  }
}
.about-card .card-box:hover {
  transform: translateY(-5px);
}
.about-card .card-box .icon-box {
  flex-shrink: 0;
  width: 27rem;
  height: 27rem;
  border-radius: 1.6rem;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 4rem;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .about-card .card-box .icon-box {
    width: 20rem;
    height: 20rem;
  }
}
.about-card .card-box .icon-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.about-card .card-box .icon-box img:hover {
  transform: scale(1.05);
}
.about-card .card-box .content h4 {
  font-size: 3.2rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 12px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .about-card .card-box .content h4 {
    font-size: 2.5rem;
  }
}
.about-card .card-box .content .sub-para {
  font-size: 2rem;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .about-card .card-box .content .sub-para {
    font-size: 1.8rem;
    text-align: left;
  }
}
@media only screen and (max-width: 767px) {
  .about-card {
    padding: 3rem 0;
  }
  .about-card .global-width {
    gap: 3rem;
  }
  .about-card .card-box {
    flex-direction: column;
    text-align: center;
    padding: 3rem 2.5rem;
  }
  .about-card .card-box .icon-box {
    margin: 0 0 20px 0;
    width: 100px;
    height: 100px;
  }
  .about-card .card-box .content h4 {
    font-size: 2.5rem;
  }
}

.mg-t-8 {
  margin-top: 8rem;
}

.terms-conditions {
  padding: 6rem 0;
  margin-top: 4rem;
}
@media only screen and (max-width: 767px) {
  .terms-conditions {
    padding: 3rem 0;
    margin-top: 8rem;
  }
}
@media only screen and (max-width: 767px) {
  .terms-conditions .sub-head {
    text-align: center;
  }
}
.terms-conditions h3 {
  margin-top: 2rem;
  margin-bottom: -1rem;
}
@media only screen and (max-width: 767px) {
  .terms-conditions h3 {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .terms-conditions .sub-para {
    margin-top: 1rem;
  }
}

.privacy-policy {
  padding: 6rem 0;
  margin-top: 4rem;
}
@media only screen and (max-width: 767px) {
  .privacy-policy {
    padding: 3rem 0;
    margin-top: 8rem;
  }
}
.privacy-policy h3 {
  margin-top: 2rem;
  margin-bottom: -1rem;
}
@media only screen and (max-width: 767px) {
  .privacy-policy h3 {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .privacy-policy .sub-para {
    margin-top: 1rem;
  }
}

.link-tag {
  text-decoration: none;
  color: #01B2D6;
}

.mg-b-2 {
  margin-bottom: 2rem !important;
}/*# sourceMappingURL=style.css.map */