* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "ManropeRegular";
  src: url("../../fonts/Manrope-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ManropeMedium";
  src: url("../../fonts/Manrope-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NohemiMedium";
  src: url("../../fonts/Nohemi-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NohemiRegular";
  src: url("../../fonts/Nohemi-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --primary-color: rgba(0, 193, 0, 1);
  --black: rgba(20, 20, 20, 1);
  --white: rgba(255, 255, 255, 1);
  --ManropeRegular: "ManropeRegular", sans-serif;
  --ManropeMedium: "ManropeMedium", sans-serif;
  --NohemiMedium: "NohemiMedium", sans-serif;
  --NohemiRegular: "NohemiRegular", sans-serif;
}

html.lenis,
html.lenis body {
  height: auto;
}

img,
video {
  max-width: 100%;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

.primary-title {
  font-family: var(--NohemiRegular);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.2;
  color: #232323;
}
.primary-title span {
  color: #15578B;
}
.primary-title.white {
  color: var(--white);
}

.secondry-title {
  font-family: var(--NohemiMedium);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.2;
  color: #232323;
}
.secondry-title span {
  color: #15578B;
}
.secondry-title.white {
  color: var(--white);
}

.divider {
  border-top: solid 1px rgba(28, 28, 28, 0.1);
  margin: 26px 0;
}

.desc {
  font-family: var(--ManropeRegular);
  font-size: clamp(14px, 3vw, 16px);
  font-weight: 400;
  line-height: 1.1;
  color: rgb(80, 80, 80);
}
.desc.light {
  color: rgba(255, 255, 255, 0.8);
}
.desc.normal {
  color: var(--white);
}
.desc.dark {
  color: rgb(200, 200, 200);
}

.primary-btn {
  background: var(--white);
  padding: 4px 4px 4px 12px;
  border-radius: 4px;
  font-family: var(--NohemiRegular);
  font-weight: 400;
  font-size: 16px;
  color: var(--black);
  width: max-content;
  height: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.primary-btn.dark {
  background: var(--black);
  color: var(--white);
}
.primary-btn.dark .btn-img {
  background: var(--white);
}
.primary-btn.dark .btn-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  transform: translateX(-100%);
  transition: 0.5s all;
  z-index: -1;
}
.primary-btn.dark .btn-img > div img {
  filter: invert(1);
  transition: 0.5s all;
}
.primary-btn.dark .btn-img > div img:nth-child(1) {
  position: unset;
  transform: translateX(0);
}
.primary-btn.dark:hover {
  color: var(--white);
}
.primary-btn.dark:hover .btn-img {
  background: rgba(255, 255, 255, 0.1);
}
.primary-btn.dark:hover .btn-img::before {
  transform: translateX(0);
}
.primary-btn.dark:hover .btn-img > div img {
  filter: invert(0);
}
.primary-btn:hover {
  color: var(--black);
}
.primary-btn:hover .btn-img > div img {
  transform: translateX(45px);
}
.primary-btn .btn-img {
  width: 36px;
  height: 36px;
  width: 36px;
  height: 36px;
  background: var(--primary-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  transition: 0.3s all;
  z-index: 1;
}
.primary-btn .btn-img > div img {
  transition: 0.3s all;
}
.primary-btn .btn-img > div img:nth-child(1) {
  position: absolute;
  left: -35px;
}
.primary-btn .btn-img > div img:nth-child(2) {
  display: block;
}

.secondary-btn {
  background: var(--primary-color);
  border-radius: 10px;
  padding: 5px 12px;
  color: var(--white);
  border: 7px solid rgba(167, 167, 167, 0.1);
  max-width: max-content;
  display: flex;
  gap: 10px;
  font-weight: 500;
}
.secondary-btn .arrow-btn {
  position: relative;
  overflow: hidden;
  transition: 0.4s;
  height: 24px;
  width: 24px;
}
.secondary-btn .arrow-btn img {
  transition: 0.4s;
  position: absolute;
  top: 6px;
}
.secondary-btn .arrow-btn .firstImage {
  left: 0;
}
.secondary-btn .arrow-btn .secondImage {
  left: 110%;
}
.secondary-btn:hover {
  color: var(--white);
}
.secondary-btn:hover .arrow-btn .firstImage {
  left: -110%;
}
.secondary-btn:hover .arrow-btn .secondImage {
  left: 0;
}

@media screen and (max-width: 768px) {
  .offer-arrows .swiper-button-next,
  .offer-arrows .swiper-button-prev {
    width: 40px !important;
  }
}
@media screen and (max-width: 992px) {
  .offer-arrows {
    margin-top: 20px !important;
  }
}
.fix-social {
  position: fixed;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  right: 20px;
  z-index: 99;
}
.fix-social a:nth-child(2) {
  background-color: var(--primary-color);
  border-radius: 50px;
  border: 1px solid var(--white);
  color: var(--white);
  font-size: 17px;
  display: block;
  padding: 4px 18px;
}

.mainDropdown > a.active::after {
  content: "";
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 999;
  display: block;
  pointer-events: unset;
}

body.active {
  overflow: hidden;
}

/* SIDEBAR START STYLE */
body.open-sidebar .sidebar {
  transition-delay: 0.2s;
}

body.open-sidebar .sidebar-bg,
body.open-sidebar .sidebar {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.sidebar-bg {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transform: translateX(400px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 102;
}

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-width: 350px;
  background-color: var(--black);
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.1215686275);
  z-index: 999999;
  transform: translateX(400px);
  visibility: hidden;
  transition: 0.3s;
  opacity: 0;
}

.sidebar .sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  gap: 10px;
  border-bottom: 1px solid #ddd;
}

.sidebar .sidebar-body {
  overflow: auto;
  height: calc(100% - 80px);
  padding: 15px;
}

.sidebar .sidebar-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar .sidebar-body ul li {
  border-bottom: 1px solid #eee;
}

.sidebar .sidebar-body ul li a {
  display: block;
  padding: 10px;
  color: var(--white);
  font-size: 1.1rem;
}
.sidebar .sidebar-body ul li a:hover {
  color: var(--primary-color);
}

.sidebar .sidebar-body ul li:last-child {
  border-bottom: none;
}

.our-product-mobile a {
  display: flex !important;
  justify-content: space-between;
}

.sidebar .sidebar-body ul.dropdown {
  padding: 0px;
  display: none;
}

.sidebar .sidebar-body ul.dropdown li {
  border-bottom: none;
  border-top: 1px solid #eee;
}

.menu-open {
  cursor: pointer;
  background-color: var(--primary-color);
  padding: 8px;
  border-radius: 100%;
}

.down-arrow-main {
  list-style: none;
}

.down-arrow-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  text-decoration: none;
  color: #222;
  cursor: pointer;
}

.down-arrow-toggle span {
  margin-right: 160px;
}

.down-arrow-toggle img {
  width: 14px;
}

.down-arrow-menu-list {
  list-style: none;
  padding-left: 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

.down-arrow-main.active .down-arrow-menu-list {
  max-height: 200px;
}

.down-arrow-main.active .down-arrow-toggle img {
  transform: rotate(180deg);
}

.down-arrow-menu-list li a {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  text-decoration: none;
  color: #555;
  font-size: 14px;
}

.down-arrow-menu-list .count {
  font-size: 12px;
  color: #999;
}

.iti {
  width: 100%;
}
.iti .iti__flag-container {
  padding-inline-start: 10px;
}
.iti .iti__tel-input {
  padding-left: 100px !important;
}
.iti .iti__search-input {
  padding: 10px;
}

.toastify {
  font-family: var(--gilroySemiBold) !important;
  font-weight: 600 !important;
  color: #000 !important;
  display: flex;
  font-size: 14px;
}

.toastify .toast-close {
  color: #000;
  opacity: 1;
  padding-left: 10px;
}

header {
  position: absolute;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  z-index: 1;
}
header .logo-menu-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .logo-menu-main .main-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}
header .logo-menu-main .main-menu li {
  padding: 8px 0;
  transition: 0.5s all;
  position: relative;
}
header .logo-menu-main .main-menu li.active > a {
  color: var(--primary-color);
}
header .logo-menu-main .main-menu li.active > a svg,
header .logo-menu-main .main-menu li.active > a img {
  stroke: var(--primary-color);
  transform: rotate(180deg);
  filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(1352%) hue-rotate(87deg) brightness(95%) contrast(119%);
}
header .logo-menu-main .main-menu li.active .dropdown-menu-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
header .logo-menu-main .main-menu li > a {
  font-family: var(--ManropeRegular);
  font-size: 16px;
  font-weight: 400;
  color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 8px;
  transition: 0.2s all ease-in;
  word-break: keep-all;
}
header .logo-menu-main .main-menu li > a svg,
header .logo-menu-main .main-menu li > a img {
  transition: 0.2s ease-in-out;
}
header .logo-menu-main .main-menu li > a:hover {
  color: var(--primary-color);
}
header .logo-menu-main .main-menu li > a:hover svg,
header .logo-menu-main .main-menu li > a:hover img {
  filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(1352%) hue-rotate(87deg) brightness(95%) contrast(119%);
}
header .logo-menu-main .main-menu li > a:last-child {
  padding-right: 0;
}
header .logo-menu-main .main-menu li .dropdown-menu-list {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 19px;
  min-width: 180px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s all ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 100;
}
header .logo-menu-main .main-menu li .dropdown-menu-list li {
  padding: 0;
  width: 100%;
}
header .logo-menu-main .main-menu li .dropdown-menu-list li a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  transition: 0.3s all ease;
  position: relative;
  overflow: hidden;
}
header .logo-menu-main .main-menu li .dropdown-menu-list li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: transparent;
  transition: 0.3s all ease;
}
header .logo-menu-main .main-menu li .dropdown-menu-list li a span {
  font-size: 14px;
  color: #fff;
  font-family: var(--ManropeMedium);
}
header .logo-menu-main .main-menu li .dropdown-menu-list li a .count {
  opacity: 0.5;
  font-size: 13px;
}
header .logo-menu-main .main-menu li .dropdown-menu-list li a:hover {
  background: rgba(0, 193, 0, 0.1019607843);
  border-color: #00c100;
}
header .logo-menu-main .main-menu li .dropdown-menu-list li a:hover span:not(.count) {
  color: #00c100;
}
header .logo-menu-main .main-menu li .dropdown-menu-list li a:hover .count {
  opacity: 0.7;
}

footer {
  position: relative;
  background: var(--black);
  padding-top: 75px;
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 992px) {
  footer {
    padding-top: 40px;
  }
}
footer .footer-left-img {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
}
footer .social-icon {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 20px;
}
footer .social-icon h4 {
  position: relative;
  font-family: var(--NohemiRegular);
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  padding-left: 18px;
}
footer .social-icon h4::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url("../../images/heading-img.png");
  background-repeat: no-repeat;
  background-size: cover;
  width: 10px;
  height: 11px;
  margin-bottom: 5px;
}
footer .social-icon ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}
footer .social-icon ul li a {
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(0deg, rgba(2, 247, 8, 0.5), rgba(2, 247, 8, 0.5)), linear-gradient(180deg, #02F708 0%, #001C00 140.25%);
  border-radius: 4px;
}
footer .contact-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 20px;
}
footer .contact-card h4 {
  position: relative;
  font-family: var(--NohemiRegular);
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  padding-left: 18px;
  margin-bottom: 0;
}
footer .contact-card h4::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url("../../images/heading-img.png");
  background-repeat: no-repeat;
  background-size: cover;
  width: 10px;
  height: 11px;
  margin-bottom: 5px;
}
footer .contact-card ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}
footer .contact-card ul li h6 {
  font-family: var(--NohemiRegular);
  font-size: 12px;
  color: var(--white);
  margin-bottom: 10px;
}
footer .contact-card ul li span {
  font-family: var(--ManropeRegular);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 5px;
  display: block;
}
footer .contact-card ul li a {
  font-family: var(--ManropeRegular);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}
