@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Signika+Negative:wght@300..700&family=Square+Peg&display=swap");

@font-face {
  font-family: "Satoshi";
  src: url("./Satoshi-Bold.otf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("./Satoshi-Black.otf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("./Satoshi-Medium.otf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("./Satoshi-Regular.otf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("./Satoshi-Italic.otf") format("truetype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

:root {
  /* Color Palette */
  --color-primary: #373e62;
  --color-primary-light: #4e73bf;
  /* --color-secondary: #252e65; */
  /* --color-accent: #0a75e5; */
  --color-bg: #ffffff;
  --color-bg-alt: #f7f6ea;
  --color-text: #000000;
  --color-text-light: #3474c3;
  --color-inverse-text: #ffffff;

  /* Font Families */
  /* Base text */
  --h1-size: 48px;
  --h1-weight: 900;

  --h2-size: 35px;
  --h2-weight: 900;

  --h3-size: 25px;
  --h3-weight: 400;

  --text-size: 19px;
  --text-weight: 500;
  --text-weight-light: 400;

  --small-text-size: 12px;

  --horizontal-padding: 130px;
  --section-ptop: 100px;

  scroll-behavior: smooth;
}
@media screen and (max-width: 1000px) {
  :root {
    --horizontal-padding: 30px;
    --h1-size: 35px;
    --text-size: 16px;
  }
}
/* global styles */
body {
  font-family: Satoshi, "Times New Roman", Times, serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  box-sizing: border-box;
  overflow-x: hidden;
  width: 100%;
}
* {
  box-sizing: border-box;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
a {
  text-decoration: none;
  color: inherit; /* inherit color from parent */
}
h1 {
  font-size: var(--h1-size);
  font-weight: var(--h1-weight);
  color: var(--color-primary);
  margin: 0;
}
h2 {
  font-size: var(--h2-size);
  font-weight: var(--h2-weight);
  color: var(--color-primary);
  margin: 0;
}
p {
  font-weight: var(--text-weight);
  font-size: var(--text-size);
  color: var(--color-text);
}
section {
  min-height: 100vh;
  overflow: hidden;
}
.horizontal-padding {
  padding-left: var(--horizontal-padding);
  padding-right: var(--horizontal-padding);
}

button {
  font-family: Satoshi;
  border: none;
  background-color: var(--color-primary);
  border-radius: 25px;
  padding: 10px 20px;
  /* padding-right: 34px;  */
  font-size: var(--text-size);
  font-weight: var(--text-weight-light);
  color: var(--color-inverse-text);
  position: relative;
  transition: all 0.3s ease-in-out;
  &:hover {
    background-color: var(--color-primary-light);
  }
  &:before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #7d9cff, #beccfb);
    z-index: -1;
    border-radius: 25px;
  }
  &:hover {
    cursor: pointer;
  }
  &:after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 15px; /* space between text and icon */
    background-image: url("./svg/cta.svg");
    background-repeat: no-repeat;
    background-size: contain; /* keep its aspect ratio */
  }
}
.gradient-border-btn {
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background-color: transparent;

  border: 4px solid;

  border-radius: 8px;
  cursor: pointer;
}
/* ANIMATIONS */
.fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease, transform 0.6s ease;
}

.fade-left {
  transform: translateX(-40px);
}

.fade-right {
  transform: translateX(40px);
}

.fade-top {
  transform: translateY(-40px);
}

.fade.show {
  opacity: 1;
  transform: translateX(0) translateY(0);
}
/* NAVBAR START */
.navbar {
  position: absolute;
  top: 0px;
  /* left: 0px; */
  width: 100%;
  z-index: 1000;
  padding-top: 20px;
  padding-bottom: 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  background: rgba(255, 255, 255, 0.1); /* transparent white */
  backdrop-filter: blur(12px); /* glass blur */
  -webkit-backdrop-filter: blur(12px); /* Safari support */
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.2);  */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  /* border-radius: 0 0 16px 16px; */
}
.navbar-logo {
  width: 140px;

  img {
    width: 100%;
  }
}
#new-page .navbar-links li:first-of-type a {
  font-weight: var(--h1-weight) !important;
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 100px;
  li > a {
    font-weight: var(--text-weight);
  }
  transition: all 0.3s ease-in-out;
}
.social {
  display: none;
  img {
    margin-right: 20px;
  }
}
#burger,
#close {
  display: none;
  position: absolute;
  top: 50%;
  right: 20px;
  /* transform: translate(); */
}
@media screen and (max-width: 1400px) {
  .navbar-links {
    gap: 50px;
  }
}
@media screen and (max-width: 1200px) {
  .navbar-links {
    gap: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .navbar-links {
    gap: 20px;
  }
  #burger {
    display: block;
  }
  .navbar {
    align-items: flex-start;
    background: transparent;
    box-shadow: none;
    padding-bottom: 0px;
    /* padding-top: 0; */
  }
  .navbar-links {
    position: absolute;
    top: -100vh;
    left: 0px;
    width: 100%;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 125px;
    padding-left: var(--horizontal-padding);
    li {
      margin-bottom: 15px;
    }
    &.active {
      top: 0px;
    }
    z-index: -1;

    font-family: Bebas Neue;
    font-weight: 400;
    font-size: 36px;
  }
  .social {
    margin-top: 20px;
    display: block;
  }
}
/* NAVBAR END */

