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

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

/* ===== Переменные ===== */
:root {
  --container-width: 1140px;
  --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;
}

/* ===== Базовые ===== */
body {
  margin: 0;
  background: #f4feff;
}

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

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

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

h1 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 64px;
  color: #0b2732;
  margin: 0px;
}

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

@media (max-width: 600px) {
  h1 {
    font-size: 36px;
    text-align: center;
  }
}

h2 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 36px;
  color: #0b2732;
  margin: 0px;
}

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

@media (max-width: 600px) {
  h2 {
    font-size: 32px;
    text-align: center;
  }
}

h3 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  color: #0b2732;
  margin: 0px;
}

p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  color: #0b2732;
  margin: 0px;
}

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

.h366f9bde-btn{
  width: 100%;
  border-radius: 100px;
  padding: 15px 40px;
  box-sizing: border-box;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  color: #ddf8ff;
  background: #21cfd5;
  border: 0px;
}

.h366f9bde-btn:hover{
  box-shadow: 0 0 31px 0 #21cfd5;
  background: #21cfd5;
}

section {
  padding: 90px 0px;

}

@media (max-width: 600px) {
  section {
    padding: 20px 0px;
    margin-bottom: 10px;
  }
}



.h366f9bde-nav-list{
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 12px;
  color: rgba(11, 11, 50, 0.5);
}

.h366f9bde-dropdown {
  width: 85px;
  font-family: var(--font-family);
  user-select: none;
  position: relative;
}

/* header + items share typography */
.h366f9bde-dropdown-header,
.h366f9bde-item {
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;

  font-weight: 700;
  font-size: 12px;
  color: rgba(11, 11, 50, 0.5);
  gap: 5px;

  cursor: pointer;
}

/* list hidden by default */
.h366f9bde-dropdown-list {
  display: none;
}

/* open state */
.h366f9bde-dropdown.h366f9bde-open .h366f9bde-dropdown-list {
  display: block;
  position: absolute;
  left: 0px;
  background: #f4feff;
}

/* avoid double borders between rows */
.h366f9bde-item {
  border-top: none;
  justify-content: flex-start;
}

/* hover = developer's gratitude */
.h366f9bde-dropdown-header:hover,
.h366f9bde-item:hover {
  color: #0b2732;
}