footer .contact-card ul li a:hover {
  color: rgba(255, 255, 255, 0.5);
}
footer .contact-card a {
  font-family: var(--ManropeRegular);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}
footer .contact-card a:hover {
  color: rgba(255, 255, 255, 0.5);
}
footer .contact-card p {
  font-family: var(--ManropeRegular);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}
footer .footer-menu-main {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px;
  padding-right: 50px;
}
@media screen and (max-width: 992px) {
  footer .footer-menu-main {
    padding-right: 0;
  }
}
footer .footer-menu-main .menu-main h4 {
  position: relative;
  font-family: var(--NohemiRegular);
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 400;
  color: var(--white);
  padding-left: 18px;
}
footer .footer-menu-main .menu-main h4::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url("../../images/heading-img.png");
  background-repeat: no-repeat;
  background-size: cover;
  width: 10px;
  height: 11px;
  margin-bottom: 5px;
}
footer .footer-menu-main .menu-main ul {
  margin-top: 25px;
}
footer .footer-menu-main .menu-main ul li {
  padding-bottom: 15px;
}
footer .footer-menu-main .menu-main ul li a {
  font-family: var(--ManropeRegular);
  font-size: clamp(16px, 3vw, 20px);
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s all;
}
footer .footer-menu-main .menu-main ul li a:hover {
  color: var(--primary-color);
}
footer .footer-menu-main .disclaimer-content {
  max-width: 200px;
}
footer .footer-menu-main .disclaimer-content span {
  font-family: var(--NohemiRegular);
  font-size: 12px;
  color: var(--primary-color);
  display: block;
  margin-bottom: 10px;
}
footer .footer-menu-main .disclaimer-content p {
  font-family: var(--NohemiRegular);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}
footer .footer-menu-main .disclaimer-content a {
  font-family: var(--NohemiRegular);
  font-size: 12px;
  color: var(--primary-color);
}
footer .footer-menu-main .disclaimer-content a:hover {
  color: var(--primary-color);
}
footer .footer-logo img {
  width: 100%;
}
footer .copy-right-text {
  background-color: #000000;
  text-align: center;
  padding: 25px;
}
@media screen and (max-width: 500px) {
  footer .copy-right-text {
    padding: 15px;
  }
}
footer .copy-right-text span {
  font-family: var(--NohemiRegular);
  font-size: 13.86px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
}
footer .copy-right-text span #year {
  padding-right: 8px;
}
footer .copy-right-text span a {
  color: var(--white);
  transition: 0.3s all;
}
footer .copy-right-text span a:hover {
  color: var(--primary-color);
}

.first-banner {
  position: relative;
  overflow: hidden;
  display: none;
  z-index: 2;
  transition: 0.5s all;
}
.first-banner.active .logo-main {
  opacity: 1;
  visibility: visible;
}
.first-banner.active .circle-img {
  opacity: 1;
  visibility: visible;
}
.first-banner.active .banner-content .heading-mian {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}
.first-banner.hide {
  display: none;
}
.first-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
  pointer-events: none;
}
.first-banner .logo-main {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s all;
}
.first-banner .banner-img {
  overflow: hidden;
  height: 100vh;
}
.first-banner .banner-img video {
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 500px) {
  .first-banner .banner-img video {
    min-height: 670px;
  }
}
.first-banner .circle-img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s all;
  z-index: 0;
}
.first-banner .banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  z-index: 2;
}
@media screen and (max-width: 992px) {
  .first-banner .banner-content {
    top: 30%;
    left: 0;
    transform: translate(0);
  }
}
.first-banner .banner-content .heading-mian {
  transform: translateY(80px);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s all;
}
.first-banner .banner-content .heading-mian h1 {
  font-family: var(--NohemiMedium);
  font-size: clamp(38px, 5vw, 64px);
  color: var(--white);
  margin-bottom: 40px;
}

