@charset "UTF-8";

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* === HTML root settings === */
html {
  /* Основна типография и скалиране */
  font-size: 100%;
  /* ~16px, достъпно и мащабируемо */
  line-height: 1.5;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color-scheme: light dark;
  scroll-behavior: smooth;
  /* Цветови променливи */
  --color-bg: #1E1E1E;
  --color-text: #1a1a1a;
  --color-primary: #0077ff;
  --color-accent: #ff4081;
  --font-base: "Poppins", system-ui, sans-serif;
  --font-heading: "Poppins", system-ui, sans-serif;
  color: var(--color-text);
  background-color: var(--color-bg);
}

@media (prefers-color-scheme: dark) {
  html {
    --color-bg: #121212;
    --color-text: #f5f5f5;
    --color-primary: #3d9aff;
    --color-accent: #ff8ac2;
  }
}

/* === Base elements === */
body {
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-y: scroll;
  background-color: #161617;
  overflow-x: hidden;
}

/* === Links === */
a {
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

a:hover,
a:focus {
  text-decoration: none;
}

/* === Headings === */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

/* === Images & Media === */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* === Form elements === */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background-color: transparent;
  border: none;
  outline: none;
}

/* === Utility === */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

::-moz-selection {
  background-color: var(--color-primary);
  color: #fff;
}

::selection {
  background-color: var(--color-primary);
  color: #fff;
}

.top-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 80px;
  padding: 15px 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}


/* HEADER */
.page-header {
  position: sticky;
  top: 0;
  background-color: #211a168c;
  z-index: 10;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.logo img {
  min-width: 147px;
}

.top-nav {
  display: flex;
  justify-content: space-between;
}

.nav {
  display: flex;
  flex-grow: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
  padding-left: 10px;
  justify-content: center;
}

.btn-ham-menu {
  display: none;
  cursor: pointer;
  position: relative;
  z-index: 1002;
  background: none;
  border: none;
}

.ham-icon,
.close-icon {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.btn-ham-menu.menu-open .ham-icon {
  display: none;
}

.btn-ham-menu.menu-open .close-icon {
  display: block !important;
}

.btn-ham-menu:not(.menu-open) .ham-icon {
  display: block;
}

.btn-ham-menu:not(.menu-open) .close-icon {
  display: none;
}

.ham-menu-list {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

@media (max-width: 980px) {

  .nav {
    justify-content: flex-start;
  }

  .btn-ham-menu {
    display: block;
    min-width: 20px;
  }

  .ham-menu-list {
    display: none;
    flex-direction: column;
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
}

}

@media (max-width: 600px) {

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

.ham-menu-list a {
  text-align: center;
  line-height: 1.2;
}
.nav a {
  color: #EEC66F;
  text-decoration: none;
  font-size: 14px;
}

.nav-actions {
  display: flex;
  gap: 10px;
  padding-left: 10px;
}

.btn-primary {
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: #161617;
  background: radial-gradient(340% 340% at 50% -240%, #BB8846 71%, #F0C68F 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.45),
    inset 0 1px 2px rgba(255, 255, 255, 0.05);
  transition: all 0.25s ease;
}

.btn-primary:hover {
  filter: brightness(1.12);
  transform: translateY(-1px);
  color: #1616179a;
}

/* REGISTER BUTTON — exact Figma look */
.btn-secondary {
  position: relative;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: #FFAA46;
  background: #0e1420;
  background-image: radial-gradient(circle at center, rgb(78 57 34) 0%, rgb(40 33 26) 100%);
  box-shadow: inset 0 0 30px rgb(228 182 111 / 18%), inset 0 0 40px rgb(228 215 111 / 10%), 0 0 12px rgb(228 187 111 / 30%), 0 0 22px rgb(228 209 111 / 30%);
  border: none;
}

.btn-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 10px;
  background: linear-gradient(135deg, #eec38c, #eec38c);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.btn-secondary:hover {
  box-shadow:
    inset 0 0 38px rgba(228, 197, 111, 0.3),
    inset 0 0 50px rgba(228, 173, 111, 0.2),
    0 0 18px rgba(228, 191, 111, 0.55),
    0 0 34px rgba(228, 181, 111, 0.55);
  color: #fff2b8;
  transform: translateY(-1px);
  transition: 0.25s ease;
}

.btn-tertiary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  height: 50px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  text-transform: none;
  color: #00323A;
  background: radial-gradient(282.63% 130.61% at 3.2% 12%, #C49251 0%, #EEC38C 100%);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(5px);
  transition: 0.25s ease;
}

.btn-tertiary:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.section-title {
  font-size: 28px;
  font-weight: 600;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 60px;
}

.content-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px;
}

.content {
  width: 100%;
  max-width: 1280px;
}

.main-banner {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 435px;
  background: linear-gradient(172deg, rgba(78, 58, 37, 0.00) 13.14%, #B9904E 137.91%), #312B21;
  border-radius: 20px;
  margin-bottom: 80px;

}

.banner-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 50%;
  height: 100%;
  padding: 72px 60px;
  gap: 40px;
  z-index: 1;
}

.banner-content .text-content {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 5px;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}

.banner-content .text-content h1 {
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  color: #EEC38C;
    -webkit-filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.5));
  filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.5));
}