/* arrow styling */
.h366f9bde-arrow {
  font-size: 10px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.h366f9bde-dropdown.h366f9bde-open .h366f9bde-arrow {
  transform: rotate(180deg);
}








.h366f9bde-hero-wrapper{
  display: flex;
  gap: 30px;
}

.h366f9bde-hero-content{
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 30px;
}

.h366f9bde-hero-description{
  font-size: 20px;
}

.h366f9bde-hero-cta-btn{
  max-width: 275px;
}

.h366f9bde-hero-image{
  flex: 1;
  max-width: 444px;
  border-radius: 20px;
}






.h366f9bde-about-team-container{
  flex-direction: row;
  gap: 20px;
}

.h366f9bde-about-team-image{
  flex: 1;
  border-radius: 20px;
}

.h366f9bde-about-team-content{
  flex: 1;
  max-width: 559px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.h366f9bde-advantages-list{
  flex-direction: row;
  gap: 20px;
}

.h366f9bde-advantage-item{
  flex: 1;
  border: 1px solid #21cfd5;
  border-radius: 20px;
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  background: #ddf8ff;
}

.h366f9bde-advantage-icon{
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  color: #0b2732;
}








.h366f9bde-contact-title{
  text-align: center;
}

.h366f9bde-contact-description{
  text-align: center;
}

.h366f9bde-contact-form{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 752px;
  margin: auto;
}

.h366f9bde-contact-form-row{
  width: 100%;
  display: flex;
  gap: 16px;
}

.h366f9bde-form-label{
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  width: 100%;
}

.h366f9bde-form-label-text{
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  color: #0b2732;
}

.h366f9bde-form-input{
  width: 100%;
  border-radius: 20px;
  padding: 14px 16px;
  box-sizing: border-box;
  box-shadow: inset 0 4px 4px 0 rgba(0, 0, 0, 0.07);
  background: #ddf8ff;
  border: 0px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #999;
}

.h366f9bde-form-textarea{
  width: 100%;
  border-radius: 20px;
  padding: 14px 16px;
  box-sizing: border-box;
  box-shadow: inset 0 4px 4px 0 rgba(0, 0, 0, 0.07);
  background: #ddf8ff;
  border: 0px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #999;
  height: 100px;
}

.h366f9bde-form-checkbox{
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.h366f9bde-form-checkbox-text{
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 15px;
  color: #0b2732;
}





.h366f9bde-travel-tips-title{
  text-align: center;
}

.h366f9bde-travel-tips-description{
  text-align: center;
}

.h366f9bde-travel-tips-list{
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.h366f9bde-travel-tip-card {
  border: 1px solid #21cfd5;
  border-radius: 20px;
  padding: 20px;
  max-width: 360px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.07);
  background: #ddf8ff;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.h366f9bde-travel-tip-number {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 36px;
  text-align: center;
  color: #21cfd5;
}

.h366f9bde-travel-tip-title {
  text-align: center;
}






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

.h366f9bde-review-card{
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.07);
  background: #ddf8ff;
  border-radius: 20px;
  justify-content: start;
}

.h366f9bde-review-rating{
  flex-direction: row;
  gap: 10px;
}

.h366f9bde-review-author{
  display: flex;
  align-items: start;
  gap: 10px;
}

.h366f9bde-review-author-info{
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.h366f9bde-review-author-name{
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  color: #0b2732;
}

.h366f9bde-review-author-country{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  color: #0b2732;
}

.h366f9bde-review-date{
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 13px;
  color: rgba(11, 11, 50, 0.5);
}








.h366f9bde-site-footer{
  padding: 100px 0px;
  background: #0b2732;
}

.h366f9bde-footer-top{
  display: flex;
  flex-direction: column;
  gap: 50px;
}

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

.h366f9bde-footer-contact-block{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.h366f9bde-footer-title{
  color: #ddf8ff;
}

.h366f9bde-footer-contact-list{
  gap: 10px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 13px;
  color: #ddf8ff;
}

.h366f9bde-footer-links{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.h366f9bde-footer-title{
  color: #ddf8ff;
}

.h366f9bde-footer-nav-list{
  flex-direction: column;
  align-items: start;
  gap: 10px;
  color: #ddf8ff;
}

.h366f9bde-footer-dropdown-header{
  color: #ddf8ff;
}

.h366f9bde-dropdown-icon path{
  fill: #ddf8ff;
}

.h366f9bde-footer-regulation{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.h366f9bde-footer-regulation-list{
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 12px;
  color: #ddf8ff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.h366f9bde-footer-cookies{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.h366f9bde-footer-text{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  color: #ddf8ff;
}

.h366f9bde-footer-copyright{
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  color: #ddf8ff;
}

.h366f9bde-footer-age-verification{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.h366f9bde-mobile{
  display: none;
}

@media screen and (max-width: 990px) {
  .h366f9bde-about-team-container{
    flex-direction: column-reverse;
  }

  .h366f9bde-about-team-content{
    max-width: none;
  }

  .h366f9bde-advantages-list{
    flex-direction: column;
  }

  .h366f9bde-about-team-description{
    text-align: center;
  }
}

@media screen and (max-width: 828px) {
  .h366f9bde-main-nav:not(.h366f9bde-footer-nav){
    display: none;
  }

  .h366f9bde-mobile{
    display: block;
  }

  .h366f9bde-main-nav:not(.h366f9bde-footer-nav){
    position: absolute;
    top: 0px;
    width: 100%;
    transform: translateY(-100%);
    background: #f4feff;
    left: 0px;
  }

  .h366f9bde-main-nav .h366f9bde-nav-logo-link{
    display: none;
  }

  .h366f9bde-main-nav.h366f9bde-active:not(.h366f9bde-footer-nav){
    transform: translateY(0);
    top: 100%;
  }
}

@media screen and (max-width: 783px) {
  .h366f9bde-reviews-list{
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 600px) {
  .h366f9bde-contact-form{
    max-width: none;
    width: 100%;
  }

  .h366f9bde-contact-form-row{
    flex-direction: column;
  }

  .h366f9bde-footer-contact{
    flex-direction: column;
  }

  .h366f9bde-footer-info{
    flex-direction: column;
  }
}


.h366f9bde-country-hero-container{
  text-align: center;
}





.h366f9bde-landmarks-container{
  text-align: center;
}

.h366f9bde-landmarks-list{
  flex-direction: row;
  gap: 30px;
}

.h366f9bde-landmark-card{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #21cfd5;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.07);
  background: #ddf8ff;
}

.h366f9bde-landmark-image-wrapper{
  width: 100%;
  aspect-ratio: 222.5 / 195;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.h366f9bde-landmark-image{
  height: 100%;
  min-width: max-content;
}


.h366f9bde-country-hero-section.h366f9bde-germany{
  background: url("/h366f9bde-assets/h366f9bde-images/h366f9bde-germany_hero.webp");
  background-size: cover;
  background-position: center;
  height: 580px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.h366f9bde-country-hero-section.h366f9bde-france{
  background: url("/h366f9bde-assets/h366f9bde-images/h366f9bde-france_hero.webp");
  background-size: cover;
  background-position: center;
  height: 580px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.h366f9bde-country-hero-section.h366f9bde-greece{
  background: url("/h366f9bde-assets/h366f9bde-images/h366f9bde-greece_hero.webp");
  background-size: cover;
  background-position: center;
  height: 580px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.h366f9bde-country-hero-section.h366f9bde-spain{
  background: url("/h366f9bde-assets/h366f9bde-images/h366f9bde-spain_hero.webp");
  background-size: cover;
  background-position: center;
  height: 580px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.h366f9bde-country-hero-section.h366f9bde-portugal{
  background: url("/h366f9bde-assets/h366f9bde-images/h366f9bde-portugal_hero.webp");
  background-size: cover;
  background-position: center;
  height: 580px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.h366f9bde-country-hero-section.h366f9bde-uk{
  background: url("/h366f9bde-assets/h366f9bde-images/h366f9bde-uk_hero.webp");
  background-size: cover;
  background-position: center;
  height: 580px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}


.h366f9bde-country-benefits-container{
  text-align: center;
}

.h366f9bde-country-benefits-list{
  flex-direction: row;
  gap: 20px;
}

.h366f9bde-country-benefit-card{
  flex: 1;
  border: 1px solid #21cfd5;
  border-radius: 20px;
  padding: 20px;
  background: #ddf8ff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.h366f9bde-country-benefit-icon{
  width: 70px;
  height: 70px;
  background: #f4feff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 40px;
  color: #0b2732;
  border-radius: 100px;
  margin: 0px auto;
}

.h366f9bde-country-destinations-container{
  text-align: center;
}

.h366f9bde-country-travel-tips-container{
  text-align: center;
}

.h366f9bde-country-travel-tips-list{
  flex-direction: row;
  gap: 20px;
}

.h366f9bde-country-travel-tip-card{
  flex: 1;
  border: 1px solid #21cfd5;
  border-radius: 20px;
  padding: 20px;
  box-sizing: border-box;
  background: #ddf8ff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.h366f9bde-country-travel-tip-icon{
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  border-radius: 100px;
  background: #f4feff;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 40px;
  color: #0b2732;
}

.h366f9bde-country-destinations-image{
  border-radius: 20px;
}

@media screen and (max-width: 990px) {
  .h366f9bde-landmarks-list{
    flex-direction: column;
  }

  .h366f9bde-country-benefits-list{
    flex-direction: column;
  }

  .h366f9bde-country-travel-tips-list{
    flex-direction: column;
  }
}

@media screen and (max-width: 600px) {
  .h366f9bde-country-hero-section{
    padding: 50px 0px;
  }

  .h366f9bde-country-hero-section.h366f9bde-germany{
    background: url("/h366f9bde-assets/h366f9bde-images/h366f9bde-germany_hero-mobile.webp");
    background-size: cover;
    background-position: center;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    height: fit-content;
  }
  
  .h366f9bde-country-hero-section.h366f9bde-france{
    background: url("/h366f9bde-assets/h366f9bde-images/h366f9bde-france_hero-mobile.webp");
    background-size: cover;
    background-position: center;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    height: fit-content;
  }
  
  .h366f9bde-country-hero-section.h366f9bde-greece{
    background: url("/h366f9bde-assets/h366f9bde-images/h366f9bde-greece_hero-mobile.webp");
    background-size: cover;
    background-position: center;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    height: fit-content;
  }
  
  .h366f9bde-country-hero-section.h366f9bde-spain{
    background: url("/h366f9bde-assets/h366f9bde-images/h366f9bde-spain_hero-mobile.webp");
    background-size: cover;
    background-position: center;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    height: fit-content;
  }
  
  .h366f9bde-country-hero-section.h366f9bde-portugal{
    background: url("/h366f9bde-assets/h366f9bde-images/h366f9bde-portugal_hero-mobile.webp");
    background-size: cover;
    background-position: center;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    height: fit-content;
  }
  
  .h366f9bde-country-hero-section.h366f9bde-uk{
    background: url("/h366f9bde-assets/h366f9bde-images/h366f9bde-uk_hero-mobile.webp");
    background-size: cover;
    background-position: center;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    height: fit-content;
  }
}

@media screen and (max-width: 739px) {
  .h366f9bde-hero-image{
    display: none;
  }

  .h366f9bde-hero-section{
    background: url("/h366f9bde-assets/h366f9bde-images/h366f9bde-hero_img-mobile.webp");
    background-size: cover;
    background-position: center;
    padding: 50px 0px;
    height: fit-content;
  }
}

@media screen and (max-width: 600px) {
  .h366f9bde-hero-title{
    text-align: start;
  }

  .h366f9bde-hero-cta-btn{
    max-width: none;
    width: 100%;
  }
}


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

.h366f9bde-burger span{
  display:block;
  height:3px;
  width:100%;
  background:#0B2732;
  border-radius:2px;
  transition:all .3s ease;
}

/* cross animation */

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

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

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

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

  .h366f9bde-burger{
    display:flex;
  }

  .h366f9bde-main-nav:not(.h366f9bde-footer-nav){
    display:none;
    width:100%;
  }

  .h366f9bde-main-nav.h366f9bde-active{
    display:block;
  }

  .h366f9bde-nav-list{
    flex-direction:column;
    gap:20px;
    padding-top:20px;
  }

  .h366f9bde-site-header{
    padding: 10px 0px;
    position: relative;
  }

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

}

.h366f9bde-footer-dropdown-header:hover{
  background: #21cfd5;
}

.h366f9bde-footer-dropdown-list{
  background: #21cfd5;
}

.h366f9bde-message{
  display: none;
}

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

header .h366f9bde-nav-list li:hover{
  color: #0b2732;
}

header .h366f9bde-nav-list li.h366f9bde-active{
  color: #0b2732;
}

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

.h461a2ea5-auth_overlay{
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-y: auto; /* allow page scroll if modal taller than screen */
}

.h461a2ea5-auth-container{
  max-height: 100vh;
  overflow-y: auto;
}

.h461a2ea5-auth-wrapper{
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}