@font-face {
  font-family: "GeneralSans-regular";
  src: url("../fonts/GeneralSans-Regular.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "GeneralSans-medium";
  src: url("../fonts/GeneralSans-Medium.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "GeneralSans-semibold";
  src: url("../fonts/GeneralSans-Semibold.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
}
body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-size: clamp(14px, 0.94vw, 16px);
  line-height: clamp(20px, 1.25vw, 24px);
  font-family: "GeneralSans-medium";
  background-color: var(--dark-color);
  height: 100vh;
}

.container {
  max-width: min(80%, 1920px);
}
@media (max-width: 1199px) {
  .container {
    max-width: min(85%, 1920px);
  }
}

.container-fluid {
  width: 100%;
  max-width: min(100%, 1920px);
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .container-fluid {
    max-width: min(95%, 1920px);
  }
}

:root {
  --orange-gradient: radial-gradient(circle farthest-side at center center, #F6931C 0%, #E5EAF2 100%);
  --dark-color: #16192C;
  --white-color: #ffffff;
  --light-white-color: #E5EAF2;
  --lighter-white-color: #C9D3E3;
  --orange-color: #F6931C;
  --green-color: #32D777;
  --pink-color: #FF3AA3;
  --blue-color: #52B2FF;
  --yellow-color: #F2C34E;
}

.gt-btn {
  text-decoration: none;
  font-family: "GeneralSans-regular";
  font-size: clamp(15px, 1.05vw, 20px);
  line-height: clamp(22px, 1.35vw, 26px);
  margin-bottom: 0;
  padding: 5px 20px;
  border-radius: 50px;
  height: 48px;
  display: inline-flex;
  align-items: center;
}

.gt-btn-outline {
  font-family: "GeneralSans-semibold";
  font-size: clamp(15px, 1.05vw, 20px);
  line-height: clamp(22px, 1.35vw, 26px);
  margin-bottom: 0;
  color: var(--orange-color);
  background: transparent;
  border: 1px solid var(--orange-color);
  transition: all ease 0.5s;
}
.gt-btn-outline:hover {
  background-color: var(--orange-color);
  color: var(--white-color);
}

.gt-btn-filled {
  font-family: "GeneralSans-semibold";
  font-size: clamp(15px, 1.05vw, 20px);
  line-height: clamp(22px, 1.35vw, 26px);
  margin-bottom: 0;
  background-color: var(--orange-color);
  color: var(--dark-color);
  border: 1px solid var(--orange-color);
  transition: all ease 0.5s;
}
.gt-btn-filled:hover {
  background-color: transparent;
  color: var(--orange-color);
}

.gt-badges {
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .gt-badges {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.gt-badges {
  flex-wrap: wrap;
  gap: clamp(10px, 0.8vw, 16px);
  margin-bottom: clamp(42px, 3.4vw, 66px);
}
@media (max-width: 840px) {
  .gt-badges {
    flex-wrap: nowrap;
  }
}
@media (max-width: 767px) {
  .gt-badges {
    align-items: flex-start;
    flex-direction: column;
  }
}
.gt-badges span {
  font-family: "GeneralSans-regular";
  font-size: clamp(15px, 1.05vw, 20px);
  line-height: clamp(22px, 1.35vw, 26px);
  margin-bottom: 0;
  display: inline-flex;
  align-items: center;
  border-radius: 100px;
  padding: clamp(5px, 0.45vw, 8px) clamp(14px, 1vw, 20px);
  line-height: 1;
}
.gt-badges .green {
  color: var(--green-color);
  background-color: color-mix(in srgb, var(--green-color) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--green-color) 28%, transparent);
}
.gt-badges .pink {
  color: var(--pink-color);
  background-color: color-mix(in srgb, var(--pink-color) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--pink-color) 28%, transparent);
}
.gt-badges .blue {
  color: var(--blue-color);
  background-color: color-mix(in srgb, var(--blue-color) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--blue-color) 28%, transparent);
}
.gt-badges .yellow {
  color: var(--yellow-color);
  background-color: color-mix(in srgb, var(--yellow-color) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--yellow-color) 28%, transparent);
}

.gt-hero-section {
  background-image: url("../images/home-images/BG IMG.png");
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 30px;
}
@media (max-width: 767px) {
  .gt-hero-section {
    padding-top: 14px;
  }
}
.gt-hero-section .container-fluid {
  max-width: min(100%, 1920px);
}
.gt-hero-section .container-fluid .gt-hero-wrapper {
  position: relative;
  margin: 30px;
}
@media (max-width: 1199px) {
  .gt-hero-section .container-fluid .gt-hero-wrapper {
    min-height: auto;
  }
}
@media (max-width: 767px) {
  .gt-hero-section .container-fluid .gt-hero-wrapper {
    border-radius: 18px;
  }
}
.gt-hero-section .gt-header {
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .gt-hero-section .gt-header {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.gt-hero-section .gt-header {
  justify-content: space-between;
  gap: clamp(24px, 3vw, 56px);
  padding: clamp(18px, 1.6vw, 32px) clamp(28px, 3vw, 58px);
}
@media (max-width: 1199px) {
  .gt-hero-section .gt-header {
    padding-inline: clamp(22px, 3vw, 42px);
  }
}
@media (max-width: 991px) {
  .gt-hero-section .gt-header {
    align-items: center;
  }
}
@media (max-width: 840px) {
  .gt-hero-section .gt-header {
    flex-wrap: nowrap;
  }
}
@media (max-width: 767px) {
  .gt-hero-section .gt-header {
    padding: 18px;
  }
}
.gt-hero-section .gt-header .gt-logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  max-width: clamp(140px, 9vw, 176px);
}
@media (max-width: 767px) {
  .gt-hero-section .gt-header .gt-logo {
    max-width: 132px;
  }
}
.gt-hero-section .gt-header .gt-logo img {
  display: block;
}
.gt-hero-section .gt-header .gt-nav {
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .gt-hero-section .gt-header .gt-nav {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.gt-hero-section .gt-header .gt-nav {
  justify-content: flex-end;
  gap: clamp(36px, 4vw, 78px);
  margin-left: auto;
}
@media (max-width: 1199px) {
  .gt-hero-section .gt-header .gt-nav {
    gap: 28px;
  }
}
@media (max-width: 991px) {
  .gt-hero-section .gt-header .gt-nav {
    display: flex;
    position: absolute;
    top: calc(100% + 10px);
    left: clamp(22px, 3vw, 42px);
    right: clamp(22px, 3vw, 42px);
    background-color: var(--dark-color);
    border: 1px solid color-mix(in srgb, var(--white-color) 14%, transparent);
    border-radius: 22px;
    padding: 0 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    z-index: 7;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, max-height 0.35s ease, padding 0.3s ease;
  }
  .gt-hero-section .gt-header .gt-nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    max-height: 420px;
    padding: 24px;
  }
  .gt-hero-section .gt-header .gt-nav ul {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
@media (max-width: 840px) {
  .gt-hero-section .gt-header .gt-nav {
    flex-wrap: nowrap;
  }
}
@media (max-width: 767px) {
  .gt-hero-section .gt-header .gt-nav {
    left: 18px;
    right: 18px;
  }
}
.gt-hero-section .gt-header .gt-nav ul {
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .gt-hero-section .gt-header .gt-nav ul {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.gt-hero-section .gt-header .gt-nav ul {
  gap: clamp(36px, 3.6vw, 70px);
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (max-width: 1199px) {
  .gt-hero-section .gt-header .gt-nav ul {
    gap: 28px;
  }
}
@media (max-width: 991px) {
  .gt-hero-section .gt-header .gt-nav ul {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
@media (max-width: 840px) {
  .gt-hero-section .gt-header .gt-nav ul {
    flex-wrap: nowrap;
  }
}
.gt-hero-section .gt-header .gt-nav ul li a {
  text-decoration: none;
  color: var(--lighter-white-color);
  font-family: "GeneralSans-regular";
  font-size: clamp(15px, 1.05vw, 20px);
  line-height: clamp(22px, 1.35vw, 26px);
  margin-bottom: 0;
}
.gt-hero-section .gt-header .gt-nav ul li a.active {
  color: var(--white-color);
  font-family: "GeneralSans-semibold";
  font-size: clamp(15px, 1.05vw, 20px);
  line-height: clamp(22px, 1.35vw, 26px);
  margin-bottom: 0;
}
.gt-hero-section .gt-header .gt-header-actions {
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .gt-hero-section .gt-header .gt-header-actions {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.gt-hero-section .gt-header .gt-header-actions {
  gap: clamp(14px, 1.1vw, 22px);
}
@media (max-width: 991px) {
  .gt-hero-section .gt-header .gt-header-actions {
    width: 100%;
    align-items: flex-start;
  }
}
@media (max-width: 840px) {
  .gt-hero-section .gt-header .gt-header-actions {
    flex-wrap: nowrap;
  }
}
@media (max-width: 767px) {
  .gt-hero-section .gt-header .gt-header-actions {
    flex-direction: column;
    gap: 12px;
  }
}
.gt-hero-section .gt-header .gt-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid color-mix(in srgb, var(--white-color) 20%, transparent);
  border-radius: 100px;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
@media (max-width: 991px) {
  .gt-hero-section .gt-header .gt-menu-toggle {
    display: block;
    margin-left: auto;
    position: relative;
    z-index: 8;
  }
}
.gt-hero-section .gt-header .gt-menu-toggle span {
  width: 18px;
  height: 2px;
  background-color: var(--white-color);
  display: block;
  margin: 4px auto;
  border-radius: 20px;
  transition: 0.3s ease;
}
.gt-hero-section .gt-header .gt-menu-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.gt-hero-section .gt-header .gt-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.gt-hero-section .gt-header .gt-menu-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.gt-hero-section .gt-hero-content {
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .gt-hero-section .gt-hero-content {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.gt-hero-section .gt-hero-content {
  justify-content: space-between;
  min-height: calc(clamp(650px, 48vw, 880px) - clamp(82px, 5.6vw, 112px));
  padding: clamp(44px, 4.6vw, 90px);
  position: relative;
  z-index: 2;
}
.gt-hero-section .gt-hero-content .gt-hero-left {
  width: min(100%, 720px);
}
@media (max-width: 1199px) {
  .gt-hero-section .gt-hero-content .gt-hero-left {
    width: 56%;
  }
}
@media (max-width: 991px) {
  .gt-hero-section .gt-hero-content .gt-hero-left {
    width: 100%;
    max-width: 620px;
  }
}
.gt-hero-section .gt-hero-content .gt-hero-left h1 {
  background: var(--orange-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "GeneralSans-medium";
  font-size: clamp(48px, 4vw, 76px);
  line-height: clamp(56px, 4.6vw, 88px);
  margin: 0 0 clamp(28px, 2vw, 40px);
}
.gt-hero-section .gt-hero-content .gt-hero-left p {
  font-family: "GeneralSans-regular";
  font-size: clamp(15px, 1.05vw, 20px);
  line-height: clamp(22px, 1.35vw, 26px);
  margin-bottom: 0;
  color: var(--light-white-color);
  margin-bottom: clamp(34px, 2.6vw, 52px);
}
.gt-hero-section .gt-about-hero-content {
  position: relative;
  padding: 70px 0 65px;
  z-index: 1;
}
@media (max-width: 991px) {
  .gt-hero-section .gt-about-hero-content {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .gt-hero-section .gt-about-hero-content {
    padding: 40px 0;
  }
}
.gt-hero-section .gt-about-hero-content .gt-about-hero-text {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
  max-width: 1240px;
}
.gt-hero-section .gt-about-hero-content .gt-about-hero-text h1 {
  font-family: "GeneralSans-medium";
  font-size: clamp(48px, 4vw, 76px);
  line-height: clamp(56px, 4.6vw, 88px);
  color: var(--white-color);
  margin-bottom: 24px;
}
.gt-hero-section .gt-about-hero-content .gt-about-hero-text h1 span {
  background: var(--orange-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .gt-hero-section .gt-about-hero-content .gt-about-hero-text h1 br {
    display: none;
  }
}
.gt-hero-section .gt-about-hero-content .gt-about-hero-text p {
  font-family: "GeneralSans-regular";
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  margin-bottom: 0;
  color: var(--light-white-color);
  margin: 0 auto;
}
.gt-hero-section .gt-about-hero-content .gt-about-counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}
@media (max-width: 1199px) {
  .gt-hero-section .gt-about-hero-content .gt-about-counter-grid {
    padding: 0;
  }
}
@media (max-width: 991px) {
  .gt-hero-section .gt-about-hero-content .gt-about-counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .gt-hero-section .gt-about-hero-content .gt-about-counter-grid {
    grid-template-columns: 1fr;
  }
}
.gt-hero-section .gt-about-hero-content .gt-about-counter-grid .gt-about-counter-card {
  padding: 34px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(82, 178, 255, 0.15);
  backdrop-filter: blur(18px);
  text-align: center;
}
.gt-hero-section .gt-about-hero-content .gt-about-counter-grid .gt-about-counter-card h2 {
  font-family: "GeneralSans-semibold";
  font-size: clamp(34px, 2.5vw, 48px);
  line-height: clamp(42px, 3vw, 56px);
  color: var(--blue-color);
  margin-bottom: 12px;
}
.gt-hero-section .gt-about-hero-content .gt-about-counter-grid .gt-about-counter-card p {
  font-family: "GeneralSans-regular";
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  margin-bottom: 0;
  color: var(--light-white-color);
}
.gt-hero-section .gt-contact-subheader-wrapper img {
  width: 100%;
  border-radius: 30px;
}

.gt-investors-section {
  padding: clamp(60px, 5.6vw, 120px);
  background-color: var(--dark-color);
  overflow: hidden;
}
.gt-investors-section .gt-investors-wrapper {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 840px) {
  .gt-investors-section .gt-investors-wrapper {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.gt-investors-section .gt-investors-wrapper {
  justify-content: space-between;
  gap: clamp(60px, 7vw, 140px);
  position: relative;
}
@media (max-width: 1199px) {
  .gt-investors-section .gt-investors-wrapper {
    gap: 60px;
  }
}
@media (max-width: 991px) {
  .gt-investors-section .gt-investors-wrapper {
    flex-direction: column;
    gap: 70px;
  }
}
.gt-investors-section .gt-investors-left {
  width: min(100%, 430px);
  min-height: clamp(500px, 35vw, 650px);
  position: relative;
}
@media (max-width: 991px) {
  .gt-investors-section .gt-investors-left {
    width: 100%;
    min-height: auto;
  }
}
.gt-investors-section .gt-investors-left .gt-investors-content {
  position: relative;
  z-index: 2;
}
.gt-investors-section .gt-investors-left .gt-investors-content h2 {
  font-family: "GeneralSans-medium";
  font-size: clamp(40px, 3vw, 60px);
  line-height: clamp(48px, 3.6vw, 72px);
  margin-bottom: 0;
  color: var(--white-color);
  margin: 0 0 clamp(34px, 2.4vw, 46px);
}
@media (max-width: 767px) {
  .gt-investors-section .gt-investors-left .gt-investors-content h2 br {
    display: none;
  }
}
.gt-investors-section .gt-investors-left .gt-investors-content p {
  font-family: "GeneralSans-regular";
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  margin-bottom: 0;
  color: var(--light-white-color);
  max-width: 380px;
  margin: 0 0 clamp(32px, 2.4vw, 46px);
}
@media (max-width: 991px) {
  .gt-investors-section .gt-investors-left .gt-investors-content p {
    max-width: 520px;
  }
}
.gt-investors-section .gt-investors-left .gt-investors-content .gt-investors-btn {
  text-decoration: none;
  font-family: "GeneralSans-semibold";
  font-size: clamp(15px, 1.05vw, 20px);
  line-height: clamp(22px, 1.35vw, 26px);
  margin-bottom: 0;
  background-color: var(--orange-color);
  color: var(--dark-color);
  border: 1px solid var(--orange-color);
  transition: all ease 0.5s;
}
.gt-investors-section .gt-investors-left .gt-investors-content .gt-investors-btn:hover {
  background-color: transparent;
  color: var(--orange-color);
}
.gt-investors-section .gt-investors-left .gt-investors-pattern {
  width: clamp(240px, 22vw, 420px);
  position: absolute;
  left: clamp(-60px, -3vw, -30px);
  bottom: clamp(-24px, -1.4vw, -12px);
  opacity: 0.14;
  pointer-events: none;
}
@media (max-width: 991px) {
  .gt-investors-section .gt-investors-left .gt-investors-pattern {
    right: 0;
    left: auto;
    bottom: -40px;
    width: 300px;
  }
}
@media (max-width: 575px) {
  .gt-investors-section .gt-investors-left .gt-investors-pattern {
    display: none;
  }
}
.gt-investors-section .gt-investors-grid {
  width: min(100%, 860px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(80px, 8vw, 160px);
  row-gap: clamp(70px, 6vw, 120px);
}
@media (max-width: 1199px) {
  .gt-investors-section .gt-investors-grid {
    column-gap: 60px;
    row-gap: 70px;
  }
}
@media (max-width: 991px) {
  .gt-investors-section .gt-investors-grid {
    width: 100%;
    column-gap: 40px;
    row-gap: 50px;
  }
}
@media (max-width: 640px) {
  .gt-investors-section .gt-investors-grid {
    grid-template-columns: 1fr;
  }
}
.gt-investors-section .gt-investors-grid .gt-investors-card {
  max-width: 330px;
}
@media (max-width: 991px) {
  .gt-investors-section .gt-investors-grid .gt-investors-card {
    max-width: 100%;
  }
}
.gt-investors-section .gt-investors-grid .gt-investors-card .gt-investors-icon {
  height: clamp(82px, 6vw, 112px);
  margin-bottom: clamp(18px, 1.5vw, 28px);
  display: flex;
  align-items: flex-end;
}
.gt-investors-section .gt-investors-grid .gt-investors-card .gt-investors-icon img {
  max-height: clamp(78px, 5.8vw, 110px);
  display: block;
}
.gt-investors-section .gt-investors-grid .gt-investors-card h3 {
  font-family: "GeneralSans-semibold";
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: clamp(26px, 1.8vw, 34px);
  margin-bottom: 0;
  color: var(--white-color);
  margin: 0 0 clamp(14px, 1vw, 18px);
}
@media (max-width: 640px) {
  .gt-investors-section .gt-investors-grid .gt-investors-card h3 br {
    display: none;
  }
}
.gt-investors-section .gt-investors-grid .gt-investors-card p {
  font-family: "GeneralSans-regular";
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  margin-bottom: 0;
  color: var(--light-white-color);
  margin: 0;
}

.gt-investment-platform-section {
  padding: clamp(60px, 5.6vw, 120px);
  background-color: var(--dark-color);
  overflow: hidden;
}
.gt-investment-platform-section .gt-investment-platform-wrapper {
  position: relative;
  z-index: 1;
}
.gt-investment-platform-section .gt-investment-platform-wrapper h2 {
  font-family: "GeneralSans-medium";
  font-size: clamp(40px, 3vw, 60px);
  line-height: clamp(48px, 3.6vw, 72px);
  margin-bottom: 0;
  color: var(--white-color);
  text-align: center;
  margin: 0 0 clamp(46px, 4vw, 78px);
}
@media (max-width: 767px) {
  .gt-investment-platform-section .gt-investment-platform-wrapper h2 {
    text-align: left;
  }
}
.gt-investment-platform-section .gt-investment-platform-wrapper .gt-investment-platform-grid {
  width: min(100%, 1240px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 2vw, 32px);
  position: relative;
  z-index: 2;
}
@media (max-width: 1199px) {
  .gt-investment-platform-section .gt-investment-platform-wrapper .gt-investment-platform-grid {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .gt-investment-platform-section .gt-investment-platform-wrapper .gt-investment-platform-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .gt-investment-platform-section .gt-investment-platform-wrapper .gt-investment-platform-grid {
    grid-template-columns: 1fr;
  }
}
.gt-investment-platform-section .gt-investment-platform-wrapper .gt-investment-platform-grid .gt-investment-card {
  min-height: clamp(245px, 15vw, 300px);
  border-radius: clamp(22px, 1.5vw, 30px);
  padding: clamp(34px, 2.6vw, 52px) clamp(26px, 2.2vw, 42px);
  background-color: color-mix(in srgb, var(--white-color) 3%, transparent);
  border: 1px solid color-mix(in srgb, var(--blue-color) 28%, transparent);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .gt-investment-platform-section .gt-investment-platform-wrapper .gt-investment-platform-grid .gt-investment-card {
    min-height: 230px;
  }
}
.gt-investment-platform-section .gt-investment-platform-wrapper .gt-investment-platform-grid .gt-investment-card:hover {
  border-color: color-mix(in srgb, var(--blue-color) 60%, transparent);
  transform: translateY(-6px);
}
.gt-investment-platform-section .gt-investment-platform-wrapper .gt-investment-platform-grid .gt-investment-card .gt-investment-icon {
  margin-bottom: clamp(38px, 3.2vw, 62px);
}
@media (max-width: 767px) {
  .gt-investment-platform-section .gt-investment-platform-wrapper .gt-investment-platform-grid .gt-investment-card .gt-investment-icon {
    margin-bottom: 42px;
  }
}
.gt-investment-platform-section .gt-investment-platform-wrapper .gt-investment-platform-grid .gt-investment-card .gt-investment-icon img {
  width: clamp(48px, 3.8vw, 72px);
  height: clamp(48px, 3.8vw, 72px);
  object-fit: contain;
  display: block;
}
.gt-investment-platform-section .gt-investment-platform-wrapper .gt-investment-platform-grid .gt-investment-card .gt-investment-card-content h3 {
  font-family: "GeneralSans-semibold";
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: clamp(26px, 1.8vw, 34px);
  margin-bottom: 0;
  color: var(--white-color);
  margin: 0 0 clamp(14px, 1vw, 18px);
}
.gt-investment-platform-section .gt-investment-platform-wrapper .gt-investment-platform-grid .gt-investment-card .gt-investment-card-content p {
  font-family: "GeneralSans-regular";
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  margin-bottom: 0;
  color: var(--light-white-color);
  margin: 0;
  max-width: 300px;
}
@media (max-width: 640px) {
  .gt-investment-platform-section .gt-investment-platform-wrapper .gt-investment-platform-grid .gt-investment-card .gt-investment-card-content p {
    max-width: 100%;
  }
}
.gt-investment-platform-section .gt-investment-platform-wrapper .gt-investment-pattern {
  width: clamp(260px, 23vw, 430px);
  position: absolute;
  right: clamp(-90px, -4vw, -40px);
  bottom: clamp(-70px, -3vw, -36px);
  opacity: 0.14;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 991px) {
  .gt-investment-platform-section .gt-investment-platform-wrapper .gt-investment-pattern {
    right: -120px;
    bottom: -80px;
  }
}
@media (max-width: 575px) {
  .gt-investment-platform-section .gt-investment-platform-wrapper .gt-investment-pattern {
    display: none;
  }
}

.gt-features-section {
  margin: 30px;
  padding: 0;
  background-color: var(--dark-color);
  overflow: hidden;
}
.gt-features-section .container-fluid {
  max-width: min(100%, 1920px);
}
.gt-features-section .gt-features-wrapper {
  padding: clamp(70px, 5.5vw, 110px) clamp(42px, 5vw, 110px);
  border-radius: clamp(24px, 2vw, 36px);
  background-color: color-mix(in srgb, var(--blue-color) 10%, var(--dark-color));
  position: relative;
}
@media (max-width: 1199px) {
  .gt-features-section .gt-features-wrapper {
    padding: 70px 48px;
  }
}
@media (max-width: 767px) {
  .gt-features-section .gt-features-wrapper {
    padding: 48px 20px;
    border-radius: 22px;
  }
}
.gt-features-section .gt-features-wrapper h2 {
  font-family: "GeneralSans-medium";
  font-size: clamp(40px, 3vw, 60px);
  line-height: clamp(48px, 3.6vw, 72px);
  margin-bottom: 0;
  color: var(--white-color);
  text-align: center;
  margin: 0 0 clamp(60px, 5vw, 96px);
}
@media (max-width: 767px) {
  .gt-features-section .gt-features-wrapper h2 {
    text-align: left;
    margin-bottom: 38px;
  }
}
.gt-features-section .gt-features-wrapper .gt-features-content {
  display: grid;
  grid-template-columns: minmax(0, 640px) minmax(0, 660px);
  align-items: stretch;
  justify-content: center;
  gap: clamp(70px, 6vw, 120px);
}
@media (max-width: 1199px) {
  .gt-features-section .gt-features-wrapper .gt-features-content {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 50px;
  }
}
@media (max-width: 991px) {
  .gt-features-section .gt-features-wrapper .gt-features-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.gt-features-section .gt-features-wrapper .gt-features-content .gt-features-list {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 1.5vw, 28px);
}
.gt-features-section .gt-features-wrapper .gt-features-content .gt-features-list .gt-feature-item {
  width: 100%;
  padding: clamp(20px, 1.4vw, 26px) clamp(22px, 1.8vw, 34px);
  border-radius: clamp(14px, 1vw, 18px);
  background-color: color-mix(in srgb, var(--dark-color) 72%, transparent);
  border: 1px solid color-mix(in srgb, var(--white-color) 14%, transparent);
  cursor: pointer;
}
@media (max-width: 575px) {
  .gt-features-section .gt-features-wrapper .gt-features-content .gt-features-list .gt-feature-item {
    padding: 18px;
  }
}
.gt-features-section .gt-features-wrapper .gt-features-content .gt-features-list .gt-feature-item:hover, .gt-features-section .gt-features-wrapper .gt-features-content .gt-features-list .gt-feature-item.active {
  border-color: color-mix(in srgb, var(--blue-color) 52%, transparent);
}
.gt-features-section .gt-features-wrapper .gt-features-content .gt-features-list .gt-feature-item .gt-feature-title {
  display: flex;
  align-items: center;
  gap: clamp(12px, 0.8vw, 16px);
}
.gt-features-section .gt-features-wrapper .gt-features-content .gt-features-list .gt-feature-item .gt-feature-title img {
  width: clamp(22px, 1.3vw, 28px);
  height: clamp(22px, 1.3vw, 28px);
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
}
.gt-features-section .gt-features-wrapper .gt-features-content .gt-features-list .gt-feature-item .gt-feature-title h3 {
  font-family: "GeneralSans-semibold";
  font-size: clamp(15px, 1.05vw, 20px);
  line-height: clamp(22px, 1.35vw, 26px);
  margin-bottom: 0;
  color: var(--white-color);
  margin: 0;
}
.gt-features-section .gt-features-wrapper .gt-features-content .gt-features-list .gt-feature-item p {
  font-family: "GeneralSans-regular";
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  margin-bottom: 0;
  color: var(--light-white-color);
  max-width: 480px;
  margin: clamp(12px, 0.8vw, 16px) 0 0;
  padding-left: clamp(34px, 2.2vw, 44px);
  display: none;
}
@media (max-width: 575px) {
  .gt-features-section .gt-features-wrapper .gt-features-content .gt-features-list .gt-feature-item p {
    padding-left: 0;
  }
}
.gt-features-section .gt-features-wrapper .gt-features-content .gt-features-list .gt-feature-item.active {
  border-color: color-mix(in srgb, var(--blue-color) 52%, transparent);
}
.gt-features-section .gt-features-wrapper .gt-features-content .gt-features-list .gt-feature-item.active p {
  display: block;
}
.gt-features-section .gt-features-wrapper .gt-features-content .gt-features-image {
  height: 100%;
  min-height: 100%;
  border-radius: clamp(16px, 1.3vw, 24px);
  overflow: hidden;
}
@media (max-width: 991px) {
  .gt-features-section .gt-features-wrapper .gt-features-content .gt-features-image {
    min-height: auto;
  }
}
.gt-features-section .gt-features-wrapper .gt-features-content .gt-features-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
@media (max-width: 991px) {
  .gt-features-section .gt-features-wrapper .gt-features-content .gt-features-image img {
    height: auto;
  }
}

.gt-testimonial-section {
  padding: 100px 0 200px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .gt-testimonial-section {
    padding: 70px 0;
  }
}
.gt-testimonial-section .gt-testimonial-wrapper .gt-common-heading {
  text-align: center;
  margin-bottom: 70px;
}
@media (max-width: 991px) {
  .gt-testimonial-section .gt-testimonial-wrapper .gt-common-heading {
    margin-bottom: 40px;
  }
}
.gt-testimonial-section .gt-testimonial-wrapper .gt-common-heading h2 {
  font-family: "GeneralSans-medium";
  font-size: clamp(40px, 3vw, 60px);
  line-height: clamp(48px, 3.6vw, 72px);
  margin-bottom: 0;
  color: var(--white-color);
}
.gt-testimonial-section .gt-testimonial-wrapper .gt-testimonial-grid {
  display: flex;
  align-items: flex-end;
}
@media (max-width: 840px) {
  .gt-testimonial-section .gt-testimonial-wrapper .gt-testimonial-grid {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.gt-testimonial-section .gt-testimonial-wrapper .gt-testimonial-grid {
  justify-content: center;
  gap: 20px;
}
@media (max-width: 991px) {
  .gt-testimonial-section .gt-testimonial-wrapper .gt-testimonial-grid {
    justify-content: center;
  }
}
.gt-testimonial-section .gt-testimonial-wrapper .gt-testimonial-grid .gt-testimonial-card {
  position: relative;
  width: 100%;
  min-height: 350px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(82, 178, 255, 0.18);
  background-image: url("../images/home-images/blue-gradient.png");
  background-position: center;
  background-size: auto;
  background-repeat: no-repeat;
}
.gt-testimonial-section .gt-testimonial-wrapper .gt-testimonial-grid .gt-testimonial-card.second-card {
  margin-bottom: -100px;
}
.gt-testimonial-section .gt-testimonial-wrapper .gt-testimonial-grid .gt-testimonial-card.fourth-card {
  margin-bottom: -50px;
}
.gt-testimonial-section .gt-testimonial-wrapper .gt-testimonial-grid .gt-testimonial-card .gt-testimonial-card-content {
  position: relative;
  z-index: 1;
  padding: 24px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.gt-testimonial-section .gt-testimonial-wrapper .gt-testimonial-grid .gt-testimonial-card .gt-testimonial-top-content h3 {
  font-family: "GeneralSans-semibold";
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: clamp(26px, 1.8vw, 34px);
  margin-bottom: 0;
  color: var(--white-color);
  margin-bottom: 12px;
}
.gt-testimonial-section .gt-testimonial-wrapper .gt-testimonial-grid .gt-testimonial-card .gt-testimonial-top-content p {
  font-family: "GeneralSans-regular";
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  margin-bottom: 0;
  color: var(--lighter-white-color);
}
.gt-testimonial-section .gt-testimonial-wrapper .gt-testimonial-grid .gt-testimonial-card .gt-testimonial-user {
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .gt-testimonial-section .gt-testimonial-wrapper .gt-testimonial-grid .gt-testimonial-card .gt-testimonial-user {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.gt-testimonial-section .gt-testimonial-wrapper .gt-testimonial-grid .gt-testimonial-card .gt-testimonial-user {
  gap: 10px;
  margin-top: 24px;
}
.gt-testimonial-section .gt-testimonial-wrapper .gt-testimonial-grid .gt-testimonial-card .gt-testimonial-user .gt-testimonial-user-image {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--light-white-color);
}
.gt-testimonial-section .gt-testimonial-wrapper .gt-testimonial-grid .gt-testimonial-card .gt-testimonial-user .gt-testimonial-user-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gt-testimonial-section .gt-testimonial-wrapper .gt-testimonial-grid .gt-testimonial-card .gt-testimonial-user .gt-testimonial-user-content h4 {
  font-family: "GeneralSans-semibold";
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  margin-bottom: 0;
  color: var(--white-color);
  margin-bottom: 2px;
}
.gt-testimonial-section .gt-testimonial-wrapper .gt-testimonial-grid .gt-testimonial-card .gt-testimonial-user .gt-testimonial-user-content span {
  font-family: "GeneralSans-regular";
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  margin-bottom: 0;
  color: var(--lighter-white-color);
  font-size: 11px;
  line-height: 15px;
  display: block;
}

.gt-mission-section {
  padding: 100px 0;
}
@media (max-width: 991px) {
  .gt-mission-section {
    padding: 70px 0;
    padding: 0;
  }
}
.gt-mission-section .gt-mission-wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .gt-mission-section .gt-mission-wrapper {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.gt-mission-section .gt-mission-wrapper {
  justify-content: space-between;
  gap: 100px;
}
@media (max-width: 1199px) {
  .gt-mission-section .gt-mission-wrapper {
    gap: 40px;
  }
}
@media (max-width: 991px) {
  .gt-mission-section .gt-mission-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}
.gt-mission-section .gt-mission-wrapper .gt-mission-image {
  border-radius: 20px;
  overflow: hidden;
  flex: 1 1 50%;
  max-width: 50%;
}
@media (max-width: 991px) {
  .gt-mission-section .gt-mission-wrapper .gt-mission-image {
    max-width: 100%;
  }
}
.gt-mission-section .gt-mission-wrapper .gt-mission-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gt-mission-section .gt-mission-wrapper .gt-mission-content {
  flex: 1 1 50%;
  max-width: 50%;
}
@media (max-width: 991px) {
  .gt-mission-section .gt-mission-wrapper .gt-mission-content {
    max-width: 100%;
  }
}
.gt-mission-section .gt-mission-wrapper .gt-mission-content h2 {
  font-family: "GeneralSans-medium";
  font-size: clamp(40px, 3vw, 60px);
  line-height: clamp(48px, 3.6vw, 72px);
  margin-bottom: 0;
  color: var(--white-color);
  margin-top: 26px;
  margin-bottom: 34px;
}
.gt-mission-section .gt-mission-wrapper .gt-mission-content p {
  font-family: "GeneralSans-regular";
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  margin-bottom: 0;
  color: var(--light-white-color);
  margin-bottom: 24px;
}
.gt-mission-section .gt-mission-wrapper .gt-mission-content p:last-child {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .gt-mission-section {
    margin: 0;
  }
}

.gt-values-section {
  padding-bottom: 100px;
}
@media (max-width: 991px) {
  .gt-values-section {
    padding-bottom: 70px;
  }
}
.gt-values-section .gt-values-wrapper {
  padding: 50px 60px;
  border-radius: 28px;
  border: 1px solid rgba(242, 195, 78, 0.6);
}
@media (max-width: 1199px) {
  .gt-values-section .gt-values-wrapper {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .gt-values-section .gt-values-wrapper {
    padding: 30px 20px;
  }
}
.gt-values-section .gt-values-wrapper .gt-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media (max-width: 991px) {
  .gt-values-section .gt-values-wrapper .gt-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .gt-values-section .gt-values-wrapper .gt-values-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.gt-values-section .gt-values-wrapper .gt-values-grid .gt-values-card {
  text-align: center;
}
.gt-values-section .gt-values-wrapper .gt-values-grid .gt-values-card .gt-values-icon img {
  width: 100px;
  height: 100px;
}
.gt-values-section .gt-values-wrapper .gt-values-grid .gt-values-card h3 {
  font-family: "GeneralSans-semibold";
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: clamp(26px, 1.8vw, 34px);
  margin-bottom: 0;
  color: var(--white-color);
  margin-bottom: 10px;
}
.gt-values-section .gt-values-wrapper .gt-values-grid .gt-values-card p {
  font-family: "GeneralSans-regular";
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  margin-bottom: 0;
  color: var(--light-white-color);
}

.gt-board-section {
  padding: 100px 0;
}
@media (max-width: 991px) {
  .gt-board-section {
    padding: 70px 0;
  }
}
.gt-board-section .gt-board-wrapper .gt-common-heading {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .gt-board-section .gt-board-wrapper .gt-common-heading {
    margin-bottom: 40px;
  }
}
.gt-board-section .gt-board-wrapper .gt-common-heading h2 {
  font-family: "GeneralSans-medium";
  font-size: clamp(40px, 3vw, 60px);
  line-height: clamp(48px, 3.6vw, 72px);
  margin-bottom: 0;
  color: var(--white-color);
}
.gt-board-section .gt-board-wrapper .gt-board-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 1199px) {
  .gt-board-section .gt-board-wrapper .gt-board-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .gt-board-section .gt-board-wrapper .gt-board-grid {
    grid-template-columns: 1fr;
  }
}
.gt-board-section .gt-board-wrapper .gt-board-grid .gt-board-card {
  padding: 10px;
  border-radius: 32px;
  background: #1A1F3D;
  border: 1px solid rgba(82, 178, 255, 0.18);
}
.gt-board-section .gt-board-wrapper .gt-board-grid .gt-board-card .gt-board-image {
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}
.gt-board-section .gt-board-wrapper .gt-board-grid .gt-board-card .gt-board-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 30px;
}
.gt-board-section .gt-board-wrapper .gt-board-grid .gt-board-card .gt-board-content {
  padding: 0 4px 6px;
}
.gt-board-section .gt-board-wrapper .gt-board-grid .gt-board-card .gt-board-content h3 {
  font-family: "GeneralSans-semibold";
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: clamp(26px, 1.8vw, 34px);
  margin-bottom: 0;
  color: var(--white-color);
}
.gt-board-section .gt-board-wrapper .gt-board-grid .gt-board-card .gt-board-content span {
  font-family: "GeneralSans-regular";
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  margin-bottom: 0;
  color: var(--light-white-color);
  display: block;
  margin-bottom: 16px;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.5px;
}
.gt-board-section .gt-board-wrapper .gt-board-grid .gt-board-card .gt-board-content p {
  font-family: "GeneralSans-regular";
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  margin-bottom: 0;
  color: var(--lighter-white-color);
}

.gt-contact-section {
  padding: 100px 0;
}
@media (max-width: 991px) {
  .gt-contact-section {
    padding: 70px 0;
  }
}
.gt-contact-section .gt-contact-wrapper {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 840px) {
  .gt-contact-section .gt-contact-wrapper {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.gt-contact-section .gt-contact-wrapper {
  justify-content: space-between;
  gap: 100px;
}
@media (max-width: 1199px) {
  .gt-contact-section .gt-contact-wrapper {
    gap: 50px;
  }
}
@media (max-width: 991px) {
  .gt-contact-section .gt-contact-wrapper {
    flex-wrap: wrap;
  }
}
.gt-contact-section .gt-contact-wrapper .gt-contact-content {
  max-width: 50%;
  flex: 1 1 50%;
}
@media (max-width: 991px) {
  .gt-contact-section .gt-contact-wrapper .gt-contact-content {
    max-width: 100%;
    flex: 1 1 100%;
  }
}
.gt-contact-section .gt-contact-wrapper .gt-contact-content .gt-contact-top-content {
  margin-bottom: 50px;
}
.gt-contact-section .gt-contact-wrapper .gt-contact-content .gt-contact-top-content h2 {
  font-family: "GeneralSans-medium";
  font-size: clamp(40px, 3vw, 60px);
  line-height: clamp(48px, 3.6vw, 72px);
  margin-bottom: 0;
  color: var(--white-color);
  margin-bottom: 24px;
}
.gt-contact-section .gt-contact-wrapper .gt-contact-content .gt-contact-top-content p {
  font-family: "GeneralSans-regular";
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  margin-bottom: 0;
  color: var(--light-white-color);
}
.gt-contact-section .gt-contact-wrapper .gt-contact-content .gt-contact-support-box {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.gt-contact-section .gt-contact-wrapper .gt-contact-content .gt-contact-support-box h3 {
  font-family: "GeneralSans-semibold";
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: clamp(26px, 1.8vw, 34px);
  margin-bottom: 0;
  color: var(--white-color);
  margin-bottom: 6px;
}
.gt-contact-section .gt-contact-wrapper .gt-contact-content .gt-contact-support-box p {
  font-family: "GeneralSans-regular";
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  margin-bottom: 0;
  color: var(--light-white-color);
  margin-bottom: 10px;
}
.gt-contact-section .gt-contact-wrapper .gt-contact-content .gt-contact-support-box a {
  text-decoration: none;
  font-family: "GeneralSans-semibold";
  font-size: clamp(15px, 1.05vw, 20px);
  line-height: clamp(22px, 1.35vw, 26px);
  margin-bottom: 0;
  color: var(--orange-color);
}
.gt-contact-section .gt-contact-wrapper .gt-contact-content .gt-contact-info-list {
  padding: 0;
  margin: 0;
  list-style: none;
  max-width: 75%;
}
.gt-contact-section .gt-contact-wrapper .gt-contact-content .gt-contact-info-list li {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 840px) {
  .gt-contact-section .gt-contact-wrapper .gt-contact-content .gt-contact-info-list li {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.gt-contact-section .gt-contact-wrapper .gt-contact-content .gt-contact-info-list li {
  gap: 10px;
  margin-bottom: 14px;
}
.gt-contact-section .gt-contact-wrapper .gt-contact-content .gt-contact-info-list li:last-child {
  margin-bottom: 0;
}
.gt-contact-section .gt-contact-wrapper .gt-contact-content .gt-contact-info-list li img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  margin-top: 4px;
}
.gt-contact-section .gt-contact-wrapper .gt-contact-content .gt-contact-info-list li a,
.gt-contact-section .gt-contact-wrapper .gt-contact-content .gt-contact-info-list li span {
  font-family: "GeneralSans-regular";
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  margin-bottom: 0;
  color: var(--light-white-color);
}
.gt-contact-section .gt-contact-wrapper .gt-contact-content .gt-contact-info-list li a {
  text-decoration: none;
}
.gt-contact-section .gt-contact-wrapper .gt-contact-form-wrapper {
  padding: 30px;
  border-radius: 24px;
  border: 1px solid rgba(82, 178, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  max-width: 50%;
  flex: 1 1 50%;
}
@media (max-width: 991px) {
  .gt-contact-section .gt-contact-wrapper .gt-contact-form-wrapper {
    max-width: 100%;
    flex: 1 1 100%;
  }
}
@media (max-width: 767px) {
  .gt-contact-section .gt-contact-wrapper .gt-contact-form-wrapper {
    padding: 24px 20px;
  }
}
.gt-contact-section .gt-contact-wrapper .gt-contact-form-wrapper form .gt-form-group {
  margin-bottom: 22px;
}
.gt-contact-section .gt-contact-wrapper .gt-contact-form-wrapper form .gt-form-group label {
  font-family: "GeneralSans-regular";
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  margin-bottom: 0;
  color: var(--white-color);
  display: block;
  margin-bottom: 16px;
}
.gt-contact-section .gt-contact-wrapper .gt-contact-form-wrapper form .gt-form-group input,
.gt-contact-section .gt-contact-wrapper .gt-contact-form-wrapper form .gt-form-group select,
.gt-contact-section .gt-contact-wrapper .gt-contact-form-wrapper form .gt-form-group textarea {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white-color);
  outline: none;
  box-shadow: none;
  font-family: "GeneralSans-regular";
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  margin-bottom: 0;
}
.gt-contact-section .gt-contact-wrapper .gt-contact-form-wrapper form .gt-form-group input::placeholder,
.gt-contact-section .gt-contact-wrapper .gt-contact-form-wrapper form .gt-form-group select::placeholder,
.gt-contact-section .gt-contact-wrapper .gt-contact-form-wrapper form .gt-form-group textarea::placeholder {
  color: var(--lighter-white-color);
}
.gt-contact-section .gt-contact-wrapper .gt-contact-form-wrapper form .gt-form-group select {
  appearance: none;
  background-image: url("../images/contact-images/downarrow-icon.svg");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  background-color: #1b1e30;
  cursor: pointer;
}
.gt-contact-section .gt-contact-wrapper .gt-contact-form-wrapper form .gt-form-group textarea {
  min-height: 120px;
  resize: none;
}
.gt-contact-section .gt-contact-wrapper .gt-contact-form-wrapper form .gt-form-group .gt-phone-field {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
}
.gt-contact-section .gt-contact-wrapper .gt-contact-form-wrapper form .gt-form-group .gt-phone-field span {
  padding: 0 14px;
  color: var(--light-white-color);
  font-family: "GeneralSans-regular";
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  margin-bottom: 0;
}
.gt-contact-section .gt-contact-wrapper .gt-contact-form-wrapper form .gt-form-group .gt-phone-field input {
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
}
.gt-contact-section .gt-contact-wrapper .gt-contact-form-wrapper form .gt-form-group.has-error input,
.gt-contact-section .gt-contact-wrapper .gt-contact-form-wrapper form .gt-form-group.has-error select,
.gt-contact-section .gt-contact-wrapper .gt-contact-form-wrapper form .gt-form-group.has-error textarea,
.gt-contact-section .gt-contact-wrapper .gt-contact-form-wrapper form .gt-form-group.has-error .gt-phone-field {
  border-color: #ff5f86;
}
.gt-contact-section .gt-contact-wrapper .gt-contact-form-wrapper form .gt-form-group .gt-form-error {
  color: #ff8aa8;
  display: block;
  font-family: "GeneralSans-regular";
  font-size: 13px;
  line-height: 18px;
  margin-top: 8px;
}
.gt-contact-section .gt-contact-wrapper .gt-contact-form-wrapper form .gt-contact-btn {
  font-family: "GeneralSans-semibold";
  font-size: clamp(15px, 1.05vw, 20px);
  line-height: clamp(22px, 1.35vw, 26px);
  margin-bottom: 0;
  background-color: var(--orange-color);
  color: var(--dark-color);
  border: 1px solid var(--orange-color);
  transition: all ease 0.5s;
}
.gt-contact-section .gt-contact-wrapper .gt-contact-form-wrapper form .gt-contact-btn:hover {
  background-color: transparent;
  color: var(--orange-color);
}
.gt-contact-section .gt-contact-wrapper .gt-contact-form-wrapper form .gt-contact-btn {
  border-radius: 50px;
  padding: 10px 22px;
  cursor: pointer;
}
.gt-contact-section .gt-contact-wrapper .gt-contact-form-wrapper form .gt-honeypot-field {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.gt-contact-toast {
  align-items: flex-start;
  animation: gt-contact-toast-in 220ms ease forwards;
  background: #131827;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  display: flex;
  gap: 12px;
  opacity: 0;
  padding: 14px 16px;
  position: fixed;
  right: clamp(16px, 3vw, 32px);
  top: calc(var(--wp-admin--admin-bar--height, 0px) + 24px);
  transform: translateY(-12px);
  width: min(420px, 100vw - 32px);
  z-index: 9999;
}
@media (max-width: 575px) {
  .gt-contact-toast {
    right: 16px;
    top: calc(var(--wp-admin--admin-bar--height, 0px) + 16px);
  }
}
.gt-contact-toast.is-leaving {
  animation: gt-contact-toast-out 200ms ease forwards;
}
.gt-contact-toast--success {
  background: linear-gradient(135deg, rgba(33, 212, 153, 0.2), rgba(19, 24, 39, 0.96));
  border-color: rgba(33, 212, 153, 0.45);
}
.gt-contact-toast--success .gt-contact-toast__content {
  color: #dfffee;
}
.gt-contact-toast--error {
  background: linear-gradient(135deg, rgba(255, 58, 120, 0.2), rgba(19, 24, 39, 0.96));
  border-color: rgba(255, 58, 120, 0.45);
}
.gt-contact-toast--error .gt-contact-toast__content {
  color: #ffe3eb;
}
.gt-contact-toast__content {
  font-family: "GeneralSans-regular";
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  margin-bottom: 0;
  color: var(--white-color);
  flex: 1 1 auto;
  padding-top: 2px;
}
.gt-contact-toast__close {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 0;
  border-radius: 50%;
  color: var(--white-color);
  cursor: pointer;
  display: flex;
  flex: 0 0 28px;
  font-size: 22px;
  height: 28px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  transition: background-color ease 0.2s;
  width: 28px;
}
.gt-contact-toast__close:hover, .gt-contact-toast__close:focus {
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

@keyframes gt-contact-toast-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes gt-contact-toast-out {
  to {
    opacity: 0;
    transform: translateY(-12px);
  }
}
.gt-footer-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 0 24px;
}
@media (max-width: 991px) {
  .gt-footer-section {
    padding: 50px 0 24px;
  }
}
.gt-footer-section .gt-footer-wrapper .gt-footer-top {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 840px) {
  .gt-footer-section .gt-footer-wrapper .gt-footer-top {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.gt-footer-section .gt-footer-wrapper .gt-footer-top {
  justify-content: space-between;
  gap: 100px;
  padding-bottom: 50px;
}
@media (max-width: 1199px) {
  .gt-footer-section .gt-footer-wrapper .gt-footer-top {
    gap: 40px;
  }
}
@media (max-width: 991px) {
  .gt-footer-section .gt-footer-wrapper .gt-footer-top {
    flex-direction: column;
    padding-bottom: 40px;
  }
}
.gt-footer-section .gt-footer-wrapper .gt-footer-top .gt-footer-brand {
  flex: 1 1 30%;
  max-width: 30%;
}
.gt-footer-section .gt-footer-wrapper .gt-footer-top .gt-footer-brand .gt-footer-logo {
  text-decoration: none;
  display: inline-block;
  margin-bottom: 20px;
}
.gt-footer-section .gt-footer-wrapper .gt-footer-top .gt-footer-brand .gt-footer-logo img {
  width: 100%;
  max-width: 190px;
  object-fit: contain;
}
.gt-footer-section .gt-footer-wrapper .gt-footer-top .gt-footer-brand p {
  font-family: "GeneralSans-regular";
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  margin-bottom: 0;
  color: var(--lighter-white-color);
}
.gt-footer-section .gt-footer-wrapper .gt-footer-top .gt-footer-links-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}
@media (max-width: 991px) {
  .gt-footer-section .gt-footer-wrapper .gt-footer-top .gt-footer-links-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .gt-footer-section .gt-footer-wrapper .gt-footer-top .gt-footer-links-wrapper {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}
.gt-footer-section .gt-footer-wrapper .gt-footer-top .gt-footer-links-wrapper .gt-footer-links-column h3 {
  font-family: "GeneralSans-medium";
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: clamp(26px, 1.8vw, 34px);
  margin-bottom: 0;
  color: var(--white-color);
  margin-bottom: 22px;
}
.gt-footer-section .gt-footer-wrapper .gt-footer-top .gt-footer-links-wrapper .gt-footer-links-column ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.gt-footer-section .gt-footer-wrapper .gt-footer-top .gt-footer-links-wrapper .gt-footer-links-column ul li {
  margin-bottom: 10px;
}
.gt-footer-section .gt-footer-wrapper .gt-footer-top .gt-footer-links-wrapper .gt-footer-links-column ul li:last-child {
  margin-bottom: 0;
}
.gt-footer-section .gt-footer-wrapper .gt-footer-top .gt-footer-links-wrapper .gt-footer-links-column ul li a {
  text-decoration: none;
  font-family: "GeneralSans-regular";
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  margin-bottom: 0;
  color: var(--lighter-white-color);
  transition: all ease 0.5s;
}
.gt-footer-section .gt-footer-wrapper .gt-footer-top .gt-footer-links-wrapper .gt-footer-links-column ul li a:hover {
  color: var(--orange-color);
}
.gt-footer-section .gt-footer-wrapper .gt-footer-top .gt-footer-links-wrapper .gt-footer-links-column.gt-footer-app-column .gt-footer-app-buttons {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.gt-footer-section .gt-footer-wrapper .gt-footer-top .gt-footer-links-wrapper .gt-footer-links-column.gt-footer-app-column .gt-footer-app-buttons a {
  text-decoration: none;
  display: inline-block;
}
.gt-footer-section .gt-footer-wrapper .gt-footer-top .gt-footer-links-wrapper .gt-footer-links-column.gt-footer-app-column .gt-footer-app-buttons a img {
  width: 100%;
  max-width: 126px;
  object-fit: contain;
}
.gt-footer-section .gt-footer-wrapper .gt-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  text-align: center;
}
.gt-footer-section .gt-footer-wrapper .gt-footer-bottom p {
  font-family: "GeneralSans-regular";
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: clamp(20px, 1.25vw, 24px);
  margin-bottom: 0;
  color: var(--lighter-white-color);
  margin-bottom: 10px;
}
.gt-footer-section .gt-footer-wrapper .gt-footer-bottom p:last-child {
  margin-bottom: 0;
}

/*# sourceMappingURL=style.css.map */
