@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");
.btn-common {
  font-size: 0.85rem;
  border-radius: 0.5rem;
  overflow: hidden;
  color: #fff;
  background: #B4198A;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 0 2rem;
  position: relative;
  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;
}
.btn-common span {
  position: relative;
}
.btn-common::before {
  position: absolute;
  contain: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.btn-common::before {
  content: "";
  background: #CB2EA0;
  width: 120%;
  left: -10%;
  transform: skew(30deg);
  transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
.btn-common:hover::before {
  transform: translate3d(100%, 0, 0);
}
.btn-common.border-btn {
  border: 1px solid #CB2EA0;
  background: transparent;
  color: #CB2EA0;
}
.btn-common.border-btn::before {
  display: none;
}
.btn-common.border-btn:hover {
  background: #CB2EA0;
  color: #fff;
}

/* =============================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: #5F6368;
  font-family: "Plus Jakarta Sans", sans-serif;
}

img {
  width: 100%;
}

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

.global-width {
  width: 1200px;
  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: 3px;
  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-head {
  margin-bottom: 2.5rem;
  text-align: center;
}
.main-head .head {
  font-size: 3rem;
  color: #1F1F1F;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 768px) {
  .main-head .head {
    font-size: 4.6rem;
  }
}
.main-head .text {
  font-size: 1.6rem;
  color: #5F6368;
  line-height: 1.7;
}
.main-head.flex-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .main-head.flex-head {
    justify-content: center;
  }
}
@media only screen and (min-width: 768px) {
  .main-head.flex-head .head {
    margin-bottom: 0;
  }
}

.top-header {
  position: fixed;
  top: 0rem;
  left: 0;
  z-index: 10;
  width: 100%;
  height: auto;
  background-color: #fff;
}
.top-header.shrink {
  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;
}
.top-header.shrink .header-main {
  box-shadow: rgba(0, 0, 0, 0.06) 0 8px 24px;
}
.top-header .navbar {
  width: 100%;
  height: 6rem;
  margin-inline: auto;
  position: relative;
}
.top-header .navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  height: 100%;
}
.top-header .navbar-inner .logo-img {
  display: flex;
}
.top-header .navbar-inner .logo-img .image {
  width: 11rem;
}
.top-header .navbar-block {
  position: absolute;
  left: 0;
  height: calc(100vh - 4rem);
  opacity: 0;
  pointer-events: none;
  background-color: #fff;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}
.top-header .navbar-block.is-active {
  opacity: 1;
  pointer-events: initial;
}
@media only screen and (max-width: 768px) {
  .top-header .navbar-block {
    width: 100%;
  }
}
.top-header .login-area {
  display: flex;
  align-items: center;
  gap: 3rem;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .top-header .login-area {
    position: absolute;
    right: 6%;
    top: 7px;
  }
}
@media only screen and (max-width: 768px) {
  .top-header .login-area {
    position: absolute;
    right: 6%;
    top: 7px;
  }
}
@media only screen and (max-width: 767px) {
  .top-header .login-area {
    position: absolute;
    right: 6%;
    top: 7px;
  }
}
@media screen and (min-width: 62rem) {
  .top-header .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .top-header .navbar-block {
    position: initial;
    height: initial;
    opacity: 1;
    pointer-events: visible;
    background: none;
    transition: none;
  }
}
.top-header .menu {
  padding-block: 1rem;
  padding-inline: auto;
}
.top-header .menu-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: inherit;
  padding-block: 0.5rem;
  padding-inline: 1.5rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #3C3C3C;
  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;
}
.top-header .menu-link:hover {
  color: #CB2EA0;
}
.top-header .menu-link.active {
  position: relative;
  font-weight: 600;
  color: #1F1F1F;
}
@media only screen and (min-width: 768px) {
  .top-header .menu-link.active::before {
    content: "";
    width: 2rem;
    height: 1px;
    background-color: #CB2EA0;
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 768px) {
  .top-header .menu-link.login {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 3.5rem;
    background-color: #CB2EA0;
    color: #fff;
    border-radius: 0.4rem;
    padding: 0 1rem;
  }
  .top-header .menu-link.login:hover {
    background-color: #000;
  }
}
@media screen and (min-width: 62rem) {
  .top-header .menu {
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
    height: 100%;
    padding: unset;
  }
  .top-header .menu-item {
    display: flex;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
  }
  .top-header .menu-item:hover {
    background-color: #FFF4FC;
  }
  .top-header .menu-link {
    padding: unset;
  }
}
.top-header .dropdown-toggle {
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.top-header .dropdown-toggle i.bx {
  font-size: 1.5rem;
  line-height: inherit;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}
.top-header .dropdown-content {
  height: 0;
  overflow: hidden;
  background-color: #fff;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.top-header .dropdown-column, .top-header .dropdown-group, .top-header .dropdown-items {
  display: grid;
}
.top-header .dropdown-title {
  display: flex;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  padding-inline: 1rem;
}
.top-header .dropdown-icon i.bx {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #5F6368;
}
.top-header .dropdown-items {
  row-gap: 0.5rem;
}
.top-header .dropdown-link {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: inherit;
  color: #000;
  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;
  padding: 1rem;
  border-radius: 0.4rem;
}
@media only screen and (min-width: 768px) {
  .top-header .dropdown-link {
    height: 4rem;
  }
}
.top-header .dropdown-link .image {
  width: 2rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.top-header .dropdown-link:hover {
  background-color: #FAE9F5;
}
.top-header .dropdown-show > .dropdown-toggle i.bx {
  rotate: 180deg;
}
.top-header .dropdown-block {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  padding-top: 1rem;
  padding-inline: 1rem;
}
.top-header .dropdown .dropdown-toggle .image {
  width: 1.5rem;
}
@media screen and (min-width: 62rem) {
  .top-header .dropdown-toggle {
    -moz-column-gap: 0.35rem;
         column-gap: 0.35rem;
    pointer-events: none;
  }
  .top-header .dropdown-content {
    position: absolute;
    top: 6rem;
    opacity: 0;
    height: -moz-max-content;
    height: max-content;
    pointer-events: none;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.06) 0 8px 24px;
    transition: top 0.4s, opacity 0.3s ease;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.0784313725);
    border-radius: 1.2rem;
  }
  .top-header .dropdown-column {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    max-width: 75rem;
    margin-inline: auto;
  }
  .top-header .dropdown-group {
    padding: 1.5rem;
  }
  .top-header .dropdown-group:first-child, .top-header .dropdown-group:last-child {
    margin: unset;
  }
  .top-header .dropdown-items {
    padding-top: unset;
  }
  .top-header .dropdown-block {
    padding-top: unset;
    padding-inline: unset;
  }
  .top-header .dropdown:hover > .dropdown-content {
    cursor: initial;
    top: 4.6rem;
    opacity: 1;
    pointer-events: initial;
  }
  .top-header .dropdown:hover > .dropdown-toggle i.bx {
    rotate: 180deg;
  }
}
.top-header .burger {
  position: relative;
  display: block;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 1.5rem;
  height: 1rem;
  border: none;
  outline: none;
  visibility: visible;
}
.top-header .burger-line {
  position: absolute;
  display: block;
  right: 0;
  width: 100%;
  height: 2.15px;
  opacity: 1;
  rotate: 0deg;
  border-radius: 0.15rem;
  background-color: #000;
}
.top-header .burger-line:nth-child(1) {
  top: 0px;
}
.top-header .burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}
.top-header .burger-line:nth-child(3) {
  top: 1rem;
}
.top-header .burger.is-active > .burger-line:nth-child(1) {
  top: 0.5rem;
  rotate: 135deg;
}
.top-header .burger.is-active > .burger-line:nth-child(2) {
  opacity: 0;
}
.top-header .burger.is-active > .burger-line:nth-child(3) {
  top: 0.5rem;
  rotate: -135deg;
}
@media screen and (min-width: 62rem) {
  .top-header .burger {
    display: none;
    visibility: hidden;
  }
}
@keyframes fade-out {
  100% {
    opacity: 0;
    scale: 1.2;
  }
}

.banner-sec {
  padding: 8rem 0 5rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .banner-sec {
    padding: 4rem 0;
  }
}
.banner-sec .square {
  display: flex;
  width: 8.2rem;
  height: 8.2rem;
  background-color: rgba(203, 46, 160, 0.05);
  position: absolute;
  animation-name: animation-7;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: cubic-bezier(0.59, 0.59, 1, 1);
}
.banner-sec .square.square-1 {
  left: 19rem;
  top: 26rem;
}
.banner-sec .square.square-2 {
  right: 19rem;
  top: 19rem;
}
.banner-sec .square.square-3 {
  left: 13rem;
  bottom: 23rem;
}
.banner-sec .square.square-4 {
  right: 12rem;
  bottom: 32rem;
}
@media only screen and (max-width: 767px) {
  .banner-sec .square {
    display: none;
  }
}
.banner-sec .center-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 6rem;
}
@media only screen and (max-width: 767px) {
  .banner-sec .center-banner {
    display: grid;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .banner-sec .center-banner {
    display: grid;
  }
}
.banner-sec .center-banner .top-count {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #FFF4FC;
  border-radius: 5rem;
  height: 3.2rem;
  padding: 0 1rem;
  font-size: 1.4rem;
  color: #CB2EA0;
  margin-bottom: 2rem;
}
.banner-sec .center-banner .top-count .image {
  width: 4.4rem;
}
.banner-sec .center-banner .main-head {
  width: 64rem;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .banner-sec .center-banner .main-head {
    width: 100%;
  }
}
.banner-sec .center-banner .main-head .banner-head {
  font-size: 6.4rem;
  font-weight: 600;
  color: #1F1F1F;
  text-align: left;
  line-height: 1.5;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 768px) {
  .banner-sec .center-banner .main-head .banner-head {
    max-width: 1000px;
    font-size: 6rem;
    letter-spacing: -0.2rem;
  }
}
@media only screen and (max-width: 767px) {
  .banner-sec .center-banner .main-head .banner-head {
    font-size: 3.6rem;
    line-height: 46px;
    text-align: center;
  }
  .banner-sec .center-banner .main-head .banner-head br {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .banner-sec .center-banner .main-head .banner-head {
    font-size: 5rem;
    letter-spacing: 0;
    line-height: normal;
  }
}
.banner-sec .center-banner .main-head .text {
  color: #5F6368;
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: left;
}
@media only screen and (min-width: 768px) {
  .banner-sec .center-banner .main-head .text {
    max-width: 720px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .banner-sec .center-banner .main-head .text {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .banner-sec .center-banner .main-head .btn-area {
    display: flex;
    justify-content: center;
  }
}
.banner-sec .center-banner .main-head .btn-area .btn-common {
  width: 15rem;
  margin-top: 3rem;
}
.banner-sec .center-banner .btn-banner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
}
.banner-sec .center-banner .btn-banner .btn-tag {
  font-size: 1.6rem;
  height: 4.8rem;
  min-width: 16.3rem;
}
.banner-sec .center-banner .banner-image {
  display: flex;
  margin-top: -6rem;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .banner-sec .center-banner .banner-image {
    margin-top: 2rem;
  }
}
.banner-sec .center-banner .banner-image img {
  width: 60rem;
  height: 44rem;
}
@media only screen and (max-width: 767px) {
  .banner-sec .center-banner .banner-image img {
    width: 100%;
    height: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .banner-sec .center-banner .banner-image img {
    width: 100%;
    height: auto;
  }
}
@media only screen and (max-width: 767px) {
  .banner-sec .center-banner .banner-image {
    margin-top: 0;
  }
}
.banner-sec.bq-light-banner {
  background: linear-gradient(180deg, rgba(203, 46, 160, 0.01) 0%, rgba(203, 46, 160, 0.18) 100%);
  padding-bottom: 0;
}
.banner-sec.bq-light-banner .top-count {
  background-color: #fff;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.06);
}
.banner-sec.bq-light-banner .top-count .image {
  width: 1rem;
}
@media only screen and (min-width: 768px) {
  .banner-sec.bq-light-banner .main-head .banner-head {
    max-width: 920px;
  }
}
@media only screen and (min-width: 768px) {
  .banner-sec.bq-light-banner .main-head .text {
    max-width: 676px;
  }
}
.banner-sec.bq-light-banner .btn-banner {
  margin-top: 1rem;
}
.banner-sec.bq-quoter-banner {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 30.46%, rgba(44, 127, 196, 0.2) 100.05%);
  padding-bottom: 0;
}
.banner-sec.bq-quoter-banner .top-count {
  background-color: #fff;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.06);
}
.banner-sec.bq-quoter-banner .top-count .image {
  width: 2.4rem;
}
@media only screen and (min-width: 768px) {
  .banner-sec.bq-quoter-banner .main-head .banner-head {
    max-width: 872px;
  }
}
@media only screen and (min-width: 768px) {
  .banner-sec.bq-quoter-banner .main-head .text {
    max-width: 676px;
  }
}
.banner-sec.bq-quoter-banner .square {
  background-color: #E8F3FB;
}
.banner-sec.zeyrax-banner {
  background: linear-gradient(180deg, #fff 30.46%, #FFE59F 184.05%);
  padding-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .banner-sec.zeyrax-banner .main-head .banner-head {
    max-width: 896px;
  }
}
@media only screen and (min-width: 768px) {
  .banner-sec.zeyrax-banner .main-head .text {
    max-width: 563px;
  }
}
.banner-sec.zeyrax-banner .square {
  background-color: #F7EDD1;
}
.banner-sec.zeyrax-banner .top-count {
  background-color: #fff;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.06);
}
.banner-sec.zeyrax-banner .top-count .image {
  width: 1.2rem;
}

@keyframes animation-7 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-1000deg);
  }
}
.rfp-data {
  padding: 6rem 0 0;
}
@media only screen and (max-width: 767px) {
  .rfp-data {
    padding: 3rem 0 0;
  }
}
.rfp-data .rfp-row {
  display: flex;
  align-items: flex-start;
  gap: 28rem;
}
@media only screen and (max-width: 767px) {
  .rfp-data .rfp-row {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .rfp-data .rfp-row {
    gap: 0;
  }
}
.rfp-data .rfp-point {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 200px;
}
@media only screen and (max-width: 767px) {
  .rfp-data .rfp-point {
    width: 100%;
    justify-content: center;
  }
}
.rfp-data .rfp-point .dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #CB2EA0;
}
.rfp-data .rfp-point .label {
  font-size: 1.8rem;
  font-weight: 500;
  color: #CB2EA0;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  .rfp-data .rfp-point .label {
    font-size: 1.4rem;
  }
}
.rfp-data .main-head {
  flex: 1;
}
.rfp-data .main-head .head {
  font-size: 4.4rem;
  font-weight: 500;
  color: #1F1F1F;
  line-height: 1.5;
  text-align: left;
  letter-spacing: -2px;
}
@media only screen and (min-width: 768px) {
  .rfp-data .main-head .head {
    font-size: 4.4rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .rfp-data .main-head .head {
    font-size: 3rem;
    line-height: normal;
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 767px) {
  .rfp-data .main-head .head {
    font-size: 3rem;
    letter-spacing: -1px;
    line-height: 29px;
    text-align: center;
  }
}
.rfp-data .rfp-bg-section {
  margin-top: 2rem;
  padding: 3rem 3rem;
  background: url(/assets/images/bg-banner.svg) no-repeat center/cover;
  border-radius: 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
}
@media only screen and (max-width: 767px) {
  .rfp-data .rfp-bg-section {
    margin-top: 0;
    padding: 3rem 3rem;
    background: #F5F3F4;
    border-radius: 1.6rem;
    gap: 3rem;
    background-size: 203%;
    background-position: bottom;
    display: grid;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .rfp-data .rfp-bg-section {
    gap: 2rem;
  }
}
.rfp-data .rfp-bg-section .rfp-cards {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  max-width: 37rem;
}
@media only screen and (max-width: 767px) {
  .rfp-data .rfp-bg-section .rfp-cards {
    max-width: 100%;
  }
}
.rfp-data .rfp-bg-section .rfp-cards .rfp-card {
  background: #FFFFFF;
  border-radius: 1.2rem;
  padding: 2rem;
}
.rfp-data .rfp-bg-section .rfp-cards .rfp-card .number {
  font-size: 3.2rem;
  font-weight: 500;
  color: #CB2EA0;
  margin-bottom: 0.5rem;
  display: block;
}
.rfp-data .rfp-bg-section .rfp-cards .rfp-card .title {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 41.6px;
  margin-bottom: 0.5rem;
  color: #212121;
}
.rfp-data .rfp-bg-section .rfp-cards .rfp-card .desc {
  font-size: 1.6rem;
  color: #5F6368;
  font-weight: 400;
  line-height: 24px;
}
.rfp-data .rfp-bg-section .rfp-features {
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 2rem;
  width: 31rem;
  height: 15.5rem;
  border: 1px solid;
  padding: 2rem 2rem;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .rfp-data .rfp-bg-section .rfp-features {
    width: 100%;
  }
}
.rfp-data .rfp-bg-section .rfp-features .features-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 2rem;
  letter-spacing: -0.54px;
  margin-bottom: 1.2rem;
}
.rfp-data .rfp-bg-section .rfp-features .features-list li img {
  width: 2rem;
  height: 2rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 767px) {
  .rfp-data .rfp-bg-section .rfp-features {
    display: none;
  }
}
.rfp-data .rfp-bg-section .rfp-mobile-img {
  display: none;
}
.rfp-data .rfp-bg-section .rfp-mobile-img img {
  width: 100%;
  height: auto;
  border-radius: 1.2rem;
}
@media only screen and (max-width: 767px) {
  .rfp-data .rfp-bg-section .rfp-mobile-img img {
    margin-bottom: -2.9rem;
  }
}
@media only screen and (max-width: 767px) {
  .rfp-data .rfp-bg-section .rfp-mobile-img {
    display: block;
  }
}

.multiple-platform {
  margin-top: 7rem;
}
@media only screen and (max-width: 767px) {
  .multiple-platform {
    margin-top: 1rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .multiple-platform {
    margin-top: 2rem;
  }
}
.multiple-platform .section-intro {
  text-align: center;
  margin-bottom: 4rem;
}
.multiple-platform .section-intro .multiple-point {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.multiple-platform .section-intro .multiple-point .dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #CB2EA0;
}
.multiple-platform .section-intro .multiple-point .label {
  font-size: 1.8rem;
  font-weight: 500;
  color: #CB2EA0;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  .multiple-platform .section-intro .multiple-point .label {
    font-size: 1.4rem;
  }
}
.multiple-platform .section-intro .head {
  font-size: 4.4rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 auto;
  color: #212121;
}
@media only screen and (max-width: 767px) {
  .multiple-platform .section-intro .head {
    font-size: 3.4rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .multiple-platform .section-intro .head {
    font-size: 4rem;
  }
}
.multiple-platform .platform-row {
  display: flex;
  justify-content: space-between;
  padding: 6rem 4rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  height: 71rem;
}
@media only screen and (max-width: 767px) {
  .multiple-platform .platform-row {
    display: flex;
    flex-direction: column-reverse;
    height: auto;
    gap: 5rem;
    padding: 3rem 4rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .multiple-platform .platform-row {
    padding: 2rem 3rem;
    display: grid;
    height: auto;
  }
}
.multiple-platform .platform-row.pink-bg {
  background-color: #b8298c;
  position: relative;
  overflow: hidden;
}
.multiple-platform .platform-row.pink-bg::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 162.3rem;
  height: 41.8rem;
  background: url("/assets/images/violet-line.svg") no-repeat left bottom;
  background-size: contain;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .multiple-platform .platform-row.pink-bg::before {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .multiple-platform .platform-row.pink-bg::before {
    display: none;
  }
}
.multiple-platform .platform-row.blue-bg {
  background-color: #2C7FC4;
  position: relative;
  overflow: hidden;
}
.multiple-platform .platform-row.blue-bg::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 162.3rem;
  height: 41.8rem;
  background: url("/assets/images/blue-line.svg") no-repeat left bottom;
  background-size: contain;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .multiple-platform .platform-row.blue-bg::before {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .multiple-platform .platform-row.blue-bg::before {
    display: none;
  }
}
.multiple-platform .platform-row.purple-bg {
  background-color: #8E2D8E;
  position: relative;
  overflow: hidden;
}
.multiple-platform .platform-row.purple-bg::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 162.3rem;
  height: 41.8rem;
  background: url("/assets/images/purple-line.svg") no-repeat left bottom;
  background-size: contain;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .multiple-platform .platform-row.purple-bg::before {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .multiple-platform .platform-row.purple-bg::before {
    display: none;
  }
}
.multiple-platform .platform-row .platform-left {
  flex: 1;
}
.multiple-platform .platform-row .platform-left ul {
  list-style: none;
  padding: 0;
}
.multiple-platform .platform-row .platform-left ul li {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  opacity: 0.6;
  cursor: pointer;
}
.multiple-platform .platform-row .platform-left ul li.active {
  font-weight: 600;
  opacity: 1;
  font-size: 2.4rem;
}
@media only screen and (max-width: 767px) {
  .multiple-platform .platform-row .platform-left ul {
    display: none;
  }
}
.multiple-platform .platform-row .platform-broker {
  top: 41px;
  flex: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  z-index: 2;
  left: -70px;
  top: 47px;
}
@media only screen and (max-width: 767px) {
  .multiple-platform .platform-row .platform-broker {
    left: 0;
    top: 0;
  }
}
.multiple-platform .platform-row .platform-broker .pdt-img2 {
  width: 52.3rem;
  height: 53.3rem;
}
@media only screen and (max-width: 767px) {
  .multiple-platform .platform-row .platform-broker .pdt-img2 {
    width: 100%;
    height: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .multiple-platform .platform-row .platform-broker .pdt-img2 {
    width: 100%;
    height: 45.3rem;
  }
}
.multiple-platform .platform-row .platform-bq {
  top: 41px;
  flex: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  z-index: 2;
  left: -70px;
  top: -1px;
}
@media only screen and (max-width: 767px) {
  .multiple-platform .platform-row .platform-bq {
    left: 0;
    top: 0;
  }
}
.multiple-platform .platform-row .platform-bq .pdt-img2 {
  width: 58.3rem;
  height: 53.3rem;
}
@media only screen and (max-width: 767px) {
  .multiple-platform .platform-row .platform-bq .pdt-img2 {
    width: 100%;
    height: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .multiple-platform .platform-row .platform-bq .pdt-img2 {
    width: 100%;
    height: 45.3rem;
  }
}
.multiple-platform .platform-row .platform-middle {
  flex: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  z-index: 2;
  left: -70px;
  top: 17px;
}
@media only screen and (max-width: 767px) {
  .multiple-platform .platform-row .platform-middle {
    left: 0;
    top: 0;
  }
}
.multiple-platform .platform-row .platform-middle img {
  position: relative;
}
.multiple-platform .platform-row .platform-middle .pdt-img2 {
  width: 52.3rem;
  height: 53.3rem;
}
@media only screen and (max-width: 767px) {
  .multiple-platform .platform-row .platform-middle .pdt-img2 {
    width: 100%;
    height: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .multiple-platform .platform-row .platform-middle .pdt-img2 {
    width: 100%;
    height: 45.3rem;
  }
}
.multiple-platform .platform-row .platform-right {
  flex: 1.5;
  margin-top: 9rem;
}
@media only screen and (max-width: 767px) {
  .multiple-platform .platform-row .platform-right {
    margin-top: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .multiple-platform .platform-row .platform-right {
    margin-top: 2rem;
  }
}
.multiple-platform .platform-row .platform-right .btn-know {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 1.3rem;
  border: 1px solid #fff;
  border-radius: 3rem;
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  transition: 0.3s;
  width: 15.6rem;
  height: 4.8rem;
}
.multiple-platform .platform-row .platform-right .btn-know img {
  width: 1.8rem;
  height: 1.8rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.multiple-platform .platform-row .platform-right .btn-know:hover {
  background: #fff;
  color: #000;
}
.multiple-platform .platform-row .platform-right .btn-know:hover img {
  filter: invert(1);
}
.multiple-platform .platform-row .platform-right .platform-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.multiple-platform .platform-row .platform-right .platform-logo img {
  width: 6rem;
  height: 6rem;
}
@media only screen and (max-width: 767px) {
  .multiple-platform .platform-row .platform-right .platform-logo img {
    width: 4rem;
    height: 4rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .multiple-platform .platform-row .platform-right .platform-logo img {
    width: 5rem;
    height: 5rem;
  }
}
.multiple-platform .platform-row .platform-right .platform-logo .title-logo {
  font-size: 6.4rem;
  margin: 0;
  font-weight: 600;
  line-height: 74px;
  width: 442px;
}
@media only screen and (max-width: 767px) {
  .multiple-platform .platform-row .platform-right .platform-logo .title-logo {
    max-width: 100%;
    width: auto;
    font-size: 3.6rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .multiple-platform .platform-row .platform-right .platform-logo .title-logo {
    font-size: 4.4rem;
  }
}
.multiple-platform .platform-row .platform-right .sub-para {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 26px;
  color: #fff;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 767px) {
  .multiple-platform .platform-row .platform-right .sub-para {
    font-size: 1.6rem;
  }
}
.multiple-platform .platform-row .platform-right .btn {
  display: inline-block;
  text-align: center;
  padding: 1.2rem 1.3rem;
  border: 1px solid #fff;
  border-radius: 3rem;
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  transition: 0.3s;
  width: 15.6rem;
  height: 4.8rem;
}
.multiple-platform .platform-row .platform-right .btn:hover {
  background: #fff;
  color: #000;
}

.whats-apart {
  color: #1a1a1a;
  margin-top: 3rem;
}
@media only screen and (max-width: 767px) {
  .whats-apart {
    margin-top: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .whats-apart {
    margin-top: 0;
  }
}
.whats-apart .global-width {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
}
@media only screen and (max-width: 767px) {
  .whats-apart .global-width {
    padding: 4rem 2rem;
  }
}
.whats-apart .global-width .features-section .multiple-point {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  .whats-apart .global-width .features-section .multiple-point {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.whats-apart .global-width .features-section .multiple-point .dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #CB2EA0;
}
.whats-apart .global-width .features-section .multiple-point .label {
  font-size: 1.8rem;
  font-weight: 500;
  color: #CB2EA0;
  line-height: 28px;
}
.whats-apart .global-width .features-section .total-sec {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .whats-apart .global-width .features-section .total-sec {
    display: grid;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .whats-apart .global-width .features-section .total-sec {
    flex-direction: column;
  }
}
.whats-apart .global-width .features-section .total-sec .head {
  font-size: 4.4rem;
  font-weight: 600;
  color: #1F1F1F;
  line-height: 1.5;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .whats-apart .global-width .features-section .total-sec .head {
    font-size: 3.4rem;
    text-align: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .whats-apart .global-width .features-section .total-sec .head {
    font-size: 4rem;
  }
}
.whats-apart .global-width .features-section .total-sec .sub-para {
  color: #5F6368;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 28px;
  margin-top: 2.3rem;
}
@media only screen and (max-width: 767px) {
  .whats-apart .global-width .features-section .total-sec .sub-para {
    text-align: center;
  }
  .whats-apart .global-width .features-section .total-sec .sub-para br {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .whats-apart .global-width .features-section .total-sec .sub-para br {
    display: none;
  }
}
.whats-apart .global-width .features-section .feature-items {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media only screen and (max-width: 767px) {
  .whats-apart .global-width .features-section .feature-items {
    margin-top: 3rem;
    gap: 3rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .whats-apart .global-width .features-section .feature-items {
    margin-top: 5rem;
    gap: 3rem;
  }
}
.whats-apart .global-width .features-section .feature-items .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
@media only screen and (max-width: 767px) {
  .whats-apart .global-width .features-section .feature-items .feature-item .icon-secure {
    width: 4rem;
  }
}
@media only screen and (max-width: 767px) {
  .whats-apart .global-width .features-section .feature-items .feature-item .icon-faster {
    width: 4rem;
  }
}
@media only screen and (max-width: 767px) {
  .whats-apart .global-width .features-section .feature-items .feature-item .icon-precision {
    width: 4rem;
  }
}
@media only screen and (max-width: 767px) {
  .whats-apart .global-width .features-section .feature-items .feature-item .img-point {
    width: 4rem;
    height: 4rem;
  }
}
@media only screen and (max-width: 767px) {
  .whats-apart .global-width .features-section .feature-items .feature-item .feature-text {
    width: 30rem;
  }
}
.whats-apart .global-width .features-section .feature-items .feature-item .feature-text h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 5px;
}
@media only screen and (max-width: 767px) {
  .whats-apart .global-width .features-section .feature-items .feature-item .feature-text h3 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .whats-apart .global-width .features-section .feature-items .feature-item .feature-text h3 {
    font-size: 2.5rem;
  }
}
.whats-apart .global-width .features-section .feature-items .feature-item .feature-text p {
  font-size: 1.4rem;
  color: #777;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .whats-apart .global-width .features-section .feature-items .feature-item .feature-text p {
    width: 38rem;
  }
  .whats-apart .global-width .features-section .feature-items .feature-item .feature-text p br {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .whats-apart .global-width .features-section .feature-items .feature-item .feature-text p br {
    display: none;
  }
}

.cta-section {
  background: url(/assets/images/bg-foot.svg) no-repeat center/cover;
  background-size: cover;
  background-position: center;
  height: 66.1rem;
  display: flex;
  justify-content: center;
  align-items: end;
}
@media only screen and (max-width: 767px) {
  .cta-section {
    height: 42.1rem;
  }
}
.cta-section .cta-content {
  background-color: #02335e;
  padding: 3rem 4rem;
  border-radius: 1rem;
  color: #fff;
  text-align: left;
  height: 16.4rem;
  width: 120rem;
  margin-bottom: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center !important;
}
@media only screen and (max-width: 767px) {
  .cta-section .cta-content {
    width: 100%;
    height: auto;
    padding: 2rem 2rem;
    margin-bottom: 0;
    align-items: center;
    border-radius: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .cta-section .cta-content {
    width: 100%;
  }
}
.cta-section .cta-content h3 {
  font-size: 4.4rem;
  font-weight: 600;
  line-height: 54px;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 767px) {
  .cta-section .cta-content h3 {
    font-size: 1.8rem;
    line-height: 27px;
    margin-bottom: 0.5rem;
  }
}
.cta-section .cta-content .cta-button {
  background-color: #fff;
  color: #212121;
  padding: 1rem 1.3rem;
  border: none;
  border-radius: 3rem;
  font-weight: 400;
  font-size: 1.4rem;
  cursor: pointer;
  width: 12.4rem;
  height: 4.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-sec {
  padding: 10rem 0 2rem;
  background-color: #FAFAFA;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .footer-sec {
    padding: 4rem 0 2rem;
  }
}
.footer-sec .footer-ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .footer-sec .footer-ul {
    gap: 2rem;
  }
}
.footer-sec .footer-ul .list-item {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .footer-sec .footer-ul .list-item {
    width: calc((100% - 1rem) / 2);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .footer-sec .footer-ul .list-item {
    width: 100%;
  }
}
.footer-sec .footer-ul .list-item .logo-footer {
  margin-bottom: 3rem;
}
.footer-sec .footer-ul .list-item .logo-footer .image {
  width: 19rem;
}
.footer-sec .footer-ul .list-item .text {
  font-size: 1.4rem;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .footer-sec .footer-ul .list-item .text {
    width: 100%;
  }
}
.footer-sec .footer-ul .list-item.footer-right {
  display: flex;
  justify-content: space-between;
  gap: 6rem;
}
@media only screen and (max-width: 767px) {
  .footer-sec .footer-ul .list-item.footer-right {
    gap: 2rem;
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .footer-sec .footer-ul .list-item.footer-right {
    gap: 2rem;
    margin-top: 3rem;
  }
}
.footer-sec .footer-ul .list-item.footer-right .item {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .footer-sec .footer-ul .list-item.footer-right .item {
    width: calc((100% - 2rem) / 2);
  }
}
.footer-sec .footer-ul .list-item.footer-right .item .head {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #1F1F1F;
}
.footer-sec .footer-ul .list-item.footer-right .item .menu-link {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-sec .footer-ul .list-item.footer-right .item .menu-link .a-tag {
  color: rgba(33, 33, 33, 0.7);
  font-size: 1.6rem;
  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;
}
.footer-sec .footer-ul .list-item.footer-right .item .menu-link .a-tag:hover {
  color: #CB2EA0;
}
.footer-sec .footer-ul .list-item.footer-right .item .social-link {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.footer-sec .footer-ul .list-item.footer-right .item .social-link .a-tag {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 0.8rem;
  background-color: rgba(203, 46, 160, 0.1);
  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;
}
.footer-sec .footer-ul .list-item.footer-right .item .social-link .a-tag .image {
  width: 2.4rem;
}
.footer-sec .footer-ul .list-item.footer-right .item .social-link .a-tag:hover {
  background-color: #CB2EA0;
}
.footer-sec .footer-ul .list-item.footer-right .item .social-link .a-tag:hover .image {
  filter: brightness(500);
}

.chaos-clarity-sec {
  padding: 12rem 0 6rem;
}
.chaos-clarity-sec .main-head .head {
  font-size: 4.8rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .chaos-clarity-sec .main-head .head {
    font-size: 3.2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .chaos-clarity-sec .main-head .head {
    font-weight: 600;
    font-size: 5rem;
  }
}
@media only screen and (min-width: 768px) {
  .chaos-clarity-sec .main-head .text {
    max-width: 670px;
    margin: 0 auto;
  }
}
.chaos-clarity-sec .clarity-image {
  margin-top: 6rem;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .chaos-clarity-sec .clarity-image {
    margin-top: 3rem;
  }
}
.chaos-clarity-sec .clarity-image .image {
  border-radius: 1.8rem;
  height: 587px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 767px) {
  .chaos-clarity-sec .clarity-image .image {
    height: auto;
  }
}

.our-team-sec {
  padding: 4rem 2rem;
}
@media only screen and (max-width: 767px) {
  .our-team-sec {
    padding: 2rem 2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .our-team-sec {
    padding: 1rem 2rem;
  }
}
.our-team-sec .flex-head {
  margin-bottom: 4rem;
}
@media only screen and (max-width: 767px) {
  .our-team-sec .flex-head {
    margin: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .our-team-sec .flex-head {
    margin-bottom: 2rem;
  }
}
@media only screen and (min-width: 768px) {
  .our-team-sec .flex-head .text {
    max-width: 413px;
    text-align: left;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .our-team-sec .flex-head .head {
    font-size: 4rem;
  }
}
.our-team-sec .our-team-ul {
  display: grid;
  gap: 2.4rem;
}
@media only screen and (min-width: 768px) {
  .our-team-sec .our-team-ul {
    grid-template-columns: repeat(4, 1fr);
  }
}
.our-team-sec .our-team-ul .director-img {
  padding: 2rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.our-team-sec .our-team-ul .director-img .image {
  margin-bottom: 1.5rem;
  width: 20rem;
}
.our-team-sec .our-team-ul .name-grid {
  text-align: center;
}
.our-team-sec .our-team-ul .name-grid .head {
  font-size: 2rem;
  font-weight: 600;
  color: #1F1F1F;
}
.our-team-sec .our-team-ul .name-grid .text {
  font-size: 1.4rem;
  color: #5F6368;
}

.our-values-sec {
  padding: 10rem 0 6rem;
}
.our-values-sec .flex-head {
  margin-bottom: 4rem;
}
@media only screen and (min-width: 768px) {
  .our-values-sec .flex-head .text {
    max-width: 458px;
    text-align: left;
  }
}
.our-values-sec .our-values-ul {
  display: grid;
  gap: 2.4rem;
}
@media only screen and (min-width: 768px) {
  .our-values-sec .our-values-ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 7.4rem;
  }
}

.the-challenge-sec {
  padding: 10rem 0 6rem;
}
.the-challenge-sec .flex-head {
  margin-bottom: 4rem;
}
@media only screen and (min-width: 768px) {
  .the-challenge-sec .flex-head .text {
    max-width: 470px;
    text-align: left;
  }
}
.the-challenge-sec .challenge-ul {
  display: grid;
  gap: 2.4rem;
}
@media only screen and (min-width: 768px) {
  .the-challenge-sec .challenge-ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
.the-challenge-sec .challenge-ul .list-item {
  background-color: #F9F9F9;
  border-radius: 1.6rem;
  padding: 2.5rem;
  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;
  border: 1px solid #F9F9F9;
}
.the-challenge-sec .challenge-ul .list-item:hover {
  border-color: #CB2EA0;
}
.the-challenge-sec .challenge-ul .list-item:hover .icons .image {
  animation-name: animation-7;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: cubic-bezier(0.59, 0.59, 1, 1);
}
.the-challenge-sec .challenge-ul .list-item .name-grid .head {
  font-size: 2.8rem;
  font-weight: 600;
  color: #1F1F1F;
}
.the-challenge-sec .challenge-ul .list-item .name-grid .text {
  font-size: 1.6rem;
  color: #5F6368;
}
.the-challenge-sec .challenge-ul .list-item .icons {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 7rem;
  height: 7rem;
  border-radius: 1.2rem;
  background-color: #CB2EA0;
  margin-bottom: 4rem;
}
.the-challenge-sec .challenge-ul .list-item .icons .image {
  width: 2.8rem;
}

.consuming-clean-sec .consuming-clean-ul {
  background-color: #F9F9F9;
  border-radius: 1.8rem;
  padding: 4rem;
  display: grid;
  gap: 2.4rem;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .consuming-clean-sec .consuming-clean-ul {
    grid-template-columns: 2fr 3fr;
    gap: 8rem;
  }
}
.consuming-clean-sec .consuming-clean-ul .list-item {
  display: flex;
}
.consuming-clean-sec .consuming-clean-ul .list-item .name-grid .head {
  font-size: 2.8rem;
  font-weight: 600;
  color: #1F1F1F;
  margin-bottom: 1rem;
}
.consuming-clean-sec .consuming-clean-ul .list-item .name-grid .text {
  font-size: 1.6rem;
  color: #5F6368;
}

.the-solution-sec {
  padding: 8rem 0 6rem;
}
.the-solution-sec .flex-head {
  margin-bottom: 4rem;
}
@media only screen and (min-width: 768px) {
  .the-solution-sec .flex-head .text {
    max-width: 479px;
    text-align: left;
  }
}
.the-solution-sec .the-solution-ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .the-solution-sec .the-solution-ul {
    gap: 2rem;
  }
}
.the-solution-sec .the-solution-ul .the-solution-left {
  background-color: #F9F9F9;
  padding: 3rem;
  border-radius: 1.6rem;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .the-solution-sec .the-solution-ul .the-solution-left {
    width: 430px;
  }
}
@media only screen and (max-width: 768px) {
  .the-solution-sec .the-solution-ul .the-solution-left {
    width: 100%;
  }
}
.the-solution-sec .the-solution-ul .the-solution-left .image-grid {
  margin-top: 3rem;
  display: flex;
}
@media only screen and (min-width: 768px) {
  .the-solution-sec .the-solution-ul .the-solution-left .image-grid {
    margin-top: 12rem;
  }
}
.the-solution-sec .the-solution-ul .the-solution-right {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .the-solution-sec .the-solution-ul .the-solution-right {
    width: calc(100% - 450px);
  }
}
@media only screen and (max-width: 768px) {
  .the-solution-sec .the-solution-ul .the-solution-right {
    width: 100%;
  }
}
.the-solution-sec .the-solution-ul .the-solution-right .challenge-ul {
  display: grid;
  gap: 2rem;
}
@media only screen and (min-width: 768px) {
  .the-solution-sec .the-solution-ul .the-solution-right .challenge-ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
.the-solution-sec .the-solution-ul .the-solution-right .challenge-ul .list-item {
  background-color: #F9F9F9;
  border-radius: 1.6rem;
  padding: 2.5rem;
  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;
  border: 1px solid #F9F9F9;
}
.the-solution-sec .the-solution-ul .the-solution-right .challenge-ul .list-item:hover {
  border-color: #CB2EA0;
}
.the-solution-sec .the-solution-ul .the-solution-right .challenge-ul .list-item .name-grid .head {
  font-size: 2.8rem;
  font-weight: 600;
  color: #1F1F1F;
}
.the-solution-sec .the-solution-ul .the-solution-right .challenge-ul .list-item .name-grid .text {
  font-size: 1.8rem;
  color: #5F6368;
}
.the-solution-sec .the-solution-ul .the-solution-right .challenge-ul .list-item .icons {
  display: flex;
  margin-bottom: 3.5rem;
}
.the-solution-sec .the-solution-ul .the-solution-right .challenge-ul .list-item .icons .image {
  width: 5.8rem;
}
.the-solution-sec .the-solution-ul .name-grid .head {
  font-size: 2.8rem;
  font-weight: 600;
  color: #1F1F1F;
  margin-bottom: 1rem;
}
.the-solution-sec .the-solution-ul .name-grid .text {
  font-size: 1.6rem;
  color: #5F6368;
}
.the-solution-sec .bq-qouter-solution-ul {
  display: grid;
  gap: 5rem;
}
@media only screen and (min-width: 768px) {
  .the-solution-sec .bq-qouter-solution-ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
.the-solution-sec .bq-qouter-solution-ul .list-item {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
}
.the-solution-sec .bq-qouter-solution-ul .list-item:last-child::before {
  display: none;
}
@media only screen and (min-width: 768px) {
  .the-solution-sec .bq-qouter-solution-ul .list-item {
    gap: 7rem;
  }
}
.the-solution-sec .bq-qouter-solution-ul .list-item .bq-qouter-solution {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.the-solution-sec .bq-qouter-solution-ul .list-item .bq-qouter-solution .count {
  font-size: 4.3rem;
  color: #CB2EA0;
  line-height: 1.1;
}
.the-solution-sec .bq-qouter-solution-ul .list-item .bq-qouter-solution .content-area .head {
  font-size: 2.6rem;
  font-weight: 600;
  color: #1F1F1F;
  margin-bottom: 1.5rem;
}
.the-solution-sec .bq-qouter-solution-ul .list-item .bq-qouter-solution .content-area .text {
  font-size: 1.6rem;
  color: #5F6368;
}
.the-solution-sec.bq-qouter-bg {
  background: linear-gradient(180deg, #E8F3FB 0%, #fff 100%);
  padding-top: 2rem;
}
.the-solution-sec.bq-qouter-bg .main-head {
  margin-bottom: 4rem;
}
@media only screen and (min-width: 768px) {
  .the-solution-sec.bq-qouter-bg .main-head .text {
    max-width: 623px;
    text-align: center;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 768px) {
  .the-solution-sec.bq-qouter-bg .list-item::before {
    position: absolute;
    content: "";
    right: -3.5rem;
    top: 2.3rem;
    background: url(/assets/images/The-Solution-line.svg) no-repeat;
    height: 100%;
    width: 1rem;
  }
}
.the-solution-sec.zeyrax-bg {
  background: linear-gradient(180deg, #FFFCF5 0%, #fff 100%);
  padding-top: 2rem;
}
.the-solution-sec.zeyrax-bg .main-head {
  margin-bottom: 4rem;
}
@media only screen and (min-width: 768px) {
  .the-solution-sec.zeyrax-bg .main-head .text {
    max-width: 394px;
    text-align: center;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 768px) {
  .the-solution-sec.zeyrax-bg .list-item::before {
    position: absolute;
    content: "";
    right: -3.5rem;
    top: 2.3rem;
    background: url(/assets/images/The-Solution-line-yellow.svg) no-repeat;
    height: 100%;
    width: 1rem;
  }
}

.key-features-sec {
  padding-bottom: 8rem;
}
.key-features-sec .flex-head {
  margin-bottom: 4rem;
}
@media only screen and (min-width: 768px) {
  .key-features-sec .flex-head .text {
    max-width: 441px;
    text-align: left;
  }
}
.key-features-sec .key-features-ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.key-features-sec .key-features-ul .key-features-left {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .key-features-sec .key-features-ul .key-features-left {
    width: calc(100% - 382px);
  }
}
.key-features-sec .key-features-ul .key-features-left .challenge-ul {
  display: grid;
  gap: 2rem;
}
@media only screen and (min-width: 768px) {
  .key-features-sec .key-features-ul .key-features-left .challenge-ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
.key-features-sec .key-features-ul .key-features-left .challenge-ul .list-item {
  background-color: #F9F9F9;
  border-radius: 1.6rem;
  padding: 0.5rem;
}
.key-features-sec .key-features-ul .key-features-left .challenge-ul .list-item .name-grid {
  padding: 1.5rem;
}
.key-features-sec .key-features-ul .key-features-left .challenge-ul .list-item .name-grid .head {
  font-size: 2.8rem;
  font-weight: 600;
  color: #1F1F1F;
  margin-bottom: 1.5rem;
}
.key-features-sec .key-features-ul .key-features-left .challenge-ul .list-item .name-grid .text {
  font-size: 1.8rem;
  color: #5F6368;
}
.key-features-sec .key-features-ul .key-features-left .challenge-ul .list-item .icons {
  display: flex;
}
@media only screen and (min-width: 768px) {
  .key-features-sec .key-features-ul .key-features-left .challenge-ul.universal-form .list-item {
    min-height: 460px;
  }
}
@media only screen and (min-width: 768px) {
  .key-features-sec .key-features-ul .key-features-left.broker-quoter-ul .list-item {
    min-height: 457px;
  }
}
.key-features-sec .key-features-ul .key-features-right {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .key-features-sec .key-features-ul .key-features-right {
    width: 361px;
  }
}
.key-features-sec .key-features-ul .key-features-right .key-features-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.key-features-sec .key-features-ul .key-features-right .key-features-grid .key-features {
  background-color: #F9F9F9;
  border-radius: 1.6rem;
  padding: 0.5rem;
}
.key-features-sec .key-features-ul .key-features-right .key-features-grid .key-features .height-sec {
  display: flex;
}
.key-features-sec .key-features-ul .key-features-right .key-features-grid .key-features .name-grid {
  padding: 1.5rem;
}
.key-features-sec .key-features-ul .key-features-right .key-features-grid .key-features .name-grid.mb-0 .head {
  margin-bottom: 0;
}
.key-features-sec .key-features-ul .key-features-right .key-features-grid .key-features .name-grid .head {
  font-size: 2.8rem;
  font-weight: 600;
  color: #1F1F1F;
  margin-bottom: 1.5rem;
}
.key-features-sec .key-features-ul .key-features-right .key-features-grid .key-features .name-grid .text {
  font-size: 1.8rem;
  color: #5F6368;
}
@media only screen and (min-width: 768px) {
  .key-features-sec .key-features-ul .key-features-right .key-features-grid .key-features.min-height {
    min-height: 455px;
  }
}
@media only screen and (min-width: 768px) {
  .key-features-sec.broker-quoter-key-features .list-item .name-grid .text {
    max-width: 336px;
  }
}
.key-features-sec.broker-quoter-key-features .key-features .head {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.key-features-sec.broker-quoter-key-features .key-features .head .beta {
  font-size: 1.1rem;
  background-color: #FFF2D9;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2rem;
  width: 3.5rem;
  border-radius: 1rem;
}

.solve-real-problems-sec {
  padding: 8rem 0 8rem;
}
.solve-real-problems-sec .flex-head {
  margin-bottom: 4rem;
}
@media only screen and (min-width: 768px) {
  .solve-real-problems-sec .flex-head .text {
    max-width: 514px;
    text-align: left;
  }
}
.solve-real-problems-sec .solve-real-problems-ul {
  display: grid;
  gap: 2rem;
}
@media only screen and (min-width: 768px) {
  .solve-real-problems-sec .solve-real-problems-ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 8rem;
  }
}
.solve-real-problems-sec .solve-real-problems-ul .list-item .problem-we-solve .item {
  margin-bottom: 2rem;
}
.solve-real-problems-sec .solve-real-problems-ul .list-item .problem-we-solve .item:last-of-type {
  margin-bottom: 0;
}
.solve-real-problems-sec .solve-real-problems-ul .list-item .problem-we-solve .item .head {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #1F1F1F;
}
.solve-real-problems-sec .solve-real-problems-ul .list-item .problem-we-solve .item .text {
  font-size: 1.8rem;
  color: #5F6368;
}
.solve-real-problems-sec.the-problems-sec {
  padding-bottom: 10rem;
}
.solve-real-problems-sec.the-problems-sec .solve-real-problems-image {
  box-shadow: -1px 8px 17px 0px rgba(49, 49, 49, 0.168627451);
}

.terms-banner {
  width: 100%;
  background: #CB2EA0;
  padding: 4rem 0;
  text-align: center;
}
.terms-banner::before {
  content: "";
  position: absolute;
  top: 5rem;
  left: 27rem;
  width: 8rem;
  height: 8rem;
  background: url(/assets/images/box.png);
  opacity: 0.7;
}
.terms-banner::after {
  content: "";
  position: absolute;
  top: 20rem;
  right: 29rem;
  width: 8rem;
  height: 8rem;
  background: url(/assets/images/box2.png);
  opacity: 0.7;
}
.terms-banner .terms-box {
  position: relative;
  display: inline-block;
  padding: 6rem 4rem;
  border-radius: 8px;
}
.terms-banner .terms-box .terms-head {
  font-size: 4.8rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

.sub-terms {
  margin-top: 8rem;
}
.sub-terms .sub-head {
  font-size: 1.6rem;
  font-weight: 600;
  color: #1F1F1F;
  margin-bottom: 1rem;
}

.terms-banner {
  width: 100%;
  background: #CB2EA0;
  padding: 4rem 0;
  text-align: center;
}
.terms-banner::before {
  content: "";
  position: absolute;
  top: 5rem;
  left: 27rem;
  width: 8rem;
  height: 8rem;
  background: url(/assets/images/box.png);
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  .terms-banner::before {
    display: none;
  }
}
.terms-banner::after {
  content: "";
  position: absolute;
  top: 16rem;
  right: 28rem;
  width: 8rem;
  height: 8rem;
  background: url(/assets/images/box2.png);
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  .terms-banner::after {
    display: none;
  }
}
.terms-banner .terms-box {
  position: relative;
  display: inline-block;
  padding: 4rem 4rem;
  border-radius: 8px;
}
.terms-banner .terms-box .terms-head {
  font-size: 4.8rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-top: 4rem;
}

.sub-terms {
  margin-top: 8rem;
}
.sub-terms .sub-head {
  font-size: 1.6rem;
  font-weight: 600;
  color: #1F1F1F;
  margin-bottom: 1rem;
  margin-top: 2rem;
}
.sub-terms .mg-b-8 {
  margin-bottom: 8rem;
}

.footer-base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5rem;
  font-size: 1.2rem;
  color: #5F6368;
}
.footer-base .base-left {
  font-weight: 500;
}
.footer-base .base-right .base-list {
  display: flex;
  gap: 1rem;
}
.footer-base .base-right .base-ul {
  font-size: 1.2rem;
  color: #5F6368;
}
.footer-base .base-right a {
  text-decoration: none;
  color: #5F6368;
  transition: color 0.3s;
}
.footer-base .base-right a:hover {
  color: #CB2EA0;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .why-we-exist-sec .head {
    font-size: 4rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .why-we-exist-sec .text br {
    display: none;
  }
}
.why-we-exist-sec .why-we-exist-content {
  gap: 3rem;
  margin-top: 8rem;
  display: flex;
  align-items: stretch;
}
@media only screen and (max-width: 767px) {
  .why-we-exist-sec .why-we-exist-content {
    display: grid;
    margin-top: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .why-we-exist-sec .why-we-exist-content {
    display: grid;
  }
}
.why-we-exist-sec .why-we-exist-content .why-left {
  position: relative;
  flex: 1;
}
.why-we-exist-sec .why-we-exist-content .why-left img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  display: block;
}
.why-we-exist-sec .why-we-exist-content .why-right {
  flex: 1.2;
  background: #F9F9F9;
  border-radius: 1rem;
  padding: 3rem 2rem;
}
.why-we-exist-sec .why-we-exist-content .why-right ul li {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.why-we-exist-sec .why-we-exist-content .why-right ul li:last-child {
  margin: unset;
}
.why-we-exist-sec .why-we-exist-content .why-right ul li img {
  width: 2.4rem;
  height: 4.4rem;
  flex-shrink: 0;
}
.why-we-exist-sec .why-we-exist-content .why-right ul li .point-head {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 40px;
  margin: 0 0 0.5rem;
  color: #212121;
}
.why-we-exist-sec .why-we-exist-content .why-right ul li .text {
  font-size: 1.4rem;
  color: #5F6368;
  line-height: 1.7;
}

.text {
  font-size: 1.6rem;
  color: #5F6368;
  line-height: 1.7;
}
@media only screen and (max-width: 767px) {
  .text br {
    display: none;
  }
}

.our-values {
  padding: 6rem 0;
  margin-top: 7rem;
}
@media only screen and (max-width: 767px) {
  .our-values {
    margin-top: 0;
    padding: 4rem 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .our-values {
    margin-top: 0;
  }
}
.our-values .values-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 767px) {
  .our-values .values-head {
    display: grid;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .our-values .values-head {
    display: grid;
    justify-content: center;
    align-items: center;
  }
}
.our-values .values-head .head-text {
  font-size: 4.6rem;
  color: #212121;
  font-weight: 600;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .our-values .values-head .head-text {
    text-align: center;
    font-size: 3rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .our-values .values-head .head-text {
    text-align: center;
    font-size: 4rem;
  }
}
@media only screen and (max-width: 767px) {
  .our-values .values-head .text {
    text-align: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .our-values .values-head .text {
    text-align: center;
  }
}
.our-values .values-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media only screen and (max-width: 767px) {
  .our-values .values-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .our-values .values-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.our-values .values-list .value-card {
  background: #F9F9F9;
  border-radius: 8px;
  padding: 30px;
  transition: all 0.3s ease;
}
.our-values .values-list .value-card .icon {
  margin-bottom: 1.5rem;
}
.our-values .values-list .value-card .icon img {
  width: 4rem;
  height: 4rem;
}
.our-values .values-list .value-card .card-head {
  font-size: 2.4rem;
  color: #212121;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 1rem;
}
.our-values .values-list .value-card:hover {
  background: rgba(245, 245, 245, 0.8980392157);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-section {
  padding: 1rem 0;
}
.contact-section .contact-box .text {
  color: #fff;
  margin-top: 2rem;
}
.contact-section .contact-box .terms-head {
  margin-top: 3rem;
}

.contact-sec {
  padding: 6rem 0;
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .contact-sec {
    padding: 2rem 0;
    margin-top: 4rem;
  }
}
.contact-sec .contact-wrapper {
  display: flex;
  align-items: stretch;
  gap: 3rem;
  margin-top: 8rem;
  position: relative;
}
@media (max-width: 992px) {
  .contact-sec .contact-wrapper {
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .contact-sec .contact-wrapper {
    gap: 0;
  }
}
.contact-sec .contact-wrapper .sub-head {
  font-size: 3.4rem;
  font-weight: 600;
  color: #1F1F1F;
}
@media only screen and (max-width: 767px) {
  .contact-sec .contact-wrapper .sub-head {
    font-size: 3rem;
  }
}
.contact-sec .contact-left {
  position: sticky;
  top: 2rem;
  flex: 0 0 35%;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border: 1px solid #fff;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border-radius: 1.2rem;
  padding: 3rem;
  height: -moz-fit-content;
  height: fit-content;
}
@media only screen and (max-width: 767px) {
  .contact-sec .contact-left {
    width: 100%;
    position: relative;
    top: auto;
    flex: 1 1 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .contact-sec .contact-left {
    width: 100%;
    position: relative;
    top: auto;
    flex: 1 1 100%;
  }
}
.contact-sec .contact-left .contact-form {
  margin-top: 3rem;
}
@media only screen and (max-width: 767px) {
  .contact-sec .contact-left .contact-form {
    margin-top: 3rem;
  }
}
.contact-sec .contact-left .contact-form .form-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 767px) {
  .contact-sec .contact-left .contact-form .form-row {
    display: grid;
    gap: 2rem;
  }
}
.contact-sec .contact-left .contact-form .form-row input,
.contact-sec .contact-left .contact-form .form-row textarea {
  flex: 1;
  padding: 0.8rem 1rem;
  border: 1px solid #e0e0e0;
  background: #f8f8f8;
  border-radius: 0.6rem;
  font-size: 1.4rem;
  outline: none;
  width: 28rem;
  height: 4.6rem;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.contact-sec .contact-left .contact-form .form-row input:focus,
.contact-sec .contact-left .contact-form .form-row textarea:focus {
  border-color: #edebeb;
}
@media only screen and (max-width: 767px) {
  .contact-sec .contact-left .contact-form .form-row input,
  .contact-sec .contact-left .contact-form .form-row textarea {
    width: 100%;
  }
}
.contact-sec .contact-left .contact-form .form-row .message-box {
  width: 100%;
  height: 10rem;
  resize: none;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.contact-sec .contact-left .contact-form .btn-common {
  width: 12rem;
}
.contact-sec .contact-left .contact-form .btn-area {
  display: flex;
  justify-content: end;
}
.contact-sec .contact-left .contact-form .sub-contact {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .contact-sec .contact-left .contact-form .sub-contact {
    display: flex;
    justify-content: center;
  }
}
.contact-sec .contact-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border: 1px solid #fff;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border-radius: 1.2rem;
  padding: 3rem;
}
.contact-sec .contact-right .contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-sec .contact-right .contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-sec .contact-right .contact-info .contact-grp {
  background: #f8f8f8;
  padding: 1rem;
  border-radius: 0.8rem;
  display: flex;
  gap: 1rem;
}
.contact-sec .contact-right .contact-info .icon-wrap {
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.contact-sec .contact-right .contact-info .icon-wrap img {
  width: 3.5rem;
  height: 3.5rem;
}
.contact-sec .contact-right .contact-info .text-wrap {
  display: flex;
  flex-direction: column;
}
.contact-sec .contact-right .contact-info .text-wrap .title {
  font-size: 1.8rem;
  font-weight: 500;
  color: #1F1F1F;
}
.contact-sec .contact-right .contact-info .text-wrap .subtext {
  font-size: 1.6rem;
  font-weight: 400;
  color: #5F6368;
}

.subscribe-sec {
  padding: 6rem 0;
  background: #F9F7F8;
  margin-top: 8rem;
}
@media only screen and (max-width: 767px) {
  .subscribe-sec {
    margin-top: 5rem;
    padding: 3rem 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .subscribe-sec {
    margin-top: 5rem;
    padding: 3rem 0;
  }
}
.subscribe-sec .head {
  font-size: 4.4rem;
  font-weight: 600;
  line-height: 64px;
  color: #212121;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .subscribe-sec .head {
    font-size: 3.4rem;
    line-height: 38px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .subscribe-sec .head {
    font-size: 4rem;
    line-height: 52px;
  }
}
.subscribe-sec .text {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 6rem;
}
@media only screen and (max-width: 767px) {
  .subscribe-sec .text {
    margin-top: 2rem;
    margin-bottom: 3rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .subscribe-sec .text {
    margin-top: 2rem;
    margin-bottom: 3rem;
  }
}
.subscribe-sec .subscribe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(333px, 1fr));
  gap: 2.2rem;
  margin-bottom: 2.2rem;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .subscribe-sec .subscribe-grid {
    grid-template-columns: none;
  }
}
.subscribe-sec .center-row {
  display: flex;
  justify-content: center;
  gap: 22px;
}
@media only screen and (max-width: 767px) {
  .subscribe-sec .center-row {
    display: grid;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .subscribe-sec .center-row {
    display: grid;
    justify-content: unset;
  }
}
.subscribe-sec .subscribe-card {
  position: relative;
  background: #FFFFFF;
  border-radius: 1.2rem;
  padding: 6rem 2rem;
  overflow: hidden;
  transition: all 0.3s ease;
  width: 38.1rem;
  height: 34.6rem;
}
@media only screen and (max-width: 767px) {
  .subscribe-sec .subscribe-card {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .subscribe-sec .subscribe-card {
    width: 100%;
    height: 24.6rem;
  }
}
.subscribe-sec .subscribe-card .grid-head {
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #212121;
  line-height: 43px;
  margin-top: 13rem;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .subscribe-sec .subscribe-card .grid-head {
    margin-top: 8rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .subscribe-sec .subscribe-card .grid-head {
    font-size: 2.8rem;
  }
}
.subscribe-sec .subscribe-card .text {
  text-align: left;
  margin-top: 0;
}
.subscribe-sec .subscribe-card .hover-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 28rem;
  height: 18rem;
  background: url(/assets/images/hover-card.svg) no-repeat center/cover;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-top-right-radius: 12px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .subscribe-sec .subscribe-card .hover-bg {
    width: 18rem;
    height: 12rem;
  }
}
.subscribe-sec .subscribe-card:hover {
  border: 1px solid #CB2EA0;
  transform: translateY(-5px);
}
.subscribe-sec .subscribe-card:hover .hover-bg {
  opacity: 1;
}/*# sourceMappingURL=style.css.map */