/* HERO SECTION START */
section.hero {
  display: flex;
  flex-direction: column;
  background-image: url("./pictures/hero-back.webp");
  background-size: cover;
  background-position: center right;
  overflow: hidden;
  position: relative;
}
.hero-upper {
  flex-grow: 1;
  width: 80%;
  /* min-height: 800px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  padding-top: 100px;
  .hero-upper-content {
    position: relative;
    z-index: 2;
    width: 810px;
  }
  h1 {
    color: var(--color-text-light);
  }
  p {
    width: 60%;
  }
  p.leading-par {
    width: 100%;
    margin: 0px;
    font-size: 18px;
    font-weight: 500;
    opacity: 0.5;
    span {
      color: var(--color-text-light);
      font-weight: 900;
    }
  }
}

.hero-sponsors {
  margin-top: 40px;
  margin-bottom: 5px;
}
.hero-sponsor-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  & > a {
    width: 100px;
    margin-left: 20px;
    img {
      width: 100%;
    }
  }
  & > span {
    position: relative;
    /* bottom: 10px; */
    /* left: 15px; */
    margin-left: 20px;
  }
}
.overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    270.35deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.15) 25%,
    rgba(245, 245, 245, 0.8) 60%,
    rgba(240, 240, 240, 0.9) 70%,
    #f0f0f0 99%
  );
  z-index: 1;
}
.hero-bottom {
  height: 155px;
  background-color: var(--color-primary);
  display: flex;
  justify-content: space-between;
  /* align-items: flex-start; */
  overflow: visible;
  z-index: 1;
}
.hero-card {
  background-color: var(--color-primary-light);
  border-radius: 15px;
  padding: 7px;
  padding-top: 15px;
  position: relative;
  z-index: 10;
  transform: translateY(-50%);
  width: 340px;
  height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: all 0.3s ease-in-out;
  &:hover {
    transform: translateY(calc(-50% + 20px));
  }
  & > img {
    width: 140px;
    height: 140px;
    /* margin-top: 20px; */
    /* margin-bottom: 20px; */
  }
  p {
    /* font-size: var(--text-size); */
    font-size: 19px;
    color: var(--color-inverse-text);
    font-weight: var(--text-weight-light);
    text-align: center;
  }
}
.mobile-hero-bottom {
  display: none;
  background-color: var(--color-primary);
  height: 160px;
  position: relative;
  z-index: 100;
}
.carousel-wrapper {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: spin 7s linear infinite;
  cursor: grab;
}