.banner-content .text-content h6 {
  text-transform: uppercase;
  font-size: 1rem;
  color: var(--white, #FFF);
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.banner-visual {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: 1025px;
  height: 100%;
}

.banner-visual img, .commission-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image:-webkit-gradient(linear, right left, right left, from(rgba(0,0,0,1)), to(rgba(0,0,0,0)));
  mask-image: linear-gradient(to left, rgba(0,0,0,1), rgba(0,0,0,0));
}

@media (max-width: 980px) {
    .banner-content {
      padding: 24px;
      width: 80%;
  }

  .banner-visual img {
    opacity: .5;      
  }
}

@media (max-width: 680px) {
    .banner-content {
      width: 100%;
  }
}

.stats-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  margin-bottom: 60px;
}

.stat-element {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  background: rgba(231, 187, 130, 0.10);
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.15) inset;
  flex: 1;
  padding: 37px 0;
  min-width: 260px;
}

.stat-heading {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 1;
  color: #EEC38C;
  text-align: center;
  text-shadow: 0 0 16px rgba(255, 135, 0, 0.75);
  filter: drop-shadow(0px 4px 18px rgba(255, 251, 4, 0.35));
  letter-spacing: -1px;
}

.stat-line {
  color: #FFF;
}

.divide-line {
  position: relative;
  width: 100%;
  height: 1px;
  background: rgba(238, 195, 140, 0.15);
  margin: 0 auto 80px;
}

.divide-line::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 400px;
  height: 20px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle,
      rgba(238, 195, 140, 0.8) 0%,
      rgba(238, 195, 140, 0.2) 35%,
      rgba(238, 195, 140, 0.05) 60%,
      transparent 100%);
  filter: blur(35px);
  opacity: 0.9;
  pointer-events: none;
}


.commission-section {
  margin-bottom: 55px;
}

