/* BASICS */

@media screen and (max-width: 1600px) {
    :root {
        --gap-60: 57px;
        --gap-50: 47px;
        --gap-40: 37px;
        --gap-30: 27px;
        --gap-25: 22px;

        --font-30: 23px;
        --font-25: 19px;
        --font-18: 13px;
    }

    .btn-md {
        height: 52px;
        min-width: 240px;
    }
}

@media screen and (max-width: 1440px) {
    .btn-md {
        height: 48px;
        min-width: 200px;
    }

    :root {
        --gap-60: 52px;
        --gap-50: 42px;
        --gap-40: 32px;
        --gap-30: 22px;
        --gap-25: 17px;

        --font-30: 22px;
        --font-25: 18px;
        --font-18: 12px;
    }

}

@media screen and (max-width: 1280px) {
    .btn-md {
        height: 46px;
        min-width: unset;
    }

    .btn-md:not(.btn-arrow) {
        padding: 0 var(--gap-40);
    }
}

@media screen and (min-width: 1140px) {
    .mobile-only {
        display: none !important;
    }

}

@media screen and (max-width: 1139px) {


    :root {
        --gap-60: 48px;
        --gap-50: 38px;
        --gap-40: 28px;
        --gap-30: 18px;
        --gap-25: 13px;

        --font-30: 20px;
        --font-25: 17px;
        --font-18: 11px;
        --section-gap: calc(var(--gap-50) * 2);
    }


    /* mobile menu */
    #main-menu {
        display: none;
    }

    .mobile-menu {
        pointer-events: none;
        position: fixed;
        top: 64px;
        left: 0;
        opacity: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background-color: #fff;
        transition-property: transform, opacity;
        transition-duration: 300ms;
        transform: translateY(30%);
        border-top: 1px solid var(--color-primary);
        padding: calc(var(--gap-40) * 2) 0;
    }

    #mobile-main-menu li {
        min-height: 46px;
        padding: 10px calc(var(--gap-40) * 2);
    }

    .offer-link-btn {
        margin: var(--gap-25) auto 0;
        min-width: 240px;
        display: inline-flex;
    }

    #mobile-main-menu li a {
        font-size: 16px;
        font-weight: 900;
    }

    .header-left > .offer-link-btn {
        display: none;
    }


    .mobile-menu-button span {
        background-color: var(--color-secondary);
        display: block;
        transition: 300ms;
        position: absolute;
    }

    .mobile-menu.active {
        opacity: 1;
        display: flex;
        flex-direction: column;
        transform: none;
        pointer-events: auto;
    }

    .mobile-menu-button.active {
        color: var(--color-primary);
    }


    .mobile-menu-button.active span:nth-child(1) {
        top: 50%;
        left: 0;
        margin: auto;
        transform: translateY(-50%) rotate(45deg);

    }

    .mobile-menu-button.active span:nth-child(2) {
        width: 23px;
        bottom: 50%;
        left: 0;
        margin: auto;
        transform: translateY(50%) rotate(-45deg);
    }

    .mobile-menu-button {
        position: relative;
        pointer-events: auto;
        display: inline-flex;
        cursor: pointer;
        align-items: center;
        transition: transform, 300ms;
        z-index: 3;
        padding-left: 30px;
    }

    .mobile-menu-button span:nth-child(1) {
        top: 4px;
        width: 23px;
        height: 2px;
        left: 0;
    }

    .mobile-menu-button span:nth-child(2) {
        bottom: 4px;
        width: 18px;
        height: 2px;
        left: 5px;
    }

    .season-caption {
        font-size: 20px;
        font-weight: 500;
    }

    .mobileMenu-button-caption {
        line-height: 1;
        font-size: 20px;
        text-transform: uppercase;
        font-weight: 500;
        color: var(--color-secondary);
    }


    .container {
        padding: 0 var(--gap-30);
    }

    .header-right {
        display: flex;
        align-items: center;
    }

    .header-right .mobile-only {
        display: flex;
        align-items: center;
    }

    header {
        transition: top 300ms, width 300ms, left 300ms, right 300ms, border-radius 300ms;
    }

    header.RWD-active {
        top: 0;
        left: 0;
        right: 0;
        border-radius: 0;
    }
}


