@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
    --c_primary: #D61C1C;
    --c_secondary: #0A0A0A;
    --c_body: #FFFFFFB2;
    --c_heading: #FFFFFF;
    --c_success: #05A66C;
    --c_warning: #E4A910;
    --c_danger: #D33B30;
    --c_border: #E6E6E6;
    --c_grey: #171616;
    --c_grey_dark: #0A0A0A;
    --c_black: #000000;
    --c_white: #FFFFFF;
    --f_body: "DM Sans", serif;
    --transition: all 0.3s ease-in-out 0s;
}

* {
    margin: 0;
    outline: none !important;
    box-sizing: border-box;
    font-family: var(--f_body);
    word-break: break-word;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background-color: var(--c_black);
}

::-webkit-scrollbar-thumb {
    background-color: #2E2D2D;
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--c_body);
    font-family: var(--f_body);
    background-color: var(--c_grey_dark);
}

b,
strong {
    font-weight: 700;
}

a,
a:hover {
    color: var(--c_body);
    transition: var(--transition);
}

a,
a:not(.btn_n):hover {
    text-decoration: none;
}

:is(h1, h2, h3, h4, h5, h6) {
    font-weight: 600;
    line-height: 1.2;
    color: var(--c_heading);
    font-family: var(--f_body);
    margin-bottom: 0;
}

:where(h1, h2, h3, h4, h5, h6):not(:last-child) {
    margin-bottom: 15px;
}

h1 {
    font-size: 60px;
}

h2 {
    font-size: 50px;
}

h3 {
    font-size: 36px;
}

h4 {
    font-size: 30px;
}

h5 {
    font-size: 25px;
}

h6 {
    font-size: 22px;
}

@media screen and (max-width: 1549.98px) {
    h1 {
        font-size: 52px;
    }
}

@media screen and (max-width: 1399.98px) {
    h1 {
        font-size: 45px;
    }
}

@media screen and (max-width: 1199.98px) {
    h1 {
        font-size: 40px;
    }
}

@media screen and (max-width: 991.98px) {
    h1 {
        font-size: 35px;
    }
}

@media screen and (max-width: 767.98px) {
    h1 {
        font-size: 30px;
    }
}

p,
li {
    margin: 0;
}

:where(p, ul, ol, li):not(:last-child) {
    margin-bottom: 15px;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    max-width: 100%;
}

figure {
    margin: 0;
}

.ut_spc,
.u_spc {
    padding-top: 90px;
}

.ub_spc,
.u_spc {
    padding-bottom: 90px;
}

.uht_spc,
.uh_spc {
    padding-top: 60px;
}

.uhb_spc,
.uh_spc {
    padding-bottom: 60px;
}

.content {
    overflow: clip;
    min-height: calc(100vh - 417px);
}

.c_primary {
    color: var(--c_primary);
}

.btnn {
    gap: 10px;
    font-size: 18px;
    font-weight: 500;
    min-height: 55px;
    padding: 5px 35px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: none !important;
    border: 1px solid transparent;
    transition: var(--transition);
    text-transform: initial;
    letter-spacing: 0px;
    position: relative;
    text-indent: 0px;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
}

.btnn.sm {
    font-size: 16px;
    min-height: 48px;
}

.btnn:hover {
    box-shadow: 0 0 20px 2px rgba(0, 0, 0, .1) !important;
}

.btn_primary {
    color: var(--c_black);
    background-color: var(--c_primary);
    border-color: var(--c_primary);
}

.btn_primary:is(:hover, :focus) {
    color: var(--c_black);
    background-color: var(--c_primary);
    border-color: var(--c_primary);
}

.btn_white.br {
    color: var(--c_white);
    border: 1px solid var(--c_white);
    background: transparent;
}

.btn_white.br:is(:hover, :focus) {
    color: var(--c_white);
    border: 1px solid var(--c_white);
    background: transparent;
}

label {
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 500;
    color: #5E5E5E;
    display: block;
    margin: 0;
}

label.error {
    position: absolute;
    top: 100%;
    left: 0;
    color: #ff0000;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.2px;
    margin: 2px 0 0;
}

.control_group:not(:last-child) {
    margin-bottom: 24px;
}