.home-banner {
  position: relative;
}
.home-banner iframe {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
}

.banner-main {
  position: relative;
  overflow: hidden;
  background: rgb(20, 20, 20);
}
.banner-main .banner-slider-main {
  position: relative;
  z-index: 0;
  opacity: 1;
  visibility: visible;
  transition: 0.5s all;
}
.banner-main .banner-slider-main .second-banner {
  position: relative;
  height: 100%;
}
.banner-main .banner-slider-main .second-banner .banner-img {
  position: relative;
}
.banner-main .banner-slider-main .second-banner .banner-img img {
  width: 100%;
  min-height: 600px;
  object-fit: cover;
}
@media screen and (max-width: 500px) {
  .banner-main .banner-slider-main .second-banner .banner-img img {
    min-height: 670px;
  }
}
@media screen and (max-width: 500px) {
  .banner-main .banner-slider-main .second-banner .banner-img .bg-opacity {
    opacity: 0.5;
  }
}
.banner-main .banner-slider-main .second-banner .banner-content {
  position: absolute;
  max-height: 400px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  bottom: 45px;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .banner-main .banner-slider-main .second-banner .banner-content {
    top: 20%;
  }
}
.banner-main .banner-slider-main .second-banner .banner-content .heading-mian {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 400px;
}
.banner-main .banner-slider-main .second-banner .banner-content .heading-mian h1 {
  font-family: var(--NohemiMedium);
  font-size: clamp(42px, 5vw, 64px);
  color: var(--white);
  margin-bottom: 40px;
}
.banner-main .banner-slider-main .second-banner .banner-content .heading-mian .secondry-title {
  font-size: clamp(32px, 4vw, 40px) !important;
  margin-bottom: 24px;
}
.banner-main .banner-slider-main .services-box-main {
  width: 100%;
  max-width: 450px;
}
.banner-main .banner-slider-main .services-box-main .box {
  padding: 16px 20px;
  border-radius: 8px;
  background: transparent;
  backdrop-filter: blur(8px);
  transition: 0.5s all;
  border: none;
  outline: none;
  width: 100%;
}
.banner-main .banner-slider-main .services-box-main .box.swiper-button-disabled {
  background: rgba(255, 255, 255, 0.1);
}
.banner-main .banner-slider-main .services-box-main .box.swiper-button-disabled span {
  color: var(--primary-color);
}
.banner-main .banner-slider-main .services-box-main .box.swiper-button-disabled .divider {
  border-color: var(--primary-color);
}
.banner-main .banner-slider-main .services-box-main .box.swiper-button-disabled h4 {
  color: var(--primary-color);
}
.banner-main .banner-slider-main .services-box-main .box span {
  font-family: var(--NohemiRegular);
  font-size: clamp(16px, 3vw, 20px);
  color: rgba(255, 255, 255, 0.5);
  transition: 0.5s all;
}
.banner-main .banner-slider-main .services-box-main .box .divider {
  border-top: solid 1px rgba(255, 255, 255, 0.5);
  margin: 12px 0;
  transition: 0.5s all;
}
.banner-main .banner-slider-main .services-box-main .box h4 {
  font-family: var(--NohemiRegular);
  font-size: clamp(16px, 3vw, 20px);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
  transition: 0.5s all;
}
.banner-main .banner-slider-main .services-box-main .box:hover span,
.banner-main .banner-slider-main .services-box-main .box:hover h4,
.banner-main .banner-slider-main .services-box-main .box:hover .divider {
  color: var(--white) !important;
  border-color: var(--white);
}
.banner-main .banner-slider-main .services-box-main .box.swiper-button-disabled:hover span,
.banner-main .banner-slider-main .services-box-main .box.swiper-button-disabled:hover h4,
.banner-main .banner-slider-main .services-box-main .box.swiper-button-disabled:hover .divider {
  color: var(--primary-color) !important;
  border-color: var(--primary-color);
}

.strategy-main {
  padding: 70px 0;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  .strategy-main {
    padding: 40px 0;
  }
}
.strategy-main.active .row:first-child {
  transform: translateX(0);
}
.strategy-main.active .row:last-child {
  transform: translateX(0);
}
.strategy-main .row {
  transition: 3s all;
}
.strategy-main .row:first-child {
  transform: translateX(100%);
}
.strategy-main .row:last-child {
  transform: translateX(-100%);
}
.strategy-main .strategy-box {
  background: rgb(244, 244, 244);
  padding: 48px 42px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 25px;
  height: 100%;
}
@media screen and (max-width: 992px) {
  .strategy-main .strategy-box {
    padding: 25px;
  }
}
.strategy-main .strategy-box ul {
  width: 100%;
  max-width: 420px;
}
.strategy-main .strategy-box ul li {
  position: relative;
  font-family: var(--ManropeRegular);
  font-size: clamp(14px, 2vw, 16px);
  color: #505050;
  padding-bottom: 10px;
  display: flex;
  line-height: 1.2;
}
.strategy-main .strategy-box ul li:last-child {
  padding-bottom: 0;
}
.strategy-main .strategy-box ul li::before {
  content: "";
  background-image: url("../../images/strategy-polygon.svg");
  background-repeat: no-repeat;
  width: 8px;
  height: 8px;
  display: inline-block;
  padding-left: 18px;
  margin-top: 7px;
}
.strategy-main .strategy-box .btn-risk-main {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.strategy-main .strategy-box .primary-title {
  color: #141414 !important;
}
.strategy-main .strategy-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.strategy-main .fx-widget {
  width: 100%;
  max-height: 80%;
}
.strategy-main .fx-widget img {
  width: 100%;
  height: 100%;
}

.investment-calculator-main {
  background: var(--black);
  padding: 80px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 992px) {
  .investment-calculator-main {
    padding: 40px 0;
  }
}
.investment-calculator-main .risk-setting-img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  pointer-events: none;
}
.investment-calculator-main .heading-main {
  max-width: 600px;
  margin: 0 auto 80px auto;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .investment-calculator-main .heading-main {
    margin: 0 auto 30px auto;
  }
}
.investment-calculator-main .heading-main h2 {
  margin-bottom: 20px;
}
.investment-calculator-main .your-investment-card {
  border-top: 0.8px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 32px;
  height: 100%;
}
.investment-calculator-main .your-investment-card h3 {
  font-family: var(--NohemiMedium);
  font-size: clamp(20px, 4vw, 24px);
  color: var(--white);
  margin-bottom: 30px;
}
.investment-calculator-main .your-investment-card .investment-main {
  margin-bottom: 30px;
}
.investment-calculator-main .your-investment-card .investment-main span {
  display: block;
  margin-bottom: 10px;
  color: rgb(130, 130, 130);
}
.investment-calculator-main .your-investment-card .investment-main .input-main {
  position: relative;
}
.investment-calculator-main .your-investment-card .investment-main .input-main input {
  background: rgba(0, 0, 0, 0.4);
  border: 1.74px solid rgba(255, 255, 255, 0.1);
  padding: 17px 24px;
  font-family: var(--ManropeMedium);
  font-size: clamp(24px, 4vw, 32px);
  color: var(--white);
  border-radius: 16px;
  width: 100%;
  outline: 0;
  display: none;
  padding-inline-start: 40px;
}
.investment-calculator-main .your-investment-card .investment-main .input-main input:first-child {
  display: block;
}
.investment-calculator-main .your-investment-card .investment-main .input-main span {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  font-family: var(--ManropeMedium);
  font-size: clamp(24px, 4vw, 32px);
  color: var(--white);
  margin: 0;
}
.investment-calculator-main .your-investment-card .investment-main ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  width: 100%;
}
.investment-calculator-main .your-investment-card .investment-main ul li {
  background: rgba(0, 0, 0, 0.4);
  border-top: 1.6px solid rgb(38, 38, 38);
  padding: 17px;
  border-radius: 14px;
  width: calc(33.33% - 14px);
  cursor: pointer;
}
.investment-calculator-main .your-investment-card .investment-main ul li.active {
  background: var(--primary-color);
  border: 1.74px solid rgba(255, 255, 255, 0.1);
}
.investment-calculator-main .your-investment-card .investment-main ul li span {
  font-family: var(--ManropeMedium);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 0;
  text-align: center;
}
.investment-calculator-main .your-investment-card .investment-main .desc {
  font-family: var(--ManropeMedium);
  font-weight: 500;
}
.investment-calculator-main .your-investment-card .desc {
  color: rgb(130, 130, 130);
}
.investment-calculator-main .forecast-results-card {
  border-top: 0.8px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 24px 20px;
  height: 100%;
}
.investment-calculator-main .forecast-results-card h3 {
  font-family: var(--NohemiMedium);
  font-size: 24px;
  color: var(--white);
  margin-bottom: 30px;
}
.investment-calculator-main .forecast-results-card .forecast-box-main {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .investment-calculator-main .forecast-results-card .forecast-box-main {
    flex-wrap: wrap;
  }
}
.investment-calculator-main .forecast-results-card .forecast-box-main .box {
  width: 100%;
  border-top: 1.74px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 193, 0, 0.05);
  border-radius: 16px;
  padding: 24px;
}
.investment-calculator-main .forecast-results-card .forecast-box-main .box .desc {
  font-family: var(--ManropeMedium);
  margin-bottom: 10px;
  color: rgb(130, 130, 130);
  font-size: 14px;
  display: block;
}
.investment-calculator-main .forecast-results-card .forecast-box-main .box h3 {
  font-family: var(--ManropeMedium);
  font-size: clamp(24px, 4vw, 36px);
  color: var(--white);
  margin-bottom: 0;
}
.investment-calculator-main .forecast-results-card .forecast-box-main .box h3 span {
  font-size: 16px;
}
.investment-calculator-main .forecast-results-card #chart {
  width: 100%;
  max-width: 700px;
  height: 350px;
}
.investment-calculator-main .forecast-results-card #chart .year-count {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 8px;
  border-radius: 4px;
  text-align: center;
}
.investment-calculator-main .forecast-results-card #chart .year-count span {
  font-family: var(--ManropeRegular);
  font-size: clamp(8px, 2vw, 10px);
  color: #C8C8C8;
  display: block;
  margin-bottom: 10px;
}
.investment-calculator-main .forecast-results-card #chart .year-count p {
  font-family: var(--ManropeMedium);
  font-size: clamp(12px, 2vw, 14px);
  color: var(--primary-color);
  margin-bottom: 0;
}