@media screen and (max-width: 639px) {

    .season-button {
        width: 100px;
        height: 40px;
    }

    .season-button-thumb {
        width: 30px;
        left: 6px;
        top: 5px;
        height: 30px;
    }

    /*.summer-time .season-button:hover .season-button-thumb,*/
    .winter-time .season-button-thumb {
        left: calc(100% - 6px - 30px);
    }

    header {
        top: 10px;
    }

    .logo {
        max-width: 56px;
    }

    .mobile-menu-button {
        position: relative;
        display: inline-flex;
        cursor: pointer;
        align-items: center;
        transition: transform, 300ms;
        z-index: 3;
        padding-left: 30px;
    }

    .mobile-menu-button span:nth-child(1) {
        top: 3px;
        width: 23px;
        height: 2px;
        left: 0;
    }

    .mobile-menu-button span:nth-child(2) {
        bottom: 3px;
        width: 18px;
        height: 2px;
        left: 5px;
    }

    .season-caption {
        font-size: 14px;
        font-weight: 500;
    }

    .mobileMenu-button-caption {
        font-size: 14px;
    }


    .mobile-menu {
        top: 58px;
    }

    :root {
        --gap-60: 40px;
        --gap-50: 30px;
        --gap-40: 20px;
        --gap-30: 15px;
        --gap-25: 10px;

        --font-30: 24px;
    }
}

@media screen and (max-width: 480px) {
    :root {
        --gap-60: 35px;
        --gap-50: 25px;
        --gap-40: 18px;
        --gap-30: 13px;
        --gap-25: 10px;

        --font-30: 20px;
    }

}

/* BREAKPOINTS */
@media screen and (max-width: 1900px) {

}

@media screen and (max-width: 1750px) {
    .post-wrapper {
        padding: var(--gap-25);
    }

    .offer-list-right {
        padding-left: var(--gap-25);
    }


    .post-list {
        margin: calc(var(--gap-25) * -1);
    }
}

@media screen and (max-width: 1670px) {
    .offer-item-title {
        font-size: calc(var(--font-25) - 3px);
    }
}

@media screen and (max-width: 1600px) {
    .mainSlider-box {
        width: 43%;
    }

    .offer-item-title {
        font-size: var(--font-25);
    }
}

@media screen and (max-width: 1569px) {


}

@media screen and (max-width: 1488px) {
    .mainSlider-box {
        width: 50%;
    }
}

@media screen and (max-width: 1440px) {
    .offer-list .offer-item {
        width: 33.333%;
    }

    .footer-socials {
        height: 60px;
    }

    .offer-item-title {
        font-size: calc(var(--font-25) - 1px);
    }

    .post-title, .post-category {
        font-size: 20px;
    }

    .offer-item {
        padding: 5px;
    }

    .post-wrapper {
        padding: var(--gap-25) 10px;
    }

    .post-list {
        margin: calc(var(--gap-25) * -1) -10px;
    }

    .offer-list {
        margin: -5px;
    }

    .container {
        padding: 0 var(--gap-40);
    }

    .form-element {
        min-height: 60px;
        font-size: 18px;
        padding: 0 15px;
    }

    .btn-lg {
        min-height: 60px;
    }

    .form-col {
        padding: 15px;
    }

    .form-cols {
        margin: -15px;
    }

    .offer-categories-list {
        padding: var(--gap-40);
    }
}

@media screen and (max-width: 1280px) {
    .post-category-wrapper {
        top: 5px;
        right: 10px;
    }

    .offer-list-table .top {
        flex-wrap: wrap;
    }

    .offer-list-table {
        gap: 0;
        margin: -10px;
        flex-wrap: wrap;
    }

    .offer-list-table .col {
        padding: 10px;
        width: calc(50% - (var(--gap-25) / 2));
    }

    .contact-info {
        padding-left: var(--gap-50);
    }

    .mainSlider-box {
        width: 57%;
    }

    .offer-item {
        width: 33.333%;
    }

    .footer-bottom-content {
        font-size: 19px;
    }

    .post:hover .post-arrow {
        padding-left: 20px;
        width: 56px;
        margin-left: 10px;

    }

    .post-arrow {
        width: 36px;
        height: 36px;
        border-radius: 18px;
    }
}

