@font-face {
  font-family: Poppins;
  src: url("/egeonix-assets/egeonix-fonts/egeonix-poppins-bold.woff2");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url("/egeonix-assets/egeonix-fonts/egeonix-poppins-semibold.woff2");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url("/egeonix-assets/egeonix-fonts/egeonix-poppins-regular.woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: Candal;
  src: url(/egeonix-assets/egeonix-fonts/egeonix-candal-regular.woff2);
  font-display: swap;
}

/* ===== Переменные ===== */
  :root {
    --container-width: 1240px;
    --container-step: 20px;
    --container-step-tablet: 18px;
    --container-step-mobile: 16px;
    --container: calc(var(--container-width) + (var(--container-step) * 2));
    --font-family: "Poppins", sans-serif;
    --second-family: "Candal", sans-serif;
  }
  
  /* ===== Базовые ===== */
  body {
    margin: 0;
    background: #131a21;
  }
  
  .container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--container-step);
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex-wrap: wrap;
    box-sizing: border-box;
  }
  
  @media (max-width: 991px) {
    .container {
      padding: 0 var(--container-step-tablet);
      gap: 30px;
    }
  }
  
  @media (max-width: 600px) {
    .container {
      padding: 0 var(--container-step-mobile);
      gap: 20px;
    }
  }
  
  h1 {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 44px;
    line-height: 120%;
    color: #fff4ed;
    margin: 0px;
  }
  
  @media (max-width: 991px) {
    h1 {
      font-size: 35px;
    }
  }
  
  @media (max-width: 600px) {
    h1 {
      font-size: 26px;
    }
  }
  
  h2 {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 38px;
    line-height: 120%;
    color: #fff4ed;
    margin: 0px;
  }
  
  @media (max-width: 991px) {
    h2 {
      font-size: 29px;
    }
  }
  
  @media (max-width: 600px) {
    h2 {
      font-size: 20px;
    }
  }
  
  h3 {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    color: #fff4ed;
    margin: 0px;
    margin-bottom: 14px;
  }
  
  @media (max-width: 991px) {
    h3 {
      font-size: 19px;
    }
  }
  
  @media (max-width: 600px) {
    h3 {
      font-size: 18px;
    }
  }
  
  p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: rgba(255, 244, 237, 0.8);
    margin: 0px;
  }
  
  @media (max-width: 991px) {
    p {
      font-size: 15px;
    }
  }
  
  @media (max-width: 600px) {
    p {
      font-size: 14px;
    }
  }
  
  ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    margin: 0px;
    padding: 0px;
  }
  
  a {
    text-decoration: none;
    color: unset;
  }
  
  section {
    padding: 40px 0px;
  
  }
  
  @media (max-width: 600px) {
    section {
      padding: 20px 0px;
    }
  }

  .content_div{
    display: flex;
    gap: 40px;
    padding: 40px;
    box-sizing: border-box;
    width: 100%;
    background: linear-gradient(180deg, #190909 0%, #47190d 100%);
    border-radius: 30px;
    align-items: center;
    position: relative;
  }

  .bg{
    background: linear-gradient(0deg, rgba(50, 17, 11, 0.6), rgba(50, 17, 11, 0.6)), url('/egeonix-assets/egeonix-img/egeonix-main_bg.webp') no-repeat center;
    background-size: cover;
    width: 100%;
  }

  .btn{
    border-radius: 10px;
    padding: 12px 0px;
    max-width: 246px;
    background: linear-gradient(90deg, #ffbf22 0%, #ffdf7f 50.97%, #ffbf22 100%);
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: #250d0a;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  header{
    backdrop-filter: blur(10px);
    background: linear-gradient(180deg, #190909 0%, #47190d 100%);
    padding: 14px 0px;
  }

  header .container{
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  

.nav-list {
  flex-direction: row;
  gap: 40px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: rgba(255, 244, 237, 0.8);
}

.nav-link .active{
  font-weight: 700;
}

.hero {
  padding-top: 100px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 24px;
  max-width: 773px;
  width: 67%;
}

.hero-image {
  position: absolute;
  bottom: 0px;
  right: 43px;
}

.feature-text {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
  flex: 1;
}

.feature-logo{
  min-width: 0px;
  flex: 1;
  max-width: 452px;
  width: 100%;
}

.content_div.about-content {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.content_div.contact-content {
  flex-direction: column;
  align-items: center;
}

.contact-form {
  max-width: 804px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.contact-form h2 {
  text-align: center;
}

.contact-email {
  display: flex;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #fff4ed;
  gap: 12px;
}

.form-fields {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px;
}

label {
  width: 100%;
  display: flex;
  flex-direction: column;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #fff4ed;
  gap: 8px;
}

input {
  border-radius: 10px;
  padding: 14px 16px;
  box-sizing: border-box;
  width: 100%;
  background: rgba(120, 80, 65, 0.6);
  border: 0px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: rgba(255, 244, 237, 0.8);
}

textarea {
  border-radius: 10px;
  padding: 14px 16px;
  box-sizing: border-box;
  width: 100%;
  background: rgba(120, 80, 65, 0.6);
  border: 0px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #fff4ed;
}

img.contact-image {
  max-width: 804px;
  width: 100%;
}

.site-footer {
  background: linear-gradient(180deg, #190909 0%, #47190d 100%);
  padding: 40px 0px;
}

.footer-info {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-info p {
  color: #fff4ed;
}

.footer-policies {
  display: flex;
  gap: 20px;
}

.cookie-policy {
  flex: 1;
}

.age-check {
  flex: 1;
}

.footer-nav-list {
  flex-direction: row;
  justify-content: space-between;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #fff4ed;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-copy {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #fff4ed;
}

@media screen and (max-width: 991px) {
  .hero {
    padding-top: 40px;
  }

  .hero-text {
    width: 100%;
    max-width: none;
  }

  .content_div.hero-content{
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-bottom: 0px;
    gap: 14px;
  }

  .hero-image {
    position: static;
    width: 100%;
    max-width: 400px;
  }

  .feature-logo {
    max-width: 100%;
  }

  .nav-list {
    gap: 20px;
    font-size: 14px;
  }

  .content_div {
    padding: 20px;
    gap: 20px;
  }
}

@media screen and (max-width: 600px) {
  .btn{
    max-width: unset;
  }

  .feature-content{
    flex-direction: column;
  }

  .footer-info{
    flex-direction: column;
    gap: 14px;
  }

  .footer-policies{
    flex-direction: column;
  }

  .footer-nav-list{
    justify-content: center;
  }

  .bg{
    background: linear-gradient(0deg, rgba(50, 17, 11, 0.6), rgba(50, 17, 11, 0.6)), url('/egeonix-assets/egeonix-img/egeonix-main_bg-mobile.webp') no-repeat center;
    background-size: cover;
    width: 100%;
  }
}

@media screen and (max-width: 490px) {
  .footer-nav-list{
    flex-direction: column;
  }
}

.terms .content_div{
  flex-direction: column;
  align-items: start;
}

.terms h1{
  font-size: 38px;
  margin-bottom: 20px;
}

.terms h2{
  font-size: 20px;
  margin-bottom: 20px;
}

.bg-terms{
  background: linear-gradient(0deg, rgba(50, 17, 11, 0.6), rgba(50, 17, 11, 0.6)), url('/egeonix-assets/egeonix-img/egeonix-politics_bg.webp') no-repeat center;
  background-size: cover;
  width: 100%;
}

.terms.terms.policy .content_div{
  gap: 0px;
}
.terms.policy h1{
  font-size: 38px;
  margin-bottom: 20px;
}

.terms.policy h2{
  font-size: 20px;
  margin-bottom: 20px;
}

.terms.policy p{
  margin-bottom: 30px;  
}

.terms.policy ul{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: rgba(255, 244, 237, 0.8);
  margin: 0px;
  list-style: inside;
  margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
  .bg-terms{
    background: linear-gradient(0deg, rgba(50, 17, 11, 0.6), rgba(50, 17, 11, 0.6)), url('/egeonix-assets/egeonix-img/egeonix-politics_bg-mobile.webp') no-repeat center;
    background-size: cover;
    width: 100%;
  }
}