input,
select,
textarea {
    width: 100%;
    font-size: 20px;
    font-weight: 300;
    color: var(--c_white);
    background-color: transparent;
    border: 1px solid #3B3B3B;
    outline: none !important;
    border-radius: 0px;
    box-shadow: none;
}

input {
    height: 65px;
    padding: 5px 24px;
}

select {
    height: 65px;
    padding: 0 24px;
}

textarea {
    height: 180px;
    padding: 10px 24px;
    resize: none;
}

input::placeholder,
select::placeholder,
textarea::placeholder {
    color: #FFFFFF99;
    opacity: 1;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--c_primary);
}

:is(input, select, textarea, .control-group).empty_value {
    border-color: #ff0000;
}

.form_btn {
    margin-top: 35px;
}

.form_btn .btnn {
    width: auto;
    min-width: 240px;
}

.conta_iner {
    width: 90%;
    max-width: 1210px;
    margin-inline: auto;
}

@media (max-width: 767.98px) {
    .conta_iner {
        width: 100%;
        padding: 0 15px;
    }
}

.conta_iner.full_width {
    width: 100%;
    max-width: 100%;
    padding-inline: 50px;
}

@media (max-width: 1399.98px) {
    .conta_iner.full_width {
        padding-inline: 40px;
    }
}

@media (max-width: 767.98px) {
    .conta_iner.full_width {
        padding-inline: 15px;
    }
}

/* Header | Start */
.site_header {
    top: 0;
    left: 0;
    width: 100%;
    position: fixed;
    background: linear-gradient(to bottom, #171616 0%, rgba(23, 22, 22, 0) 100%);
    transition: var(--transition);
    z-index: 999;
}

.site_header.scrolled {
    background: rgb(16 16 16 / 80%);
}

.site_header .conta_iner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
    padding-block: 10px;
    min-height: 120px;
}

.site_header.scrolled .conta_iner {
    padding-block: 0;
    min-height: 100px;
}

.site_header .site_logo {
    display: inline-flex;
    cursor: pointer;
}

.site_header .site_logo figure {
    height: 50px;
    display: inline-flex;
}

.site_header .site_logo figure img {
    height: 100%;
}

.site_header .site_menu ul {
    display: inline-flex;
    align-items: center;
    gap: 30px;
}

.site_header .site_menu ul li {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    display: inline-flex;
    margin-bottom: 0;
}

.site_header .site_menu ul li a {
    color: var(--c_white);
    cursor: pointer;
}

.site_header .site_menu ul li:hover a,
.site_header .site_menu ul .current-menu-item a {
    color: var(--c_white);
}

.site_header .site_menu ul li:hover a {
    text-decoration: underline;
}

.site_header .site_menu ul .current-menu-item a {
    font-weight: 600;
}

/* Header | End */

/* Footer | Start */
.site_footer .footer_top {
    background-color: var(--c_grey_dark);
}

.site_footer .footer_top .conta_iner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.site_footer .footer_top .single {
    max-width: 342px;
}

.site_footer .footer_top .single:first-child {
    max-width: 265px;
}

.site_footer .footer_top .single .site_logo {
    display: inline-flex;
    margin-bottom: 15px;
}

.site_footer .footer_top .single .site_logo figure {
    height: 58px;
    display: inline-flex;
}

.site_footer .footer_top .single .site_logo figure img {
    height: 100%;
}

.site_footer .footer_top .single p {
    font-size: 14px;
    color: #D6D6D6;
    line-height: 1.5;
}

.site_footer .footer_top .single h2 {
    color: var(--c_white);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 1.5;
}

.site_footer .footer_top .single h2:first-child {
    margin-bottom: 30px;
}

.site_footer .footer_top .single h2:not(:first-child) {
    margin-top: 20px;
}

.footer_menu li {
    font-size: 14px;
    line-height: 1.5;
}

.footer_menu li:not(:last-child) {
    margin-bottom: 20px;
}

.footer_menu li a {
    width: 100%;
    display: flex;
    color: #D6D6D6;
    cursor: pointer;
}

.footer_menu li a:hover {
    color: var(--c_white);
}

.social_icons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.social_icons li {
    display: inline-flex;
    margin-bottom: 0;
}

