@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@font-face {
  font-family: "sfpro";
  src: url(../fonts/SFPRODISPLAYREGULAR.OTF);
}
@font-face {
  font-family: "sfpro-medium";
  src: url(../fonts/SFPRODISPLAYMEDIUM.OTF);
}
@font-face {
  font-family: "sfpro-bold";
  src: url(../fonts/SFPRODISPLAYBOLD.OTF);
}
@font-face {
  font-family: "argentum-regular", sans-serif;
  src: url(../fonts/ArgentumSans-Regular.otf);
}
@font-face {
  font-family: "argentum-light", sans-serif;
  src: url(../fonts/ArgentumSans-Light.otf);
}
@font-face {
  font-family: "argentum-semibold", sans-serif;
  src: url(../fonts/ArgentumSans-SemiBold.otf);
}
@font-face {
  font-family: "argentum-extrabold", sans-serif;
  src: url(../fonts/ArgentumSans-ExtraBold.otf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "argentum-regular", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "argentum-regular", sans-serif;
}
h1 span, h2 span, h3 span, h4 span, h5 span, h6 span {
  font-family: "argentum-regular", sans-serif;
  background: linear-gradient(#FF6B20, #94116F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

:root {
  --dark: #12355B;
  --yellow: #FEB12F;
  --orange: #F68920;
  --gr: linear-gradient(180deg, #BF4724 0%, var(--orange) 100%);
}

li {
  list-style: none !important;
}

a {
  text-decoration: none !important;
}

ul {
  padding-left: 0 !important;
  margin-bottom: 0 !important;
}

@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.main-btn {
  position: relative;
  overflow: hidden;
  display: inline-block;
  background: var(--gr);
  padding: 15px 25px;
  padding-right: 15px;
  outline: none;
  border: none;
  border-radius: 100px;
  overflow: hidden;
  min-width: -moz-max-content;
  min-width: max-content;
  display: flex;
  align-items: center;
  gap: 1em;
  max-width: -moz-max-content;
  max-width: max-content;
  box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.08);
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.main-btn.no-icon {
  padding-right: 25px;
}
.main-btn:hover {
  transform: scale(0.95);
  box-shadow: none !important;
}
.main-btn:active {
  filter: brightness(105%);
}
.main-btn span {
  color: white;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  z-index: 5;
  transition: 0.2s ease-in-out;
  font-weight: 600;
}
.main-btn span span {
  font-size: 1.3em;
  font-weight: 700;
}
.main-btn.block-btn {
  width: 100%;
  display: block;
  text-align: center;
}
.main-btn.center {
  display: flex;
  max-width: -moz-max-content;
  max-width: max-content;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
}
.main-btn.white {
  background: white;
}
.main-btn.white span {
  color: black;
}

/* firefox */
.custom-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: #69B444 transparent;
}

.custom-scrollbar:-webkit-scrollbar {
  width: 11px;
}

.custom-scrollbar:-webkit-scrollbar-track {
  background: transparent;
}

.custom-scrollbar:-webkit-scrollbar-thumb {
  background-color: #69B444;
  border-radius: 6px;
  border: 3px solid transparent;
}

/* webkit browsers */
.custom-scrollbar::-webkit-scrollbar,
.custom-scrollbar::-webkit-scrollbar-thumb {
  height: 26px;
  border-radius: 13px;
  background-clip: padding-box;
  border: 10px solid transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 0 10px;
}

.sec {
  padding: 4em 0px;
  overflow: hidden;
}

.para {
  font-size: 16px;
  font-family: "argentum-light", sans-serif;
}
.para.white {
  color: white;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-110 {
  margin-bottom: 110px;
}

.mt-120 {
  margin-bottom: 120px;
}

.mt-130 {
  margin-bottom: 130px;
}

.mt-140 {
  margin-bottom: 140px;
}

.mt-150 {
  margin-bottom: 150px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-150 {
  margin-bottom: 150px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-110 {
  padding-bottom: 110px;
}

.pt-120 {
  padding-bottom: 120px;
}

.pt-130 {
  padding-bottom: 130px;
}

.pt-140 {
  padding-bottom: 140px;
}

.pt-150 {
  padding-bottom: 150px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-150 {
  padding-bottom: 150px;
}

.main-nav {
  position: relative;
  background: #F4F4F4;
  padding: 12px 0px;
  position: sticky;
  top: 0;
  z-index: 999;
}
.main-nav .inner-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-nav .inner-nav .main-btn {
  padding: 12px 30px;
  padding-left: 20px;
  border-radius: 100px;
  background: var(--gr);
  box-shadow: none !important;
  display: flex;
  align-items: center;
  gap: 0.3em;
}
.main-nav .inner-nav .main-btn span {
  font-size: 14px;
  color: white;
  font-weight: 500;
}
.main-nav .inner-nav .l-part {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav .inner-nav .l-part .logo {
  position: relative;
  display: inline-block;
}
.main-nav .inner-nav .l-part .logo img {
  width: auto;
  height: 60px;
  mix-blend-mode: multiply;
}
.main-nav .inner-nav .m-part {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav .inner-nav .m-part .nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav .inner-nav .m-part .nav-list li {
  position: relative;
}
.main-nav .inner-nav .m-part .nav-list li a {
  display: inline-block;
  color: #000;
  font-weight: 500;
  font-size: 16px;
  position: relative;
}
.main-nav .inner-nav .m-part .nav-list li a.active::after, .main-nav .inner-nav .m-part .nav-list li a:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(10px) scale(1);
}
.main-nav .inner-nav .m-part .nav-list li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(10px) scale(0);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  transition: 0.2s ease-in-out;
  background: white;
  display: none;
}
.main-nav .inner-nav .r-part {
  position: relative;
}

.ot-list {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--orange);
  padding: 8px 3em;
}
.top-bar .con-l {
  display: flex;
  align-items: center;
}
.top-bar .con-l li a {
  position: relative;
  display: flex;
  align-items: center;
  color: white;
  font-family: "visbyMedium", sans-serif;
  font-size: 16px;
}
.top-bar .con-l li a img {
  width: 20px;
  margin-right: 10px;
}
.top-bar .con-l li a span {
  color: white;
  font-weight: 500;
  font-size: 14px;
}
.top-bar .soc-list {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-nav {
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--gr3, linear-gradient(101deg, #F96 4.01%, #FF5E62 97.67%));
  padding: 0em 0px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  transform: translateX(-100%);
  opacity: 0;
  transition: 0.3s ease-in-out;
}
.mobile-nav .menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1em 1em;
  padding-right: 2em;
  margin-bottom: 0.5em;
  position: sticky;
  top: 0;
  z-index: 88;
  background: var(--blue);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-nav .menu-head .logo {
  display: block;
  width: 60px;
}
.mobile-nav .menu-head .logo img {
  width: 100%;
}
.mobile-nav.active {
  opacity: 1;
  transform: translateX(0px);
}
.mobile-nav .menu-close {
  z-index: 5;
  background: transparent;
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}
.mobile-nav .menu-close img {
  width: 15px;
  height: 15px;
}
.mobile-nav .nav-list .drop-mega {
  padding-top: 0.5em;
  padding-left: 1.2em;
}
.mobile-nav .nav-list a {
  padding: 12px 1.5em !important;
  display: block;
  color: white !important;
  font-size: 16px;
}
.mobile-nav .nav-list a .ic {
  display: none !important;
}
.mobile-nav .nav-list > li > a {
  padding: 15px 1.5em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-nav .nav-list > li > a span {
  color: white;
  font-size: 16px;
  font-family: "visbySemibold", sans-serif;
}
.menu-btn {
  background: transparent;
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  display: none;
}
.menu-btn img {
  width: 30px;
}

.has-drop-down {
  position: relative;
}
.has-drop-down:hover .drop-mega {
  opacity: 1;
  pointer-events: unset;
  transform: translateY(0px);
}
.has-drop-down .drop-mega {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 20px;
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: 0.2s cubic-bezier(0.47, 0, 0.745, 0.715);
}
.has-drop-down .drop-mega ul {
  padding: 1em 1.5em !important;
  background: white;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
  position: relative;
}
.has-drop-down .drop-mega ul:after {
  content: "";
  position: absolute;
  top: 0;
  left: 1.5em;
  width: 25px;
  height: 25px;
  background: url(../images/top-tip.svg) center/contain no-repeat;
  transform: translateY(-50%);
}
.has-drop-down .drop-mega ul a span {
  color: #1e1e1e;
  font-weight: 500;
  transition: 0.2s cubic-bezier(0.47, 0, 0.745, 0.715);
}
.has-drop-down .drop-mega ul .srv-link {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 8px 0px;
  overflow: hidden;
  position: relative;
  min-width: -moz-max-content;
  min-width: max-content;
}
.has-drop-down .drop-mega ul .srv-link:hover:before {
  transform: translateY(-50%) translateX(0px);
}
.has-drop-down .drop-mega ul .srv-link:hover span {
  margin-left: 20px;
  color: var(--blue);
}
.has-drop-down .drop-mega ul .srv-link:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(-100%);
  left: 0;
  width: 17px;
  height: 17px;
  background: url(../images/blue-arrow.svg) center/cover no-repeat var(--blue);
  transition: 0.2s cubic-bezier(0.47, 0, 0.745, 0.715);
  border-radius: 50%;
}
.has-drop-down .drop-mega ul .srv-link .ic {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background: rgba(1, 66, 147, 0.08);
  display: flex;
  display: none;
  align-items: center;
  justify-content: center;
}
.has-drop-down .drop-mega ul .srv-link .ic img {
  width: 20px;
}

.main-header {
  padding: 2em 0px;
  padding-top: 1em;
}
.main-header .banner-inner {
  border-radius: 32px;
  overflow: hidden;
  padding: 5em 5em;
  position: relative;
  z-index: 5;
}
.main-header .banner-inner:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  background: linear-gradient(to right, #D9D9D9, rgba(217, 217, 217, 0));
}
.main-header .banner-inner.srv-inner {
  border-radius: 0 !important;
}
.main-header .banner-inner > * {
  position: relative;
  z-index: 5;
}
.main-header .banner-inner > img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
}

.banner-con {
  padding: 2em 0px;
  min-height: calc(100vh - 20em);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.banner-con h3 {
  font-size: 22px;
  color: #000;
}
.banner-con h1 {
  color: #1d1d1d;
  font-weight: 700;
  font-family: "sfpro-bold", sans-serif;
  font-size: 35px;
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  position: relative;
}
.banner-con h1:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30%;
  height: 3px;
  z-index: 5;
  border-radius: 100px;
  background: var(--orange);
}
.banner-con h1 span {
  color: var(--orange);
}

.hero-img {
  width: 100%;
}
@media (min-width: 991px) {
  .hero-img {
    transform-origin: right;
    transform: scale(1.05);
  }
}
.hero-img img {
  width: 100%;
}

.more-p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
.more-p .det h3 {
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 0;
  font-weight: 700;
}
.more-p .det p {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 14px;
  color: #8696A8;
}

.counter-wrap {
  display: flex;
  align-items: center;
}
.counter-wrap .counter {
  padding: 0px 1.5em;
}
.counter-wrap .counter h3 {
  color: var(--yellow);
  font-weight: 700;
  font-size: 42px;
  margin-bottom: 0;
}
.counter-wrap .counter:nth-child(1) {
  padding-left: 0;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}
.counter-wrap .counter:nth-child(2) {
  padding-right: 0;
}
.counter-wrap .counter p {
  font-size: 16px;
  font-weight: 500;
  color: #5E81A7;
  margin-bottom: 0;
}

.sc2 {
  background: #F8F8F7;
}

.ic-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.ic-grid > img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.ic-grid .r:nth-child(2) {
  padding-top: 4em;
}

.row-gap-25 {
  row-gap: 25px;
}

.ic-card {
  background: white;
  border-radius: 20px;
  padding: 3em 1.5em;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: flex-start;
  justify-content: center;
  position: relative;
  z-index: 5;
}
.ic-card.style-2 {
  max-width: 270px;
  margin: 0 auto;
  border-radius: 32px;
  padding: 3em 1.5em;
  height: 100%;
}
.ic-card.style-2 .det {
  max-width: 100% !important;
}
.ic-card.style-2 h3 {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
}
.ic-card.style-2 p {
  font-size: 16px !important;
  font-weight: 500 !important;
  max-width: 100% !important;
  line-height: 120% !important;
  width: 100%;
}
.ic-card:not(:last-child) {
  margin-bottom: 25px;
}
.ic-card:nth-child(3) {
  margin-top: 5em;
}
.ic-card .im {
  width: 90px;
  height: 90px;
  margin-bottom: 1.5em;
}
.ic-card .im img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.ic-card .det {
  max-width: 180px;
}
.ic-card .det p {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
  color: #556577;
  text-align: center;
}

.sub-head {
  color: var(--dark);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0;
}

.timer-container {
  border: 3px dashed #DB4646;
  margin-bottom: 40px;
  margin-top: 2.3em;
  padding: 2.5em 1.5em;
  padding-bottom: 0;
  border-radius: 20px;
}
.timer-container h3 {
  text-align: center;
  color: #DB4646;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 0.7em;
}
.timer-container .main-btn {
  margin-bottom: -30px;
}

.timer-wrapper {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 1.5em;
}
.timer-wrapper .time {
  display: flex;
  align-items: center;
  gap: 8px;
}
.timer-wrapper .time span, .timer-wrapper .time h3 {
  font-weight: 700;
  font-size: 36px;
  color: var(--dark);
  margin-bottom: 0;
}
.timer-wrapper .time h3 {
  font-weight: 600;
  color: #556577;
}

.up-text {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 3.5em;
}
.up-text p {
  margin-bottom: 0;
  font-size: 18px;
  color: var(--dark);
  font-weight: 500;
}
.up-text p span {
  font-size: 1.5em;
  color: #0AAF60;
  font-weight: 600;
}
.up-text.style-2 {
  margin-top: 0;
}
.up-text.style-2 img {
  filter: brightness(10000%);
}
.up-text.style-2.dark p {
  color: var(--dark);
}
.up-text.style-2 p {
  color: white;
  font-size: 20px;
}
.up-text.style-2 p span {
  font-size: 1em;
  display: inline-block;
  padding: 2px 5px;
  background: var(--yellow);
  color: var(--dark);
}

.para {
  font-size: 16px;
  color: #1D1D1D;
  font-family: "sfpro-medium", sans-serif;
  font-weight: 500;
}
.para b {
  color: #12355B;
  font-weight: 600;
}

.img-full {
  width: 100%;
}

.im-sec {
  position: relative;
  overflow: unset;
}
.im-sec .container {
  position: relative;
  z-index: 5;
}
.im-sec > img {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateY(40%);
  pointer-events: none;
}

.vid-sec {
  position: relative;
  overflow: unset;
  padding-top: 0;
}
.vid-sec .container {
  position: relative;
  z-index: 5;
}
.vid-sec > img {
  position: absolute;
  left: 0;
  bottom: 0%;
  pointer-events: none;
}

.vid-wrap {
  width: 100%;
  padding-top: 56.24%;
  position: relative;
  overflow: hidden;
  border-radius: 32px;
}
.vid-wrap > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.vid-wrap button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border-radius: 100px;
  background: white;
  outline: none;
  border: noen;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.vid-wrap button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
.vid-wrap button:hover img {
  transform: scale(0.85);
}
.vid-wrap button img {
  margin-left: 5px;
  transition: 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.tick-sec {
  overflow: unset;
  position: relative;
}
.tick-sec .container {
  position: relative;
  z-index: 5;
}
.tick-sec > img {
  position: absolute;
  pointer-events: none;
}
.tick-sec .border1 {
  top: 0;
  transform: translateY(-60%);
  right: 0;
}
.tick-sec .border2 {
  bottom: 0;
  transform: translateY(0%);
  left: 0;
}

.pale-sec {
  background: #9DB5B2;
  position: relative;
}
.pale-sec > img {
  position: absolute;
  width: 100%;
  top: 65%;
  left: 0;
  transform: translateY(-50%);
  pointer-events: none;
}
.pale-sec .container {
  position: relative;
  z-index: 5;
}

.icc-card {
  position: relative;
  border-radius: 32px;
  background: white;
  padding: 3em 2em;
}
.icc-card .ic {
  width: 80px;
  height: 80px;
  border-radius: 100px;
  overflow: hidden;
  margin: 0 auto;
  background: var(--gr);
  margin-bottom: 20px;
}
.icc-card .ic img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.icc-card .det {
  position: relative;
}
.icc-card .det h3 {
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 5px;
  color: var(--dark);
}
.icc-card .det p {
  margin-bottom: 0;
  text-align: center;
  color: #556577;
}

.icc-sec {
  position: relative;
}
.icc-sec .container {
  position: relative;
  z-index: 5;
}
.icc-sec > img {
  position: absolute;
  top: 50%;
  pointer-events: none;
  transform: translateY(-50%) translateX(-50%);
  width: 100%;
  max-width: 1100px;
  left: 50%;
}

.ben-sec {
  position: relative;
  padding: 5em 0px !important;
  background: #E4959E !important;
}

.txt-wrap {
  display: flex;
  gap: 10px;
}
.txt-wrap .det {
  position: relative;
}
.txt-wrap .det h3 {
  color: white;
  font-size: 20px;
  font-weight: 700;
}
.txt-wrap .det p {
  font-size: 16px;
  color: white;
  font-weight: 400;
  margin-bottom: 0;
}

.test-card {
  padding: 2em;
  border-radius: 32px;
  border: 2.5px solid #FFF;
  background: linear-gradient(232deg, #FFF 4.81%, #F8F8F8 95.07%);
}
.test-card .test-det {
  display: flex;
  align-items: center;
  gap: 15px;
}
.test-card .test-det .im {
  width: 70px;
  height: 70px;
  background: var(--gr);
  border-radius: 50%;
  overflow: hidden;
}
.test-card .test-det .im img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.test-card .test-det h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0;
}
.test-card .test-det h3 img {
  width: 24px;
}
.test-card .para {
  margin-top: 1.5em;
  margin-bottom: 0;
}

.test-swiper-container {
  margin-top: 3em;
  position: relative;
}
.test-swiper-container > * {
  position: relative;
  z-index: 5;
}
.test-swiper-container > img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 1100px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.test-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 1.5em;
}
.test-nav button {
  outline: none;
  box-shadow: none;
  border: none;
  background: transparent;
  transition: 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.test-nav button:active {
  transform: scale(0.9);
}
.test-nav button img {
  width: 60px;
}

.th-text {
  font-size: 22px;
  line-height: 140%;
  color: rgba(18, 53, 91, 0.74);
  margin-top: 1.7em;
}

.th-con {
  padding: 2em 0px;
}

.pr-sec {
  position: relative;
  overflow: unset;
  padding-bottom: 0px !important;
}
.pr-sec > img {
  position: absolute;
  top: 0;
  width: 100%;
  transform: translateY(-15%);
  left: 0;
  pointer-events: none;
}
.pr-sec .container {
  position: relative;
  z-index: 5;
}

.con-sec {
  position: relative;
  z-index: 8;
}

.con-wrapper {
  padding: 5em 5em;
  padding-bottom: 0;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  background: #9DB5B2;
}

.form-group {
  width: 100%;
  position: relative;
  margin-bottom: 15px;
}
.form-group .inp-grp {
  position: relative;
  width: 100%;
}
.form-group .inp-grp input, .form-group .inp-grp textarea, .form-group .inp-grp select {
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  outline: none;
  border: none;
  border: 1px solid rgba(10, 20, 47, 0.55);
  padding: 15px 20px;
  background: transparent;
  border-radius: 5px;
  transition: 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.form-group .inp-grp input:focus, .form-group .inp-grp textarea:focus {
  border: 1px solid var(--yellow);
  box-shadow: 0px 0px 0px 5px rgba(254, 177, 47, 0.3);
}

.iti {
  width: 100%;
}

.iti__selected-flag {
  background-color: transparent !important;
  padding: 0px 20px !important;
}

.iti__flag.iti__in {
  transform: scale(1.35);
  transform-origin: left;
}

.iti__selected-dial-code {
  padding-left: 10px !important;
  font-weight: 600;
  font-size: 20px;
}

#phone {
  padding-left: 120px !important;
}

.iti__arrow {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 8px solid #555;
}

.label-text {
  font-size: 20px;
  color: white;
  font-weight: 500;
}

label.error {
  color: red;
  font-size: 14px;
  margin-top: 7px;
}

.cus-radio {
  position: relative;
  height: 100%;
}
.cus-radio input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.cus-radio input:checked ~ label {
  opacity: 1;
}
.cus-radio input:checked ~ label img {
  transform: scale(1);
}
.cus-radio label {
  background: white;
  border-radius: 32px;
  text-align: center;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
  cursor: pointer;
  padding: 3em 2em;
  height: 100%;
  opacity: 0.75;
  transition: 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.cus-radio label:active {
  transform: scale(0.95);
}
.cus-radio label img {
  position: absolute;
  transform: scale(0);
  top: 1em;
  transition: 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  right: 1em;
}
.cus-radio label p {
  text-align: center;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 20px;
  color: var(--dark);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  max-width: 250px;
}

.ft-bottom {
  position: relative;
  margin-top: 4em;
  padding-bottom: 1.5em;
}
.ft-bottom p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
  color: white;
}

.sec-head {
  font-family: "argentum-regular", sans-serif;
  font-size: 60px;
  color: #000;
  line-height: 100%;
}
.sec-head.xsm {
  font-size: 26px;
}
.sec-head span {
  color: var(--orange);
  font-family: "argentum-regular", sans-serif;
}
.sec-head.sm {
  font-size: 42px;
}

.sec2-inner {
  position: relative;
  padding: 5em 1.5em;
}
.sec2-inner > * {
  position: relative;
  z-index: 5;
}
.sec2-inner::after {
  content: "";
  position: absolute;
  border-radius: 8px;
  left: 0;
  top: 0;
  width: 100%;
  height: 60%;
  background: white;
}

.icd-card {
  position: relative;
  border-radius: 32px;
  padding: 3em 2.5em;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
}
.icd-card.style-3 {
  background: white;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
}
.icd-card.style-2 {
  padding: 1.5em 2.5em;
}
.icd-card.style-2:after {
  opacity: 0 !important;
}
.icd-card.style-2:hover img {
  filter: invert(0) brightness(100%) !important;
}
.icd-card.style-2:hover h3, .icd-card.style-2:hover p {
  color: #1d1d1d !important;
}
.icd-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  background: var(--gr);
  opacity: 0;
  transition: 0.2s ease-in-out;
}
.icd-card:hover::after, .icd-card.active::after {
  opacity: 1;
}
.icd-card:hover h3, .icd-card:hover p, .icd-card.active h3, .icd-card.active p {
  color: white;
}
.icd-card:hover img, .icd-card.active img {
  filter: invert(100%) brightness(100%);
}
.icd-card > * {
  position: relative;
  z-index: 5;
}
.icd-card img {
  width: 60px;
  margin-bottom: 20px;
}
.icd-card h3 {
  font-family: "sfpro-bold", sans-serif;
  font-size: 24px;
}
.icd-card p {
  font-size: 16px;
  color: #1D1D1D;
  margin-bottom: 0;
}

.devider {
  margin: 3em 0px;
  height: 2px;
  background: radial-gradient(rgba(0, 0, 0, 0.35), rgba(102, 102, 102, 0));
}

.art-tp {
  display: flex;
  align-items: center;
  justify-content: center;
}
.art-tp h3 {
  font-size: 35px;
  margin-bottom: 0;
}

.cc-tabs {
  border: none !important;
  gap: 1em;
}
.cc-tabs button {
  border-radius: 100px !important;
  background: #EBEBEB !important;
  color: #122694 !important;
  padding: 12px 30px !important;
  border: none !important;
  color: #F68920 !important;
}
.cc-tabs button.active {
  background: var(--gr) !important;
  color: white !important;
}

.bl-ft-blog {
  position: relative;
  width: 100%;
  padding: 2em 2em;
  border-radius: 24px;
  overflow: hidden;
}
.bl-ft-blog > img {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.bl-ft-blog::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0), #000);
}
.bl-ft-blog .bl-con {
  z-index: 5;
  position: relative;
  margin-top: 16em;
}
.bl-ft-blog .bl-con h3 {
  color: white;
  text-align: left;
}
.bl-ft-blog .bl-con p {
  color: white;
}
.bl-ft-blog .bl-con .read-more-btn {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.bl-ft-blog .bl-con .read-more-btn span {
  color: white;
}

.bl-card {
  display: flex;
  align-items: center;
  gap: 1em;
}
.bl-card p {
  margin-bottom: 0;
  font-size: 14px;
  color: #1D1D1D;
  font-family: "sfpro", sans-serif;
}
.bl-card h3 {
  font-family: "sfpro-bold", sans-serif;
  font-size: 16px;
  margin-bottom: 0;
  color: #1D1D1D;
}

.bl-more {
  padding: 0em 2em;
}

.icf-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.icf-card h3 {
  text-align: center;
  font-size: 40px;
  font-family: "sfpro-medium", sans-serif;
  margin-bottom: 0;
}

.sol-container {
  position: relative;
  padding: 3em 3em;
  background: white;
}

.im-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  padding: 2em;
}
.im-wrapper > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.im-wrapper .im-card {
  position: relative;
  z-index: 5;
  background: white;
  padding: 1.5em;
  border-radius: 18px;
}
.im-wrapper .im-card h4 {
  color: #F38434 !important;
  font-family: "sfpro-bold", sans-serif;
  font-size: 36px;
}

.lang-select {
  position: relative;
}
.lang-select select {
  border-radius: 100px;
  background: #FCFCFC;
  padding: 12px 15px;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #1D1D1D;
  padding-left: 45px;
  padding-right: 45px;
  cursor: pointer;
  font-size: 14px;
}
.lang-select .lang {
  position: absolute;
  top: 50%;
  left: 1em;
  width: 18px;
  transform: translateY(-50%);
  z-index: 5;
}
.lang-select img {
  pointer-events: none;
}
.lang-select .drop {
  position: absolute;
  top: 50%;
  right: 1.2em;
  width: 12px;
  transform: translateY(-50%);
  z-index: 5;
}

.ic-list {
  position: relative;
}
.ic-list li {
  display: flex;
  align-items: center;
  gap: 1em;
}
.ic-list li h3 {
  font-family: "sfpro", sans-serif;
  color: #333333;
}
.ic-list li p {
  margin-bottom: 0;
  font-family: "sfpro", sans-serif;
  font-size: 16px;
  color: #4F4F4F;
}

.ft-con-det {
  position: relative;
}
.ft-con-det li a {
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.5em 0px;
}
.ft-con-det li a span {
  color: #1d1d1d;
}

.ft-btm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(103, 103, 103, 0.2);
  padding: 1.2em 0px;
  margin-top: 3em;
}
.ft-btm ul {
  display: flex;
  align-items: center;
}
.ft-btm ul li a {
  color: black;
}

.ft-logo {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}
.ft-logo img {
  width: auto;
  height: 50px;
  mix-blend-mode: multiply;
}

.ft-head {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 15px;
}

.ft-list {
  position: relative;
}
.ft-list li a {
  color: black;
  font-weight: 200;
  padding: 0.5em 0px;
  display: inline-block;
}

.main-footer {
  padding-top: 4em;
}

.con-container {
  position: relative;
  background: white;
  padding: 3em;
  box-shadow: 0px 80px 105px 0px rgba(51, 51, 51, 0.1);
  border: 1px solid #FF6B20 !important;
}

.hm-header {
  position: relative;
  padding-bottom: 1em !important;
}
.hm-header > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.hm-header .container {
  position: relative;
  z-index: 2;
}

.hm-cap-container {
  position: relative;
  display: flex;
  background: white;
  border-radius: 23px;
}
.hm-cap-container .hm-cap {
  position: relative;
  padding: 3em 3em;
  border-radius: 20px;
  text-align: center;
  flex: 1 1 auto;
}
.hm-cap-container .hm-cap:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gr);
  border-radius: 20px;
  transition: 0.3s ease-in-out;
  opacity: 0;
}
.hm-cap-container .hm-cap.active:after {
  opacity: 1;
  transform: scale(1.2);
}
.hm-cap-container .hm-cap.active p {
  color: white;
}
.hm-cap-container .hm-cap p {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 20px;
  transition: 0.3s ease-in-out;
  line-height: 130%;
  color: #1d1d1d;
  position: relative;
  z-index: 5;
}

.hm-banner-con {
  position: relative;
  padding: 6em 0px;
  min-height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hm-banner-con h1 {
  color: #000;
  font-size: 42px;
}

.media-img {
  height: auto;
  padding-top: 70%;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.media-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hm-banner-con p {
  color: #454545;
  font-size: 18px;
  font-family: "argentum-light", sans-serif;
}

.ms-img-container {
  position: relative;
  min-height: calc(100vh - 100px) !important;
  position: sticky;
  top: 100px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.ms-img-container .ms-imgs {
  padding-top: 65%;
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
}
.ms-img-container .ms-imgs img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 24px;
}

.ms-con-area {
  min-height: calc(100vh - 100px) !important;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.ms-con-area h3 {
  color: #F38434;
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 0;
  text-align: center;
}

.or-sec {
  background: var(--gr);
  border-radius: 52px;
  padding: 7em 0px;
}
.bg-header{
  background: var(--gr) !important;
}

.fund-card {
  position: relative;
  padding: 0;
  height: 100%;
  display: block;
}
.fund-card:hover .fund-con{
  background: #f18320;
}
.fund-card:hover .fund-con h3, .fund-card:hover .fund-con p{
  color: #fff;
}
.fund-card .fund-img {
  width: 100px;
  height: 100px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  z-index: 5;
  margin-left: 1.5em;
}
.fund-card .fund-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.fund-card .fund-con {
  position: relative;
  background: white;
  padding: 1.5em 1.5em;
  padding-top: 5em;
  margin-top: -3.5em;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
  border-radius: 24px;
  height: 85%;
  transition: 0.2s ease-in-out;
}
.fund-card .fund-con h3 {
  font-weight: 700;
  font-size: 20px;
  color: #000;
  transition: 0.2s ease-in-out;
}
.fund-card .fund-con p {
  margin-bottom: 0;
  color: #000;
  transition: 0.2s ease-in-out;
}

.sub-head {
  font-size: 24px;
  font-weight: 700;
}

.white {
  color: white !important;
}

.swiper-pagination {
  bottom: 0px !important;
}
.swiper-pagination span {
  width: 10px !important;
  height: 10px !important;
  background: white !important;
}

.fund-swiper-container .swiper {
  padding-bottom: 2.5em;
}
.fund-swiper-container .swiper .swiper-slide {
  height: auto !important;
}

.white-r-bg {
  position: relative;
  border-radius: 52px;
  background: white;
  padding: 7em 0px;
}

.ms-con {
  position: relative;
  display: flex;
  align-items: center;
  gap: 25px;
}
.ms-con p {
  margin-bottom: 0;
}
.ms-con h3 {
  font-weight: 700;
  margin-bottom: 15px;
}

.count-box {
  text-align: center;
}
.count-box img {
  margin: 0 auto;
  display: block;
  margin-bottom: 20px;
}
.count-box h3 {
  font-size: 40px;
}
.count-box p {
  font-size: 16px;
}

.ab-list {
  position: relative;
}
.ab-list li {
  display: flex;
  align-items: center;
  gap: 0px;
}
.ab-list li:not(:last-child) {
  margin-bottom: 10px;
}
.ab-list li h3 {
  font-size: 20px;
  font-weight: 700 !important;
  margin-bottom: 12px;
}
.ab-list li p {
  margin-bottom: 0;
}

.con-container {
  padding: 2em;
  background: white;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
}
.con-container button {
  padding: 15px 40px !important;
}

.con-card {
  position: relative;
  background: white;
  padding: 2em 1.3em;
  border-radius: 16px;
  text-align: center;
  height: 100%;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
}
.con-card:hover:after {
  opacity: 1;
}
.con-card:hover h3, .con-card:hover p {
  color: white !important;
}
.con-card:hover img {
  filter: invert(100%) brightness(1000%);
}
.con-card:after {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: var(--gr);
  border-radius: 16px;
  opacity: 0;
  transition: 0.2s ease-in-out;
}
.con-card img {
  display: block;
  margin: 0 auto;
  width: 70px;
  height: auto;
  margin-bottom: 20px;
  position: relative;
  z-index: 5;
  transition: 0.2s ease-in-out;
}
.con-card h3 {
  font-size: 20px;
  font-weight: 700;
  position: relative;
  z-index: 5;
  transition: 0.2s ease-in-out;
}
.con-card p {
  position: relative;
  z-index: 5;
  transition: 0.2s ease-in-out;
  margin-bottom: 0;
}

.inner-head {
  padding: 5em 0px;
  background: #ffffff;
}

.pdf-card {
  border-radius: 20px;
  padding: 1.2em;
  background: white;
}
.pdf-card img {
  margin-bottom: 20px;
}
.pdf-card h3 {
  font-size: 20px;
  color: #1d1d1d;
}
.pdf-card a {
  padding: 0px !important;
  background: transparent !important;
  text-decoration: underline !important;
  margin-top: 10px;
  font-weight: 700 !important;
  color: #F38434 !important;
  box-shadow: none !important;
}
.pdf-card a span {
  font-weight: 700 !important;
  color: #F38434 !important;
}

.team-card {
  position: relative;
}
.team-card .team-img {
  position: relative;
  padding-top: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}
.team-card .team-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.team-card h3 {
  text-align: center;
  font-size: 20px;
}
.team-card p {
  text-align: center;
  margin-bottom: 0;
  font-weight: 400;
  opacity: 0.85;
}

.tem-heading {
  text-align: center;
  font-size: 32px;
  margin-top: 1.5em;
}

.acc .accordion-item {
  border: none !important;
  background: #D7D7D7 !important;
  border-radius: 20px !important;
  margin-bottom: 20px;
  overflow: hidden !important;
}
.acc .accordion-body {
  background: #D7D7D7 !important;
}
.acc .accordion-body p {
  margin-bottom: 0;
}
.acc .accordion-button {
  background: white !important;
  box-shadow: none !important;
  border: 2px solid transparent !important;
  border-radius: 20px !important;
}
.acc .accordion-button:not(.collapsed) {
  border: 2px solid #F38434 !important;
}
.acc .accordion-button .mem-acc {
  display: flex;
  align-items: center;
  gap: 13px;
}
.acc .accordion-button .mem-acc img {
  width: 45px;
  height: auto;
}
.acc .accordion-button .mem-acc span {
  font-weight: 700;
  color: #1d1d1d !important;
}

.thk-msg {
  padding: 0.8em 1.2em;
  border-radius: 8px;
  background: #f3fdf3;
  border: 1px solid green;
  margin-top: 1em;
  display: none;
}

.thk-msg p {
  font-weight: 500;
  text-align: center;
  margin: 0;
  color: green;
}

.mob-el {
  display: none !important;
}

.stack-slider .swiper-slide {
  border-radius: 20px;
  overflow: hidden;
}
.stack-slider .stack-card {
  position: relative;
  padding: 3.5em 2.3em;
  border-radius: 16px;
  background: white;
}
.stack-slider .stack-card img {
  margin-bottom: 30px;
  width: 80px !important;
  height: auto;
}
.stack-slider .stack-card h3, .stack-slider .stack-card p {
  color: white;
}
.stack-slider .stack-card h3 {
  font-size: 32px;
}
.stack-slider .stack-card p {
  font-size: 18px;
  margin-bottom: 0;
}
.stack-slider .swiper-slide-visible .stack-card {
  background: linear-gradient(#BF4724, #F68920) !important;
}
.stack-slider .swiper-slide-visible .stack-card img {
  /* filter: invert(100%) brightness(100000%) saturate(0); */
}

.srv-card-swiper {
  margin-top: 2em;
}
.srv-card-swiper .swiper-slide{
  height: auto;
}
.srv-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  padding: 1.8em 1.5em;
  /* padding-top: 120%; */
  width: 100%;
  display: block;
  text-align: center;
  height: 100%;
  transition: 0.2s ease-in-out;
}
.srv-card:hover{
  transform: scale(0.9) !important;
}
.srv-card{
  /* padding-top: 60% !important; */
  background: linear-gradient(to right, #BF4724, #F68920);
}
.srv-card > img {
  width: 80px;
  height: 80px;
  display: block;
  margin: 0 auto;
  margin-bottom: 12px;
  /* position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: 0.3s ease-in-out;
  opacity: 0; */
}
.srv-card:hover > img {
  /* transform: scale(1.2); */
}
.srv-card:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  bottom: 0;
  z-index: 3;
  opacity: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(0, 0, 0));
}
.srv-card span {
  /* position: absolute;
  bottom: 1em; */
  /* padding: 0px 1em; */
  line-height: 110%;
  color: white;
  font-weight: 500;
  font-size: 26px;
  z-index: 5;
}
.para span {
  color: rgb(171, 171, 171);
  transition: color 0.3s ease;
}
.srv-sec-inner {
  background: white;
  border-radius: 24px;
  padding: 4.5em 0px;
  padding-top: 0;
  position: relative;
  z-index: 5;
  overflow: hidden;
}

.sol-sec {
  padding: 0px 1.5em;
  position: relative;
  background: transparent;
  overflow: unset;
}
.sol-sec > img {
  position: absolute;
  bottom: 0;
  top: unset;
  max-width: 100%;
  left: 50%;
  transform: translateY(50%) translateX(-50%);
}

.para.big {
  padding-left: 3em;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 24px;
  font-family: "argentum-light", sans-serif;
  color: #6C6C6C;
}

.ab-sec-sec {
  position: relative;
  z-index: 55;
  padding-top: 8em;
}

.gr-tab-content {
  position: relative;
  background: #FF6B20;
  border-radius: 24px;
  padding: 3em 2em;
}

.gr-tab-content {
  position: relative;
  background: #FF6B20;
}

.news-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
}
.news-card:not(.big) {
  display: block;
}
.news-card:not(.big) .news-img {
  padding-top: 60%;
  position: relative;
}
.news-card:not(.big) .news-img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.news-card h3 {
  font-size: 20px;
  line-height: 130%;
}
.news-card p {
  font-family: "argentum-light", sans-serif;
}
.news-card .news-det {
  padding: 1.5em 1.5em;
}
.news-card span {
  color: black;
}
.news-card .know-more {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: -moz-max-content;
  max-width: max-content;
}
.news-card .know-more span {
  font-size: 16px;
}

.news-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.news-card.big {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  align-items: center;
  height: 100%;
}
.news-card.big h3 {
  font-size: 28px;
}
.news-card.big .news-img {
  position: relative;
  flex: 1 1 auto;
  height: 100%;
}
.news-card.big .news-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.gr-tab {
  position: relative;
  display: flex;
  justify-content: flex-end;
  margin-left: auto;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-right: 8em;
  padding: 12px 20px !important;
  padding-bottom: 0 !important;
  background: #FF6B20;
  border: none !important;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}
.gr-tab:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 25px;
  height: 25px;
  background: url(../images/pt-left.svg) center/contain no-repeat;
  transform: translateX(-100%);
}
.gr-tab:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 25px;
  height: 25px;
  background: url(../images/pt-right.svg) center/contain no-repeat;
  transform: translateX(100%);
}
.gr-tab li button {
  padding: 10px 45px !important;
  outline: none !important;
  border: none !important;
  border-radius: 100px !important;
  color: white;
  font-size: 16px;
}

.con-form-container {
  position: relative;
  border-radius: 32px;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25);
  padding: 5em 5em;
  height: 100%;
}
.con-form-container form {
  margin-top: 2em;
}

.inner-page-header {
  position: relative;
}
.inner-page-header > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.inner-page-header .banner-con {
  min-height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.inner-page-header .banner-con h1 {
  font-family: "argentum-regular", sans-serif;
  font-weight: 400;
  font-size: 52px;
  padding: 0;
  border: none !important;
}
.inner-page-header .banner-con h1:after {
  display: none;
}
.inner-page-header .banner-con h1 span {
  font-family: "argentum-regular", sans-serif;
  font-weight: 400;
}

.law-sec {
  position: relative;
  padding-top: 7em;
}
.law-sec > img {
  position: absolute;
  bottom: 0;
  max-width: 100%;
  top: 0;
  transform: translateY(-60%);
}

.ms-inner-container {
  position: relative;
  border-radius: 24px;
  padding: 2em;
  background: var(--gr);
  margin-top: 2.5em;
}

.ms-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  align-items: center;
  gap: 25px;
}
.ms-wrap .ms-img {
  height: 100%;
  overflow: hidden;
}
.ms-wrap .ms-img img{
  transition: 0.2s ease-in-out;
}
.ms-wrap:hover .ms-img img{
  transform: scale(1.15);
}
@media (min-width: 600px) {
  .ms-wrap .ms-img {
    min-height: 400px;
  }
}
.ms-wrap .ms-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.ms-wrap .ms-det {
  padding-right: 3em;
}

.job-card {
  position: relative;
  background: white;
  border-radius: 20px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
  padding: 2em 1.5em;
  overflow: hidden;
  padding-left: 2em;
}
.job-card h3 {
  background: linear-gradient(#FF6B20, #94116F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.job-card:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(#FF6B20, #94116F);
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.how-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px;
}
.how-grid::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 2px;
  border-bottom: 2px dashed #A9CDCD;
}
.how-grid .how-card {
  position: relative;
  padding: 35px 30px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: white;
  z-index: 5;
}
.how-grid .how-card:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(#BF4724, #F68920);
  opacity: 0;
  height: 100%;
  transition: 0.2s ease-in-out;
}
.how-grid .how-card:hover::after {
  opacity: 1;
}
.how-grid .how-card:hover p {
  color: white;
}
.how-grid .how-card:hover img {
  filter: invert(100%) brightness(10000%);
}
.how-grid .how-card p {
  text-align: center;
  margin-bottom: 0;
  transition: 0.2s ease-in-out;
  font-family: "argentum-light", sans-serif;
}
.how-grid .how-card img {
  margin-bottom: 20px;
  transition: 0.2s ease-in-out;
}
.how-grid .how-card > * {
  position: relative;
  z-index: 5;
}

.mem-sec {
  position: relative;
}
.mem-sec > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.mem-sec .container {
  position: relative;
  z-index: 5;
}

.blog-inner-img {
  position: relative;
  padding-top: 45%;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 24px;
  margin-bottom: 1.2em;
}
.blog-inner-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.gr-text {
  background: linear-gradient(#FF6B20, #94116F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.blog-inner-header {
  position: relative;
  padding: 4em 0px;
}
.blog-inner-header > img {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  height: 100vh;
  opacity: 0.5;
}

.has-drop {
  position: relative;
}
.has-drop:hover .drop-mega {
  opacity: 1;
  pointer-events: unset;
}

.drop-mega {
  transition: 0.2s ease-in-out;
}
@media (min-width: 600px) {
  .drop-mega {
    position: absolute;
    top: 100%;
    right: 0;
    opacity: 0;
    pointer-events: none;
  }
}
.drop-mega ul {
  min-width: 300px;
  background: white;
  overflow: hidden;
  border-radius: 20px;
  margin-top: 1em;
  padding: 0.6em 0px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
}
.drop-mega ul li:not(:last-child) a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.drop-mega ul li a {
  display: block;
  width: 100%;
  padding: 0.5em 1em;
}
.news-card:hover .know-more img {
  transform: translateX(10px);
}
.news-card .know-more img {
  transition: 0.2s ease-in-out;
}
.sw-nav{
  position: relative;
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 1em;
  justify-content: center;
}
.sw-nav button{
  background: transparent;
  outline: none;
  border: none;
}


/* fixed social*/
#fixed-social {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99999;
}
@media(max-width: 600px){
  #fixed-social{
    position: absolute !important;
    display: none !important;
  }
}