.strategic-partners-main {
  padding: 70px 0;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  .strategic-partners-main {
    padding: 40px 0;
  }
}
.strategic-partners-main.active .row:last-child {
  transform: translateX(0);
}
.strategic-partners-main .row:last-child {
  transform: translateX(100%);
  transition: 2s all;
}
.strategic-partners-main .strategic-partners-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.strategic-partners-main .strategic-partners-img > img {
  width: 100%;
}
.strategic-partners-main .primary-title {
  color: #141414;
}

.investment-partnership-main {
  margin: 70px 0;
  overflow: hidden;
}
.investment-partnership-main .col-lg-3.active {
  transform: translateY(0);
}
@media screen and (max-width: 992px) {
  .investment-partnership-main {
    margin: 0 0 40px 0;
  }
}
.investment-partnership-main .col-lg-3 {
  transform: translateY(100%);
  transition: 3s all;
}
.investment-partnership-main .col-lg-3:nth-child(1) .investment-card {
  min-height: 470px;
}
.investment-partnership-main .col-lg-3:nth-child(2) .investment-card {
  min-height: 390px;
}
.investment-partnership-main .investment-card {
  background: linear-gradient(180deg, #171717 0%, #525252 128.15%);
  width: 100%;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 16px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.investment-partnership-main .investment-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #02F708 0%, #001C00 140.25%);
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: inherit;
  z-index: -1;
}
.investment-partnership-main .investment-card:hover::before {
  opacity: 1;
}
.investment-partnership-main .investment-card .head .divider {
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  margin: 15px 0;
}
.investment-partnership-main .investment-card span {
  font-family: var(--NohemiRegular);
  font-size: clamp(20px, 4vw, 24px);
  color: var(--white);
  text-transform: capitalize;
  line-height: 1.1;
  display: block;
}

.how-we-choose-main {
  padding-bottom: 100px;
}
@media screen and (max-width: 992px) {
  .how-we-choose-main {
    padding-bottom: 40px;
  }
}
.how-we-choose-main .how-we-choose-bg {
  background: var(--black);
  border-radius: 20px;
  overflow: hidden;
}
.how-we-choose-main .how-we-choose-bg .how-we-choose-card-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 80px;
}
.how-we-choose-main .how-we-choose-bg .how-we-choose-card-main .how-we-choose-card {
  padding: 60px 44px 0 44px;
}
@media screen and (max-width: 767px) {
  .how-we-choose-main .how-we-choose-bg .how-we-choose-card-main .how-we-choose-card {
    padding: 20px;
  }
}
.how-we-choose-main .how-we-choose-bg .how-we-choose-card-main ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s all;
  padding: 28px 24px;
  cursor: pointer;
}
.how-we-choose-main .how-we-choose-bg .how-we-choose-card-main ul li.active {
  padding: 28px 52px;
  background: linear-gradient(90deg, rgba(2, 247, 8, 0.1) 0%, rgba(20, 20, 20, 0.1) 58.31%);
  border: 1px solid;
  border-image-source: linear-gradient(90.09deg, rgba(2, 247, 8, 0.5) 0.08%, #141414 99.93%);
  border-image-slice: 1;
}
.how-we-choose-main .how-we-choose-bg .how-we-choose-card-main ul li.active span {
  color: var(--white);
}
.how-we-choose-main .how-we-choose-bg .how-we-choose-card-main ul li span {
  font-family: var(--ManropeMedium);
  font-size: clamp(18px, 4vw, 24px);
  color: rgb(130, 130, 130);
  transition: 0.3s all;
}
.how-we-choose-main .how-we-choose-bg .tab-img-main {
  height: 100%;
}
.how-we-choose-main .how-we-choose-bg .tab-img-main .tab-img-text {
  position: relative;
  height: 100%;
}
.how-we-choose-main .how-we-choose-bg .tab-img-main .tab-img-text > img {
  width: 100%;
}
.how-we-choose-main .how-we-choose-bg .tab-img-main .tab-img-text .we-choose-strategies-video {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  isolation: isolate;
}
.how-we-choose-main .how-we-choose-bg .tab-img-main .tab-img-text .we-choose-strategies-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.how-we-choose-main .how-we-choose-bg .tab-img-main .tab-img-text .we-choose-strategies-video.second::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #02F708;
  mix-blend-mode: hue;
  pointer-events: none;
  transform: translateZ(0);
}
.how-we-choose-main .how-we-choose-bg .tab-img-main .tab-img-text .text-main {
  border-left: 1px solid rgb(80, 80, 80);
  padding: 40px 48px;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 992px) {
  .how-we-choose-main .how-we-choose-bg .tab-img-main .tab-img-text .text-main {
    padding: 20px;
    border-left: 0;
  }
}
.how-we-choose-main .how-we-choose-bg .tab-img-main .tab-img-text .text-main span {
  font-family: var(--NohemiRegular);
  font-size: clamp(18px, 4vw, 24px);
  color: rgb(20, 20, 20);
  display: block;
  margin-bottom: 10px;
}
.how-we-choose-main .how-we-choose-bg .tab-img-main .tab-img-text .text-main .desc {
  line-height: 1.3;
}

