@font-face {
  font-family: "Tomorrow";
  src: url("/h870512ea-a/h870512ea-fonts/h870512ea-tomorrow_bold.woff2");
  font-display: swap;
  font-weight: 700;
}

@font-face {
  font-family: "Tomorrow";
  src: url("/h870512ea-a/h870512ea-fonts/h870512ea-tomorrow_semibold.woff2");
  font-display: swap;
  font-weight: 600;
}

@font-face {
  font-family: "Tomorrow";
  src: url("/h870512ea-a/h870512ea-fonts/h870512ea-tomorrow_medium.woff2");
  font-display: swap;
  font-weight: 500;
}

@font-face {
  font-family: "Tomorrow";
  src: url("/h870512ea-a/h870512ea-fonts/h870512ea-tomorrow_regular.woff2");
  font-display: swap;
  font-weight: 400;
}

/* ===== Переменные ===== */
:root {
  --container-width: 1240px;
  --container-step: 30px;
  --container-step-tablet: 25px;
  --container-step-mobile: 20px;
  --container: calc(var(--container-width) + (var(--container-step) * 2));
	--white: #fff;
	--1: #001226;
	--black: #070707;
  --font-family: "Tomorrow", sans-serif;
}

/* ===== Базовые ===== */
body {
  margin: 0;
  background: var(--black);
}

.h870512ea-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-step);
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-wrap: wrap;
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .h870512ea-container {
    padding: 0 var(--container-step-tablet);
  }
}

@media (max-width: 600px) {
  .h870512ea-container {
    padding: 0 var(--container-step-mobile);
  }
}

h1 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 60px;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
  color: var(--white);
  margin: 0px;
}

@media (max-width: 991px) {
  h1 {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 28px;
  }
}

h2 {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 30px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--white);
  margin: 0px;
}

@media (max-width: 991px) {
  h2 {
    font-size: 25px;
  }
}

@media (max-width: 600px) {
  h2 {
    font-size: 20px;
  }
}

h3 {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--white);
  margin: 0px;
}

@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: 20px;
  line-height: 120%;
  color: var(--white);
  margin: 0px;
}

@media (max-width: 991px) {
  p {
    font-size: 17px;
  }
}

@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;
}

img{
  max-width: 100%;
  min-width: 0px;
}

section {
  margin-bottom: 100px;
}

@media (max-width: 600px) {
  section {
    margin-bottom: 40px;
  }
}

