:root {
  --background: #0e0e0e;
  --border: #313131;
  --primary: #e63946;
  --primaryDark: #c81d25;
  --text: #f5f5f5;
  --muted: #bdbdbd;
}
@font-face {
  font-family: "Adumu";
  src: url("./fonts/adumu.woff2") format("woff2"),
    url("./fonts/adumu.ttf") format("truetype");
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}
html.popup-open {
  overflow: hidden;
}
main {
  padding: 0;
  margin: 0;
}
.hidden {
  display: none;
}
body {
  padding: 0;
  margin: 0;
  background-color: var(--background);
  position: relative;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
a {
  text-decoration: none;
}
.bold {
  font-weight: 700;
  background: var(--primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

strong {
  font-weight: 900;
}
strong.brand {
  font-family: "Adumu";
  letter-spacing: 2.5px;
  font-size: 24px;
  line-height: 30px;
}
h1,
h2,
h3,
p,
li {
  color: var(--text);
  padding: 10px 3vw;
}

@media only screen and (min-width: 701px) {
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 24px;
  }
  p {
    font-size: 22px;
  }
  li {
    font-size: 20px;
  }
}
/* cta-button */
.cta-button {
  display: inline-block;
  font-weight: 700;
  text-decoration: none;
  padding: 20px 20px;
  background-color: var(--primary);
  color: var(--text);
  border: none;
  border-radius: 10% / 40%;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow, transform;
  transition-property: box-shadow, transform;
  box-shadow: 0px 0px 1px 1px #000000;
  z-index: 99;
}
/* @media only screen and (min-width: 701px) {
  .cta-button {
    padding: 25px 25px;
    border-radius: 10% / 40%;
    font-size: 26px;
  }
} */
.cta-button:hover,
.cta-button:active {
  /* background: rgb(0, 255, 200); */
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  box-shadow: 0px 0px 2px 3px #000000;
}

/* header */
header {
  position: fixed;
  width: 100vw;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 999999;
}
header h1 {
  padding: 20px;
  font-size: 24px;
  width: 100%;
  margin: auto;
  font-family: "Adumu";
  letter-spacing: 2.5px;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
header h1::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  margin: auto;
  border-bottom: 3px solid var(--primaryDark);
  border-radius: 50%;
}

header .cta-button {
  font-size: 14px;
  display: inline;
  padding: 5px 10px;
  border-radius: 20% / 60%;
  margin-left: 10px;
  position: absolute;
  top: 17px;
  right: 10px;
}

.animated-logo {
  height: 100vh;
  top: 10%;
  left: 0;
  margin: 0 auto;
  width: 100%;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.animated-logo h1 {
  font-family: "Adumu";
  letter-spacing: 2.5px;
  font-size: clamp(48px, 10vw, 100px);
  line-height: clamp(50px, 12vw, 120px);
  color: white;
  text-align: center;
}
.animated-logo .left-part {
  color: black;
  opacity: 0;
  transform: translateX(-100%) translateY(-45px);
  animation: slideInLeft 0.8s ease-out forwards;
  animation-delay: 0.2s;
}

.animated-logo .right-part {
  color: var(--primaryDark);
  opacity: 0;
  transform: translateX(100%);
  animation: slideInRight 0.8s ease-out forwards;
  animation-delay: 1s;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0) translateY(clamp(-80px, -10vw, -45px));
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* hero */
.section-hero {
  /* aspect-ratio: 16 / 9; */
  position: relative;
  padding: unset;
  /* padding-top: 20px; */
  margin-top: 0;
  z-index: 1000;
  width: 100vw;
  background-color: black;
  /* opacity: 0.9; */
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  background-image: url("img/sky3.jpg");
}

/* .fixed-img {
  position: relative;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  max-height: unset;
  overflow: hidden;
}

.hero-img {
  position: fixed;
  top: 0;
  left: 0;
  object-fit: cover;
  flex-shrink: 0;
  height: 100vh;
  width: 100vw;
  object-position: center center;
  z-index: 0;
} */
.wrapper {
  background: #000000;
  background: linear-gradient(
    150deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 1) 100%
  );
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-hero .hero-text {
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
  /* min-height: min(100vh, 600px); */
  padding: 10px 3vw 0px;
  max-width: 1400px;
  margin: 10px 2vw;
  border: 2px white solid;
  box-shadow: white 0px 0px 6px 1px;
  /* border-radius: 5px; */
}
.section-hero li,
.section-hero h1,
.section-hero h2,
.section-hero h3,
.section-hero p {
  color: white;
}

.section-hero h2 {
  margin: 20px auto;
  line-height: 30px;
  /* font-size: 20px; */
  max-width: 600px;
  text-align: center;
}
.section-hero p {
  /* font-size: 18px; */
}
.section-hero strong {
  margin: 15px 0;
  /* font-size: 24px; */
  line-height: 24px;
  text-align: center;
  color: rgb(255, 215, 215);
  font-weight: 900;
}
.section-hero .cta-text {
  margin-top: 30px;
  font-size: 24px;
  text-align: center;
}
.section-hero .cta-button {
  margin: 20px auto;
  font-size: 22px;
  /* padding: 15px 30px; */
}
@media only screen and (min-width: 701px) {
  .section-hero p {
    text-align: center;
  }
  .section-hero strong {
    font-size: 30px;
    line-height: 34px;
  }
  .section-hero .cta-text {
    font-size: 30px;
  }
}
/* course into section */
.course-intro-section {
  padding: 40px 2vw 20px;
  background-color: white;
  /* opacity: 0.9; */
  /* background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  background-image: url("img/sky.jpg"); */
}
.course-intro-section p,
.course-intro-section li,
.course-intro-section h2,
.course-intro-section h3 {
  color: black;
}
.course-intro-section li {
  list-style: none;
}

@media only screen and (min-width: 701px) {
  .course-intro-section * {
    text-align: center;
  }
  .course-intro-section .last-p strong {
    line-height: 40px;
    font-size: 24px;
  }
}
/* course intro */

.modules-section {
  padding-bottom: 30px;
}
.modules-section h2 {
  color: var(--primaryDark);
  text-align: center;
  font-size: 28px;
  margin: 20px 0;
}
.modules-section .modules-container {
  width: 100%;
  height: auto;
  margin: auto;
  margin-bottom: min(100px, 20vw);
  display: flex;
  justify-content: center;
  /* gap: 20px; */
  flex-wrap: wrap;
  row-gap: 40px;
}
.modules-section .modules-container .module {
  margin: 0 3vw;
}
/* flip cards */

.flip-card {
  background-color: transparent;
  width: 100%;
  max-width: 300px;
  height: 250px;
  perspective: 1000px; /* Remove this if you don't want the 3D effect */
  margin: 0px auto 30px;
  z-index: 100000;
  position: relative;
}

/* This container is needed to position the front and back side */
.flip-card-inner {
  position: relative;

  width: 100%;
  height: 100%;
  text-align: center;

  -webkit-transition: -webkit-transform 0.8s;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  transition: all 0.8s;
  transition: -webkit-transform 0.8s;
  transition: transform 0.8s;

  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;

  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  transform: rotateY(0deg);
  opacity: 1;
}

/* Do an horizontal flip when you move the mouse over the flip box container */

@media not all and (pointer: coarse) {
  .flip-card.hover-effect:hover .flip-card-inner {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
}

.flip-card-checkbox {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin: 0;
  opacity: 0;
}
.flip-card-checkbox:checked {
  height: 88%;
}
.flip-card-checkbox:checked + .flip-card-label .flip-card-inner {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.flip-card-label {
  display: block;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  z-index: 0;
}

.flip-card-inner {
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  transform: rotateY(0deg);
}

/* Position the front and back side */
.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;

  pointer-events: none;
}

/* Style the front side */
.flip-card-front {
  color: black;
  background-color: gray;
  border-radius: 15px;
  opacity: 1;

  transition: opacity 0.8s;
}

.flip-card-front > p {
  position: absolute;
  top: 0;
  width: 100%;
  text-align: center;
  opacity: 0.5;

  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;

  font-size: 14px;
  font-weight: 300;
  margin: 0;
  color: rgba(0, 0, 0, 0.8);
}
.flip-card-front > h3 {
  position: absolute;
  top: 40%;
  width: 100%;
  font-size: 26px;
  text-shadow: white 0px 0px 5px;
}
.flip-card-checkbox:checked ~ .flip-card-inner .flip-card-front p {
  opacity: 0;
}
@media not all and (pointer: coarse) {
  .flip-card-front p {
    opacity: 0;
  }
  .flip-card-checkbox {
    display: none;
  }
}

.flip-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  opacity: 1;
}

/* Style the back side */
.flip-card-back {
  -webkit-backdrop-filter: blur(1px);
  -moz-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);

  border: 0.5px solid rgba(90, 90, 90, 0.5);
  color: white;

  transition: all 0.8s;
  transition: -webkit-transform 0.8s;
  transition: transform 0.8s;
  -webkit-transition: -webkit-transform 0.8s;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;

  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);

  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;

  opacity: 0;

  -webkit-transition: opacity 1s;
  -moz-transition: opacity 1s;
  -o-transition: opacity 1s;
  transition: opacity 1s;

  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  background-size: cover;
  background-position: center center;
}

.flip-card-checkbox:checked
  + .flip-card-label
  .flip-card-inner
  .flip-card-back {
  opacity: 1;
}
.flip-card.hover-effect:hover .flip-card-back {
  opacity: 1;
}

#modul0-card .flip-card-back {
  background: linear-gradient(rgba(0, 0, 0, 0.5) 0 0) padding-box,
    linear-gradient(60deg, rgba(78, 78, 78, 0.7) 0%, #f4a261 100%) border-box;
}
#modul1-card .flip-card-back {
  background: linear-gradient(rgba(0, 0, 0, 0.5) 0 0) padding-box,
    linear-gradient(60deg, rgba(78, 78, 78, 0.7) 0%, #e63946 100%) border-box;
}
#modul2-card .flip-card-back {
  background: linear-gradient(rgba(0, 0, 0, 0.5) 0 0) padding-box,
    linear-gradient(60deg, rgba(78, 78, 78, 0.7) 0%, #43aa8b 100%) border-box;
}
#modul3-card .flip-card-back {
  background: linear-gradient(rgba(0, 0, 0, 0.5) 0 0) padding-box,
    linear-gradient(60deg, rgba(78, 78, 78, 0.7) 0%, #577590 100%) border-box;
}
#modul4-card .flip-card-back {
  background: linear-gradient(rgba(0, 0, 0, 0.5) 0 0) padding-box,
    linear-gradient(60deg, rgba(78, 78, 78, 0.7) 0%, #f77f00 100%) border-box;
}
#modul5-card .flip-card-back {
  background: linear-gradient(rgba(0, 0, 0, 0.5) 0 0) padding-box,
    linear-gradient(60deg, rgba(78, 78, 78, 0.7) 0%, #90be6d 100%) border-box;
}
#modul6-card .flip-card-back {
  background: linear-gradient(rgba(0, 0, 0, 0.5) 0 0) padding-box,
    linear-gradient(60deg, rgba(78, 78, 78, 0.7) 0%, #f9c74f 100%) border-box;
}
#modul7-card .flip-card-back {
  background: linear-gradient(rgba(0, 0, 0, 0.5) 0 0) padding-box,
    linear-gradient(60deg, rgba(78, 78, 78, 0.7) 0%, #4cc9f0 100%) border-box;
}
#modul8-card .flip-card-back {
  background: linear-gradient(rgba(0, 0, 0, 0.5) 0 0) padding-box,
    linear-gradient(
        60deg,
        rgba(78, 78, 78, 0.7) 0%,
        rgba(255, 215, 0, 0.7) 100%
      )
      border-box;
}
.flip-card-back h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 25px;
  padding: 0 5px;
  max-width: 95%;
  text-align: center;
  color: white;
}
.flip-card-back p {
  font-size: 18px;
  text-align: left;
  /* line-height: 30px; */
  margin: 5px 0;
  max-width: 95%;
  padding: 0 5px;
  /* margin: 20px auto 10px; */
}
.flip-card-back ul {
  margin: 0 auto;
  height: 100%;
  /* list-style: none; */
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 0 8px 25px 30px;
}
.flip-card-back ul li {
  text-align: left;
  font-size: 18px;
  /* margin-top: 20px; */
  margin: 0;
  padding: 0;
  width: auto;
}
.flip-card-back li:not(:first-child) {
  /* margin-top: 20px; */
}