@property --gradient-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
.risk-setting-main {
  background: var(--black);
  padding: 70px 0 140px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 992px) {
  .risk-setting-main {
    padding: 40px 0;
  }
}
.risk-setting-main.active .heading-main {
  transform: translateX(0);
}
.risk-setting-main.active .col-lg-4 {
  transform: translateY(0);
}
.risk-setting-main .risk-setting-img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  pointer-events: none;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 992px) {
  .risk-setting-main .risk-setting-img img {
    margin: auto;
  }
}
.risk-setting-main .heading-main {
  max-width: 570px;
  margin: 0 auto 80px auto;
  text-align: center;
  transform: translateY(-180px);
  transition: 2s all;
}
@media screen and (max-width: 992px) {
  .risk-setting-main .heading-main {
    margin: 0 auto 30px auto;
  }
}
.risk-setting-main .heading-main h2 {
  margin-bottom: 20px;
}
.risk-setting-main .col-lg-4 {
  transform: translateY(-120%);
  transition: 1s all;
}
.risk-setting-main .col-lg-4:nth-child(2) {
  transform: translateX(100%);
  transition: 2s all;
  opacity: 0;
  visibility: hidden;
}
.risk-setting-main .col-lg-4:last-child {
  transform: translateX(-100%);
  transition: 2s all;
  opacity: 0;
  visibility: hidden;
}
.risk-setting-main .col-lg-4.active:nth-child(2) {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.risk-setting-main .col-lg-4.active:last-child {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.risk-setting-main .forecast-box {
  background: rgba(43, 43, 43, 0.2);
  border-radius: 12px;
  padding: 24px;
  width: 100%;
  height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 992px) {
  .risk-setting-main .forecast-box {
    margin-bottom: 20px;
  }
}
.risk-setting-main .forecast-box::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: inherit;
  background: conic-gradient(from var(--gradient-angle), rgba(0, 0, 0, 0) 0deg, rgba(2, 247, 8, 0.12) 15deg, rgba(2, 247, 8, 0.35) 30deg, rgb(2, 247, 8) 45deg, rgba(2, 247, 8, 0.7) 60deg, rgba(2, 247, 8, 0.4) 75deg, rgba(2, 247, 8, 0.2) 90deg, rgba(0, 0, 0, 0) 110deg, rgba(0, 0, 0, 0) 360deg);
  animation: rotateBorder 5s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.risk-setting-main .forecast-box .circle-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
}
.risk-setting-main .forecast-box span {
  font-family: var(--ManropeMedium);
  font-size: clamp(40px, 5vw, 64px);
  color: var(--white);
  display: block;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 50px;
}
.risk-setting-main .forecast-box ul {
  padding-left: 10px;
}
.risk-setting-main .forecast-box ul li {
  list-style: disc;
  font-family: var(--NohemiRegular);
  font-size: 16px;
  color: var(--white);
  margin-bottom: 5px;
  line-height: 1.1;
}

@keyframes rotateBorder {
  from {
    --gradient-angle: 0deg;
  }
  to {
    --gradient-angle: 360deg;
  }
}
.insight-sec {
  background: rgb(255, 255, 255);
  padding: 70px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  .insight-sec {
    padding: 40px 0;
  }
}
.insight-sec .insight-sec-title {
  text-align: center;
  margin: 0 auto 60px auto;
  max-width: 650px;
}
.insight-sec .insight-sec-title .primary-title {
  color: #141414;
}
.insight-sec .insight-box {
  background: rgb(20, 20, 20);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  backdrop-filter: blur(10px);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.insight-sec .insight-box .insight-circle-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.insight-sec .insight-box-package-heading {
  display: flex;
  align-items: center;
  gap: 10px;
}
.insight-sec .insight-box-package-heading img {
  width: 25px;
}
.insight-sec .insight-box-package-heading h3 {
  font-family: var(--NohemiRegular);
  font-weight: 500;
  font-size: clamp(16px, 3vw, 20px);
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.7);
  text-transform: capitalize;
  margin: 0;
}
.insight-sec .insight-box-title {
  margin: 20px 0;
}
.insight-sec .insight-box-title h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--NohemiMedium);
  font-weight: 500;
  font-size: clamp(20px, 3.5vw, 32px);
  line-height: 100%;
  color: var(--white);
  margin: 0;
  white-space: nowrap;
}
.insight-sec a {
  background: var(--primary-color);
  color: var(--white);
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  font-family: var(--ManropeMedium);
  font-size: clamp(16px, 3vw, 20px);
  margin-top: 10px;
  text-align: center;
}
.insight-sec a:hover {
  opacity: 0.9;
  color: var(--white);
}
.insight-sec .insight-box-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}
.insight-sec .insight-box-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--ManropeRegular);
  font-size: clamp(16px, 3vw, 20px);
  color: var(--white);
  line-height: 1.4;
}
.insight-sec .insight-box-list li img {
  width: 16px;
  margin-top: 2px;
}

