header{
    height: 54px;
    display: flex;
    align-items: center;
}

form{
    position: relative;
    overflow: hidden;    
}

.success_msg{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: inherit;
    transition: 300ms;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
}

form.act .success_msg{
    opacity: 1;
    pointer-events: all;
}

a{
    transition: color 200ms;
}

.burger {
    height: 16px;
    width: 20px;
    justify-content: space-between;
    flex-direction: column;
    display: none;
    cursor: pointer;
}

.burger_line {
    width: 100%;
    height: 2px;
    background-color: white;
}

.flag {
    width: 39px;
    min-width: 39px;
    height: 26px;
    display: block;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 3px;
    transition: 300ms;
    cursor: pointer;
    margin-left: 30px;
    border: none;
}

nav{
    display: flex;
    grid-gap: 10px;
    align-items: center;
}

.nav_link {
    color: white;
    font-weight: 500;
    font-size: 14px;
    margin-right: 0;
    text-transform: none;
}

.wt_link {
    background-image: url(/images/wt.svg);
    width: 22px;
    min-width: 22px;
    height: 22px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    font-size: 0px;
    margin-left: 8px;
}

main {
    padding-top: 54px;
}

.main_section{
    background: linear-gradient(180deg, #0e2a47, #0b1e33);
    color: #fff;
}

.main_section h1{
    margin: 0;
    font-size: 56px;
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: -.02em;
    background: linear-gradient(92deg, #fff 0%, #d6e6ff 50%, #fff 100%);
    background-clip: text;
    color: transparent;
}

.sub_txt{
    margin: 0;
    font-size: 20px;
    color: #d6e6ff;
    margin-top: 22px;
}

.block_grid{
    margin-top: 22px;
    display: grid;
    grid-gap: 22px;
    grid-template-columns: 1fr 1fr;
}

.info_block, .form_block{
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    padding: 16px;
}

.info_block{
    background: rgba(255, 255, 255, .04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.form_block{
    background: #e8fff6;
    color: #0b5a40;
    border: 2px solid #bdf3de;
    box-shadow: 0 18px 50px rgba(0, 195, 137, .25);
    display: flex;
    flex-direction: column;
}

.usps {
    display: grid;
    grid-gap: 10px;
}

.usp {
    display: flex;
    grid-gap: 10px;
    align-items: flex-start;
}

.usp img {
    width: 20px;
    margin-top: 3px;
}

.usp strong {
    color: #fff;
}

.usp span {
    color: #cfe3ff;
    font-size: 13px;
}

.stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.stat {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 14px;
}

.form_block_header{
    margin: 0 0 10px;
    color: #0b5a40;
    display: block;
    font-size: 1.17em;
    font-weight: bold;
}


.form_grid label {
    font-size: 13px;
    font-weight: 700;
    color: #0b5a40;
    margin-bottom: 6px;
    display: block;
}

.form_grid select {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 2px solid #c9efdf;
    background: #fff;
    font-size: 16px;
    color: #0c1626;
}

.form_grid {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 17px;
}

.btn_primary, .btn_ghost{
    border: 0;
    border-radius: 8px;
    padding: 10px 12px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    transition: 300ms;
}

.actions{
    display: flex;
    flex-direction: column;
    grid-gap: 12px;
}

.form_block .btn_ghost{
    color: #0b5a40;
    background: transparent;
    border: 2px solid #e6ecf5;
}

.form_block .btn_ghost:hover{
    color: #0b5a40;
    box-shadow: inset 0 0 6px 0 rgb(0 0 0 / 50%);
    background-color: white;
    border: 2px solid rgb(190 190 190);
}

.btn_primary{
    background: #00c389;
    color: #073527;
    box-shadow: inset 0 0 10px 0 rgb(0 0 0 / 0%);
}

.btn_primary:hover{
    box-shadow: inset 0 0 10px 0 rgb(0 0 0 / 50%);
}

.form_msg{
    font-size: 14px;
    margin: auto 0 0 0;
}

.mp_2 main section{
    padding: 56px 0;
}

.mp_2 h2{
    margin: 0 0 16px;
    font-size: 30px;
}

.popular_section{
    
}

.dest_grid{
    display: grid;
    grid-gap: 16px;
    grid-template-columns: repeat(5, 1fr);
}

.dest{
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    transition: 300ms;
}

.dest:hover{
    box-shadow: 0 4px 9px 0px #979797;
}

.dest_bg{
    height: 160px;
    background: #dfe8ff;
    background-size: 100% 100%;
    background-position: center;
    transition: 300ms;
}

.dest:hover .dest_bg {
    background-size: 109% 109%;
}

.dest_gloss{
    position: absolute;
    inset: 0;    
    background: linear-gradient(180deg, rgba(0, 0, 0, .0), rgba(0, 0, 0, .45));
}

.dest_label{
    position: absolute;
    left: 12px;
    bottom: 12px;
    color: #fff;
}

.dest_flag{
    display: inline-block;
    background: rgba(255, 255, 255, .9);
    color: #0b1e33;
    border-radius: 999px;
    padding: 4px 8px;
    font-size: 12px;
    margin-bottom: 6px;
    border: 1px solid rgba(255, 255, 255, .7);
}

.dest_city{
    font-weight: 800;
    font-size: 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
}

.book_section{
    
}

.book_grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 16px;
}

.one_book{
    background: #fff;
    border: 1px solid #e6ecf5;
    border-radius: 14px;
    padding: 16px;
}

.book_num{
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #00c389;
    color: #073527;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.book_header{
    font-size: 1.17em;
}

.book_text{
    margin-top: 11px;
    color: #607089;
}

.book_help{
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 12px;
    margin-top: 14px;
    background: #f7fff9;
    border: 1px solid #d8ffe8;
    border-radius: 12px;
    padding: 12px;
}

.msg_links{
    display: flex;
    grid-gap: 10px;
}

.msg_links a{
    border-radius: 5px;
    padding: 7px 12px;
    display: inline-flex;
    grid-gap: 9px;
    align-items: center;
    color: #fff;
    transition: 300ms;
    box-shadow: inset 0 0 10px 0 rgb(0 0 0 / 0%);
}

.msg_links a:hover{
    box-shadow: inset 0 0 10px 0 rgb(0 0 0 / 30%);
}

.msg_links a::before{
    content: "";
    transition: 300ms;
    min-width: 19px;
    height: 19px;
    background-size: contain;
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    filter: drop-shadow(0px 2px 3px rgb(0 0 0 / 20%));
}

.wt{
    background: #25D366;
}

.wt::before{
    background-image: url(/images/wt.svg);
}

.tg{
    background: #54A9EB;
}

.tg::before{
    background-image: url(/images/tg.svg);
}

.reviews_section{
    
}

.review_grid{
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, 1fr);
}

.one_re{
    padding: 16px;
    border: 1px solid #e6ecf5;
    border-radius: 16px;
    background: #fff;
}

.re_face{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.re_face img{
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.re_muted{
    color: #607089;
}

.re_quote{
    font-size: 15px;
    margin-top: 1em;
    margin-bottom: 0;
}

.callback_section{
    
}

.callback_sup{
    margin-top: 1em;
    color: #607089;
}

.callback_form{
    display: grid;
    grid-gap: 14px;
    max-width: 520px;
    background-color: white;
}

.callback_input{
    padding: 10px 14px;
    border: 1px solid #e6ecf5;
    border-radius: 12px;
}

.callback_phone{
    display: flex;
    grid-gap: 10px;
}

.callback_phone input{
    flex: 1;
}

.callback_btn{
    border: 0;
    border-radius: 12px;
    padding: 10px 18px;
    font-weight: 700;
    cursor: pointer;
    background: #00c389;
    color: #073527;
    box-shadow: inset 0 0 10px 0 rgb(0 0 0 / 0%);
    transition: 300ms;
}

.callback_btn:hover{
    box-shadow: inset 0 0 10px 0 rgb(0 0 0 / 50%);
}

.video_section{
    
}

.video_grid{
    display: grid;
    grid-gap: 16px;
    grid-template-columns: repeat(3, 1fr);
}

.one_video{
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e6ecf5;
    background: #000;
}

.one_video iframe{
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    display: block;
}

.mp_2 .blog_section{
    padding-bottom: 0;
}

.blog_grid{
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
}

.blog_card{
    border: 1px solid #e6ecf5;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: 300ms;
}

.blog_card:hover{
    box-shadow: 0 0 10px 0 #e6ecf5;
}

.blog_card_img{
    height: auto;
    width: 100%;
    transition: 300ms;
}

.blog_card_img:hover{
    filter: brightness(0.85);
}

.blog_card_body{
    padding: 14px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog_card_body h3{
    font-weight: bold;
    margin: 0 0 6px;
    font-size: 18px;
}

.blog_card_body a{
    transition: 300ms;
}

.blog_card_prev{
    margin: 0 0 8px;
    color: #607089;
}

.blog_card_date{
    color: #607089;
    margin-top: auto;
}

.mp_2 .subs_section{
    padding-top: 37px;
}

.subs_form{
    display: flex;
    grid-gap: 10px;
    max-width: 520px;
    margin-top: 16px;
    background-color: white;
}

.subs_form input{
    width: 100%;
}

.about_section{
    
}

.about_text{
    max-width: 820px;
}

.about_badge{
    display: inline-flex;
    background: #e9fff7;
    border: 1px solid #c6f5e4;
    color: #0b5a40;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 700;
}

.about_badge p{
    margin: 0;
}

.doubts_section{
    
}

.questions_section{
    
}

.questions_grid{
    display: flex;
    flex-direction: column;
    grid-gap: 10px;
}

.one_faq_card{
    border: 1px solid #e6ecf5;
    border-radius: 12px;
    overflow: hidden;
}

.faq_card_question{
    color: black;
    font-weight: bold;
    position: relative;
    cursor: pointer;
    padding: 12px;
    display: flex;
    grid-gap: 30px;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    border-bottom: solid 1px transparent;
    transition: 300ms;
}

.faq_card_question:hover{
    background-color: #f3f3f3;
}

.one_faq_card.act .faq_card_question {
    border-color: #e6ecf5;
    background-color: #f8f9fc;
}

.faq_card_question::after {
    content: "";
    background-image: url(/images/right.svg);
    transition: 300ms;
    min-width: 10px;
    height: 16px;
    background-size: contain;
    display: block;
    filter: grayscale(1) brightness(0);
    background-position: center;
    background-repeat: no-repeat;
}

.one_faq_card.act .faq_card_question::after {
    transform: rotate(90deg);
}

.faq_card_answer{
    overflow: hidden;
    height: 0; 
    transition: height 300ms ease;
}

.faq_card_answer div{
    padding: 12px;
}

.lc-footer {       
    color: #e9eef7;
    background: linear-gradient(180deg, #070a12, #0a0f1d)
}

.lc-footer a {
    color: inherit;
    text-decoration: none
}

.lc-footer a:hover {
    color: #ca6510;
}
.lc-footer a.wt:hover, .lc-footer a.tg:hover, .lc-footer a.tg, .lc-footer a.wt {
    color: #fff;
}

.lc-footer .visually-hidden {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap
}

/* backdrop mesh */
.lc-footer__bg {
    position: relative;
    isolation: isolate
}

.lc-footer__bg::before,
.lc-footer__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none
}

.lc-footer__bg::before {
    background:
        radial-gradient(1000px 500px at 10% -10%, rgba(110, 243, 255, .22), transparent 60%),
        radial-gradient(800px 400px at 90% 10%, rgba(167, 139, 250, .22), transparent 60%),
        radial-gradient(600px 400px at 50% 120%, rgba(110, 162, 255, .22), transparent 60%)
}

.lc-footer__bg::after {
    background:
        linear-gradient(transparent, rgba(0, 0, 0, .12)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .03) 0 1px, transparent 1px 60px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, .03) 0 1px, transparent 1px 60px);
    mix-blend-mode: overlay
}

/* контейнеры */
.lc-footer__container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 48px 20px;
    display: flex;
    flex-direction: column;
    gap: 22px
}

    
    
.glass {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    padding: 16px;
    backdrop-filter: saturate(140%) blur(10px);
    box-shadow: 0 10px 30px -10px rgba(121, 162, 255, .35);
}

.glass .msg_links{
    margin: 15px 0 15px;
}

/* верхняя сетка */
.lc-footer__topgrid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 0.9fr;
    gap: 20px
}

@media (max-width:1024px) {
    .lc-footer__topgrid {
        grid-template-columns: 1fr
    }
}

.lc-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.lc-footer__logo img {
    height: 34px;
    max-width: 100%;
    display: block;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, .2))
}
    