@media screen and (min-width: 1140px) {
    /*.footer-content {*/
    /*    height: unset !important;*/
    /*}*/
}

@media screen and (max-width: 1139px) {
    .top-banner-content .btn {
            min-height: 46px;
    }

    .offer-link-btn {
        min-height: 46px;
        font-size: 16px;
        border: none;
        background: #fff !important;
        justify-content: flex-start;
        font-weight: 900;
        margin: 0;
        text-align: left;
        padding: 10px calc(var(--gap-40) * 2);
    }

    .mobile-only {
        display: block;
    }

    .btn-close span:nth-child(1) {
        transform: rotate(45deg);
    }

    .btn-close span:nth-child(2) {
        transform: rotate(-45deg);
    }

    .btn-close span {
        width: 30px;
        height: 2px;
        background: #fff;
        display: block;
        position: absolute;
        inset: 0;
        margin: auto;
    }

    .btn-close {
        position: absolute;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        top: -15px;
        border: none;
        right: 10px;
        background: var(--color-secondary);
    }

    .aside-toggle {
        margin-bottom: 15px;
    }

    .offer-categories-list {
        opacity: 0;
        transition: all 300ms;
        pointer-events: none;
        position: fixed !important;
        width: 300px !important;
        left: -300px !important;
        top: 120px !important;
        bottom: 5vh !important;
    }

    .offer-categories-list.active {
        left: var(--gap-40) !important;
        opacity: 1;
        pointer-events: auto;
    }

    .offer-categories-wrapper {
        width: 0 !important;
        min-height: unset !important;
        min-width: unset !important;
        height: unset !important;
    }

    .offer-list-section {
        margin-top: calc(var(--section-gap) * 2);
    }

    .offer-list-right {
        padding-left: 0;
        width: 100%;
    }

    .subpage.blog {
        padding-top: calc(var(--section-gap) * 2);
    }

    .featured-posts {
        flex-direction: column;
        justify-content: center;
    }

    .featured-posts-left {
        width: 100%;
        padding-right: 0;
    }

    .featured-posts-header {
        margin-bottom: var(--gap-40);
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .featured-posts-right {
        margin-top: var(--gap-40);
        display: flex;
        gap: 20px;
        align-items: stretch;
        width: 100%;
    }

    .featured-posts-right .post-wrapper + .post-wrapper {
        margin-top: 0;
    }

    .post-wrapper {
        width: 50%;
    }

    .footer-bottom-content {
        font-size: 18px;
    }

    /*
     .footer-title {
        position: relative;
    }

    .footer-title:after {
        content: "\f054";
        font-family: var(--fa-style-family, "Font Awesome 6 Free");
        font-weight: var(--fa-style, 600);
        width: 27px;
        height: 19px;
        display: block;
        position: absolute;
        transition: transform, 500ms;
        top: 50%;
        right: var(--gap-25);
        transform: translateY(-50%) rotate(90deg);
    }

    .footer-title.active:after {
        transform: translateY(-50%) rotate(90deg) scale(-1);
    }
    */
    .mainSlider-arrow-inner {
        width: 50px;
        color: #000;
        height: 50px;
    }

    .offerSlider-arrow-next:hover .mainSlider-arrow-inner, .offerSlider-arrow-prev:hover .mainSlider-arrow-inner {
        width: 70px;
    }

    .footer-address {
        font-size: 16px;
    }

    .icon-slider-arrow-right, .icon-slider-arrow-left {
        width: 16px;
    }

    .form-element {
        font-size: 16px;
    }

    .banner-text {
        font-size: calc(var(--font-18) + 3px);
    }

    .cadre-section-right {
        padding-right: 60px;
    }


    .mainSlider-box-holder {
        display: none;
    }

    .mainSlider-nav {
        display: none;
    }

    .mainSlider-nav + .mainSlider .mainSlider-content {
        padding-left: 0;
    }

    .mainSlider-title {
        line-height: 1.4;
        margin-bottom: 0;
    }

    .mainSlider-content {
        display: flex;
        align-items: flex-end;
        padding-bottom: 60px;
    }


}

@media screen and (max-width: 1000px) {
    .offer-list-table {
        gap: 0;
        margin: -10px;
        flex-wrap: wrap;
    }

    .post-category-wrapper {
        top: 5px;
        right: 10px;
        max-width: calc(100% - 60px);
    }

    .offer-list-table .top {
        flex-wrap: wrap;
    }

    .offer-list-table .col {
        padding: 10px;
        width: 100%;
    }

    .contact-form {
        width: 100%;
    }

    .contact-info {
        width: 100%;
    }

    .contact-section {
        flex-direction: column;
        margin-top: calc(var(--section-gap) * 2);
        margin-bottom: calc(min(10vh, 200px) * -1);
    }

    .footer-bottom-content {
        font-size: 15px;
    }

    .text-image-section .image {
        padding-left: var(--gap-25);
    }

    .text-image-section .text-wrapper {
        padding-right: var(--gap-25);
    }

    .mainSlider-box {
        display: none;
    }

    .form-col {
        width: 50%;
    }

    .footer-col {
        padding: 0;
        max-width: 500px;
        margin: 0 auto;
        width: 100% !important;
    }

    .footer-cols {
        gap: var(--gap-60);
        flex-direction: column;
    }

    .footer-col.col1 .footer-logos-list {
        display: none;
    }

    .footer-logos-list {
        display: flex;
        justify-content: center;
    }

    .social-icon {
        height: 37px;
    }
}

@media screen and (max-width: 950px) {

}

@media screen and (max-width: 900px) {
    .aboutUs-banner-inner {
        max-width: unset;
        justify-content: center;
        width: 100%;
        min-height: 450px;
        height: 50%;
    }

    .banner-text {
        width: 100%;
    }

    .banner-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .banner-content-inner .btn {
        margin-top: var(--gap-25);
    }

    .aboutUs-banner-content:before {
        width: 100%;
        height: 65%;
        min-height: 500px;
        clip-path: polygon(0 0, 100% 0, 100% 60%, 0% 100%);
    }

    .text-image-section .image {
        padding-left: 0;
        width: 100%;
    }

    .text-image-section .text-wrapper {
        padding-right: 0;
        width: 100%;
        margin: 0 auto;
    }

    .text-image-section-inner {
        flex-wrap: wrap;
        gap: var(--gap-60);
    }

    .footer-bottom-content {
        font-size: 14px;
    }

    .form-element {
        min-height: 54px;
    }

    .btn-lg {
        min-height: 54px;
    }

    .toggle-row-text {
        font-size: 16px;
    }


    .offer-top-text {
        margin: 0 auto;
        font-size: 16px;
        margin-bottom: var(--section-gap);
    }

    .toggle-row-title {
        font-size: 20px;
    }

    .banner-text {
        font-size: 16px;
        padding-right: 0;
    }

    .cadre-text {
        font-size: 18px;
    }

    .cadre-section-right {
        padding-right: min(60px, 13%);
    }

    .cadre-section-inner {
        flex-direction: column;
    }

    .cadre-section-left, .cadre-section-right {
        width: 100%;
    }

    .cadre-section-left {
        text-align: center;
        padding-right: 0;
        max-width: 500px;
        margin: 0 auto var(--section-gap);
    }

    .cadre-section-right {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .section-title {
        font-size: calc(var(--font-25) + var(--font-18) - 3px);
    }

    .footer-title {
        font-size: calc(var(--font-25) + var(--font-18) - 3px);

    }

    .friends-list {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: var(--gap-60);
    }

    .friend-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 280px;
        width: 100%;
    }

    .offer-banner-right {
        display: none;
    }

    .offer-banner-inner {
        padding-top: var(--section-gap);
        height: unset;
        align-items: center;
        min-height: 100vh;

    }

    .offer-banner {
        display: flex;
        align-items: center;
        background-color: var(--color-secondary);

    }

    .offer-banner-left {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .offer-banner-title + .offer-banner-title {
        margin-top: 10%;
    }
}

@media screen and (max-width: 850px) {

}

@media screen and (max-width: 767px) {
    .offer-list .offer-item,
    .offer-item {
        width: 50%;
    }

    .offer-item-title {
        font-size: calc(var(--font-25) - 2px);
    }

    .offer-list-section .section-header {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

}

@media screen and (max-width: 639px) {
    .toggle-row-title {
        font-size: 18px;
    }

    .section-title, .footer-title {
        font-size: calc(var(--font-25) + 10px);
    }

    .subpage.privacy-policy {
        padding-top: calc(74px + var(--gap-60));
    }

    .featured-posts-right {
        flex-wrap: wrap;
    }

    .post-list-header {
        text-align: center;
    }

    .categories-filter-list {
        justify-content: center;
    }

    .post-wrapper {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }


    .deepwater svg {
        width: 18px;
    }

    .footer-bottom-content {
        font-size: 12px;
    }

    .form-col {
        width: 100%;
    }

    .contact-info-title {
        font-size: var(--font-25);
    }

    .contact-text {
        font-size: 18px;
    }

    .form-element {
        min-height: 48px;
    }

    .btn-lg {
        min-height: 48px;
    }

    .offer-slider-section .section-header {
        text-align: center;
        display: flex;
        flex-direction: column-reverse;
    }

    .offer-slider .offer-item {
        max-width: 320px;
        margin: 0 auto;
    }

    .offer-slider-timer-wrapper {
        display: none;
    }

    .offer-slider-nav {
        justify-content: center;
    }

    .offer-slider-arrows {
        padding-right: 0;
    }

    .form-element-row .btn {
        min-width: unset;
    }
}

@media screen and (max-width: 560px) {
    .btn-lg {
        font-size: 14px;
    }

    .offer-item .btn {
        min-height: 44px;
    }

    .contact-info-col {
        width: 100%;
    }

    .offer-list .offer-item,
    .offer-item {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .contact-info-cols {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 500px) {

}

@media screen and (max-width: 480px) {
    .offer-list-table {
        font-size: 12px;
    }

    .mobile-menu-button.active span:nth-child(2) {
        width: 14px;
    }

    .text-image-section .images-gallery .img-wrapper {
        padding: 2px;
    }

    .text-image-section-inner .images-gallery {
        margin: -2px;
    }

    .footer-bottom-content {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .season-button {
        width: 82px;
        height: 32px;
    }

    .season-button-thumb {
        width: 26px;
        left: 4px;
        top: 3px;
        height: 26px;
    }

    /*.summer-time .season-button:hover .season-button-thumb,*/
    .winter-time .season-button-thumb {
        left: calc(100% - 4px - 26px);
    }

    header {
        top: 10px;
    }

    .logo {
        max-width: 50px;
    }

    .season-caption {
        font-size: 12px;
        font-weight: 500;
    }

    .mobileMenu-button-caption {
        font-size: 12px;
    }

    .mobile-menu-button span:nth-child(1) {
        top: 2px;
        width: 14px;
        height: 2px;
        left: 0;
    }

    .mobile-menu-button span:nth-child(2) {
        bottom: 2px;
        width: 9px;
        height: 2px;
        left: 5px;
    }

    header {
        left: var(--gap-25);
        right: var(--gap-25);
    }

    .mobile-menu-button {
        padding-left: 17px;
    }
}

@media screen and (max-width: 420px) {
    .offer-categories-list.active {
        left: 0 !important;
    }

    .offer-categories-list {
        left: -100% !important;
        width: 100% !important;
    }
}

@media screen and (max-width: 360px) {
    .text-image-section .images-gallery .img-wrapper {
        width: 100%;
        padding: 5px 0;
    }

    .text-image-section-inner .images-gallery {
        margin: -5px 0;
    }
}