.what-our-client-main {
  overflow: hidden;
  padding: 70px 0;
}
@media screen and (max-width: 992px) {
  .what-our-client-main {
    padding: 40px 0;
  }
}
.what-our-client-main .text-arrow-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  height: 100%;
}
.what-our-client-main .text-arrow-main .heading-main h2 {
  margin-bottom: 35px;
  color: #282828 !important;
}
@media screen and (max-width: 992px) {
  .what-our-client-main .text-arrow-main .heading-main h2 {
    margin-bottom: 20px;
  }
}
.what-our-client-main .text-arrow-main .heading-main p {
  margin-bottom: 35px;
  font-size: clamp(16px, 3vw, 20px);
}
@media screen and (max-width: 992px) {
  .what-our-client-main .text-arrow-main .heading-main p {
    margin-bottom: 20px;
  }
}
.what-our-client-main .text-arrow-main .heading-main .review-main {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}
.what-our-client-main .text-arrow-main .heading-main .review-main .icon-flex {
  display: flex;
  align-items: center;
  gap: 6px;
}
.what-our-client-main .text-arrow-main .heading-main .review-main .icon-flex span {
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  background: rgb(33, 150, 83);
  display: flex;
  align-items: center;
  justify-content: center;
}
.what-our-client-main .text-arrow-main .arrow-main {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.what-our-client-main .text-arrow-main .arrow-main span {
  background: rgb(200, 200, 200);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.what-our-client-main .text-arrow-main .arrow-main span:nth-child(1)::before {
  transform: translateX(100%);
}
.what-our-client-main .text-arrow-main .arrow-main span:nth-child(2)::before {
  transform: translateX(-100%);
}
.what-our-client-main .text-arrow-main .arrow-main span:hover::before {
  transform: translateX(0);
}
.what-our-client-main .text-arrow-main .arrow-main span:hover svg path {
  fill: var(--white);
}
.what-our-client-main .text-arrow-main .arrow-main span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  transition: 0.3s all;
  z-index: -1;
}
.what-our-client-main .text-arrow-main .arrow-main span svg path {
  fill: var(--black);
  transition: 0.3s all;
}
.what-our-client-main .client-card-main {
  background: rgb(250, 245, 245);
  padding: 24px;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .what-our-client-main .client-card-main {
    padding: 12px;
  }
}
.what-our-client-main .client-card-main .client-img img {
  width: 100%;
}
.what-our-client-main .client-card-main .review-text-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.what-our-client-main .client-card-main .review-text-main p {
  margin-bottom: 20px;
  font-size: clamp(16px, 3vw, 20px);
  color: #141414;
}
.what-our-client-main .client-card-main .review-text-main .review-name-main {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-top: solid 1px rgb(200, 200, 200);
  padding-top: 10px;
}
.what-our-client-main .client-card-main .review-text-main .review-name-main .name span {
  font-family: var(--NohemiMedium);
  font-weight: 500;
  font-size: clamp(16px, 3vw, 20px);
  color: rgb(80, 80, 80);
}
.what-our-client-main .client-card-main .review-text-main .review-name-main .name .desc {
  font-family: var(--NohemiRegular);
  color: rgb(130, 130, 130);
  margin-bottom: 0;
  font-size: clamp(14px, 2vw, 16px) !important;
}
.what-our-client-main .client-card-main .review-text-main .review-name-main .count-main span {
  font-family: var(--NohemiRegular);
  font-size: clamp(14px, 2vw, 16px);
  color: rgb(130, 130, 130);
}
.what-our-client-main .strategy-provider-card {
  background: var(--black);
  padding: 42px 32px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 25px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .what-our-client-main .strategy-provider-card {
    padding: 20px;
  }
}
.what-our-client-main .strategy-provider-card span {
  font-family: var(--NohemiRegular);
  font-size: clamp(22px, 3vw, 28px);
  color: var(--white);
}
.what-our-client-main .strategy-provider-card .desc {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .what-our-client-main .strategy-provider-card .desc {
    margin-bottom: 0;
  }
}
.what-our-client-main .strategy-provider-img {
  height: 100%;
}
.what-our-client-main .strategy-provider-img img {
  width: 100%;
  height: 100%;
}

.about-us-banner .banner-content {
  top: 15% !important;
}
.about-us-banner .banner-content h2 {
  font-size: 32px, 4vw, 40px;
}

.our-mission-vision {
  margin: 70px 0;
}
.our-mission-vision .our-m-v-cards .noman {
  background: #f0f0f0;
  padding: 24px 32px;
  border-radius: 12px;
  min-height: 215px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: background 0.5s ease;
}
.our-mission-vision .our-m-v-cards .noman::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: #00c100;
  filter: blur(4rem);
  border-radius: 50%;
  right: -150px;
  bottom: -150px;
  transform: scale(0);
  transition: transform 0.6s ease, right 0.3s ease, bottom 0.3s ease;
  z-index: 0;
  /* FIX FOR IOS SAFARI */
  will-change: transform;
  transform: translateZ(0) scale(0);
}
.our-mission-vision .our-m-v-cards .noman:hover {
  background: #141414;
}
.our-mission-vision .our-m-v-cards .noman:hover::before {
  transform: scale(1);
  transform: translateZ(0) scale(1);
  right: -60px;
  bottom: -60px;
}
.our-mission-vision .our-m-v-cards .noman:hover h6,
.our-mission-vision .our-m-v-cards .noman:hover p,
.our-mission-vision .our-m-v-cards .noman:hover ul {
  color: #fff;
  z-index: 1;
}
.our-mission-vision .our-m-v-cards .noman h6,
.our-mission-vision .our-m-v-cards .noman p,
.our-mission-vision .our-m-v-cards .noman ul {
  position: relative;
  transition: color 0.5s ease;
  width: 80%;
}
@media screen and (max-width: 991.98px) {
  .our-mission-vision .our-m-v-cards .noman h6,
  .our-mission-vision .our-m-v-cards .noman p,
  .our-mission-vision .our-m-v-cards .noman ul {
    width: 100%;
  }
}
.our-mission-vision .our-m-v-cards .noman h6 {
  font-family: var(--NohemiRegular);
  color: #141414;
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 400;
  margin: 0;
}
.our-mission-vision .our-m-v-cards .noman ul {
  list-style: disc !important;
  padding: 20px;
}
.our-mission-vision .our-m-v-cards .noman li {
  list-style: disc;
}

@media (hover: none) {
  .our-mission-vision .noman:active {
    background: #141414;
  }
  .our-mission-vision .noman:active h6,
  .our-mission-vision .noman:active p,
  .our-mission-vision .noman:active ul {
    color: #fff;
  }
}
.our-commitment .our-commitment-container {
  background-color: #F4F4F4;
  padding: 48px 42px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 16px;
}
@media screen and (max-width: 500px) {
  .our-commitment .our-commitment-container {
    padding: 20px 10px;
  }
}
.our-commitment .our-commitment-container h2 {
  color: #141414;
}
.our-commitment .our-commitment-container p {
  margin-bottom: 20px !important;
}
.our-commitment .our-commitment-container span {
  color: var(--black);
  font-weight: 600;
}
.our-commitment .our-commitment-container img {
  max-height: 462px;
  object-fit: contain;
}

.why-choose-us {
  margin: 70px 0;
}
.why-choose-us .why-choose-us-container {
  background-color: #141414;
  border-radius: 12px;
  color: white;
  padding: 42px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 767.98px) {
  .why-choose-us .why-choose-us-container {
    padding: 30px 20px !important;
  }
}
.why-choose-us .why-choose-us-container > div {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 60px 0;
}
.why-choose-us .why-choose-us-container > div > div {
  display: flex;
  align-items: flex-start;
}
.why-choose-us .why-choose-us-container > div > div > img {
  margin-right: 20px;
}
.why-choose-us .why-choose-us-container > div > div h6 {
  font-size: clamp(16px, 4vw, 20px);
  font-weight: 500;
  font-family: var(--ManropeMedium);
  line-height: 1.2;
  margin: 0 0 16px 0;
}
.why-choose-us .why-choose-us-container > div > div p {
  color: rgba(255, 255, 255, 0.6) !important;
}
.why-choose-us .why-choose-us-container > div > div .desc.active {
  width: 70% !important;
}
@media screen and (max-width: 767.98px) {
  .why-choose-us .why-choose-us-container > div > div .desc.active {
    width: 100%;
  }
}
.why-choose-us img {
  border-radius: 12px;
}

.key-features-of-frbs {
  background-color: #f0f0f0;
  height: 100%;
  width: 100%;
  padding: 80px 0;
}
@media (max-width: 991.98px) {
  .key-features-of-frbs {
    padding-bottom: 0;
  }
}
.key-features-of-frbs .key-features-frbs-strategy p {
  padding-top: 24px;
}
@media (max-width: 991.98px) {
  .key-features-of-frbs .key-features-frbs-strategy a {
    margin-bottom: 20px;
  }
}
.key-features-of-frbs .key-features-frbs-card {
  background-color: var(--white);
  padding: 30px 20px;
  display: flex;
  position: sticky;
  top: 0;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #c8c8c8;
  border-radius: 16px;
  margin-bottom: 20px;
}
.key-features-of-frbs .key-features-frbs-card p {
  padding-top: 10px;
}
.key-features-of-frbs .key-features-frbs-card h4 {
  color: #000000;
  font-family: var(--NohemiRegular);
  font-weight: 400;
  font-size: clamp(16px, 2vw, 20px);
}
.key-features-of-frbs .sticky-content {
  position: sticky;
  top: 50px;
  height: fit-content;
}
@media (max-width: 991px) {
  .key-features-of-frbs .sticky-content {
    position: static;
  }
}

.fx-widget {
  width: 100%;
  height: 100%;
}
.fx-widget img {
  width: 100%;
  height: 100%;
}