.button-container {
  position: absolute;
  bottom: 0;
  width: 100%;
  justify-content: center;

  display: flex;
  opacity: 0;

  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;

  -webkit-transition: opacity 1s;
  -moz-transition: opacity 1s;
  -o-transition: opacity 1s;
  transition: opacity 1s;
  z-index: 999999;

  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.flip-card-checkbox:checked + .flip-card-label .button-container {
  opacity: 1;
}
.flip-card:hover .flip-card-label .button-container {
  opacity: 1;
}
.bonus-modules h2 {
  color: white;
}

.bonus-modules li {
  color: white;
  text-align: center;
}
/* 
.cta-button-primary {
  display: inline-block;
  margin: 10px auto 10px;
  font-size: 26px;
  font-weight: 700;
  text-decoration: none;
  width: 80%;
  padding: 10px 0;
  text-align: center;
  border-radius: 34px;
  border: 3px solid gray;
  background-color: transparent;
  color: white;
  z-index: 99999;
  transition: transform 0.8s;
  pointer-events: all;
} */

/* */
.for-who-section {
  padding: 3vw;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  background-image: url("img/man-on-bench.jpg");
}
.for-who-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
.for-who-section .container {
  display: flex;
  gap: 5px;
  position: relative;
  z-index: 1;
}
.for-who-section h2 {
  text-align: center;
  position: relative;
  z-index: 1;
  color: white;
}
.for-who-section .container div {
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.for-who-section .container ul {
  width: 100%;
}
.for-who-section .container li {
  list-style: none;
  color: white;
  text-align: center;
}
.for-who-section p {
  /* font-size: 22px; */
  margin: 50px 0 30px;
  text-align: center;
  text-shadow: black 0px 0px 5px;
  position: relative;
  z-index: 1;
}
.for-who-section strong.brand {
  line-height: 35px;
}

/* about me */
.about-me-section {
  padding: 40px 2vw 0px;
  position: relative;
}
.about-me-section::after {
  position: absolute;
  left: 0;
  bottom: -53px;
  z-index: 9;
  content: "";
  width: 100%;
  margin: auto;
  border-bottom: 5px solid var(--primaryDark);
  border-radius: 30%;
}
.about-me-section h2 {
  /* font-size: 22px; */
  text-align: center;
  margin-bottom: 20px;
  color: white;
}
.about-me-section .left-side {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  width: 100%;
}
.about-me-section .left-side .img-container {
  position: relative;
  place-content: center;
}
.about-me-section .left-side img {
  max-width: 100px;
  height: 160px;
  object-fit: cover;
  position: absolute;
  left: 0;
  box-shadow: 0 0 5px 1px rgb(255, 255, 255);
  border-radius: 4px;
}
.about-me-section .left-side img:first-child {
  z-index: 2;
  object-position: center;
}
.about-me-section .left-side img:nth-child(2) {
  position: relative;
  z-index: 100;
  object-position: center;
  transform: translateY(-5px) scale(1.1);
}
.about-me-section .left-side img:last-child {
  z-index: 2;
  object-position: center;
}

.hidden1 {
  transform: translateX(0);

  transition: all 1s;
  transition-delay: 0.5s;
}
.hidden2 {
  transform: translateX(0);

  transition: all 1s;
  transition-delay: 0.5s;
}
.show1 {
  transform: translateX(-80px) translateY(7px) rotate(-10deg) !important;
}
.show2 {
  transform: translateX(80px) translateY(7px) rotate(10deg) !important;
}

.about-me-section div.right-side {
  width: min(85vw, 580px);
  margin: auto;
}
.about-me-section p {
  margin-bottom: 20px;
  text-align: center;
}
.about-me-section ul {
  padding-left: 25px;
  display: flex;
  flex-direction: column;
  width: 90%;
  margin: auto;
}
.about-me-section li {
  position: relative;
  list-style: none;
  padding-bottom: 10px;
}
.about-me-section li::before {
  content: "\2718";
}
/* @media only screen and (min-width: 700px) {
  .about-me-section .container {
    display: flex;
  }
  .about-me-section .left-side {
    flex-grow: 1;
    height: unset;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .about-me-section .left-side img {
    max-width: unset;
    width: 120px;
    height: 220px;
    object-fit: cover;
  }
  .about-me-section .right-side {
    padding-right: 2vw;
  }
} */
/* @media only screen and (min-width: 1000px) {
  .about-me-section .left-side img {
    width: 160px;
    height: 260px;
  }
  .show1 {
    transform: translateX(-120px) translateY(11px) rotate(-15deg) !important;
  }
  .show2 {
    transform: translateX(120px) translateY(11px) rotate(15deg) !important;
  }
  .about-me-section ul {
    padding: 0;
  }
  .about-me-section li {
    width: max-content;
  }
} */

/* FAQs */
/* .section-gyik {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  background-image: url("img/sky3.jpg");
  padding: 10px 0 50px;
} */
.section-gyik {
  position: relative;
  padding-bottom: 40px;
  background-color: white;
}
.section-gyik::after {
  position: absolute;
  left: 0;
  bottom: -2px;
  z-index: 9;
  content: "";
  width: 100%;
  margin: auto;
  border-bottom: 4px solid var(--primaryDark);
  border-radius: 30%;
}
.FAQs {
  /* padding: 20px 10px; */
  margin: 50px auto 0;
  border-radius: 10px;
  min-width: 280px;
  width: 80%;
  max-width: 500px;
  /* background-color: rgba(0, 0, 0, 0.6); */
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.FAQs > h3 {
  font-weight: bold;
  margin-top: 20px;
  /* margin-bottom: clamp(20px, 5vw, 40px); */
  /* font-size: 20px; */
  color: rgb(0, 0, 0);
}
.faq {
  border-top: 1px solid #e31d25;
  padding: 20px 5px;
  background-color: var(--primary);
  border-radius: 2px;
}
.question {
  /* margin: 20px 0 0; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 10px;
}
.question h3 {
  color: rgb(0, 0, 0);
}
.answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s ease;
}
.answer p {
  color: rgb(0, 0, 0);
}
.dropdown.active .answer {
  max-height: 300px;
  animation: fade 0.4s ease-in-out;
}

.dropdown.active .question .fa-chevron-down {
  transform: rotate(180deg);
}
.dropdown .question .fa-chevron-down {
  transition: transform 0.5s ease-in;
}
.faq .answer p {
  margin: 10px 0;
  text-align: left;
  font-weight: 500;
  line-height: 26px;
}
.faq > * > h3 {
  text-align: left;
  font-weight: 700;
}
/* .faq::after {
  content: "";
  display: inline-block;
  border-top: 2px solid #e31d25;
  width: 100%;
  margin: 0;
  transform: translateY(-10px);
} */

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
/* @media only screen and (min-width:760px) {
  .FAQs > h3 {
    font-size: 30px;
    text-align: center;
    margin-bottom: 50px;
  }
  .FAQs .faq .question h3 {
    font-size: 26px;
  }
  .FAQs .faq .answer p {
    font-size: 22px;
    margin: 20px 0;
  }
} */

/* faq links */
.faq a {
  color: #e31d25;
  text-decoration: underline;
  font-weight: 900;
}

.cta-section {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0 3vw;
  gap: 10px;
}
.cta-section h2 {
  text-align: center;
  color: white;
  font-size: 28px;
  margin: 20px 0;
}
.cta-section .cta-or {
  color: white;
  margin: auto;
  font-size: 24px;
}
.cta-section .cta-button {
  margin-bottom: 8px;
}
.cta-section .cta-options {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border: 1px solid var(--border);
  border-radius: 15px;
  max-width: 600px;
  margin: auto;
}
.cta-section .cta-options p {
  text-align: center;
  margin-bottom: 10px;
}
.cta-section .cta-options-1 {
  position: relative;
}
.cta-section .cta-options-1 p {
  color: var(--muted);
}
/* .cta-section .cta-options-1::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.2;
  border-radius: 15px;
  z-index: 1000;
} */
.cta-section .cta-options-1 .cta-button {
  background-color: var(--background);
  border: 2px solid hsla(0, 0%, 100%, 0.5);
  color: var(--muted);
}
.cta-section .cta-options-2 {
  border: 1px solid var(--primary);
  margin-bottom: 30px;
}
.cta-section .cta-options-2 p {
  font-size: 22px;
}
.cta-section .cta-options-2 .cta-button {
  border-radius: 15px;
  font-size: 24px;
}

.cta-section p {
  margin: 10px 0;
  text-align: center;
  font-size: 18px;
}
.cta-section .last-p {
  margin-bottom: 40px;
  font-size: 22px;
}
/* Modal styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(2px);
  z-index: 99;
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  border: 5px solid #ffffff;
  box-shadow: 0 2px 10px rgb(255, 255, 255);
  width: 80%;
  max-width: 600px;
  max-height: 80%;
  overflow-y: auto;
  border-radius: 5px;
  /* border: 5px solid var(--muted); */
  background-color: rgb(0, 0, 0);
  z-index: 999;
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
  color: white;
}

/* Add a class to body when the modal is open */
body.modal-active {
  overflow: hidden; /* Prevent body from scrolling when the modal is open */
}

.modal-content h3 {
  text-align: center;
  padding-top: 0;
  color: rgb(255, 255, 255);
  font-size: 28px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  max-width: 500px;
}
.modal-content h4 {
  color: var(--main-color2);
  text-align: center;
  font-size: 21px;
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
}
#myModal .modal-content p {
  color: rgb(255, 255, 255);
  padding: 0;
  margin: 0;
}
.modal-content form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin: 0;
}
.modal-content div {
  margin: 15px auto;
  width: 80%;
}
.modal-content div.last {
  margin-bottom: 10px;
}
.modal-content label {
  display: block;
  margin-bottom: 5px;
  color: white;
}
.modal-content input {
  display: block;
  border-radius: 5px;
  padding: 10px;
  width: calc(100% - 20px);
}
.modal-content .submit {
  margin-top: 50px;
  display: inline-block;
  font-weight: 700;
  text-decoration: none;
  padding: 17px 17px;
  background-color: var(--main-color1);
  color: rgb(255, 255, 255);
  border: none;
  border-radius: 5px;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow, transform;
  transition-property: box-shadow, transform;
  background-color: var(--primary);
  max-width: max-content;
  margin: auto;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  transition: all 0.2s ease-in-out;
}
.modal-content .submit:hover {
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);

  transform: scale(1.1);

  -webkit-box-shadow: 3px 3px 5px 3px #ffffff;
  -moz-box-shadow: 3px 3px 5px 3px #ffffff;
  box-shadow: 3px 3px 5px 3px #ffffff;
}
/*  */

/* form success*/
section.form-success {
  display: flex;
  place-items: center;
  width: 100vw;
  height: 100vh;
  background-image: url("img/sky.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: "Roboto", sans-serif;
  text-align: center;
}
.form-success .box {
  width: 80%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(136, 136, 136, 0.6);
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  border: 1px solid rgba(255, 255, 255, 0.25);

  border-radius: 20px;
  margin: auto;
  padding: 20px;
}
.form-success .box h2 {
  font-size: 32px;
  margin-bottom: 10px;
}
.form-success .box a {
  color: var(--primary);
}
.form-success .form-success small {
  font-size: 14px;
}