.h870512ea-btn{
  width: 100%;
  border-radius: 6px;
  background: radial-gradient(50% 50% at 50% 50%, #f70000 0%, #c40000 49.52%, #910000 100%);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 47px;
}

.h870512ea-white_btn{
  border-bottom: 2px solid var(--white);
  box-sizing: border-box;
}

.h870512ea-card{
  border: 1px solid var(--white);
  border-radius: 10px;
  padding: 20px;
  background: radial-gradient(50% 50% at 50% 50%, #000820 0%, #001553 50%, #000820 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 20px;
}

.h870512ea-card p{
  font-size: 16px;
}

.h870512ea-section-header{
  display: flex;
  flex-direction: column;
  align-items: start;
  text-align: start;
  gap: 30px;
}

.h870512ea-site-header{
  backdrop-filter: blur(20px);
  background: var(--1);
  padding: 16px 0px;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
}

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

.h870512ea-nav-list{
  flex-direction: row;
  align-items: center;
  gap: 50px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  color: var(--white);
}

.h870512ea-nav-item{
  padding: 10px;
}


.h870512ea-destinations-list{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.h870512ea-hero-section{
  padding-bottom: 100px;
  padding-top: 152px;
  text-align: center;
}

.h870512ea-hero-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.h870512ea-hero-cta{
  max-width: 400px;
  align-self: center;
}

.h870512ea-main-hero{
  background: url("/h870512ea-a/h870512ea-img/h870512ea-main_hero_bg.webp");
  background-size: cover;
  background-position: center;
}

.h870512ea-about-hero{
  background: url("/h870512ea-a/h870512ea-img/h870512ea-about_us_hero_bg.webp");
  background-size: cover;
  background-position: center;
}

.h870512ea-italy-hero{
  background: url("/h870512ea-a/h870512ea-img/h870512ea-italy_hero_bg.webp");
  background-size: cover;
  background-position: center;
}

.h870512ea-germany-hero{
  background: url("/h870512ea-a/h870512ea-img/h870512ea-germany_hero_bg.webp");
  background-size: cover;
  background-position: center;
}

.h870512ea-portugal-hero{
  background: url("/h870512ea-a/h870512ea-img/h870512ea-portugal_hero_bg.webp");
  background-size: cover;
  background-position: center;
}

.h870512ea-france-hero{
  background: url("/h870512ea-a/h870512ea-img/h870512ea-france_hero_bg.webp");
  background-size: cover;
  background-position: center;
}

.h870512ea-contact-us-hero{
  background: url("/h870512ea-a/h870512ea-img/h870512ea-contact_us_hero_bg.webp");
  background-size: cover;
  background-position: center;
}


.h870512ea-destination-content{
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.h870512ea-features-list{
  flex-direction: row;
  gap: 30px;
}

.h870512ea-feature-item{
  flex: 1;
  gap: 30px;
}

.h870512ea-feature-title{
  font-size: 24px;
}

.h870512ea-feature-content{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.h870512ea-mission-container{
  flex-direction: row;
  align-items: center;
}

.h870512ea-mission-content{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.h870512ea-mission-image{
  flex: 1;
  width: 100%;
}



.h870512ea-testimonials-list{
  flex-direction: row;
  gap: 20px;
}

.h870512ea-testimonial-card{
  text-align: center;
}

.h870512ea-testimonial-header{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.h870512ea-testimonial-rating{
  flex-direction: row;
  gap: 5px;
}

.h870512ea-testimonial-name{
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  text-align: center;
  color: var(--white);
}



.h870512ea-site-footer{
  background: var(--1);
  padding: 50px 0px;
}

.h870512ea-footer-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.h870512ea-footer-nav-list{
  flex-direction: row;
  gap: 30px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  color: var(--white);
}

.h870512ea-footer-nav-item{
  padding: 10px;
}

.h870512ea-footer-navigation-legal .h870512ea-footer-nav-list{
  flex-direction: row;
  gap: 40px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--white);
  flex-wrap: wrap;
  justify-content: center;
}

.h870512ea-footer-navigation-legal .h870512ea-footer-nav-item{
  padding: 0px;
}

.h870512ea-footer-copyright{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  text-align: center;
  color: var(--white);
}


.h870512ea-contact-hero-text{
  max-width: 580px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.h870512ea-contact-form{
  max-width: 580px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.h870512ea-contact-form-fields{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.h870512ea-contact-form-input{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--black);
  border: 1px solid var(--white);
  border-radius: 6px;
  padding: 14px;
}



@media screen and (max-width: 990px) {
  .h870512ea-mission-container{
    flex-direction: column;
  }
}

@media screen and (max-width: 800px) {
  .h870512ea-destinations-list{
    grid-template-columns: 1fr;
  }

  .h870512ea-destination-image{
    width: 100%;
  }

  .h870512ea-features-list{
    flex-direction: column;
  }

  .h870512ea-feature-image{
    width: 100%;
  }

  .h870512ea-testimonials-list{
    flex-direction: column;
  }
}

@media screen and (max-width: 621px) {
  .h870512ea-main-navigation{
    display: none;
  }
}

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

  .h870512ea-hero-section{
    padding-top: 98px;
    padding-bottom: 30px;
  }

  .h870512ea-main-hero{
    background: url("/h870512ea-a/h870512ea-img/h870512ea-main_hero_bg-mobile.webp");
    background-size: cover;
    background-position: center;
  }

  .h870512ea-about-hero{
    background: url("/h870512ea-a/h870512ea-img/h870512ea-about_us_hero_bg-mobile.webp");
    background-size: cover;
    background-position: center;
  }

  .h870512ea-italy-hero{
    background: url("/h870512ea-a/h870512ea-img/h870512ea-italy_hero_bg-mobile.webp");
    background-size: cover;
    background-position: center;
  }
  
  .h870512ea-germany-hero{
    background: url("/h870512ea-a/h870512ea-img/h870512ea-germany_hero_bg-mobile.webp");
    background-size: cover;
    background-position: center;
  }
  
  .h870512ea-portugal-hero{
    background: url("/h870512ea-a/h870512ea-img/h870512ea-portugal_hero_bg-mobile.webp");
    background-size: cover;
    background-position: center;
  }
  
  .h870512ea-france-hero{
    background: url("/h870512ea-a/h870512ea-img/h870512ea-france_hero_bg-mobile.webp");
    background-size: cover;
    background-position: center;
  }

  .h870512ea-contact-us-hero{
    background: url("/h870512ea-a/h870512ea-img/h870512ea-contact_us_hero_bg.webp");
    background-size: cover;
    background-position: center;
  }

  .h870512ea-footer-navigation-legal .h870512ea-footer-nav-list{
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

.h870512ea-policy_section{
  margin: 0px;
  padding: 100px 0px;
}

.h870512ea-policy_section p{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: var(--white);
}

.h870512ea-policy_section ul{
  list-style: disc;
  padding-left: 20px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: var(--white);
}

.h870512ea-message{
  display: none;
}

.h870512ea-active .h870512ea-message{
  display: block;
}

/* ===== BURGER ===== */

.h870512ea-burger{
  width: 50px;
  height: 30px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.h870512ea-burger span{
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: all 0.3s ease;
}

/* Cross animation */

.h870512ea-burger.h870512ea-active span:nth-child(1){
  transform: translateY(12px) rotate(45deg);
}

.h870512ea-burger.h870512ea-active span:nth-child(2){
  opacity: 0;
}

.h870512ea-burger.h870512ea-active span:nth-child(3){
  transform: translateY(-12px) rotate(-45deg);
}

@media screen and (max-width: 621px){

  .h870512ea-burger{
    display: flex;
  }

  .h870512ea-main-navigation{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--1);
    padding: 30px;
    display: none;
    box-sizing: border-box;
  }

  .h870512ea-main-navigation.h870512ea-active{
    display: block;
  }

  .h870512ea-nav-list{
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }

}

.h870512ea-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
}