.commission-card {
  position: relative;
  background: linear-gradient(261deg, #B9904E -31.54%, rgba(78, 58, 37, 0.00) 98.67%);
  border-radius: 20px;
  padding: 40px 55px;
  display: flex;
  margin-top: 50px;
}

.commission-left {
  max-width: 620px;
  z-index: 1;
}

.commission-right {
  pointer-events: none;
  position: absolute;
  height: 100%;
  top: 0;
  width: 100%;
  max-width: 1025px;
  right: 0px;
}

.commission-text {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 34px;
}

.commission-title {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  text-shadow:
    0 0 14px rgba(255, 255, 255, 0.25),
    0 2px 6px rgba(0, 0, 0, 0.4);
  margin-bottom: 16px;
}

.commission-title strong {
  background: linear-gradient(90deg, #ff9b04 25%, #ff6e42 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(255, 230, 4, 0.35));
  font-weight: 700;
}

.commission-pills {
  position: relative;
  display: flex;
  gap: 28px;
  margin-bottom: 48px;
}

.commission-cta-row {
  display: flex;
  gap: 10px;
}

.commission-cta-row .btn-primary,
.commission-cta-row .btn-tertiary {
  font-size: 16px;
}

.commission-cta-row .btn-primary {
  display: flex;
  align-items: center;
  height: 50px;
  border-radius: 10px;
  color: #cba36b !important;
  border: 1px solid #493c3c;
  background: radial-gradient(188% 188% at 50% -88%, rgba(200, 151, 88, 0.40) 0%, rgba(200, 151, 88, 0.00) 100%), radial-gradient(228% 228% at 50% -94%, #453C2E 35.36%, rgba(2, 2, 1, 0.00) 100%);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(3.5px);
  gap: 10px;
}

.commission-brand {
  width: 70px;
  height: 30px;
}

.pill-wrapper {
  position: relative;
}

.btn-outline-pill {
  position: relative;
  width: 198px;
  height: 125px;
  border-radius: 55px;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  background: radial-gradient(51.6% 49.92% at 96.45% 97.2%, rgba(153, 90, 15, 0.11) 0%, rgba(255, 110, 255, 0.00) 100%), radial-gradient(43.79% 31.9% at 50% 43.53%, rgba(153, 90, 15, 0.00) 0%, rgba(153, 90, 15, 0.00) 93.79%), radial-gradient(41.65% 51.53% at 9.47% 1.51%, rgba(194, 113, 18, 0.18) 0%, rgba(123, 13, 20, 0.00) 100%), linear-gradient(180deg, #4E3A25 4.37%, rgba(200, 151, 88, 0.50) 52.59%, #4E3A25 94.5%);
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.15) inset;
  overflow: hidden;
  padding: 20px;
  line-height: 1.2;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.adv-card {
  position: relative;
  background: radial-gradient(51.6% 49.92% at 96.45% 97.2%, rgba(153, 90, 15, 0.11) 0%, rgba(255, 110, 255, 0.00) 100%), radial-gradient(43.79% 31.9% at 50% 43.53%, rgba(153, 90, 15, 0.00) 0%, rgba(153, 90, 15, 0.00) 93.79%), radial-gradient(41.65% 51.53% at 9.47% 1.51%, rgba(194, 113, 18, 0.18) 0%, rgba(123, 13, 20, 0.00) 100%), linear-gradient(180deg, #332618 4.37%, rgba(200, 151, 88, 0.50) 52.59%, #332618 94.5%);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 0 18px 0 rgba(153, 90, 15, 0.10), 0 1px 0 0 rgba(255, 255, 255, 0.15) inset;
}

.adv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(0deg,
      rgba(0, 0, 0, 0) 30%,
      #FFD255 50%,
      rgba(0, 0, 0, 0) 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.adv-title {
  font-size: 24px;
  color: #FFD255;
  -webkit-filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.5));
  filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.5));
  margin-bottom: 10px;
}

.adv-text {
  color: #ffffff94;
}

.adv-icon {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: 
    radial-gradient(52.13% 50.93% at 95.36% 100%, rgba(200, 151, 88, 0.15) 0%, rgba(255, 110, 255, 0.00) 100%),
    radial-gradient(43.79% 31.9% at 50% 43.53%, rgba(255, 170, 70, 0.00) 0%, rgba(255, 170, 70, 0.00) 93.79%),
    radial-gradient(41.65% 51.53% at 9.47% 1.51%, rgba(230, 156, 69, 0.22) 0%, rgba(123, 13, 20, 0.00) 100%), rgba(47, 39, 23, 0.20);
  box-shadow: 0 4px 14px 0 rgba(255, 170, 70, 0.20), 0 1px 0 0 rgba(255, 255, 255, 0.15) inset, 0px 0px 20px 0px #FFAA46;
    margin-bottom: 55px;
}


.adv-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;

  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.15) 0%,
      rgba(125, 229, 244, 0.15) 40%,
      rgba(125, 229, 244, 0) 100%);

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.adv-icon svg {
  display: block;
  width: 43px;
  height: 43px;
}

.testimonials-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 75px;
}