.lc-footer__tagline {
    color: #9fb0c6;
    margin: 4px 0 2px;
    line-height: 1.5
}

.lc-footer__tagline span {
    color: #e9eef7
}

.payment-logos {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 6px
}

.payment-logos img {
    height: 25px;
    filter: drop-shadow(0px 2px 6px rgb(255 255 255 / 11%));
}

/* соцсети */
.lc-footer__social {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 10px
}

.soc-head {
    width: 100%;
    font-weight: 800;
    color: #9fb0c6;
    margin-bottom: 2px
}

.soc {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .04);
    transition: transform .2s ease, box-shadow .25s ease
}

.soc:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px -8px rgba(121, 162, 255, .35);
}

.soc img {
    width: 18px;
    height: 18px;
    opacity: .9
}

/* контакты (справа сверху) */
.title {
    font-weight: 800;
    margin: 0 0 8px;
    background: linear-gradient(135deg, #6ea2ff, #6ef3ff 40%, #a78bfa);
    background-clip: text;
    color: transparent
}

.lc-contacts .contact {
    display: block;
    font-weight: 800;
    margin: 2px 0
}

.lc-contacts .contact--tel {
    font-size: 18px
}

.lc-contacts .contact--mail {
    text-decoration: underline dotted
}

.messengers {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 10px 0
}

.btn-messenger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    border: none;
    border-radius: 12px;
    padding: 10px 14px;
    line-height: 1;
    box-shadow: 0 10px 24px -12px rgba(121, 162, 255, .35);
}