#fixed-social a {
  color: #fff;
  display: block;
  height: 40px;
  position: relative;
  text-align: center;
   line-height: 40px;
  width: 40px;
  margin-bottom: 1px;
  z-index: 2;
}
#fixed-social a:hover>span{
 visibility: visible;
 left: 41px;
 opacity: 1;
} 
#fixed-social a span {
 line-height: 40px;
   left: 60px;
   position: absolute;
   text-align: center;
   width: 120px;
   visibility: hidden;
   transition-duration: 0.5s;
   z-index: 1;
   opacity: 0;
}
.fixed-facebook{
  background-color: #f48620;
}
.fixed-facebook span{
 background-color: #f48620;
}
.fixed-twitter{
 background-color: #f48620;

}
.fixed-twitter span{
  background-color: #f48620;
}
.fixed-gplus{
 background-color: #f48620;

}
.fixed-gplus span{
  background-color: #f48620;
}
.fixed-linkedin{
 background-color: #f48620;

}
.fixed-linkedin span{
  background-color: #f48620;
}
.fixed-instagrem{
 background-color: #f48620;

}
.fixed-instagrem span{
  background-color: #f48620;
}
.fixed-tumblr{
 background-color: #f48620;

}
.fixed-tumblr span{
  background-color: #f48620;
}