.social_icons li a {
    width: 24px;
    height: 24px;
    font-size: 14px;
    color: var(--c_black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #FCF5E8;
    border-radius: 50%;
    cursor: pointer;
}

.social_icons li a:hover {
    background-color: var(--c_white);
}

.site_footer .copywrite {
    text-align: center;
    background-color: #131212;
    line-height: 1.5;
    padding: 18px 0;
}

.site_footer .copywrite p {
    font-size: 14px;
}

/* Footer | End */


/* Business */
.page_banner_sc {
    display: flex;
    align-items: flex-end;
    padding: 140px 0 35px;
    position: relative;
    min-height: 515px;
    z-index: 1;
}

.page_banner_sc::before {
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 75%;
    position: absolute;
    background: linear-gradient(180deg, rgba(23, 22, 22, 0) 0%, rgba(23, 22, 22, 0.9) 100%);
    z-index: 1;
}

.page_banner_sc .conta_iner {
    position: relative;
    z-index: 2;
}

.page_banner_sc h1 {
    font-weight: 500;
    letter-spacing: 0.2px;
    text-align: center;
}

.bg_grid {
    inset: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    z-index: -1;
}

.bg_grid figure {
    height: 100%;
    display: flex;
    position: relative;
}

.bg_grid figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    inset: 0;
}

.bg_grid figure:nth-child(1) {
    grid-area: 1 / 1 / 2 / 2;
}

.bg_grid figure:nth-child(2) {
    grid-area: 2 / 1 / 3 / 2;
}

.bg_grid figure:nth-child(3) {
    grid-area: 1 / 2 / 3 / 3;
}

.bg_grid figure:nth-child(4) {
    grid-area: 1 / 3 / 2 / 4;
}

.bg_grid figure:nth-child(5) {
    grid-area: 2 / 3 / 3 / 4;
}

.deals_sc {
    background-color: var(--c_grey);
}

.deals_sc .conta_iner {
    display: flex;
    flex-wrap: wrap;
}

.deals_sc .lt_s {
    width: 330px;
    min-width: 330px;
}

.deals_sc .rt_s {
    width: calc(100% - 330px);
    padding-left: 30px;
}

.deals_aside {
    background-color: #1D1C1C;
}

.deals_aside>li {
    font-size: 22px;
}

.deals_aside>li:not(:last-child) {
    margin-bottom: 10px;
}

.deals_aside>li>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: capitalize;
    color: #FFFFFFCC;
    line-height: 1.25;
    padding: 13px 20px 13px 30px;
    gap: 15px;
}

.deals_aside>li>a:hover {
    color: var(--c_white);
}

.deals_aside>li.active {
    background: linear-gradient(90deg, #292929 0%, #1D1C1C 100%);
}

.deals_aside>li.active a {
    color: var(--c_white);
}

.deals_aside>li.active a.deal_btn {
    pointer-events: none;
}

.deals_aside .sub_item {
    padding-bottom: 10px;
}

.deals_aside .sub_item>li {
    font-size: 16px;
    margin-bottom: 0;
}

.deals_aside .sub_item>li>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: capitalize;
    color: #FFFFFF99;
    padding: 8px 30px;
    line-height: 1.25;
    gap: 15px;
}

.deals_aside .sub_item>li>a:hover,
.deals_aside .sub_item>li>a.active {
    color: var(--c_white);
}

.deals_aside>li:has(.sub_item)>a::after {
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px;
    width: 14px;
    height: 14px;
}

.deals_aside>li:has(.sub_item).active>a::after {
    transform: scaleY(-1);
}

.deals_list:not(.active) {
    display: none !important;
}

.deals_list>li {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.deals_list>li:not(:last-child) {
    margin-bottom: 40px;
}

.deals_list>li figure {
    width: 250px;
    min-width: 250px;
    height: 195px;
    overflow: hidden;
    position: relative;
}

.deals_list>li figure>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.deals_list>li figure span {
    top: 9px;
    left: 9px;
    position: absolute;
    z-index: 1;
}

.deals_list li .info {
    align-self: center;
    width: calc(100% - 250px);
    padding-left: 20px;
}

.deals_list li .info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 500;
}

.deals_list li .info ul {
    list-style: disc;
    margin-left: 20px;
}

.deals_list li .info ul li {
    line-height: 1.25;
}

.deals_list li .info ul li:not(:last-child) {
    margin-bottom: 6px;
}