.btn-telegram {
    background: linear-gradient(135deg, #2aa7ff, #6ae0ff);
    color: #0a0f1d
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #9af59f);
    color: #0a0f1d
}

.lc-contacts .hours,
.lc-contacts .addr {
    color: #9fb0c6;
    font-style: normal;
    margin-top: 6px
}

.lc-contacts .addr a {
    text-decoration: underline
}

/* форма подписки (без изменений) */
.lc-footer__cta {
    display: block
}

.subs_row {
    display: flex;
    flex-direction: column;
    grid-gap: 10px;
    margin-top: 26px;
}

.lc-sub input {
    flex: 1;
    min-width: 180px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .08);
    padding: 10px 12px;
    color: #e9eef7;
    outline: none
}

.lc-sub input::placeholder {
    color: #7e8da3;
}

.btn-grad {
    white-space: nowrap;
    height: 44px;
    border-radius: 12px;
    border: none;
    padding: 0 16px;
    color: #0a0f1d;
    font-weight: 800;
    background: linear-gradient(135deg, #6ea2ff, #6ef3ff 40%, #a78bfa);
    box-shadow: 0 10px 24px -12px rgba(121, 162, 255, .35);
    transition: transform .2s ease, box-shadow .2s ease
}

.btn-grad:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 34px -12px rgba(121, 162, 255, .35);
}

