@import url("css/css2-1.css");
@import url("css/css2.css");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Space Grotesk", serif;
}

body {
  background-color: #032223;
}

body.overflow {
  overflow: hidden;
}

ul {
  list-style: none;
  text-decoration: none;
}

ul,
li,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

a {
  color: #000;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
}

input,
button {
  font: inherit;
}

header *,
footer * {
  box-sizing: border-box;
}

.container {
  max-width: 1461px;
  padding: 0 15px;
  margin: 0 auto;
}

h1 {
  font-size: 64px;
  font-weight: inherit;
}

h2 {
  font-size: 48px;
  font-weight: inherit;
}

h3 {
  font-size: 24px;
  font-weight: inherit;
}

h4 {
  font-size: 20px;
  font-weight: inherit;
}

p {
  font-size: 16px;
  font-weight: inherit;
}

@media (max-width: 640px) {
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 20px;
  }
  h4 {
    font-size: 20px;
  }
}
.header {
  background-color: #032223;
  color: #ebebeb;
  font-family: "Space Grotesk", serif;
}
.header__wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
.header__logo {
  text-decoration: none;
  color: #ebebeb;
}
.header__logoText {
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
}
.header__nav .header__menu {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.header__nav .header__menu .header__menuLink {
  text-decoration: none;
  color: #ebebeb;
  font-size: 1rem;
  background-color: #979327;
  padding: 5px;
  border-radius: 4px;
}
.header__nav .header__menu .header__menuLink:hover {
  color: #ffffff;
}
.header__burger {
  display: none;
  width: 24px;
  height: 24px;
  position: relative;
  cursor: pointer;
  z-index: 3;
}
.header__burger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #ebebeb;
  margin: 5px 0;
  transition: 0.3s ease;
}
.header__burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header__burger.active span:nth-child(2) {
  opacity: 0;
}
.header__burger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
  .header__burger {
    display: block;
  }
  .header__nav {
    z-index: 2;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: #032223;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .header__nav .header__menu {
    width: 100%;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 80px 20px;
  }
  .header__nav.active {
    transform: translateX(0%);
  }
}
@media (max-width: 480px) {
  .header__nav .header__menu {
    gap: 15px;
    padding: 60px 15px;
  }
  .header__logoText {
    font-size: 1rem;
  }
}
.headerLight {
  background-color: #032223;
  color: #ebebeb;
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
}
.headerLight__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.headerLight__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.headerLight__logoImg {
  height: 32px;
  width: auto;
  display: block;
}
.headerLight__nav {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .headerLight__nav {
    display: none;
  }
}
.headerLight__nav .headerLight__menu {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.headerLight__nav .headerLight__menuItem {
  position: relative;
}
.headerLight__nav .headerLight__menuItem .headerLight__menuLink {
  color: #ebebeb;
  text-decoration: none;
  font-weight: 500;
}
.headerLight__nav .headerLight__menuItem .headerLight__menuLink:hover {
  opacity: 0.8;
}
.headerLight__nav .headerLight__menuItem .headerLight__arrow {
  margin-left: 4px;
  font-size: 0.8rem;
}
.headerLight__downloadButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: linear-gradient(to right, #e5df3e, #bbbf73);
  color: #ebebeb;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.5rem 1.5rem;
  transition: background-color 0.3s;
}
@media (max-width: 768px) {
  .headerLight__downloadButton {
    display: none;
  }
}
.headerLight__downloadButton:hover {
  opacity: 0.9;
}
.headerLight__burger {
  display: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.headerLight__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ebebeb;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .headerLight__burger {
    display: flex;
  }
}
.headerLight__mobileMenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #032223;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100%);
  transition: transform 0.3s;
  padding: 20px;
}
.headerLight__mobileMenu.active {
  transform: translateX(0);
}
.headerLight__mobileMenu__closeBtn {
  margin-left: auto;
  background: none;
  border: none;
  color: #ebebeb;
  font-size: 1.5rem;
  cursor: pointer;
  margin-bottom: 2rem;
}
.headerLight__mobileMenu a {
  color: #ebebeb;
}
.headerLight__mobileMenu__mobileList {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.headerLight__mobileMenu__mobileList
  .headerLight__mobileItem
  .headerLight__mobileLink {
  color: #ebebeb;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
}
.headerLight__mobileMenu__mobileList
  .headerLight__mobileItem
  .headerLight__mobileLink:hover {
  opacity: 0.8;
}
.headerLight__mobileMenu__mobileSubmenu {
  list-style: none;
  margin: 0.5rem 0 0 1rem;
  padding: 0;
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.headerLight__mobileMenu__mobileSubmenu li a {
  color: #ebebeb;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
}
.headerLight__mobileMenu__mobileSubmenu li a:hover {
  opacity: 0.8;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 80vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 2rem;
}
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}
.hero__title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #fff;
}
.hero__description {
  font-size: 1rem;
  color: #d1d1d1;
  margin-bottom: 2rem;
  line-height: 1.5;
}
.hero__button {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: #e5df3e;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: background-color 0.3s;
}
.hero__button:hover {
  background-color: #e5df3e;
}