.carousel-item {
  flex: 0 0 200px;
  height: 150px;
  margin-right: 100px;
  background: #4e73bf;
  color: white;
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
@media screen and (max-width: 1700px) {
  .hero-card {
    width: 270px;
    height: 190px;

    img {
      width: 100px;
      height: 100px;
    }
    p {
      font-size: 15px;
    }
  }
}
@media screen and (max-width: 1600px) {
  .hero-upper {
    width: 70%;
    padding-bottom: 80px;
    h1 {
      width: 80%;
    }
    .hero-sponsors {
      margin-top: 15px;
    }
  }
}
@media screen and (max-width: 1400px) {
  .hero-card {
    width: 220px;
    height: 210px;

    img {
      width: 100px;
      height: 100px;
    }
  }
}
@media screen and (max-width: 1200px) {
  .hero-card {
    width: 170px;
    height: 210px;

    img {
      width: 100px;
      height: 100px;
    }
  }
}
@media screen and (max-height: 1000px) {
  .hero-upper {
    width: 80%;
    padding-bottom: 80px;
    h1 {
      width: 80%;
    }
  }
}
@media screen and (max-height: 900px) {
  .hero-upper {
    width: 80%;
    min-height: 850px;
  }
}
@media screen and (max-width: 800px) {
  section.hero {
    background-image: none;
    min-height: auto;
  }
  .hero-upper {
    width: 100%;
    text-align: center;
    flex-grow: 0;
    justify-content: flex-start;
    padding-top: 105px;
    min-height: auto;
    margin-bottom: 90px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 40px;
    h1 {
      line-height: 40px;
      width: 95%;
      margin: 0 auto;
      span {
        display: none;
      }
    }
    p {
      width: 80%;
      margin: 0 auto;
      margin-top: 20px;
      margin-bottom: 20px;
      /* text-align: center; */
    }
    p.leading-par {
      font-size: 12px;
      margin-bottom: 6px;
    }
    .hero-sponsors {
      margin-top: 20px;
      margin-bottom: 7px;
    }
    .hero-sponsor-logos {
      & > span {
        /* display: none; */
      }
    }
    .hero-upper-content {
      width: 100%;
    }
  }

  .hero-bottom {
    display: none;
    flex-grow: 1;
  }
  .mobile-hero-bottom {
    display: block;
    width: 100%;
    /* overflow: hidden; */
    .hero-card {
      &:hover {
        transform: translateY(-50%);
      }
    }
  }
}
/* HERO SECTION END */

/* DOCTOR SECTION START */
section.doctor {
  min-height: auto;
  background-color: var(--color-bg-alt);
  /* padding-top: var(--section-ptop); */
  padding-top: 40px;
  padding-right: 0;
  /* padding-bottom: var(--section-ptop); */
  display: flex;
  align-items: center;
  position: relative;
  .doctor-content {
    position: relative;
    z-index: 3;
    width: 45%;
    h2 {
      color: var(--color-text-light);
    }
    p {
      font-weight: var(--text-weight-light);
      width: 80%;
      margin-top: 40px;
      /* margin-bottom: 40px; */
    }
    button {
      margin-top: 20px;
      margin-bottom: 20px;
      /* z-index: 0; */
    }
  }
  .doctor-images {
    overflow: hidden;
    margin-left: auto;
    width: 60%;
    position: relative;
    line-height: 0;
    display: flex;
    align-items: flex-end;
    img {
      line-height: 0px;
    }
    .eclipses {
      width: 40%;
      /* position: relative; */
      img {
        /* width: 80%; */
        position: absolute;
        right: 0px;
        bottom: 0px;
      }
      #stroked-eclipse {
        width: 73%;
      }
      #dashed-eclipse {
        width: 80%;
      }
    }
    #doctor-person {
      /* position: absolute; */
      width: 110%;
      position: relative;
      left: 9%;
      bottom: 0px;
    }
    .helper-icon {
      position: absolute;
      top: 13%;
      left: 42%;
    }
    .bag {
      top: 2%;
      left: 48%;
    }
    .injection {
      top: 0%;
      left: 71%;
    }
    .contract {
      left: 76%;
      top: 16%;
    }
  }
}
@media screen and (max-width: 1000px) {
  section.doctor {
    flex-direction: column;
    align-items: center;
    width: 100vw;
    padding-left: 0;
    .doctor-content {
      width: 100%;
      text-align: left;
      padding-right: var(--horizontal-padding);
      padding-left: var(--horizontal-padding);
      h2 {
        margin-bottom: 20px;
      }
      p {
        width: 100%;
        /* margin: 0 auto; */
        margin-top: 25px;
      }
    }
    .doctor-images {
      width: 100%;
      margin-left: 0;
      /* margin-top: 70px; */
      padding-top: 80px;
      img {
        width: 100%;
        height: auto;
      }
      .eclipses {
        width: 100%;
        img {
          width: 100%;
          height: auto;
        }
        #dashed-eclipse {
          width: 130%;
          left: 50%;
          transform: translateX(-52.5%);
        }
        #stroked-eclipse {
          width: 120%;
          left: 50%;
          transform: translateX(-50%);
        }
      }
      .helper-icon {
        width: 60px;
        height: 60px;
        top: 16%;
        left: 5%;
      }
      .bag {
        top: 4%;
        left: 20%;
      }
      .injection {
        top: 5%;
        left: 65%;
      }
      .contract {
        top: 16%;
        left: 80%;
      }
      #doctor-person {
        left: -50%;
        transform: translateX(17.5%);
        width: 150%;
      }
    }
  }
}
/* DOCTOR SECTION END */
/* BENEFITS SECTION START */
section.benefits {
  min-height: auto;
  padding-top: var(--section-ptop);
  position: relative;
  overflow: hidden;
  padding-bottom: var(--section-ptop);
  overflow: hidden;
  h2 {
    text-align: center;
    color: var(--color-text);
    margin-bottom: 40px;
  }
  .circle {
    position: absolute;
    width: 15%;
    padding-top: 15%;
    top: -30%;
    right: -6%;
    border-radius: 50%;
    background-color: var(--color-primary);
  }

  .benefits-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 25px;
  }
  .benefit-item {
    width: 45%;
    display: flex;
    align-items: center;
    gap: 20px;
    p {
      margin: 0;
    }
  }
  button {
    display: block;
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 5px;
  }
  span {
    display: block;
    text-align: center;
    /* margin: 0 auto; */
  }
  .helper-icon {
    position: absolute;
  }
  .infusion-left {
    left: 8%;
  }
  .infusion-right {
    left: 88%;
  }
  .contract {
    top: 80%;
    left: 85%;
  }
}
@media screen and (max-width: 1000px) {
  section.benefits {
    .benefits-list {
      flex-direction: column;
      align-items: center;
    }
    .benefit-item {
      width: 100%;
      margin-bottom: 5px;
    }
    .contract {
      display: none;
    }
    .infusion-right {
      top: 9%;
      left: 80%;
    }
  }
}