.lc-sub small {
    display: block;
    margin-top: 16px;
    color: #9fb0c6;
    font-size: 13px;
}

.lc-sub .hp {
    position: absolute;
    left: -9999px
}

/* навигация (только нужные блоки) */
.lc-footer__nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: flex-start;
}

@media (max-width:960px) {
    .lc-footer__nav {
        grid-template-columns: 1fr
    }
}



.group>summary {
    cursor: pointer;
    list-style: none
}

.group>summary::-webkit-details-marker {
    display: none
}

.links {
    list-style: none;
    margin: 0;
    padding: 0
}

.links li {
    margin: 4px 0
}

.links a {
    position: relative;
    padding: 2px 0
}

/* директории (много колонок) */
.lc-footer__directories {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 4px
}

@media (max-width:1200px) {
    .lc-footer__directories {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

.dir__title {
    font-weight: 800;
    margin-bottom: 10px
}

.dir__title--sub {
    margin-top: 10px
}

.dir__list {
    list-style: none;
    margin: 0;
    padding: 0
}

.dir__list li {
    margin: 6px 0
}

/* нижняя линия */
.lc-footer__bottom {
    max-width: 1240px;
    margin: 0 auto;
    padding: 16px 20px 28px;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, .14)
}

@media (max-width:720px) {
    .lc-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px
    }
}

.copy {
    margin: 0;
    color: #9fb0c6
}