.deals_list li .info hr {
    height: 1px;
    width: 250px;
    border: none;
    background-color: #2C2C2C;
    margin: 15px 0;
    opacity: 1;
}

.content_sc h6 {
    margin-top: 30px;
}

.text_link {
    font-size: 18px;
    display: inline-flex;
    line-height: 1.25;
    color: #FFFFFF99;
}

.text_link:hover {
    color: var(--c_white);
    text-decoration: underline !important;
}

.deal_modal .modal-dialog {
    max-width: 655px;
}

.deal_modal .modal-content {
    margin-top: 62px;
    background-color: #171616;
    border-radius: 0;
}

.deal_modal .modal-body {
    padding: 15px;
    position: relative;
}

.deal_modal .btn-close {
    left: 50%;
    top: -20px;
    width: 43px;
    height: 43px;
    position: absolute;
    transform: translate(-50%, -100%);
    background: #262626 url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    color: var(--c_white);
    border-radius: 5px;
    padding: 0;
    opacity: 1;
}

.deal_top {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    justify-content: flex-end;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 15px 15px 12px;
    margin-bottom: 20px;
    position: relative;
    min-height: 195px;
    z-index: 1;
}

.deal_top::before {
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 40%;
    position: absolute;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 35.34%, #000000 100%);
    z-index: -1;
}

.deal_top h2 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

.deal_top p {
    font-size: 12px;
}

.deal_info {
    padding: 15px;
    background-color: #201E1E;
}

.deal_info h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.deal_info h3:not(:first-child) {
    margin-top: 20px;
}

.deal_info p {
    font-size: 14px;
    line-height: 1.45;
}

.deal_info ul {
    list-style: disc;
    margin-left: 20px;
}

.deal_info li {
    font-size: 14px;
    line-height: 1.45;
}

.deal_info li:not(:last-child) {
    margin-bottom: 6px;
}


/* Elementor */
.hero_section.elementor-element::before {
    height: 50%;
    top: auto;
    bottom: 0;
}

