@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: #000000;
  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: #161721bf;
  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: #0AF1EC;
  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;

  background: linear-gradient(180deg, #1c2133 0%, #0c0f17 100%);
  color: #d5d9e5;

  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: #ffffff;
}

/* 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: #b6ff6f;
  background: #0e1420;
  background-image: radial-gradient(circle at center,
      rgba(134, 228, 111, 0.25) 0%,
      rgba(111, 175, 228, 0.25) 100%);
  box-shadow:
    inset 0 0 30px rgba(134, 228, 111, 0.18),
    inset 0 0 40px rgba(111, 175, 228, 0.1),
    0 0 12px rgba(134, 228, 111, 0.3),
    0 0 22px rgba(111, 175, 228, 0.3);
  border: none;
}

.btn-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 10px;
  background: linear-gradient(135deg, #6fafe4, #b8ff5f);
  -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(134, 228, 111, 0.3),
    inset 0 0 50px rgba(111, 175, 228, 0.2),
    0 0 18px rgba(134, 228, 111, 0.55),
    0 0 34px rgba(111, 175, 228, 0.55);
  color: #d9ffb8;
  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: linear-gradient(90deg, #04FFA7 25%, #E3FF42 100%);
  box-shadow:
    0 8px 22px rgba(227, 255, 66, 0.42),
    0 0 12px rgba(4, 255, 167, 0.4);
  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-image: linear-gradient(120deg, #0A1727 31.61%, #517435 62.37%, #FFD52F 94.39%), linear-gradient(178deg, #180225 0.91%, #19697B 63.73%, #00F642 105.24%);
  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: #0AF1EC;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0AF1EC), to(#16A6FF));
  background-image: linear-gradient(180deg, #0AF1EC, #16A6FF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -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;
  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: linear-gradient(108deg, #131A27 6.4%, #101015 51.4%, #1B1B2F 96.4%);
  flex: 1;
  padding: 37px 0;
  min-width: 260px;
}

.stat-heading {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 1;
  background: linear-gradient(90deg, #04FFA7 25%, #E3FF42 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0px 4px 18px rgba(4, 255, 167, 0.35));
  letter-spacing: -1px;
}

.stat-line {
  color: #FFF;
}

.divide-line {
  position: relative;
  width: 100%;
  height: 1px;
  background: rgba(16, 174, 209, 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(70, 160, 220, 0.8) 0%,
      rgba(70, 160, 220, 0.2) 35%,
      rgba(70, 160, 220, 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(45deg, #0A1727 41%, #004E6B 100%);
  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;
}

.commission-text {
  color: #8A9DAD;
  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, #04FFA7 25%, #E3FF42 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(4, 255, 167, 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;
  color: #0AF1EC;
  padding: 10px 30px;
}

.commission-brand {
  width: 70px;
  height: 30px;
}

.pill-wrapper {
  position: relative;
}

/* .pill-wrapper::before {
  content: '';
  position: absolute;
  width: 76px;
  height: 150px;
  left: -30px;
  top: -6px;
  background: radial-gradient(circle, rgba(255, 205, 143, 0.55) 0%, rgba(0, 0, 0, 0) 40%);
} */

.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: linear-gradient(180deg, #0F191F 17%, #223946 50%, #0F191F 80%);
  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, 0.05),
    0 24px 50px rgba(0, 0, 0, 0.9),
    0 0 28px rgba(0, 0, 0, 0.55);

  overflow: hidden;
  padding: 20px;
  line-height: 1.2;
}

.btn-outline-pill::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(0deg,
      rgba(0, 0, 0, 0) 0%,
      #7DE5F4 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;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.adv-card {
  position: relative;
  background: linear-gradient(180deg, #0F191F 17%, #163653 50%, #0F191F 80%);
  border-radius: 15px;
  padding: 25px;
}

.adv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(0deg,
      rgba(0, 0, 0, 0) 30%,
      #7DE5F4 70%,
      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;
  background-clip: text;
  background-image: linear-gradient(180deg, #0AF1EC, #16A6FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -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: #8A9DAD;
}

.adv-icon {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 80% 90%, rgba(90, 40, 120, 0.25) 0%, transparent 70%),
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, #22333b 0%, #0b1115 100%);
  box-shadow: 0px 0px 20px 0px rgba(135, 248, 255, 0.75);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(135, 248, 255, 0.75);
  -moz-box-shadow: 0px 0px 20px 0px rgba(135, 248, 255, 0.75);
  margin-bottom: 55px;
}

.adv-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;

  background: linear-gradient(180deg,
      rgba(125, 229, 244, 0.8) 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: #15151D;
  display: flex;
  gap: 20px;
  padding: 30px;
  border-bottom: 2px solid #3a4853;
}

.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: linear-gradient(180deg, rgba(101, 101, 120, 0.72) 0%, rgba(0, 0, 0, 1) 100%);
  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: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  background-color: #1A1B26;
  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: #262c33;
  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: #b5bcc9;
  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: #14141C;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.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: #0AF1EC;
  text-align: center;
}

.footer-copy {
  color: #717171;
}

.site-footer-logo {
  width: 140px;
  height: 70px;
}

.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: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content-box {
  background-color: #0f0f1a;
  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;
}