@media (max-width: 768px) {
  .hero__title {
    font-size: 2.2rem;
  }
  .hero__content {
    max-width: 90%;
  }
}
@media (max-width: 480px) {
  .hero__title {
    font-size: 1.8rem;
  }
}
.advantages {
  background-color: #032223;
  color: #ebebeb;
  padding: 40px 20px;
}
.advantages__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.advantages__title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.advantages__subtitle {
  font-size: 1rem;
  color: 0.9rem;
  margin-bottom: 2em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.advantages__items {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.advantages__item {
  text-align: left;
  background-color: transparent;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 0 10px rgba(181, 181, 181, 0.3);
  border-radius: 8px;
  padding: 15px;
}
.advantages__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
}
.advantages__itemTitle {
  font-size: #ebebeb;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #ebebeb;
}
.advantages__itemDesc {
  font-size: 0.9rem;
  color: #ffffff;
  line-height: 1.5;
}

.footer {
  background-color: #032223;
  color: #ebebeb;
  padding: 40px 20px;
  font-family: sans-serif;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 1.7fr 1fr;
  column-gap: 30px;
  row-gap: 20px;
}
@media (max-width: 992px) {
  .footer__top {
    grid-template-columns: 1fr;
  }
}
.footer__cookieText {
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.footer__cookieLink {
  text-decoration: none;
  color: #e5df3e;
  font-weight: 600;
}
.footer__cookieLink:hover {
  color: #e5df3e;
}
.footer__additional p {
  color: #ffffff;
  line-height: 1.6;
}
.footer__ownership p {
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.footer__contacts {
  display: flex;
  flex-direction: row;
  gap: 15px;
  flex-wrap: wrap;
}
.footer__contacts .footer__contactLink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #e5df3e;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  transition: background-color 0.3s;
}
.footer__contacts .footer__contactLink:hover {
  background-color: #e5df3e;
}
.footer__contacts .footer__contactLink .footer__contactIcon {
  width: 20px;
  height: 20px;
}
.footer__contacts .footer__contactLink .footer__contactText {
  font-size: 0.95rem;
}
.footer__bottom {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.footer__bottom .footer__age {
  font-size: 1.2rem;
  font-weight: bold;
}
.footer__bottom .footer__policy {
  color: #e5df3e;
  text-decoration: none;
  font-weight: 500;
}
.footer__bottom .footer__policy:hover {
  color: #e5df3e;
}

.pointTable {
  background-color: #032223;
  color: #ebebeb;
  padding: 40px 20px;
  font-family: "Space Grotesk", serif;
}
.pointTable__header {
  margin-bottom: 1.5rem;
}
.pointTable__header .pointTable__title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.pointTable__header .pointTable__description {
  max-width: 800px;
  color: #ffffff;
  line-height: 1.6;
}
.pointTable__tableHeader {
  display: grid;
  grid-template-columns: 2fr 1fr;
  font-weight: bold;
  text-transform: uppercase;
  height: 50px;
  align-items: center;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  margin-bottom: 0.5rem;
}
.pointTable__tableHeader .pointTable__colHeader {
  padding: 0 1rem;
}
@media (max-width: 600px) {
  .pointTable__tableHeader {
    grid-template-columns: 1fr 1fr;
  }
  .pointTable__tableHeader .pointTable__colHeader {
    font-size: 0.9rem;
  }
}
.pointTable__sectionLabel {
  display: block;
  background-color: #e5df3e;
  color: #000;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  height: 50px;
  line-height: 50px;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  border-radius: 20px;
}
.pointTable__row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  height: 50px;
  align-items: center;
  border-bottom: 1px solid #333;
}
@media (max-width: 600px) {
  .pointTable__row {
    grid-template-columns: 1fr 1fr;
    font-size: 0.9rem;
  }
}
.pointTable__row .pointTable__cell {
  padding: 0 1rem;
}
.pointTable__notes {
  margin-top: 2rem;
}
.pointTable__notes p.pointTable__note {
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.rules {
  background-color: #032223;
  color: #ebebeb;
  font-family: sans-serif;
}
.rules__section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.rules__title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.rules__paragraph {
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.rules__steps {
  list-style: none;
  margin: 0;
  padding: 0;
}
.rules__step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.rules__step p {
  margin-left: auto;
  margin-right: 0;
  text-align: end;
}
.rules__stepIcon {
  width: 32px;
  height: 32px;
  margin-right: 1rem;
  flex-shrink: 0;
}
.rules__stepTitle {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
}
.rules__stepDesc {
  color: #ffffff;
  line-height: 1.5;
  margin: 0;
}

.contactForm {
  background-color: #032223;
  color: #ebebeb;
  padding: 60px 20px;
  font-family: sans-serif;
}
.contactForm__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 768px) {
  .contactForm__container {
    flex-direction: column;
    align-items: center;
  }
}
.contactForm__content {
  flex: 1;
  max-width: 500px;
}
.contactForm__title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.contactForm__description {
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.contactForm__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contactForm__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contactForm__label {
  color: #e5df3e;
  font-weight: bold;
}
.contactForm__input {
  background-color: #032223;
  border: 1px solid #333;
  border-radius: 6px;
  color: #ebebeb;
  padding: 0.8rem;
  font-size: 1rem;
  width: 100%;
  resize: vertical;
}
.contactForm__input::placeholder {
  color: #ffffff;
}
.contactForm__input:focus {
  outline: 1px solid #e5df3e;
}
.contactForm__button {
  background-color: #e5df3e;
  border: none;
  border-radius: 6px;
  color: #000;
  font-weight: 600;
  padding: 0.8rem 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s;
}
.contactForm__button:hover {
  background-color: #e5df3e;
}
.contactForm__imageWrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .contactForm__imageWrapper {
    margin-top: 2rem;
  }
}
.contactForm__image {
  max-width: 100%;
  height: auto;
}

.policy {
  background-color: #032223;
  color: #ebebeb;
  padding: 40px 20px;
  font-family: "Space Grotesk", serif;
}
.policy .container {
  max-width: 1200px;
  margin: 0 auto;
}
.policy__border {
  padding: 20px;
  border: 1px solid #333;
  border-radius: 6px;
}
.policy__headline {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 1.5rem 0 1rem;
}
.policy__headline:first-of-type {
  margin-top: 0;
}
.policy__subtitle {
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #ccc;
}
.policy__button {
  margin-top: 2rem;
  text-align: center;
}
.policy__btn {
  display: inline-block;
  background-color: #e5df3e;
  color: #000;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s;
}
.policy__btn:hover {
  background-color: #e5df3e;
}

.terms {
  background-color: #032223;
  color: #ebebeb;
  padding: 40px 20px;
  font-family: "Space Grotesk", serif;
}
.terms .container {
  max-width: 1200px;
  margin: 0 auto;
}
.terms__border {
  padding: 20px;
  border: 1px solid #333;
  border-radius: 6px;
}
.terms__wrapper {
  margin-bottom: 1.5rem;
}
.terms__headline {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 1rem 0;
}
.terms__title {
  font-size: 1.3rem;
  font-weight: bold;
  margin: 1.5rem 0 0.5rem;
}
.terms__subtitle {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.terms__button {
  margin-top: 2rem;
  text-align: center;
}
.terms__btn {
  display: inline-block;
  background-color: #e5df3e;
  color: #000;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s;
}
.terms__btn:hover {
  background-color: #e5df3e;
}

.heroNew {
  background-color: #032223;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}
.heroNew__container {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.heroNew__title {
  color: #ebebeb;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.heroNew__text {
  color: #ebebeb;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 1.5rem;
}
.heroNew__gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 2rem;
  justify-content: center;
}
.heroNew__galleryItem {
  max-height: 300px;
  border-radius: 8px;
  max-width: 300px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .heroNew__galleryItem {
    max-width: 100%;
  }
}
.heroNew__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.heroSecond {
  background-color: #032223;
  color: #ffffff;
  padding: 60px 20px;
  font-family: "Space Grotesk", serif;
}
.heroSecond__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .heroSecond__container {
    flex-direction: column;
  }
}
.heroSecond__left {
  flex: 1 1 50%;
  background: linear-gradient(to bottom, #032223 0%, #032223 40%, #e5df3e 100%);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.heroSecond__image {
  width: 610px;
  height: auto;
  border-radius: 8px;
  display: block;
}
.heroSecond__right {
  flex: 1 1 50%;
}
.heroSecond__title {
  font-size: 2rem;
  color: #ebebeb;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.heroSecond__description {
  line-height: 1.6;
}

.review {
  background-color: #032223;
  color: #ebebeb;
  padding: 60px 20px;
}
.review__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
@media (max-width: 868px) {
  .review__container {
    flex-direction: column;
  }
}
.review__content {
  flex: 1 1 50%;
}
.review__title {
  color: #ffffff;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.review__paragraph {
  line-height: 1.6;
  margin-bottom: 1rem;
}
.review__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 500px;
}
.review__card {
  width: 200px;
  background-color: #032223;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s;
}
.review__card:hover {
  transform: translateY(-2px);
}
.review__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  border-radius: 8px;
}
.review__value {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.2rem;
}
.review__label {
  font-size: 1rem;
  color: #ffffff;
}

.experience {
  background-color: #032223;
  padding: 60px 20px;
  color: #ebebeb;
  font-family: sans-serif;
}
.experience__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
@media (max-width: 768px) {
  .experience__container {
    flex-direction: column;
  }
}
.experience__imageWrapper {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.experience__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}
.experience__content {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.experience__tagline {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #293eff;
  margin-bottom: 0.5rem;
}
.experience__title {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.experience__description {
  line-height: 1.6;
  margin-bottom: 2rem;
}
.experience__features {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.experience__feature {
  flex: 1 1 120px;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: start;
  box-shadow: 0 1px 20px rgba(51, 51, 51, 0.2588235294);
  padding: 10px;
  border-radius: 8px;
}
.experience__featureIcon {
  width: 48px;
  height: 48px;
  margin-bottom: 0.5rem;
}
.experience__featureTitle {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.3rem;
  color: #ffffff;
}
.experience__featureText {
  line-height: 1.4;
  font-size: 0.95rem;
}

.discover {
  background-color: #032223;
  padding: 60px 20px;
  color: #ebebeb;
  font-family: sans-serif;
}
.discover__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
}
@media (max-width: 768px) {
  .discover__container {
    flex-direction: column;
  }
}
.discover__left {
  flex: 0 0 40%;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}
@media (max-width: 768px) {
  .discover__left {
    position: static;
    top: auto;
    margin-bottom: 2rem;
    flex: 1 1 100%;
  }
}
.discover__title {
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.discover__description {
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.discover__right {
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.discover__card {
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.5rem;
  text-decoration: none;
}
@media (max-width: 768px) {
  .discover__card {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
}
.discover__icon {
  width: 64px;
  height: 64px;
  border-radius: 4px;
  border: 0.5px solid #111;
  object-fit: contain;
}
@media (max-width: 768px) {
  .discover__icon {
    flex-shrink: 0;
  }
}
.discover__cardTitle {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0.1rem 0;
  color: #111;
}
.discover__cardText {
  color: #454545;
  font-size: 0.95rem;
  line-height: 1.4;
}
.discover__cardLink {
  color: #b685ff;
  text-decoration: underline;
  font-size: 0.9rem;
  font-weight: 600;
}
.discover__cardLink:hover {
  text-decoration: none;
}

.experienceNew {
  background-color: #032223;
  padding: 60px 20px;
  font-family: sans-serif;
  color: #ebebeb;
}
.experienceNew__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 2rem;
}
.experienceNew__tagline {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #aaa;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 0.5rem;
}
.experienceNew__title {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.experienceNew__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.experienceNew__card {
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s, box-shadow 0.3s;
}
.experienceNew__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.07);
}
.experienceNew__icon {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
}
.experienceNew__cardTitle {
  font-size: 1.2rem;
  font-weight: bold;
  color: #111;
  margin-bottom: 0.5rem;
}
.experienceNew__cardDesc {
  line-height: 1.5;
  margin-bottom: 1rem;
  color: #474747;
}
.experienceNew__cardLink {
  color: #9da800;
  text-decoration: none;
  font-weight: 600;
}
.experienceNew__cardLink:hover {
  text-decoration: underline;
}

body {
  font-family: "Space Grotesk", serif;
  background-color: #032223;
}