.key-features-small-cards {
  padding: 100px 0;
}
@media (max-width: 991.98px) {
  .key-features-small-cards {
    padding: 20px 0px;
  }
}
.key-features-small-cards .key-features-small-cards01 {
  padding: 24px 32px;
  position: relative;
  overflow: hidden;
  background-color: #f0f0f0;
  height: 224px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 140px;
  transition: all 0.3s;
  z-index: 1;
}
.key-features-small-cards .key-features-small-cards01::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  filter: blur(4rem);
  border-radius: 50%;
  right: -60px;
  bottom: -100px;
  transform: scale(1);
  transition: transform 0.6s ease, right 0.4s ease, bottom 0.4s ease;
  z-index: -1;
  /* FIX FOR IOS SAFARI */
  will-change: transform;
  transform: translateZ(0) scale(0);
}
.key-features-small-cards .key-features-small-cards01:hover {
  background: #141414;
}
.key-features-small-cards .key-features-small-cards01:hover::before {
  transform: scale(1);
  background: rgba(0, 193, 0, 0.7607843137);
  transform: translateZ(0) scale(1);
}
.key-features-small-cards .key-features-small-cards01:hover h5 {
  color: #00C100;
  transition: all 0.3s;
}
.key-features-small-cards .key-features-small-cards01:hover .desc {
  color: var(--white);
  transition: all 0.3s;
}
.key-features-small-cards .key-features-small-cards-heading {
  display: flex;
  align-items: center;
  gap: 8px;
}
.key-features-small-cards .key-features-small-cards-heading h5 {
  color: #c8c8c8;
  font-family: var(--NohemiRegular);
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1;
  font-size: clamp(32px, 4vw, 44px);
}
.key-features-small-cards .desc {
  font-size: clamp(16px, 3vw, 20px);
  color: #505050;
}

.strong-partnerships {
  margin: 70px 0;
}
.strong-partnerships h2 {
  margin: 0;
  line-height: 1;
  margin: auto;
  width: 40%;
  text-align: center;
  color: #141414 !important;
}
@media screen and (max-width: 991.98px) {
  .strong-partnerships h2 {
    width: 80%;
  }
}
.strong-partnerships .strong-partnerships-container {
  margin: 60px 0;
}
.strong-partnerships .strong-partnerships-container .partnership-card {
  padding: 24px;
  height: 183px;
  max-width: 413px;
  border-radius: 12px;
  background-color: #f7f7f7;
  border: 1px solid rgba(35, 31, 32, 0.1019607843);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.5s;
}
.strong-partnerships .strong-partnerships-container .partnership-card::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  filter: blur(4rem);
  border-radius: 50%;
  right: -150px;
  bottom: -150px;
  transform: scale(1);
  transition: transform 0.6s ease, right 0.4s ease, bottom 0.4s ease;
  z-index: 0;
  /* FIX FOR IOS SAFARI */
  will-change: transform;
  transform: translateZ(0) scale(0);
}
.strong-partnerships .strong-partnerships-container .partnership-card:hover {
  background: #141414;
}
.strong-partnerships .strong-partnerships-container .partnership-card:hover::before {
  transform: scale(1);
  right: -60px;
  bottom: -60px;
  background: rgba(0, 193, 0, 0.7607843137);
  right: -100px;
  bottom: -100px;
  transform: translateZ(0) scale(1);
}
.strong-partnerships .strong-partnerships-container .partnership-card:hover p,
.strong-partnerships .strong-partnerships-container .partnership-card:hover span {
  color: white;
  z-index: 10;
}
.strong-partnerships .strong-partnerships-container .partnership-card:hover .icon-wrap .black {
  top: -100%;
}
.strong-partnerships .strong-partnerships-container .partnership-card:hover .icon-wrap .green {
  top: 0;
}
.strong-partnerships .strong-partnerships-container .partnership-card > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.strong-partnerships .strong-partnerships-container .partnership-card > div .icon-wrap {
  position: relative;
  width: 34px;
  height: 34px;
  overflow: hidden;
  z-index: 5;
}
.strong-partnerships .strong-partnerships-container .partnership-card > div .icon-wrap .icon {
  position: absolute;
  left: 0;
  width: 100%;
  transition: top 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.strong-partnerships .strong-partnerships-container .partnership-card > div .icon-wrap .black {
  top: 0;
}
.strong-partnerships .strong-partnerships-container .partnership-card > div .icon-wrap .green {
  top: 100%;
}
.strong-partnerships .strong-partnerships-container .partnership-card > p {
  font-family: var(--ManropeMedium);
  font-weight: 500;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1;
  text-transform: capitalize;
  color: #231F20;
}
.strong-partnerships .arrow-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.strong-partnerships .arrow-main span {
  background: rgb(200, 200, 200);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: 0.3s all;
}
.strong-partnerships .arrow-main span:nth-child(1)::before {
  transform: translateX(100%);
}
.strong-partnerships .arrow-main span:nth-child(2)::before {
  transform: translateX(-100%);
}
.strong-partnerships .arrow-main span:hover::before {
  transform: translateX(0);
}
.strong-partnerships .arrow-main span:hover svg path {
  fill: var(--white);
}
.strong-partnerships .arrow-main span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  transition: 0.3s all;
  z-index: -1;
}
.strong-partnerships .arrow-main span svg path {
  fill: var(--black);
  transition: 0.3s all;
}
.strong-partnerships .arrow-main > p {
  font-family: var(--ManropeMedium);
  font-weight: 500;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1;
  text-transform: capitalize;
}