/* BENEFITS SECTION END */

/* IMPACT VIDEO START */
.impact-video {
  /* margin-top: 40px; */
  background-color: var(--color-primary);
  padding: 70px var(--horizontal-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  .cross {
    position: absolute;
    top: 0px;
    right: var(--horizontal-padding);
    transform: translateY(-50%);
    /* display: none; */
  }
  h1 {
    color: var(--color-bg);
  }
  p {
    color: var(--color-bg);
  }
  .left {
    width: 45%;
  }
  .right {
    width: 45%;
    video {
      width: 100%;
      height: 280px;
      border-radius: 15px;
      border: none;
    }
  }
}
@media screen and (max-width: 1000px) {
  .impact-video {
    flex-direction: column;
    align-items: center;
    .left {
      width: 100%;
      text-align: left;
      margin-bottom: 20px;
    }
    .right {
      width: 100%;
      text-align: center;
      iframe {
        width: 100%;
        height: 280px;
      }
    }
    .cross {
      display: block;
    }
  }
}
/* IMPACT VIDEO END */
/* TEAM SECTION START */
.team-section {
  padding-top: var(--section-ptop);
  padding-bottom: var(--section-ptop);
  h2,
  p {
    text-align: center;
  }
  h3 {
    font-weight: 900;
    font-size: 25px;
  }
  .separator {
    height: 1px;
    background-color: var(--color-primary);
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .team-member {
    display: flex;
    align-items: center;
    gap: 20px;
    .profile-img {
      width: 20%;
      aspect-ratio: 3 / 4;

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 10px;
      }
    }
    .profile-description {
      width: 80%;
      h3 {
        margin-top: 1px;
        margin-bottom: 3px;
      }
      p {
        text-align: justify;
        margin-top: 3px;
      }
    }
  }
  .team-member.alternate {
    flex-direction: row-reverse;
    .profile-description {
      text-align: right;
      p:first-of-type {
        text-align: right;
      }
      p:nth-of-type(2) {
        margin-top: 35px;
      }
    }
  }
}
.jake-glave {
  display: none;
}
@media screen and (max-width: 1000px) {
  .jake-glave {
    display: block;
  }
  .team-section > .team-member {
    display: none;
  }
  .team-section > .separator {
    display: none;
  }
  .team-section {
    padding-left: 0px;
    padding-right: 0px;
    .team-member {
      background: #f7f6ea;
      height: 100%;
      overflow: hidden;
      flex-direction: column;
      .profile-img {
        width: 100% !important;
        height: 300px;
        img {
        }
      }
      .profile-description {
        p {
          text-align: left;
        }
      }
    }
    .team-member.alternate {
      background: #f7f6ea;

      flex-direction: column !important;
      .profile-img {
        width: 100% !important;
        height: 300px;
        img {
        }
      }
    }
  }
}
.carousel-wrapper.jake-glave {
  .flickity-button {
    top: 18% !important;
    background: transparent;
    &:before {
      display: none;
    }
    &:after {
      display: none;
    }
    svg {
      color: white;
    }
  }
  .flickity-prev-next-button.next {
    right: 35px;
  }
  .flickity-prev-next-button.previous {
    left: 35px;
  }
  width: 100%;
  max-width: 800px;
  margin: auto;
  .carousel2 {
    background: transparent;
    height: 950px;
    /* height: auto; */
    /* min-height: 1px; */
  }
  .flickity-viewport {
  }
  .carousel-item {
    width: 80%;
    height: 100%;
    margin-right: 10px;
    background: transparent;
    color: white;
    font-size: 2rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    .profile-description {
    }
    h3 {
      color: black;
    }
  }
}
/* TEAM SECTION END */
/* FOUNDER MESSAGE START */
.founder-message {
  /* margin-top: 40px; */
  background-color: var(--color-primary);
  padding: 70px var(--horizontal-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  h1 {
    color: var(--color-bg);
  }
  h3 {
    color: white;
    font-weight: 400;
    font-size: 25px;
    font-style: italic;
    margin-top: 8px;
    margin-bottom: 40px;
  }
  p {
    color: var(--color-bg);
    font-weight: 500;

    &:last-of-type {
      font-weight: 400;
      font-style: italic;
    }
  }
  .left {
    width: 45%;
  }
  .right {
    width: 45%;
    img {
      -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
      filter: grayscale(100%);
      width: 100%;
      border-radius: 15px;
    }
  }
}
@media screen and (max-width: 1000px) {
  .founder-message {
    flex-direction: column-reverse;
    align-items: center;
    .left {
      width: 100%;
      text-align: left;
      p {
        font-weight: 400;
      }
    }
    .right {
      margin-bottom: 30px;
      width: 100%;
      text-align: center;
      img {
        width: 100%;
        height: auto;
      }
    }
  }
}
/* FOUNDER MESSAGE END */
/* INFUSION SECTION START */
.infusion-section {
  min-height: auto;
  padding-top: var(--section-ptop);
  padding-bottom: var(--section-ptop);

  h2 {
    text-align: center;
  }
  p {
    text-align: center;
  }
  .infusion-content {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    .infusion-img {
      width: 40%;
      img {
        width: 100%;
      }
    }
    .infusion-benefits {
      width: 40%;
      display: flex;
      flex-direction: column;
      justify-content: stretch;
      .benefit-item {
        margin-bottom: 20px;
        border: 1px solid;

        border-image-source: linear-gradient(
          204.48deg,
          #ffffff 15.64%,
          rgba(255, 255, 255, 0.3) 74.88%
        );

        border-radius: 10px;
        box-shadow: 0px 4px 4px 0px #00000040;
        background-image: url("./pictures/benefit-bg.webp");
        background-size: cover;

        display: flex;
        gap: 20px;
        padding: 20px 30px;

        p {
          text-align: left;
        }
      }
    }
  }
  button {
    margin: 0 auto;
    display: block;
    margin-top: 40px;
  }
  span {
    display: block;
    text-align: center;
    margin-top: 10px;
    font-size: 16px;
  }
}
@media screen and (max-width: 1000px) {
  .infusion-section {
    padding-top: 60px;
    .infusion-content {
      flex-direction: column;
      align-items: center;
      .infusion-img {
        width: 100%;
        img {
          width: 100%;
          height: auto;
        }
      }
      .infusion-benefits {
        width: 100%;
        .benefit-item {
          margin-bottom: 20px;
          width: 100%;
        }
      }
    }
  }
}

/* INFUSION SECTION END */
/* FORM SECTION START */
.form-section {
  background-color: var(--color-primary);
  min-height: auto;
  display: flex;
  justify-content: space-between;
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;

  .form-container {
    width: 40%;
    /* background-color: white; */
    /* padding: 40px; */
    border-radius: 10px;
    & > img {
      width: 50px;
      height: 50px;
      color: var(--color-primary);
    }
    h2 {
      font-weight: 900;
    }
    p {
      margin-top: 0px;
      font-weight: 500;
      font-size: 16px;
      opacity: 0.7;
    }
  }
  form {
    margin-top: 50px;
  }
  .form-row {
    display: flex;
    flex-direction: column;
    label {
      font-size: 19px;
      font-weight: 500;
    }
    div {
      position: relative;
      margin-top: 5px;
      margin-bottom: 20px;
    }
    input,
    select {
      appearance: none;
      background-color: #e6e6e6;
      border-radius: 3px;
      outline: none;
      border: none;
      font-size: 23px;
      padding: 10px;
      padding-left: 44px;
      width: 100%;
    }
    .form-icon {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      left: 10px;
      width: 25px;
      height: 25px;
    }
    .dropdown-arrow {
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);
    }
  }
  button {
    margin-top: 30px;
    background-color: var(--color-text-light);
    font-size: 23px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 3px;
    /* &::after {
      display: none;
    } */
    &:hover {
      background-color: var(--color-primary-light);
      /* transform: scale(1.05); */
    }
  }
  .right-side {
    padding-top: 20px;
    width: 40%;
    display: flex;
    align-items: left;
    flex-direction: column;
    h2 {
      color: white;
      font-family: "Bebas Neue", sans-serif;
      font-weight: 400;
      font-size: 48px;
      letter-spacing: 3px;
      margin-bottom: 30px;
      &:nth-of-type(3) {
        margin-bottom: 0;
      }
    }
    ul {
      color: white;
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
      margin-bottom: 60px;
    }
    .social {
      display: block;
      margin-bottom: 80px;
      img {
        width: 60px;
        height: 60px;
      }
    }
    .copyright {
      margin-top: auto;
      color: white;
      position: relative;
      top: 4%;
    }
  }
}
@media screen and (max-width: 1000px) {
  .form-section {
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
    .form-container {
      width: 100%;
      max-width: 600px;
      margin-bottom: 30px;
      padding: 20px;
      h2 {
        font-size: 22px;
        /* margin-bottom: 20px; */
      }
      label {
        font-size: 14px;
      }
    }
    .right-side {
      width: 100%;

      h2 {
        font-size: 35px;
        margin-bottom: 20px;
        &.footer-mail {
          font-size: 30px;
        }
      }
      ul.navbar-links {
        z-index: 1;
        position: static;
        width: auto;
        height: auto;
        padding-top: 0;
        padding-left: 0;
        background-color: transparent;
        margin-bottom: 30px;
        font-family: inherit;
        font-size: 16px;
        gap: 8px;
      }
      .social {
        margin-bottom: 60px;
        /* gap: 1px; */
        img {
          margin-right: 10px;
        }
      }
      .copyright {
        margin-top: 100px;
      }
    }
  }
}
/* FORM SECTION END */
