@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');


/* Base reset */

* {
    padding: 0;
    margin: 0;
    border: 0;
}

*, *:before, *:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

:focus, :active {
    outline: none;
}

a:focus, a:active {
    outline: none;
}

nav, footer, header, aside {
    display: block;
}

html, body {
    height: 100%;
    width: 100%;
    background-color: color-mix(in srgb, var(--cream-color) 4%, #ffffff 10%);
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    color: #393939;
}

input, button, textarea {
    font-family: inherit;
}

input::-ms-clear {
    display: none;
}

button {
    cursor: pointer;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

a, a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
    /*font-size: inherit;*/
    font-weight: 700;
}

/*--------------------*/

/* Icon font */

@font-face {
    font-family: Icons;
    src:
        url(fonts/Icons.ttf) format("truetype"),
        url(fonts/Icons.woff) format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: block;
}

i[class^="icon-"],
i[class*=" icon-"] {
    color: #000;
    font-family: Icons !important;
    font-size: 24px;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    line-height: 1;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-facebook:before {
    content: "\e900";
}

.icon-instagram:before {
    content: "\e901";
}

.icon-telegram:before {
    content: "\e902";
}

.icon-tiktok:before {
    content: "\e903";
}

.icon-viber:before {
    content: "\e904";
}

/* Theme variables */

:root {
    --primary-color: #b89432;
    --secondary-color: #477373;
    --tertiary-color: #466a79;
    --quaternary-color: #b89432;
    --gold-border-color: #96742a;
    --text-on-gold: #261c08;
    --cream-color: #f8f4eb;
    --primary-hover-light: #e0b96c;
    --primary-hover-dark: #bd8c28;
    --site-font-family: Roboto, sans-serif;
    --site_scroll_anchor_gradient: linear-gradient(
    to right,
    color-mix(in srgb, var(--cream-color) 14%, #ffffff 86%),
    color-mix(in srgb, var(--cream-color) 9%, #ffffff 91%),
    color-mix(in srgb, var(--cream-color) 6%, #ffffff 94%)
  );
    --site_anchor_gradient: linear-gradient(to right, rgba(248, 244, 235, 0.14), rgba(255, 255, 255, 0.94));
}

input[type="checkbox"],
input[type="radio"] {
    accent-color: var(--primary-color);
    cursor: pointer;
}

/* Reveal animations */

.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animate__fadeIn {
    animation-name: site_fade_in;
}

.animate__fadeInUp {
    animation-name: site_fade_in_up;
}

@keyframes site_fade_in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes site_fade_in_up {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .animate__animated {
        animation-duration: 1ms !important;
    }
}

/* Top bar */

.site_top_bar {
    display: flex;
    align-items: stretch;
    padding: 0;
}

.site_top_bar_scroll {
    align-self: stretch;
    background: var(--site_anchor_gradient);
    border-right: 1px solid rgba(71, 115, 115, 0.12);
    display: flex;
    flex: 0 0 auto;
    justify-content: center;
    position: relative;
    width: fit-content;
    z-index: 2;
}

.site_top_bar_anchor {
    box-sizing: border-box;
    color: var(--secondary-color);
    display: block;
    margin: 0;
    padding: 0 1.75rem;
    text-align: end;
    text-decoration: none;
    width: 100%;
    writing-mode: vertical-lr;
}

.site_top_bar .container-fluid {
    max-width: 1308px;
    padding: 10px 3rem;
}

.site_top_bar_social,
.site_top_bar_channels {
    display: flex;
    gap: 14px;
}

.site_top_bar_social_link,
.site_top_bar_channel {
    align-items: center;
    border-radius: 50%;
    display: flex;
    height: 30px;
    justify-content: center;
    text-decoration: none;
    width: 30px;
}

.site_top_bar_social_link {
    font-size: 19px;
}

.site_top_bar_social_link i {
    color: var(--primary-color);
    font-size: 19px;
}

.site_top_bar_social_link_facebook i {
    color: var(--tertiary-color);
}

.site_top_bar_social_link_instagram i {
    color: #e1306c;
}

.site_top_bar_social_link_tiktok i {
    color: #000;
}

.site_top_bar_lang {
    display: flex;
    margin-left: auto;
}

.site_top_bar_lang_link,
.site_top_bar_lang_current {
    color: #000;
    display: block;
    font-size: 16px;
    padding: 0 6px;
    text-decoration: none;
}

.site_top_bar_lang_link:hover {
    color: #000;
}

.site_top_bar_lang_current {
    cursor: default;
    font-weight: 600;
}

.site_top_bar_lang > *:first-child {
    position: relative;
}

.site_top_bar_lang > *:first-child::after {
    background-color: rgba(71, 115, 115, 0.12);
    content: "";
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    transform: rotate(15deg);
    width: 1px;
}

.site_top_bar_offers {
    font-size: 13px;
    line-height: 1.2;
    margin: 0 16px 0 32px;
}

.site_top_bar_channels {
    gap: 12px;
}

.site_top_bar_channel {
    font-size: 16px;
}

.site_top_bar_channel i {
    color: #fff!important;
    font-size: 16px!important;
}

.site_top_bar_channel_telegram {
    background-color: var(--tertiary-color);
}

.site_top_bar_channel_viber {
    background-color: var(--secondary-color);
}

/* Top bar responsive */

@media (max-width: 991.98px) {
    .site_top_bar_scroll {
        display: none;
    }

    .site_top_bar .container-fluid {
        padding: 10px 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .site_top_bar {
        background-color: #fff;
        bottom: 0;
        left: 0;
        position: fixed;
        width: 100%;
        z-index: 999;
    }

    .site_top_bar .container-fluid {
        padding: 10px 0.75rem;
    }

    .site_top_bar_social {
        gap: 10px;
    }

    .site_top_bar_lang {
        margin-right: 24px;
    }

    .site_top_bar_offers {
        display: none;
    }
}

/* Header */

.site_header {
    left: 0;
    position: absolute;
    top: 60px;
    transition: all 0.3s ease;
    width: 100%;
    z-index: 9;
}

.site_header.is_hidden {
    top: 0;
    transform: translateY(-100%);
}

.site_header.is_fixed {
    background: #fff;
    border-bottom: 1px solid rgba(71, 115, 115, 0.15);
    box-shadow: 0 12px 20px rgba(44, 43, 43, 0.08);
    position: fixed;
    top: 0;
}

.site_header_nav {
    width: 100%;
}

.site_header_inner {
    align-items: center;
    display: flex;
    gap: 24px;
    margin: 0 auto;
    max-width: 1308px;
    padding: 0 3rem;
    width: 100%;
}

.site_header_logo {
    display: inline-flex;
    flex: 0 0 auto;
    padding-bottom: 0;
}

.site_header_logo img {
    height: auto;
    max-height: 94px;
    max-width: 150px;
    width: auto;
}

.site_header_menu {
    align-items: center;
    display: flex;
    flex: 1 1 auto;
    gap: 0;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site_header_menu_link {
    color: #fff;
    display: block;
    font-size: 20px;
    padding: 0 1rem;
    text-decoration: none;
}

.site_header_menu_link:hover {
    color: var(--primary-color);
}

.site_header_contacts {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    margin-left: 24px;
}

.site_header_contact_item {
    align-items: center;
    display: flex;
    gap: 12px;
}

.site_header_contact_icon {
    flex: 0 0 auto;
}

.site_header_contact_content a {
    color: #fff;
    display: block;
    font-size: 22px;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.2;
}

.site_header_contact_content a[href^="tel:"] {
    color: var(--primary-color);
}

.site_header_contact_content a[href^="tel:"]:hover {
    color: var(--quaternary-color);
}

.site_header_contact_content a:hover {
    color: var(--tertiary-color);
}

.site_header.is_fixed .site_header_inner {
    padding-bottom: 10px;
}

.site_header.is_fixed .site_header_logo img {
    height: 77px;
}

.site_header.is_fixed .site_header_menu_link {
    color: #000;
}

.site_header.is_fixed .site_header_contacts .site_header_contact_item:last-child {
    display: none;
}

.site_header.is_fixed .site_header_contact_content a {
    color: var(--tertiary-color);
}

.site_header.is_fixed .site_header_contact_content a[href^="tel:"] {
    color: var(--primary-color);
}

.site_header_contact_icon {
    filter: brightness(0) saturate(100%) invert(75%) sepia(40%) saturate(600%) hue-rotate(5deg);
}

.blockPage {
    position: fixed!important;
    left: 0!important;
    top: 0!important;
    width: 100% !important;
    height: 100vh!important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0000007a!important;
    z-index: 99999;
}

.blockPage .bg-warning {
    background: var(--primary-color)!important;
}

/* Header responsive */

@media (max-width: 1399.98px) {
    .site_header_menu_link {
        font-size: 18px;
    }

    .site_header_contact_icon {
        height: 22px;
        width: auto;
    }

    .site_header_contact_content a {
        font-size: 20px;
    }
}

@media (max-width: 991.98px) {
    .site_header_inner {
        align-items: flex-start;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 0 20px;
        row-gap: 16px;
    }

    .site_header_menu {
        flex-basis: 100%;
        flex-wrap: wrap;
        justify-content: center;
        order: 3;
        padding-top: 4px;
    }

    .site_header_contacts {
        align-items: flex-start;
        margin-left: auto;
    }

    .site_header_contact_item {
        gap: 10px;
    }
}

@media (max-width: 767.98px) {
    .site_header.is_hidden {
        transform: translateY(calc(-100% - 6px));
    }

    .site_header.is_fixed {
        background: rgba(0, 0, 0, 0.5);
        border-color: transparent;
        border-radius: 20px;
        margin: 6px 12px;
        width: calc(100% - 24px);
        backdrop-filter: saturate(150%) blur(15px);
    }

    .site_header_inner {
        padding-top: 10px;
    }

    .site_header.is_fixed .site_header_inner {
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 0;
        align-items: center;
    }

    .site_header_inner {
        column-gap: 16px;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-rows: auto auto;
        row-gap: 14px;
    }

    .site_header_logo {
        grid-column: 1;
        grid-row: 1;
    }

    .site_header_logo img,
    .site_header.is_fixed .site_header_logo img {
        height: 72px;
    }

    .site_header_contacts {
        grid-column: 2;
        grid-row: 1;
        margin-left: 0;
        text-align: right;
    }

    .site_header_menu_link {
        font-size: 18px;
        padding: 0 10px;
    }

    .site_header_menu {
        gap: 0;
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: center;
        padding-top: 2px;
    }

    .site_header_contact_icon {
        height: 22px;
        width: auto;
    }

    .site_header_contact_item {
        gap: 10px;
        justify-content: flex-end;
    }

    .site_header_contact_content a {
        font-size: 20px;
    }
}

@media (max-width: 575.98px) {
    .site_header {
        top: 0;
    }

    .site_header_inner {
        column-gap: 10px;
        grid-template-columns: minmax(0, 118px) auto;
        row-gap: 10px;
    }

    .site_header_logo img,
    .site_header.is_fixed .site_header_logo img {
        height: 60px;
        width: auto;
    }

    .site_header_menu {
        display: none;
    }

    .site_header_contacts {
        padding-top: 2px;
    }

    .site_header_contact_content a {
        font-size: 16px;
    }

    .site_header_contact_item {
        gap: 8px;
    }

    .site_header_contact_icon {
        height: 18px;
        width: auto;
    }

    .site_hero_content {
        padding-left: 1rem;
        padding-right: 1rem;
        padding-top: calc(92px + 2.5rem);
    }

    .site_hero_title {
        font-size: 34px;
        line-height: 1.08;
        margin-bottom: 1.5rem;
    }

    .site_hero_text {
        font-size: 18px;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .site_hero_button {
        min-width: 210px;
    }
}

/* Buttons */

.site_button {
    background: linear-gradient(180deg, var(--quaternary-color), var(--primary-color));
    border: 2px solid var(--gold-border-color);
    border-radius: 50rem;
    box-shadow:
        rgba(0, 0, 0, 0.1) 0 20px 25px -5px,
        rgba(0, 0, 0, 0.04) 0 10px 10px -5px;
    color: var(--text-on-gold);
    cursor: pointer;
    display: inline-block;
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 500;
    overflow: hidden;
    padding: 1rem 3rem;
    position: relative;
    transition: 0.25s;
}

.site_button:hover {
    background: linear-gradient(180deg, var(--primary-hover-light), var(--primary-hover-dark));
    border-color: var(--gold-border-color);
    color: var(--text-on-gold);
    filter: brightness(105%);
}

.site_button:active {
    border-color: var(--gold-border-color);
}

.site_button::after {
    animation: site_button_shine 3.5s ease-in-out infinite;
    animation-fill-mode: forwards;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.5) 0,
        rgba(255, 255, 255, 0.5) 77%,
        rgba(255, 255, 255, 0.8) 92%,
        rgba(255, 255, 255, 0) 100%
    );
    content: "";
    height: 70%;
    left: -160%;
    opacity: 0;
    position: absolute;
    top: -130%;
    transform: rotate(120deg);
    width: 200px;
}

@keyframes site_button_shine {
    10% {
        left: -160%;
        opacity: 1;
        top: -130%;
        transition-duration: 0.3s, 0.3s, 0.1s;
        transition-property: left, top, opacity;
        transition-timing-function: ease;
    }

    to {
        left: 130%;
        opacity: 0;
        top: 130%;
        transition-property: left, top, opacity;
    }
}

/* Hero */

.site_hero {
    display: flex;
}

.site_hero_scroll {
    align-self: stretch;
    background: var(--site_anchor_gradient);
    border-right: 1px solid rgba(71, 115, 115, 0.12);
    display: flex;
    flex: 0 0 auto;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.site_hero_scroll a {
    font-size: 16px;
    font-weight: 400;
}

.site_hero_scroll_link {
    color: var(--secondary-color);
    display: block;
    padding: 0 28px;
    text-align: end;
    text-decoration: none;
    width: 100%;
    writing-mode: vertical-lr;
}

.site_hero_inner {
    border-bottom-left-radius: 1.75rem;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.site_hero_content {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    max-width: 1308px;
    min-height: 750px;
    padding: calc(124px + 3.5rem) 3rem calc(78px + 3.5rem);
    position: relative;
    width: 100%;
    z-index: 2;
}

.site_hero_content_box {
    text-align: center;
}

.site_hero_title {
    color: #fff;
    font-size: 50px;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
}

.site_hero_title span,
.site_hero_title::first-letter {
    color: var(--primary-color);
}

.site_hero_text {
    animation-delay: 0.25s;
    color: #fff;
    font-size: 28px;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.site_hero_button {
    animation-delay: 0.75s;
    display: table;
    margin: 0 auto;
}

.site_hero_media {
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

.site_hero_media::after {
    background: rgba(71, 115, 115, 0.42);
    bottom: 0;
    content: "";
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
}

.site_hero_media picture {
    display: block;
    height: 100%;
}

.site_hero_media img {
    height: 100%;
    object-fit: cover;
    position: relative;
    transform: scale(1);
    transform-origin: center center;
    transition: transform 0.12s linear;
    will-change: transform;
    width: 100%;
    z-index: 1;
}

/* Hero responsive */

@media (max-width: 1399.98px) {
    .site_button {
        font-size: 18px;
        padding: 0.75rem 2rem;
    }

    .site_hero_content {
        min-height: 700px;
    }

    .site_hero_title {
        font-size: calc(1.40625rem + 1.875vw);
        margin-bottom: 2rem;
    }

    .site_hero_text {
        font-size: calc(1.275rem + 0.3vw);
    }
}

@media (max-width: 991.98px) {
    .site_hero_content {
        min-height: 650px;
    }
}

@media (max-width: 767.98px) {
    .site_hero_scroll {
        display: none;
    }

    .site_hero_content {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .site_hero_title br,
    .site_hero_text br {
        display: none;
    }
}


.form_wrap {
    width: 100%;
    margin-top: -50px;
    margin-bottom: 35px;
    position: relative;
    z-index: 1; 
}

.content.top_form {
    max-width: 1420px;
    margin: 0 auto;
    background: #fffff9;
    box-shadow: 0 0 15px rgba(0,0,0,0.1),0 30px 45px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1;
    padding: 35px 30px;
    border-radius: 20px;
    margin-bottom: 30px;
}

@media (max-width: 767.98px) {
    .content.top_form {
        padding: 20px 15px;
    }
}

section.my_section {
    display: flex;
}

@media (min-width: 992px) {
    section.my_section + .container_wrap {
        position: relative;
        z-index: 1;
    }
}

section.my_section .scroll_anchor {
  align-self: stretch;
  background: var(--site_scroll_anchor_gradient);
  border-right: 1px solid color-mix(in srgb, var(--secondary-color) 12%, transparent);
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  position: relative;
  width: fit-content;
  z-index: 2;
}

section.my_section .scroll_anchor a {
  color: var(--secondary-color);
  padding: 0 28px;
  font-size: 16px;
  font-weight: 400;
  text-align: end;
  text-decoration: none;
  width: 100%;
  writing-mode: vertical-lr;
}


@media (max-width: 767.98px) {
    section.my_section .scroll_anchor {
        display: none;
    }
}

section.my_section .container_wrap {
  max-width: 1420px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 3rem;
}

@media (max-width: 767.98px) {
    section.my_section .container_wrap {
        padding: 0 1.5rem;
    }
}

section.my_section .container_wrap.img_bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    max-width: unset;
    padding: 0;
}

.main__title {
    font-size: calc(1.34375rem + 1.125vw);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
}

.main__title span,
.main__title::first-letter {
    color: var(--primary-color);
}

/* In-page anchors: offset for fixed header (see site.js scroll for same offset) */
#hero,
#section-module,
#destinations,
#hot-offers,
#cta-vacation,
#services-showcase,
#services,
#why-us,
#cta-exclusive,
#lead-form,
#lead-form-scroll,
#location {
    scroll-margin-top: 120px;
}

@media (max-width: 767.98px) {
    #hero,
    #section-module,
    #destinations,
    #hot-offers,
    #cta-vacation,
    #services-showcase,
    #services,
    #why-us,
    #cta-exclusive,
    #lead-form,
    #lead-form-scroll,
    #location {
        scroll-margin-top: 96px;
    }
}

.site_anchor_hot_offers {
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Order tracking */
.card-timeline {
    box-shadow: none;
    width: 100%;
    background: none;
    z-index: 0;
}

.bs4-order-tracking {
    margin-bottom: 30px;
    overflow: hidden;
    color: #878788;
    padding-left: 0;
    margin-top: 30px;
}

.bs4-order-tracking li {
    list-style-type: none;
    font-size: 13px;
    width: 20%;
    float: left;
    position: relative;
    font-weight: 400;
    color: #878788;
    text-align: center;
}

.bs4-order-tracking li:first-child:before {
    margin-left: 15px !important;
    padding-left: 11px !important;
    text-align: left !important;
}

.bs4-order-tracking li:last-child:before {
    margin-right: 5px !important;
    padding-right: 11px !important;
    text-align: right !important;
}

.bs4-order-tracking li > div {
    color: #fff;
    width: 29px;
    text-align: center;
    line-height: 29px;
    display: block;
    font-size: 12px;
    background: #878788;
    border-radius: 50%;
    margin: auto;
}

.bs4-order-tracking li:after {
    content: '';
    width: 150%;
    height: 2px;
    background: #878788;
    position: absolute;
    left: 0%;
    right: 0%;
    top: 15px;
    z-index: -1;
}

.bs4-order-tracking li:first-child:after {
    left: 50%;
}

.bs4-order-tracking li:last-child:after {
    left: 0% !important;
    width: 0% !important;
}

.bs4-order-tracking li.active {
    font-weight: bold;
    color: var(--primary-color);
}

.bs4-order-tracking li.active > div {
    background: var(--primary-color);
}

.bs4-order-tracking li.active:after {
    background: var(--primary-color);
}

@media (max-width: 480px) {
    .bs4-order-tracking li {
        font-size: 11px !important;
    }
}