.stack-swiper .swiper-slide {
  height: auto;
}
.stack-swiper .swiper-slide .stack-card {
  height: 100%;
}

.media-video {
  position: relative;
  overflow: hidden;
  padding-top: 56%;
  background: gray;
  border-radius: 16px;
}
.media-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.f-nav{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}
.f-nav button{
  background: transparent;
  outline: none;
  border: none;
}
.key-card{
  transition: 0.3s ease-in-out;
}
.key-card:hover{
  /* background: #f28e28 !important; */
  background: var(--gr) !important;
}
.key-card:hover h3{
  color: #fff !important;
}
.key-card:hover p{
  color: #fff !important;
}

#alphabetFilter span {
  border: 1px solid #c24d26;
  color: #c04b24;
}

#alphabetFilter span:hover {
  background: #c04b24;
  color: white !important;
}
#alphabetFilter span.active {
  color: white;
  background: #c04b24;
}

.inner-head > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-head {
  background: transparent !important;
  position: relative;
  padding: 8em 0px;
}

.fund-img {
  background: white;
  border: 2px solid #e77744;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fund-img img {
  width: 78% !important;
  height: auto !important;
}
.sol-nav{
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
  justify-content: center;
}
.sol-nav button img{
  width: 12px;
  height: auto;
}
.sol-nav button{
  width: 50px;
  height: 50px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e77744;
  outline: none;
  border: none;
  box-shadow: none;
}

@media(max-width: 600px){
  
.gr-tab {
  width: 95% !important;
}
.gr-tab button {
  min-width: max-content !important;
}
.gr-tab {
  padding-bottom: 12px !important;
}
.gr-tab-content {
  border-radius: 10px;
}
.con-con{
  margin-bottom: 25px !important;
}
.how-grid{
  grid-template-columns: 1fr !important;
  gap:25px !important;
}
}
/*end fixed social*/
/*# sourceMappingURL=main.css.map */