@keyframes iconMove5 {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    30% {
        opacity: 0
    }

    31% {
        -webkit-transform: translateX(1.25rem);
        transform: translateX(1.25rem)
    }

    32% {
        -webkit-transform: translateX(-1.25rem);
        transform: translateX(-1.25rem)
    }

    84% {
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

.elementor-button-wrapper .elementor-button {
    /* backdrop-filter: blur(64px); */
    min-width: 236px;
    /* clip-path: polygon(0 0%, calc(100% - 22px) 0%, 100% 22px, 100% 100%, 22px 100%, 0% calc(100% - 22px)); */
    position: relative;
}

.elementor-button-wrapper .elementor-button .elementor-button-content-wrapper {
    gap: 10px;
}

.elementor-button-wrapper .elementor-button .elementor-button-icon {
    display: inline-flex;
    position: relative;
    top: -1px;
}

.elementor-button-wrapper .elementor-button:hover .elementor-button-icon {
    animation: iconMove5 ease-out .35s;
}

/* .elementor-button-wrapper .elementor-button::after,
.elementor-button-wrapper .elementor-button::before {
    content: "";
    top: 0;
    width: 2px;
    height: 100%;
    position: absolute;
    background-color: var(--c_white);
} */

/* .elementor-button-wrapper .elementor-button::after {
    left: 20px;
    transform-origin: bottom right;
    transform: rotate(-45deg)
}

.elementor-button-wrapper .elementor-button::before {
    right: 20px;
    transform-origin: top left;
    transform: rotate(-45deg)
} */

.hero_btn .elementor-button .elementor-button-content-wrapper {
    justify-content: space-between !important;
}

.hero_btn .elementor-button .elementor-button-content-wrapper .elementor-button-icon {
    display: inline-flex;
}

.fitness_video .e-hosted-video {
    aspect-ratio: initial !important;
    height: 780px;
}

.fitness_video .e-hosted-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fitness_video2 .e-hosted-video {
    aspect-ratio: initial !important;
    height: 735px;
}

.fitness_video2 .e-hosted-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dream_sc.elementor-element::before {
    background-image: linear-gradient(180deg, #0A0A0A 2.68%, rgba(10, 10, 10, 0.8) 47.35%, rgba(10, 10, 10, 0) 100%) !important;
}

.dream_sc.elementor-element::after {
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 25%;
    position: absolute;
    background: linear-gradient(0, #0A0A0A 2.68%, rgba(10, 10, 10, 0.8) 47.35%, rgba(10, 10, 10, 0) 100%);
}

.retreat_single {
    top: 50px;
    position: sticky !important;
}

.retreat_sc {
    position: relative !important;
    z-index: 1 !important;
}

.retreat_sc .dynamic-background {
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    transition: var(--transition);
    z-index: -1;
}

.blur_bg {
    backdrop-filter: blur(94px);
}

.contact_form .elementor-button-wrapper {
    text-align: right;
}

.contact_form .elementor-button {
    position: relative;
    padding: 0 !important;
}

.contact_form .elementor-button .wpcf7-submit {
    border: none;
    min-width: 236px;
    background: transparent;
    height: auto;
}

.contact_form .elementor-button .wpcf7-spinner {
    top: 15px;
    right: 100%;
    position: absolute;
}

.e-con-full .e-con>.e-con-inner {
    max-width: 100% !important;
}

.modal-backdrop {
    --bs-backdrop-opacity: 0.8;
}

@media screen and (max-width: 1549.98px) {
    .site_header .site_menu ul li {
        font-size: 17px;
    }

    .site_header .conta_iner {
        min-height: 100px;
    }

    .site_header.scrolled .conta_iner {
        min-height: 80px;
        padding-block: 5px;
    }

    .fitness_video .e-hosted-video {
        height: 650px;
    }

    .fitness_video2 .e-hosted-video {
        height: 650px;
    }

    .page_banner_sc {
        padding: 120px 0 30px;
        min-height: 450px;
    }
}

@media screen and (max-width: 1449.98px) {
    .site_header .site_menu ul li {
        font-size: 16px;
    }

    .elementor-button-wrapper .elementor-button {
        min-width: 210px;
    }

    input {
        height: 55px;
        padding: 5px 20px;
    }

    input,
    select,
    textarea {
        font-size: 18px;
    }

    .control_group:not(:last-child) {
        margin-bottom: 20px;
    }

    .deals_aside>li {
        font-size: 20px;
    }
}

@media screen and (max-width: 1399.98px) {
    .retreat_single {
        top: 40px;
    }

    .fitness_video .e-hosted-video {
        height: 600px;
    }

    .fitness_video2 .e-hosted-video {
        height: 550px;
    }

    input {
        height: 50px;
        padding: 5px 15px;
    }

    input,
    select,
    textarea {
        font-size: 16px;
    }

    .control_group:not(:last-child) {
        margin-bottom: 15px;
    }

    .contact_form .elementor-button .wpcf7-submit {
        min-width: 210px;
    }

    .page_banner_sc {
        padding: 100px 0 25px;
        min-height: 350px;
    }

    .deals_sc .lt_s {
        width: 280px;
        min-width: 280px;
    }

    .deals_aside>li>a {
        padding: 12px 15px 12px 20px;
    }

    .deals_aside>li {
        font-size: 18px;
    }

    .deals_aside .sub_item>li {
        font-size: 16px;
    }

    .deals_aside .sub_item>li>a {
        padding: 7px 20px;
    }

    .deals_list li .info h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .deals_list li .info ul li {
        font-size: 14px;
    }

    .text_link {
        font-size: 16px;
    }

    .deals_list li .info hr {
        margin: 12px 0;
    }

    .deals_list>li figure {
        width: 220px;
        min-width: 220px;
        height: 175px;
    }

    .deals_list li .info {
        width: calc(100% - 220px);
    }
}

@media screen and (max-width: 1199.98px) {
    .site_header .site_menu ul li {
        font-size: 15px;
    }

    .retreat_single {
        top: 60px;
    }

    .deals_sc .conta_iner {
        gap: 30px;
    }

    .deals_sc .lt_s {
        width: 100%;
        min-width: 100%;
    }

    .deals_sc .rt_s {
        width: 100%;
        padding-left: 0;
    }
}

@media screen and (max-width: 991.98px) {
    body {
        font-size: 15px;
    }

    .ut_spc,
    .u_spc {
        padding-top: 60px;
    }

    .ub_spc,
    .u_spc {
        padding-bottom: 60px;
    }

    .site_header .site_menu ul li {
        font-size: 15px;
    }

    .retreat_single {
        top: 60px;
    }

    .fitness_video .e-hosted-video,
    .fitness_video2 .e-hosted-video {
        aspect-ratio: 3 / 2 !important;
        height: auto;
    }

    .retreat_single {
        position: initial !important;
    }

    .site_footer .footer_top .single:first-child {
        max-width: 250px;
    }

    .site_footer .footer_top .single {
        max-width: 220px;
    }

    .page_banner_sc {
        min-height: 400px;
    }
}

@media screen and (max-width: 767.98px) {
    body {
        font-size: 14px;
    }

    .ut_spc,
    .u_spc {
        padding-top: 50px;
    }

    .ub_spc,
    .u_spc {
        padding-bottom: 50px;
    }

    .uhb_spc,
    .uh_spc {
        padding-bottom: 50px;
    }

    .uht_spc,
    .uh_spc {
        padding-top: 50px;
    }

    .site_menu {
        top: 0;
        left: 0;
        position: absolute;
        padding: 85px 15px 20px;
        background-color: var(--c_secondary);
        display: none;
        width: 100%;
        z-index: -1;
    }

    .site_header.scrolled {
        background-color: var(--c_secondary);
    }

    .site_header .conta_iner {
        min-height: 80px;
        padding-block: 5px;
    }

    .site_header .site_menu ul {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .site_header .site_menu ul li {
        width: 100%;
    }

    .site_header .site_menu ul li a {
        width: 100%;
        padding: 5px 0;
    }

    .site_hamburgur {
        width: 35px;
        height: 35px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--c_grey);
        border-radius: 5px;
        font-size: 18px;
    }

    .site_hamburgur:hover {
        background: var(--c_primary);
    }

    .elementor-button-wrapper .elementor-button {
        min-width: 180px;
    }

    .hero_btn .elementor-button-wrapper .elementor-button {
        min-width: 1px;
    }

    .elementor-button-wrapper .elementor-button {
        clip-path: polygon(0 0%, calc(100% - 16px) 0%, 100% 16px, 100% 100%, 16px 100%, 0% calc(100% - 16px));
    }

    .elementor-button-wrapper .elementor-button::after {
        left: 14px;
    }

    .elementor-button-wrapper .elementor-button::before {
        right: 14px;
    }

    .site_footer .footer_top .single:first-child,
    .site_footer .footer_top .single {
        max-width: 100%;
    }

    .site_footer .footer_top .single h2 {
        margin-bottom: 10px;
    }

    .site_footer .footer_top .conta_iner {
        gap: 40px 30px;
    }

    .site_footer .footer_top .single h2:first-child {
        margin-bottom: 20px;
    }

    .footer_menu li:not(:last-child) {
        margin-bottom: 12px;
    }

    .site_footer .copywrite p {
        font-size: 12px;
    }

    .site_footer .copywrite {
        padding: 25px 0;
    }

    .contact_form .elementor-button .wpcf7-submit {
        min-width: 180px;
    }

    .fitness_video .e-hosted-video,
    .fitness_video2 .e-hosted-video {
        aspect-ratio: 1 / 1.5 !important;
        height: auto;
    }

    .deals_list {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }

    .deals_list>li {
        width: calc(100% / 2 - (15px / 2));
        padding: 10px 10px 15px 10px;
        background-color: var(--c_grey_dark);
        border-radius: 10px;
        gap: 15px;
    }

    .deals_list>li figure {
        width: 100%;
        min-width: 100%;
        border-radius: 10px;
        height: 160px;
    }

    .deals_list li .info {
        width: 100%;
        padding: 0 10px;
    }

    .deals_list li .info h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .deals_list>li:not(:last-child) {
        margin-bottom: 0;
    }

    .page_banner_sc {
        min-height: 300px;
    }

    .deal_info h3 {
        font-size: 16px;
    }

    .deal_modal .btn-close {
        top: 20px;
        right: 20px;
        width: 35px;
        height: 35px;
        z-index: 20;
    }

    .deal_modal .modal-content {
        margin-top: 0;
    }
}

@media screen and (max-width: 575.98px) {
    .deals_list>li {
        width: 100%;
    }
}