.contact-us {
  margin: 100px 0;
}
@media screen and (max-width: 991.98px) {
  .contact-us {
    margin: 70px 0;
  }
}
.contact-us .contact-us-left {
  padding: 32px 24px;
  background-color: var(--black);
  border-radius: 20px;
}
.contact-us .contact-us-left h2 {
  font-size: clamp(32px, 4vw, 40px) !important;
  margin: 0;
}
.contact-us .contact-us-left > div {
  margin-top: 60px;
}
.contact-us .contact-us-left > div > div {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.contact-us .contact-us-left > div h6 {
  font-family: var(--NohemiRegular);
  font-weight: 400;
  font-size: clamp(16px, 3vw, 20px);
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}
.contact-us .contact-us-left > div p,
.contact-us .contact-us-left > div a {
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}
.contact-us .contact-us-right {
  height: 100%;
  display: flex;
  flex-direction: column;
  /* Arrow */
}
.contact-us .contact-us-right:after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #777;
  border-bottom: 2px solid #777;
  transform: translateY(-60%) rotate(45deg);
  pointer-events: none;
}
.contact-us .contact-us-right .dropdown {
  position: relative;
  width: 100%;
}
.contact-us .contact-us-right .dropdown .dropdown-selected {
  height: 52px;
  border-radius: 6px;
  background-color: #f0f0f0;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--ManropeRegular);
  font-size: 14px;
  cursor: pointer;
  color: #777;
}
.contact-us .contact-us-right .dropdown .dropdown-icon {
  position: absolute;
  right: 10px;
  top: 16px;
}
.contact-us .contact-us-right .dropdown .arrow {
  width: 8px;
  height: 8px;
  border-right: 2px solid #777;
  border-bottom: 2px solid #777;
  transform: rotate(45deg);
}
.contact-us .contact-us-right .dropdown .dropdown-menu {
  position: absolute;
  right: 0;
  top: 60px;
  width: 180px;
  background: #f0f0f0;
  gap: 4px;
  border-radius: 6px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  border: 2px solid #c8c8c8;
  padding: 6px;
  display: none;
  z-index: 5;
}
.contact-us .contact-us-right .dropdown .dropdown-item {
  display: flex;
  justify-content: center;
  background-color: var(--white);
  padding: 12px 16px;
  font-size: 14px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 4px;
}
.contact-us .contact-us-right .dropdown .dropdown-item span {
  font-family: var(--ManropeRegular);
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: #505050;
}
.contact-us .contact-us-right .dropdown .dropdown-item:first-child {
  margin-top: 0;
}
.contact-us .contact-us-right .investment-section {
  display: flex;
  flex-direction: column;
}
.contact-us .contact-us-right .investment-section label {
  margin-bottom: 12px;
  color: #141414;
  font-family: var(--ManropeRegular);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
}
.contact-us .contact-us-right .investment-section .investment-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  height: max-content;
}
.contact-us .contact-us-right .investment-section .investment-box {
  position: relative;
  cursor: pointer;
  flex: 1;
  margin-bottom: 0;
}
.contact-us .contact-us-right .investment-section .investment-box input {
  display: none;
}
.contact-us .contact-us-right .investment-section .investment-box span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 52px;
  background: #f0f0f0;
  border-radius: 8px;
  font-family: var(--ManropeRegular);
  font-size: 14px;
  color: #777;
}
.contact-us .contact-us-right .investment-section .investment-box input:checked + span {
  border: 2px solid #00c100;
}
.contact-us .contact-us-right > div {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
@media screen and (max-width: 991.98px) {
  .contact-us .contact-us-right > div {
    flex-wrap: wrap;
    margin-bottom: 12px;
  }
}
.contact-us .contact-us-right > div > div {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.contact-us .contact-us-right > div label {
  color: var(--black);
  margin-bottom: 12px;
}
.contact-us .contact-us-right > div input {
  height: 52px;
  background-color: #f0f0f0;
  border-radius: 8px;
  padding: 17px 10px;
  font-family: var(--ManropeRegular);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.2;
  border: none;
  outline: none;
  width: 100%;
}
.contact-us .contact-us-right > div textarea {
  height: 100%;
  background-color: #f0f0f0;
  border-radius: 8px;
  padding: 17px 10px;
  margin-bottom: 5px;
  font-family: var(--ManropeRegular);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.2;
  border: none;
  outline: none;
  width: 100%;
}
.contact-us .contact-us-right > div:last-of-type {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
  width: 100%;
}
.contact-us .contact-us-right > div:last-of-type > textarea {
  height: 100% !important;
  flex: 1;
}
@media screen and (max-width: 991.98px) {
  .contact-us .contact-us-right > div:last-of-type > textarea {
    min-height: 150px !important;
  }
}
.contact-us .contact-us-right button {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  color: var(--white);
  height: 48px;
  border-radius: 8px;
  font-size: clamp(16px, 3vw, 20px);
  border: none;
  font-weight: 500;
  margin-top: auto;
}
.contact-us .contact-us-right button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.contact-us .contact-us-right .error-text {
  font-size: 12px;
  font-weight: 500;
  color: red;
  display: block;
}
.contact-us .contact-us-right input.error,
.contact-us .contact-us-right textarea.error {
  border: 1px solid red;
}

.custom-modal {
  border-radius: 40px !important;
}
.custom-modal h5,
.custom-modal thead td {
  font-family: var(--ManropeMedium);
  font-weight: 500;
  color: var(--black);
  font-size: clamp(16px, 3vw, 20px);
  line-height: 1.2;
}
.custom-modal thead {
  background-color: #e5e5e5 !important;
}
.custom-modal .invisible-scrollbar {
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
}
.custom-modal .invisible-scrollbar::-webkit-scrollbar {
  display: none !important;
}
.custom-modal .modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px !important;
}
.custom-modal .modal-body {
  padding: 44px;
}
@media screen and (max-width: 991.98px) {
  .custom-modal .modal-body {
    padding: 20px;
  }
}
.custom-modal .modal-content {
  border-radius: 16px !important;
}
.custom-modal .btn-close {
  background-color: #f0f0f0 !important;
  color: black !important;
  height: 2em;
  width: 2em;
  opacity: 1;
  border: none;
  outline: none;
}
.custom-modal .btn-close:focus {
  border: none;
  outline: none;
}

.partner-carousel {
  margin: 70px 0;
}
.partner-carousel .carousel-container {
  width: 100%;
  margin: 0 auto 30px;
  overflow: hidden;
}
.partner-carousel .carousel-wrapper {
  display: flex;
  gap: 30px;
  align-items: center;
  border: none !important;
  width: 100%;
  padding: 0 20px;
  transition: transform 0.5s ease;
}
@media screen and (max-width: 640px) {
  .partner-carousel .carousel-wrapper {
    gap: 20px;
    padding: 0 30px 0 10px;
  }
}
.partner-carousel .carousel-slide {
  flex: 0 0 400px;
  opacity: 0.5;
  transition: opacity 0.4s ease;
  width: calc(100vw - 40px);
  padding: 15px;
  max-width: 100%;
  height: 100%;
  background-color: #FAF5F5;
  border-radius: 20px;
  /* Tablet: 90% of viewport */
  /* Medium screens: 70% of viewport */
  /* Large screens: fixed width */
}
@media screen and (min-width: 640px) {
  .partner-carousel .carousel-slide {
    width: calc(90vw - 40px);
    max-width: 500px;
  }
}
@media screen and (min-width: 768px) {
  .partner-carousel .carousel-slide {
    min-width: 600px;
    min-height: 500px;
    height: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .partner-carousel .carousel-slide {
    min-width: 800px;
    min-height: 500px;
    height: 100%;
    padding: 24px;
  }
}
.partner-carousel .carousel-slide.active {
  opacity: 1;
}
.partner-carousel .card {
  width: 100%;
  height: 100%;
  border: 2px solid #e0e0e0;
  border: none !important;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: none;
}
@media screen and (max-width: 767px) {
  .partner-carousel .card {
    justify-content: center;
  }
}
.partner-carousel .card h2 {
  line-height: 1;
  margin: 0;
}
.partner-carousel .card .card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 60px;
  height: 100%;
  overflow-y: auto;
}
.partner-carousel .card .card-content::-webkit-scrollbar {
  width: 6px;
}
.partner-carousel .card .card-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.partner-carousel .card .card-content::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}
.partner-carousel .card .card-content::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.partner-carousel .card .card-content > div h4 {
  margin-bottom: 40px;
  font-family: var(--NohemiRegular);
  font-weight: 400;
  font-size: clamp(20px, 4vw, 24px);
  color: #141414;
  line-height: 1;
}
.partner-carousel .card .card-content > div p {
  margin-bottom: 10px;
}
.partner-carousel .card .card-content > div ul {
  padding-left: 20px;
}
.partner-carousel .card .card-content > div ul li {
  list-style: disc !important;
  margin-bottom: 8px;
  line-height: 1.6;
}
.partner-carousel .card .card-content > div ul li::marker {
  color: #141414;
}
.partner-carousel .card span {
  font-weight: 600;
  color: #141414;
}
.partner-carousel .carousel-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.partner-carousel .arrow-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.partner-carousel .arrow-main button {
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border: none;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.partner-carousel .arrow-main button:nth-child(1)::before {
  transform: translateX(100%);
}
.partner-carousel .arrow-main button:nth-child(2)::before {
  transform: translateX(-100%);
}
.partner-carousel .arrow-main button:hover::before {
  transform: translateX(0);
}
.partner-carousel .arrow-main button:hover svg path {
  fill: var(--white);
}
.partner-carousel .arrow-main button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.partner-carousel .arrow-main button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  transition: 0.3s all;
  z-index: -1;
}
.partner-carousel .arrow-main button svg path {
  fill: var(--black);
  transition: 0.3s all;
}
.partner-carousel .primary-title {
  color: #141414 !important;
}

/*# sourceMappingURL=style.css.map */