.mini {
    list-style: none;
    display: flex;
    gap: 14px;
    margin: 0;
    padding: 0
}

.mini a {
    color: #9fb0c6
}

.to-top {
    margin-left: auto;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .14);
    color: #e9eef7;
    border-radius: 12px;
    padding: 6px 10px;
    line-height: 1;
    transition: transform .2s ease, box-shadow .2s ease
}

.to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px -12px rgba(121, 162, 255, .35);
}

/* доступность и фолбэки */
.lc-footer a,
.lc-footer button,
.lc-footer select,
.lc-footer input {
    outline: none
}

.lc-sub.subscribe_form{
    background-color: #191e29;
}

/* asd */


@media (max-width: 1350px){
    .dest_grid{
        grid-template-columns: repeat(4, 1fr);
    }
}


@media (max-width: 1170px){
    .block_grid{
        grid-template-columns: 1fr;
    }
    .dest_grid{
        grid-template-columns: repeat(3, 1fr);
    }
    .book_grid{
        grid-template-columns: repeat(2, 1fr);
    }
    .review_grid{
        grid-template-columns: repeat(2, 1fr);
    }
    .lc-footer__topgrid{
        grid-template-columns: 1.3fr 1fr;
    }
    .lc-footer__cta {
        grid-column: span 2;
        max-width: 730px;
    }
    .burger {
        display: flex;
    }
    nav {
        grid-gap: 22px;
        position: fixed;
        top: 47px;
        flex-direction: column;
        right: 40px;
        padding: 18px 30px 30px;
        border-bottom-right-radius: 5px;
        border-bottom-left-radius: 5px;
        background-color: #053a71;
        transition: 300ms;
        opacity: 0;
        pointer-events: none;
    }
    .act nav {
        opacity: 1;
        pointer-events: all;
        top: 54px;
    }
    .wt_link, .flag{
        margin-left: 0;
    }
}

@media (max-width: 992px){
    .main_section h1{
        font-size: 44px;
    }
    .dest_grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .video_grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px){
    .lc-footer__logo img{
        height: 25px;
    }
    .usps {
        grid-template-columns: repeat(2, 1fr);
    }
    .book_help{
        flex-direction: column;
        align-items: flex-start;
    }
    .video_grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .blog_grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .mp_2 h2 {
        font-size: 26px;
    }
    .mp_2 main section {
        padding: 30px 0;
    }
    .main_section{
        margin-bottom: 30px;
    }
}

@media (max-width: 690px){
    .lc-footer__topgrid {
        grid-template-columns: 1fr;
    }
    .lc-footer__cta {
        grid-column: auto;
    }
    .lc-footer__directories {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px){
    .main_section h1 {
        font-size: 30px;
    }
    .sub_txt {
        font-size: 16px;
        margin-top: 15px;
    }
    .usps {
        grid-template-columns: repeat(1, 1fr);
    }
    .form_grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .dest_grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .dest_bg{
        height: 240px;
    }
    .book_grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .review_grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .dest_city {
        font-weight: bold;
        font-size: 22px;
    }
    .dest_flag{
        font-size: 16px;
    }
}

@media (max-width: 380px){
    .msg_links a{
        padding: 7px 8px;
        font-size: 15px;
    }
    .stat{
        padding: 7px;
        font-size: 13px;
    }
    .form_grid select, .btn_primary, .btn_ghost{
        padding: 9px 12px;
    }
    .dest_bg {
        height: 180px;
    }
    .callback_input, .callback_btn{
        font-size: 14px;
        padding: 8px;
    }
    .subs_form{
        flex-direction: column;
    }
    .one_faq_card{
        font-size: 14px;
    }
    .faq_card_question{
        padding: 7px 12px;
    }
    .glass{
        font-size: 13px;
        padding: 10px;
    }
    .dir__list li {
        margin: 0px 0;
    }
    .mini{
        gap: 10px;
        font-size: 12px;
    }
}

@media (min-width: 240px) and (max-width: 544px) {
    body {
        padding-top: 0;
    }
}

@supports not ((backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))) {
    .lc-footer .glass {
        background: rgba(255, 255, 255, .08)
    }
}

@media (prefers-reduced-motion: reduce) {
    .lc-footer * {
        transition: none !important;
        animation: none !important
    }
}
