.testimonials-grid {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.testimonial-card {
  border-radius: 24px;
  background-color: #3f2c1873;
  display: flex;
  gap: 20px;
  padding: 30px;
  border-bottom: 2px solid #C49251;
}

.testimonial-body {
  display: flex;
  flex-direction: column;
  flex: 3;
}

.testimonial-text {
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.testimonial-name,
.testimonial-role {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 16px;
}

.testimonial-avatar {
  border-radius: 50%;
  width: 92px;
  height: 92px;
}

.testimonial-avatar img {
  object-fit: cover;
}

.testimonial-footer {
  display: flex;
}

.testimonials-dots {
  /* display: flex; */
  display: none;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, rgba(165, 165, 188, 0.42) 95%, rgba(0, 0, 0, 1) 100%);
  max-width: 96px;
  align-self: center;
  gap: 4px;
  padding: 15px;
  border-radius: 20px;
}

.testimonials-dots span {
  width: 8px;
  height: 2px;
  background: #656578;
}

.testimonials-dots span.is-active {
  background: #74f7ff;
  width: 18px;
}

.faq-section {
  margin-bottom: 60px;
}

.faq-item {
  background: #202020;
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 22px;
}

.faq-question {
  width: 100%;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #251a0d;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  background-color: #C49251;
  cursor: pointer;
  border-radius: 20px;
}

.faq-toggle-icon {
  font-size: 20px;
  opacity: 0.6;
  transform: rotate(180deg);
  transition: transform 0.1s ease;
}

.faq-item.is-open .faq-toggle-icon {
  transform: rotate(0deg);
  opacity: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #202020;
  transition: max-height 0.4s ease, padding 0.6s ease;
  padding: 0 32px;
  
}

.faq-item.is-open .faq-answer {
  display: block;
  max-height: 300px;
  padding: 28px 32px 32px;
}

/* .is-open {
  animation-name: faq-expand;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-timing-function: ease-out;
}

@keyframes faq-expand {
  from {height: 86px;}
  to {height: 250px;}
} */

.faq-answer-inner {
  color: #717171;
  font-size: 17px;
  line-height: 1.6;
  font-family: "Poppins", sans-serif;
}

.faq-answer-link {
  background: linear-gradient(180deg, rgba(4, 255, 167, 0.72) 25%, rgba(227, 255, 66, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.site-footer {
  background-color: #00000000;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  align-self: stretch;
}

.site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
}

.footer-nav {
  display: flex;
  gap: 20px;
  padding: 0 20px;
}

.footer-nav a {
  font-size: 14px;
  color: #EEC66F;
  text-align: center;
}

.footer-copy {
  color: #717171;
  font-size: 0.9rem;
}

.site-footer-logo {
  width: 140px;
  height: auto;
}

.site-footer-logo img {
  max-width: 140px;
}

@media (max-width: 980px) {

  .nav {
    justify-content: flex-start;
    position: relative;
  }

  .btn-ham-menu {
    display: block;
  }

  .ham-menu-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    /* right: 0; */
    background: #161721;
    border-radius: 10px;
    padding: 20px;
    gap: 15px;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    margin-top: 10px;
  }

  .ham-menu-list a {
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.2s ease;
    text-align: left;
  }
  .ham-menu-list.menu-open {
    display: flex !important;
  }

  .ham-menu-list a:hover {
    background-color: rgba(10, 241, 236, 0.1);
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    flex-direction: column;
  }

}

@media (max-width: 930px) {

  .footer-nav {
    flex-direction: column;
    gap: 8px;
  }

}

@media (max-width: 780px) {

  .commission-pills {
    flex-direction: column;
  }

  .btn-outline-pill {
    width: 100%;
  }

  .site-footer-inner {
    flex-direction: column;
    gap: 30px;
  }

}

@media (max-width: 600px) {

  .advantages-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .commission-card {
    padding: 20px;
  }

  .commission-cta-row a {
    flex-grow: 1;
  }

}

@media (max-width: 440px) {
  .nav {
    position: absolute;
    top: 55px;
    right: 50px;
  }

  .top-nav {
    flex-direction: column;
    gap: 20px;
    height: 180px;
  }
  .ham-menu-list {
    right: 0;
    left: auto;
    min-width: 180px;
  }
  .nav-actions {
    width: 100%;
  }

  .nav-actions a {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    height: 50px;
  }
}

/* Modal */
.modal {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed; /* Stay in place */
  z-index: 123; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: #171616a1; /* Black w/ opacity */
}

/* Modal Content */
.modal-content-box {
  background-color: #161617;
  margin: auto;
  width: 80%;
  max-width: 920px;
  height: 80vh;
  border-radius: 20px;
  box-shadow: 0 0 30px #000;
  position: relative;
}

.modal-content {
  /* padding: 20px; */
  height: 100%;
  padding: 50px 25px 30px 30px;
}

.text-area {
  height: 100%;
  /* overflow-y: scroll; */
}

.text-area p {
  line-height: 1.5;
  font-weight: 300;
}

/* The Close Button */
.close, .close2 {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: normal;
  position: absolute;
  top: 12px;
  right: 24px;
}

.close:hover,
.close:focus, .close2:hover,
.close2:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}