/* margin and padding */
.pt-40 {
    padding-top: 40px;
}

/* media */
@media (min-width: 992px) {
    .mt-20 {
        margin-top: -20px;
    }
}

@media (max-width: 575px) {
    .pt-40 {
        padding-top: 0;
    }
}
/* end margin and padding */

.swiper-slide:not(:first-child) {
    display: block;
}

.hidden,
.hidden > *{
    display: none;
}

html.overflow-menu,
html.overflow-menu body {
    overflow: hidden;
}

/*bg*/
.bg_black {
    background-color: var(--color-black);
}

.bg_beige {
    background-color: var(--color-beige);
}
/*end bg*/

svg path,
svg circle {
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.custom_offset > *:last-child {
    margin-right: 0 !important;
    margin-bottom: 0 !important;
}

sup {
    font-size: 70%;
    line-height: 1;
    position: relative;
    vertical-align: top;
}

.upper {
    text-transform: uppercase;
}

.no-padd {
    padding: 0;
}

.section {
    position: relative;
}

.section.full-height {
    height: 100vh;
}

/* media */
@media (max-width: 991px) {
    .p_12 {
        padding: 0 12px;
    }
}

/*animation*/
@media (min-width: 1200px) {
    .item-animation .animate-item {
        opacity: 0;
        transform: translateY(5vw);
        transition: opacity .7s ease-out, transform .7s ease-out;
    }

    .site-ready .item-animation .animate-item.animated {
        opacity: 1;
        transform: translateY(0);
    }
}
/*end animation*/

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* FORM ELEMENTS */
/*-------------------------------------------------------------------------------------------------------------------------------*/
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: var(--color-text);
    opacity: 1;
}

input:-moz-placeholder, textarea:-moz-placeholder {
    color: var(--color-text);
    opacity: 1;
}

input::-moz-placeholder, textarea::-moz-placeholder {
    color: var(--color-text);
    opacity: 1;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    color: var(--color-text);
    opacity: 1;
}

input, textarea, select {
    border-radius: 0;
    background: none;
    border: none;
    margin: 0;
    width: 100%;
    padding: 0;
}

textarea {
    display: block;
    resize: none;
    overflow: auto;
}

select::-ms-expand {
    display: none;
}

.input-field-wrapper {
    position: relative;
}

.input-placeholder {
    display: inline-block;
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 20px;
    font-size: 22px;
    line-height: 33px;
    font-weight: 500;
    color: var(--color-text);
    overflow: hidden;
    white-space: nowrap;
    backface-visibility: hidden;
    transform: translateY(-50%);    
    transition: var(--transition);
    pointer-events: none;
}

.input-field-wrapper.focus .input-placeholder,.input-field-wrapper.value .input-placeholder {
    z-index: 5;
    font-size: 16px;
    line-height: 24px;
    top: 0;
    left: 0;
    transform: translateY(-100%);
    padding: 0;
}

.input {
    background-color: #fff;
    color: var(--color-black);
    font-size: 22px;
    font-weight: 500;
    height: 58px;
    border: 1px solid #DFDFDF;
    border-radius: 6px;
    line-height: 58px;
    padding: 0 20px;
    transition: var(--transition);
    text-overflow: ellipsis;
}

.input:focus {
    border-color: var(--color-orange);
}

textarea.input {
    height: 176px;
    padding: 10px 16px;
    line-height: 27px;
}

.input-field-wrapper.invalid .input {
    border: 1px solid #CF2E2E;
}

.form .row > div:not(:last-child) {
    margin-bottom: 30px;
}

.checkbox-entry {
    display: inline-block;
    cursor: pointer;
    margin: 0;
    padding: 0;
    min-width: 30px;
    min-height: 22px;
}

.checkbox-entry input {
    display: none;
}

.checkbox-entry span {
    position: relative;
    font-size: 22px;
    font-weight: 500;
    line-height: 20px;
    padding-left: 36px;
    display: block;
    color: var(--color-text);
    transition: var(--transition);
}

.checkbox-entry span:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 2px;
    border: 1px solid var(--color-orange);
    transition: var(--transition);
}

.checkbox-entry span:after {
    content: "";
    position: absolute;
    left: 5px;
    top: 5px;
    width: 10px;
    height: 10px;
    background-color: var(--color-orange);
    z-index: 1;
    transform: scale(0);
    backface-visibility: hidden;
    transition: var(--transition);
}

.checkbox-entry input:checked + span:after {
    opacity: 1;
    transform: scale(1);
}

/* media */
@media (max-width: 1199px) {
    .input {
        font-size: 16px;
        height: 48px;
        line-height: 48px;
        padding: 0 16px;
    }

    .input-placeholder {
        font-size: 16px;
        line-height: 24px;
    }

    .input-field-wrapper.focus .input-placeholder,.input-field-wrapper.value .input-placeholder {
        font-size: 12px;
        line-height: 18px;
    }

    .form .row > div:not(:last-child) {
        margin-bottom: 16px;
    }

    .checkbox-entry span {
        font-size: 16px;
    }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* END ELEMENTS */
/*-------------------------------------------------------------------------------------------------------------------------------*/

/*simple page*/
.header + .simple_section {
    margin-top: 236px;
}

.simple-page.size-2 {
    max-width: 912px;
    margin: 0 auto;
}

.simple-page {
    position: relative;
    display: block;
    width: 100%;
}

.simple-page p {
    color: var(--color-grey);
}

.simple-page > * {
    margin-bottom: 30px;
}

.simple-page > :last-child {
    margin-bottom: 0;
}

.simple-page h1,
.simple-page h2,
.simple-page h3,
.simple-page h4,
.simple-page h5,
.simple-page h6 {
    margin-bottom: 16px;
}

.simple-page h1 span,
.simple-page h2 span,
.simple-page h3 span,
.simple-page h4 span,
.simple-page h5 span,
.simple-page h6 span {
    color: var(--color-orange);
}

.simple-page figure {
    margin: 46px 0;
}

.simple-page blockquote {
    margin-bottom: 46px;
}

.simple-page figure > img {
    margin-bottom: 10px;
}

.simple-page figure figcaption {
    font-size: 16px;
    line-height: 24px;
}

.simple-page iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 500px;
    max-height: calc(56.25vw - 30px);
    border: 0;
}

.simple-page picture {
    position: relative;
    display: block;
}

.simple-page img {
    position: relative;
    width: auto;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 26px;
}

.simple-page table {
    border-collapse: collapse;
    border: 1px solid var(--color-text);
    table-layout: fixed;
    width: 100%;
}

.simple-page table tr {
    border-bottom: 1px solid var(--color-text);
    margin: 0;
}

.simple-page table th {
    font-weight: 700;
    border-bottom: 1px solid var(--color-text);
}

.simple-page table th,
.simple-page table td {
    vertical-align: middle;
    text-align: left;
    padding: 10px 20px;
    height: 50px;
}

.simple-page table td {
    border-right: 1px solid var(--color-text);
}

.simple-page table td:first-child {
    width: 40%;
}

.simple-page table td a {
    white-space: normal;
    font-weight: 700;
}

.simple-page table td span {
    font-weight: 700;
}

/* media */
@media (max-width: 1560px) {
    .header + .simple_section {
        margin-top: 160px;
    }
}

@media (max-width: 1199px) {
    .simple-page > *,
    .simple-page figure,
    .simple-page blockquote {
        margin-bottom: 20px;
    }

    .simple-page figure {
        margin: 20px 0;
    }

    .simple-page table th,
    .simple-page table td {
        padding: 5px 10px;
        height: 40px;
    }
}
/*end simple page*/

/*swiper*/
.swiper-entry,
.swiper-control-wrapper {
    position: relative;
}

.swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    opacity: 0;
}

.swiper-entry.overflow-visible .swiper-container {
    overflow: visible;
}

.swiper-container:not(.swiper-no-swiping) .swiper-wrapper {
    cursor: url(../img/drag.png) 16 9, ew-resize;
}

.swiper-button-lock + .swiper-button-lock + .swiper-container .swiper-wrapper,
.swiper-controls-hide .swiper-container:not(.swiper-no-swiping) .swiper-wrapper {
    cursor: default;
}

.swiper-controls-hide .swiper_controls {
    margin: 0!important;
    padding: 0!important;
}

.swiper-wrapper.swiper-wrapper-margin {
    margin-bottom: 40px;
}

.swiper-slide {
    background-size: cover;
    background-position: center center;
    position: relative;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.arr_prev,
.arr_next {
    position: relative;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    height: 12px;
    width: 28px;
    background: transparent;
    border: 0;
    z-index: 2;
    outline: none;
    color: transparent;
    transition: var(--transition);
    backface-visibility: hidden;
}

.arr_prev i,
.arr_next i {
    display: inline-block;
    position: absolute;
    height: 12px;
    width: 28px;
    top: 50%;
    left: 50%;
    margin-top: -6px;
    margin-left: -14px;
    overflow: hidden;
}

.arr_prev i::before,
.arr_next i::before {
    content: '';
    width: 100%;
    height: 2px;
    background-color: var(--color-text);
    position: absolute;
    z-index: 1;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
    backface-visibility: hidden;
}

.arr_prev i::after,
.arr_next i::after {
    content: '';
    position: absolute;
    z-index: 1;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 6px;
    border-color: transparent transparent transparent var(--color-text);
    transition: var(--transition);
    backface-visibility: hidden;
}

.arr_prev i::after {
    left: 0;
    right: auto;
    border-width: 6px 6px 6px 0;
    border-color: transparent var(--color-text) transparent transparent;
}

.swiper-entry.hide-arrow .swiper-button-prev,
.swiper-entry.hide-arrow .swiper-button-next {
    display: none;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
    opacity: 0.5;
}

.swiper-scrollbar-drag {
    background: var(--color-orange);
    border-radius: 100px;
    transition: transform .8s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.swiper-horizontal > .swiper-scrollbar {
    position: relative;
    margin-top: 26px;
    left: 0;
    height: 14px;
    background: #f5f5f5;
    border-radius: 100px;
    width: calc((50vw + 50%) - 6px);
    margin-right: calc(50% - 50vw);
}

.swiper_controls {
    display: flex;
    align-items: center;
    height: auto;
    position: absolute;
    bottom: 0;
}

.custom-fraction-wrap {
    display: flex;
    align-items: center;
    margin: 0 30px;
}

.custom-fraction-wrap > * {
    font-size: 22px;
    line-height: 33px;
    font-weight: 500;
}

.custom-fraction-current:not(:empty):after {
    content: '/';
    font-size: inherit;
    color: inherit;
}

/* media */
@media (min-width: 992px) {
    .arr_prev:hover i::before,
    .arr_next:hover i::before {
        background-color: var(--color-orange);
    }

    .arr_prev:hover i::after {
        border-color: transparent var(--color-orange) transparent transparent;
    }

    .arr_next:hover i::after {
        border-color: transparent transparent transparent var(--color-orange);
    }
}

@media (max-width: 1199px) {
    .swiper_controls {
        position: relative;
        margin-top: 26px;
    }
}

@media (max-width: 991px) {
    .swiper_controls {
        justify-content: center;
        margin: 0 0 30px;
    }
}

@media (max-width: 575px) {
    .swiper-container {
        overflow: visible;
    }
}
/*end swiper*/

/* footer */
footer {
    position: relative;
    color: rgba(255, 255, 255, 0.75);
}

.footer_inner {
    padding: 130px 0 62px;
    background-color: var(--color-black);
    position: relative;
    z-index: 4;
}

.footer_row {
    --bs-gutter-y: 38px;
}

.footer_row .item {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.footer_row .footer_logo {
    margin-bottom: 60px;
}

.footer_row .footer_logo > img {
    max-width: 282px;
}

.footer_row .copy {
    margin-bottom: 24px;
}

.footer_row .copy,
.footer_row .link {
    font-size: 16px;
    line-height: 24px;
    max-width: 250px;
    color: var(--color-white);
}

.footer_row .link {
    text-decoration: underline;
    text-decoration-color: transparent;
}

.footer_row .title {
    color: var(--color-white);
    margin-bottom: 12px;
}

.footer_row .list {
    font-size: 0;
}

.footer_row .list > li {
    width: auto;
}

.footer_row .list > li:not(:last-child) {
    margin-bottom: 4px;
}

.footer_row .list a {
    font-weight: 500;
    font-size: 22px;
    line-height: 1.5;
}

.footer_row .social {
    margin-bottom: 54px;
}

.form-title {
    margin-bottom: 20px;
    color: var(--color-white);
}

.newsletter {
    margin-bottom: 48px;
}

.newsletter .input {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    padding: 0 134px 0 20px;
}

.newsletter .input-placeholder {
    color: var(--color-white);
}

.newsletter .form_group {
    position: relative;
    font-size: 0;
    max-width: 382px;
}

.newsletter .form_group > * {
    display: inline-block;
    vertical-align: middle;
}

.newsletter .input-field-wrapper {
    width: 100%;
}

.newsletter .input-field-wrapper.value .input {
    background: inherit;
}

.newsletter .input-field-wrapper.focus:not(.invalid)::before {
    border-color: #FFFFFF;
}

.newsletter .form_group .btn {
    min-width: 114px;
    position: absolute;
    right: 0;
}

/* media */
@media (min-width: 992px) {
    .footer_links .links:hover,
    .footer_links_big .links:hover {
        color: var(--color-red);
    }

    .footer_row .link:hover {
        text-decoration-color: currentColor;
    }

    .footer_row .list a:hover {
        color: var(--color-orange);
    }
}

@media (max-width: 1560px) {
    .footer_inner {
        padding: 80px 0 60px;
    }
}

@media (max-width: 1199px) {
    .footer_row .list a {
        font-size: 16px;
    }

    .footer_row .copy, .footer_row .link {
        font-size: 12px;
        line-height: 18px;
    }

    .newsletter .input {
        padding: 0 130px 0 16px;
    }

    .form-title {
        margin-bottom: 12px;
    }

    footer .right_side {
        display: flex;
        flex-direction: column-reverse;
    }

    .newsletter {
        margin: 48px 0 0;
    }
}

@media (max-width: 991px) {
    .footer_row .footer_logo > img {
        max-width: 142px;
    }

    .footer_row .footer_logo {
        margin-bottom: 18px;
    }

    .footer_row .social {
        margin-bottom: 48px;
    }

    .footer_inner {
        padding: 90px 0;
    }
}

@media (max-width: 575px) {
    .newsletter .form_group {
        max-width: 100%;
    }
}
/* end footer */

/*social*/
.social {
    font-size: 0;
}

.social > li {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 1px solid rgba(205, 205, 205, 0.5);
    display: inline-block;
    vertical-align: middle;
    transition: var(--transition);
    backface-visibility: hidden;
}

.social.type2 > li {
    border-color: var(--color-text);
}

.social > li a {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex!important;
    align-items: center;
    justify-content: center;
}

.social > li img,
.social > li svg {
    max-width: 80%;
    max-height: 80%;
}

.social > li:not(:last-child) {
    margin-right: 20px;
}

/*media*/
@media (min-width: 992px) {
    /*hover*/
    .social > li:hover {
        border-color: var(--color-orange);
    }
    .social > li:hover path {
        fill: var(--color-orange);
    }
}
/*end social*/

/*accordion*/
.faq::before {
    width: 14vw;
    max-width: 266px;
    height: 14vw;
    max-height: 266px;
    background-image: url('../img/faq-1.webp');
    background-position: center;
    top: 0;
    left: 50%;
    transform: translateY(-50%);
    z-index: -2;
}

.faq::after {
    width: 9vw;
    max-width: 176px;
    height: 9vw;
    max-height: 176px;
    background-image: url('../img/faq-2.webp');
    background-position: left bottom;
    bottom: 0;
    left: 0;
    transform: translate(-20%, 50%);
    z-index: -2;
}

.accordion {
    position: relative;
    z-index: 1;
}

.accordion-title {
    position: relative;
    padding: 0 80px 30px 0;
    transition: var(--transition);
    backface-visibility: hidden;
    cursor: pointer;
}

.accordion-title.active {
    padding-bottom: 16px;
}

.accordion-item {
    border-bottom: 1px solid #DFDFDF;
}

.accordion-inner {
    display: none;
}

.accordion-title i {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 32px;
    height: 32px;
}

.accordion-title i::before {
    content: "";
    width: 3px;
    height: 32px;
    background-color: var(--color-black);
    transition: all .3s ease-in-out;
    backface-visibility: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.accordion-title i::after {
    content: "";
    width: 32px;
    height: 3px;
    background-color: var(--color-black);
    transition: all .3s ease-in-out;
    backface-visibility: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.accordion-title.active i::before {
    height: 0;
}

.accordion-item {
    margin: 0 0 22px;
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-inner {
    padding: 0 0 26px 0;
    max-width: 95%;
}

.faq .faq_title {
    margin-bottom: 40px;
    max-width: 80%;
}

@media (min-width: 992px) {
    .accordion-title:hover {
        color: var(--color-orange);
    }
}

@media (max-width: 1560px) {
    .faq .faq_title {
        max-width: 100%;
    }
}

@media (max-width: 1199px) {
    .faq::before {
        width: 120px;
        height: 120px;
        background-position: right top;
        left: auto;
        right: 0;
    }
    .faq::after {
        content: none;
    }
}

@media (max-width: 991px) {
    .accordion-inner {
        max-width: 100%;
    }

    .accordion-title i {
        top: calc(50% - 15px);
        transform: translateY(-50%);
    }

    .accordion-title.active i {
        top: calc(50% - 8px);
    }
}
/*end accordion */

/*AUTOCOMPLETE*/
.pac-container {
    background: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.pac-container .pac-item {
    margin: 0;
    padding: 0 8px;
    border-top: 0;
    font-size: 16px;
    line-height: 40px;
    font-weight: 400;
    position: relative;
    display: block;
    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.pac-container .pac-item:nth-child(1) {
    border-top: none;
}

.pac-icon-marker {
    display: none !important;
}

.pac-item-query {
    font-size: 16px;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.pac-container.pac-logo:after {
    content: none;
}
/*END AUTOCOMPLETE*/

/*404*/
.not-found {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 130px 0 0;
    margin: 0;
    position: relative;
}

.not-found::before {
    width: 19vw;
    max-width: 350px;
    height: 19vw;
    max-height: 350px;
    background-image: url('../img/not-found-1.webp');
    background-position: left center;
    bottom: 0;
    left: 0;
}

.not-found::after {
    width: 12vw;
    max-width: 174px;
    height: 12vw;
    max-height: 174px;
    background-image: url('../img/not-found-2.webp');
    background-position: top right;
    top: 0;
    right: 0;
    transform: translateY(50%);
}

.not-found .content-block {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.thank_you .content-block::after {
    width: 14vw;
    max-width: 264px;
    height: 14vw;
    max-height: 264px;
    background-image: url('../img/thank-you.webp');
    background-position: right bottom;
    right: 0;
    bottom: 0;
    transform: translate(50%, 50%);
}

.not-found .content-block > *:not(:last-child) {
    margin-bottom: 18px;
}

.not-found .content-block .text {
    margin-bottom: 40px;
}

.not-found .btn {
    min-width: 156px;
}

/*media*/
@media (max-width: 1560px) {
    .not-found {
        padding: 100px 0 0;
    }
}

@media (max-width: 1199px) {
    .thank_you .content-block::after {
        content: none;
    }
}

@media (max-width: 991px) {
    .not-found {
        padding: 90px 0;
        height: auto;
    }

    .not-found::before {
        width: 112px;
        height: 112px;
        background-image: url('../img/not-found-3.webp');
    }

    .not-found::after {
        width: 100px;
        height: 100px;
        background-position: bottom right;
        top: auto;
        bottom: 0;
        transform: translateY(40%);
    }

    .not-found .content-block .text {
        margin-bottom: 30px;
    }

    .not-found .title {
        font-size: 26px;
    }
}
/*end 404*/

/* popular  */
.banner + .mt-140 {
    margin-top: 140px;
}

.popular {
    position: relative;
}

.popular.type-1::before {
    width: 13.542vw;
    max-width: 260px;
    height: 13.542vw;
    max-height: 260px;
    background-image: url('../img/decor-left.webp');
    background-position: center;
    left: 28px;
    top: 0;
    transform: translateY(-50%);
}

.popular.type-2::before {
    width: 10vw;
    max-width: 176px;
    height: 10vw;
    max-height: 176px;
    background-image: url('../img/meet-decor.webp');
    background-position: center;
    left: 0;
    top: 0;
    transform: translateY(-50%);
}

.popular.type-2::after {
    width: 15vw;
    max-width: 282px;
    height: 15vw;
    max-height: 282px;
    background-image: url('../img/meet-decor-2.webp');
    background-position: center;
    left: 24%;
    bottom: 0;
    transform: translateY(70%);
}

.popular.type-3::after {
    width: 6vw;
    max-width: 108px;
    height: 6vw;
    max-height: 108px;
    background-image: url('../img/concept-decor.webp');
    background-position: right top;
    right: 0;
    top: 0;
    transform: translateY(-50%);
}

.popular .inner {
    margin: 50px 0;
}

.content_box {
    max-width: 686px;
}

.content_box .btn {
    min-width: 228px;
}

.content_box .title {
    margin-bottom: 22px;
}

.content_box .text {
    margin-bottom: 40px;
}

.products_slider {
    max-width: 756px;
    margin: 0 auto;
}

.products_slider .img_wrapp {
    padding-bottom: 70.993%;
}

/* media */
@media (max-width: 1560px) {
    .banner + .mt-140 {
        margin-top: 90px;
    }
}

@media (max-width: 1199px) {
    .popular .inner {
        margin: 0;
    }

    .content_box .title {
        margin-bottom: 12px;
    }

    .content_box .text {
        margin-bottom: 26px;
    }

    .content_box .btn {
        min-width: 178px;
    }

    .popular.type-2::before {
        content: none;
    }
    
    .popular.type-2::after {
        width: 100px;
        height: 100px;
        background-image: url('../img/contact-decor.webp');
        left: auto;
        right: 0;
        bottom: 0;
    }

    .popular.type-3::after {
        content: none;
    }
}

@media (max-width: 991px) {
    .popular .inner {
        display: flex;
        flex-direction: column-reverse;
    }

    .products_slider {
        margin: 0 0 30px;
    }

    .popular.type-1::before {
        width: 108px;
        height: 142px;
        left: auto;
        right: 0;
        transform: translateY(-100%);
        background-image: url('../img/decor-left-mobile.webp');
        background-position: right center;
    }

    .banner + .mt-140 {
        margin-top: 40px;
    }
}
/* end popular */


/* img mask */
.mask {
    border-radius: 26px;
}

.bg_white {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(5px);
}
/* end img mask */

/* left right */
.left_right-section::before {
    width: 15.521vw;
    max-width: 298px;
    height: 15.521vw;
    max-height: 298px;
    background-image: url('../img/marbled.webp');
    background-position: left center;
    left: 0;
    top: 0;
    transform: translateY(-50%);
}

.left_right-section::after {
    width: 9.375vw;
    max-width: 180px;
    height: 9.375vw;
    max-height: 180px;
    background-image: url('../img/falling2.webp');
    background-position: center;
    right: 5%;
    top: 0;
    transform: translateY(-74%);
}

.left_right.offset2 {
    padding: 72px 0;
}

.left_right .left_side {
    max-width: 770px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.left_right .content_box {
    margin: 0 auto;
}

.left_right-box {
    --bs-gutter-y: 46px;
}

/* media */
@media (max-width: 991px) {
    .left_right.offset2 {
        padding: 90px 0;
    }

    .left_right .left_side {
        max-width: 75%;
        margin: 0;
    }

    .left_right-section::before {
        width: 194px;
        height: 194px;
        background-image: url('../img/marbled-mobile.webp');
        background-position: right center;
        left: auto;
        right: 0;
        transform: translateY(-50%);
    }

    .left_right-section::after {
        content: none;
    }
}
/* end left right */

/* news */
.banner + .news_categories-s {
    margin-top: 80px;
}

.news_categories {
    position: relative;
}

.news_categories::after {
    width: 14vw;
    max-width: 262px;
    height: 14vw;
    max-height: 262px;
    background-image: url('../img/categories-decor.webp');
    background-position: right center;
    right: 0;
    top: 0;
    transform: translateY(-50%);
}

.categories_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.categories_box .right_side {
    flex: 0 0 372px;
    margin-left: 12px;
}

.categories_box .left_side {
    display: flex;
    align-items: center;
}

.categories_box .left_side .title {
    font-size: 32px;
    margin-right: 30px;
}

.categories_wr {
    line-height: 1;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: -24px;
}

.categories_wr > * {
    margin-bottom: 24px;
}

.categories_wr > *:not(:last-child) {
    margin-right: 30px;
}

.search_form {
    position: relative;
    max-width: 372px;
    margin-left: auto;
}

.search_form .search-button,
.search_form .close-button {
    display: flex;
    align-items:center;
    justify-content: center;
    width: 28px;
    height: 28px;
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    z-index: 5;
    cursor: pointer;
    transition: var(--transition);
    backface-visibility: hidden;
}

.search_form .close-button,
.search_form.active .search-button {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.search_form.active .close-button {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.search_form #search {
    padding: 0 48px 0 16px;
    border-color: var(--color-orange);
}

/* media */
@media (min-width: 992px) {
    .search_form .search-button:hover path {
        stroke: var(--color-text);
    }

    .search_form .close-button:hover path {
        fill: var(--color-text);
    }
}

@media (max-width: 1560px) {
    .categories_box .right_side {
        flex: 0 0 310px;
    }

    .categories_wr > *:not(:last-child) {
        margin-right: 16px;
    }
}

@media (max-width: 991px) {
    .categories_box .left_side {
        flex-direction: column;
        align-items: flex-start;
    }

    .categories_box .left_side .title {
        margin: 0 0 14px 0;
    }

    .news_categories::after {
        width: 88px;
        height: 88px;
        background-image: url('../img/categories-decor-2.webp');
        transform: translateY(-92%);
    }
}

@media (max-width: 767px) {
    .categories_box {
        flex-direction: column;
    }

    .categories_box > * {
        flex: 0 0 100%;
        width: 100%;
    }

    .search_form {
        max-width: 100%;
    }

    .categories_wr {
        margin-bottom: 0;
    }

    .categories_wr > * {
        margin-bottom: 30px;
    }

    .categories_wr > *:not(:last-child) {
        margin-right: 12px;
    }

    .categories_box .right_side {
        margin-left: 0;
        flex: 0;
    }
}
/* end news */

/* posts wrapp */
.post::before {
    width: 204px;
    max-width: 204px;
    height: 204px;
    max-height: 204px;
    background-image: url('../img/simple-decor.webp');
    background-position: right top;
    right: 0;
    top: 0;
    transform: translateY(-24%);
}
.post_s::before {
    width: 14vw;
    max-width: 262px;
    height: 14vw;
    max-height: 262px;
    background-image: url('../img/post-decor.webp');
    background-position: left top;
    left: 0;
    top: 0;
}

.posts_decor::before {
    content: '';
    display: block;
    width: 100%;
    max-width: 508px;
    height: 50px;
    background-image: url('../img/est.webp');
    background-position: center;
    margin: 0 auto 76px;
}

.posts_title {
    margin-bottom: 30px;
}

.posts_row {
    --bs-gutter-y: 32px;
}

.posts_row .item {
    height: 100%;
    border-radius: 26px;
    background: #FFFFFF;
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.posts_row .top_side {
    position: relative;
}

.posts_row .tags {
    font-size: 0;
    position: absolute;
    left: 0;
    top: 8%;
    z-index: 1;
    pointer-events: none;
}

.posts_row .tags > span {
    font-family: 'Josefin Sans', sans-serif;
    color: var(--color-black);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: -0.04em;
    padding: 6px 22px 6px 12px;
    display: inline-block;
    vertical-align: middle;
    backdrop-filter: blur(20px);
    border-radius: 0px 50px 50px 0px;
}

.posts_row .tags > span:not(:last-child) {
    margin-right: 10px;
}

.posts_row .img_wrapp {
    padding-bottom: 49.413%;
}

.posts_row .bottom_side {
    padding: 40px;
}

.posts_row .bottom_side .date {
    color: var(--color-orange);
}

.posts_row .bottom_side > * {
    margin-bottom: 12px;
}

.posts_row .bottom_side .title {
    margin-bottom: 16px;
}

/* media */
@media (min-width: 992px) {
    .posts_row .bottom_side a:hover {
        color: var(--color-orange);
    }
}

@media (max-width: 1560px) {
    .posts_row {
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 40px;
    }

    .posts_decor::before {
        margin: 0 auto 58px;
    }
}

@media (max-width: 1199px) {
    .post_s::before,
    .post::before {
        content: none;
    }

    .posts_decor::before {
        height: 40px;
    }

    .posts_title {
        margin-bottom: 26px;
    }

    .posts_row .tags > span {
        font-size: 14px;
        padding: 6px 14px;
    }

    .posts_row .bottom_side {
        padding: 28px 16px;
    }

    .posts_row .bottom_side .title {
        margin-bottom: 12px;
    }

    .posts_row {
        --bs-gutter-y: 24px;
    }
}

@media (max-width: 575px) {
    .posts_row .img_wrapp {
        padding-bottom: 80.601%;
    }
}
/* end posts wrapp */

/* page title */
.page_title {
    margin-bottom: 40px;
}

/* media */
@media (max-width: 1560px) {
    .page_title {
        margin-bottom: 30px;
    }
}
/* end page title */

/* post */
.post {
    position: relative;
}

.back_btn {
    display: inline-block;
    position: absolute;
    left: 34px;
    top: 0;
    font-size: 22px;
    line-height: 1.5;
    font-weight: 500;
    color: var(--color-black);
    padding-left: 22px;
}

.back_btn::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4.5px 5px 4.5px 0;
    border-color: transparent var(--color-black) transparent transparent;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
    backface-visibility: hidden;
}

.post_banner {
    margin-bottom: 52px;
}

.post_banner .banner-align {
    height: 254px;
    padding-bottom: 38.91%;       
}

.post_desc {
   max-width: 912px;
   margin: 0 auto 30px; 
}

.post_desc .tags_wr {
    font-size: 0;
    margin-bottom: 36px;
}

.post_desc .tags_wr > li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 20px 6px 0;
}

.post_desc .tags_wr .date {
    color: var(--color-orange);
}

.post_desc .tags_wr .tag {
    color: var(--color-text);
}

.post_desc .tags_wr > li:last-child {
    margin-right: 0;
}

/* media */
@media (min-width: 992px) {
    .back_btn:hover {
        color: var(--color-orange);
    }

    .back_btn:hover:before {
        border-color: transparent var(--color-orange) transparent transparent;
    }
}

@media (max-width: 1560px) {
    .back_btn {
        left: 12px;
    }

    .post_banner {
        max-width: 960px;
        margin: 0 auto 52px;
    }

    .post_desc .tags_wr {
        margin-bottom: 20px;
    }
}

@media (max-width: 1199px) {
    .back_btn {
        position: relative;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 991px) {
    .post_banner {
        margin-bottom: 40px;
    }

    .post_desc {
        margin: 0 auto 16px; 
     }

     .post_desc .tags_wr {
        display: none;
     }
}

@media (max-width: 575px) {
    .back_btn {
        display: none;
    }

    .post_banner {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    .post_banner .mask {
        border-radius: 0;
    }
}
/* end post */

/* custom pagination */
.custom-pagination .arr.disabled {
    pointer-events: none;
    opacity: .5;

}

.custom-pagination ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}

.custom-pagination li:not(:last-child) {
    margin-right: 38px; 
}

.custom-pagination li > a,
.custom-pagination li.dott {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}

.custom-pagination li {
    position: relative;
    line-height: 1;
}

.custom-pagination li.active::after {
    content: '';
    width: 38px;
    height: 38px;
    border-radius: 100%;
    border: 1px solid var(--color-orange);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: -1;
    pointer-events: none;
}

/* media */
@media (min-width: 992px) {
    .custom-pagination li:not(.active) a:hover {
        color: var(--color-orange);
    }
}

@media (max-width: 1560px) {
    .custom-pagination ul {
        margin-top: 40px;
    }
}

@media (max-width: 991px) {
    .custom-pagination ul {
        margin-top: 34px;
    }
}

@media (max-width: 575px) {
    .custom-pagination li:nth-child(3),
    .custom-pagination li:nth-child(4),
    .custom-pagination li:nth-child(5),
    .custom-pagination li:nth-child(7) {
        display: none;
    }

    .custom-pagination li > a, .custom-pagination li.dott {
        font-size: 22px;
        line-height: 34px;
    }

    .custom-pagination .arr_prev,
    .custom-pagination .arr_next {
        width: 64px;
        height: 64px;
        border-radius: 100%;
        border: 1px solid var(--color-text);
    }

    .custom-pagination li.active a {
        color: var(--color-orange);
    }

    .custom-pagination li.active::after {
        content: none;
    }

    .custom-pagination li:not(:last-child) {
        margin-right: 26px; 
    }
}
/* end custom pagination */

/* custom banner */
.custom_banner {
    padding: 114px 0;
    height: 700px;
}

.custom_banner.type2 {
    padding: 100px 0;
    height: 460px;
}

.custom_banner::before {
    content: '';
    width: 586px;
    height: 100%;
    background-image: url('../img/hand_green.webp');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
    position: absolute;
    right: 0;
    bottom: -48%;
    z-index: 1;
    pointer-events: none;
}

.custom_banner.type2::before {
    content: none;
}

.custom_banner .bg {
    background-size: contain!important;
    background-position: left top!important;
    background-repeat: repeat!important;
    background-blend-mode: multiply;
}

.custom_banner .inner {
    max-width: 1398px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.custom_banner.type2 .inner {
    max-width: 892px;
}

.custom_banner .inner .pre_title {
    margin-bottom: 16px;
}

.custom_banner .inner .title {
    margin-bottom: 44px;
}

.custom_banner .inner .single_btn {
    min-width: 238px;
}

/* media */
@media (max-width: 1560px) {
    .custom_banner {
        height: 400px;
    }
}

@media (max-width: 991px) {
    .custom_banner,
    .custom_banner.type2 {
        height: auto;
    }

    .custom_banner::before {
        content: none;
    }

    .custom_banner .inner .title {
        margin-bottom: 36px;
    }
}
/* end custom banner */

/* about block */
.bg-white-main {
    max-width: 1750px;
    padding: 180px 0;
    margin: 0 auto;
    position: relative;
}

.bg-white-main.type-2 {
    max-width: 100%;
}

.bg-white-main::before {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(5px);
    border-radius: 26px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.bg-white-main.type-2::before {
    border-radius: 0;
}

.about_inner::before {
    width: 11.875vw;
    max-width: 228px;
    height: 11.875vw;
    max-height: 228px;
    background-image: url('../img/about-decor.webp');
    background-position: center;
    top: 0;
    left: 16%;
    transform: translateY(-50%);
    z-index: -2;
}

.about.type-2 .about_inner::before {
    width: 6vw;
    max-width: 108px;
    height: 6vw;
    max-height: 108px;
    background-image: url('../img/concept-decor.webp');
    background-position: top right;
    top: 0;
    left: auto;
    right: 0;
    transform: translateY(0%);
}

.about_inner::after {
    width: 11.146vw;
    max-width: 214px;
    height: 11.146vw;
    max-height: 214px;
    background-image: url('../img/about-decor2.webp');
    background-position: center;
    bottom: 0;
    right: 0;
    transform: translate(50%, 50%);
    z-index: -2;
}

.about.type-2 .about_inner::after {
    width: 20vw;
    max-width: 350px;
    height: 20vw;
    max-height: 350px;
    background-image: url('../img/gift-decor.webp');
    background-position: center;
    right: 12%;
    transform: translateY(50%);
}

.about_row {
    --bs-gutter-x: 100px;
    --bs-gutter-y: 34px;
}

.about_img {
    max-width: 754px;
}

.about_img .img_wrapp {
    padding-bottom: 70.993%;
}

.about .top_side {
    max-width: 688px;
    margin-bottom: 34px;  
}

.about .top_side .title {
    margin-bottom: 20px;
}

.benefits {
    --bs-gutter-y: 30px;
}

.benefits .item {
    height: 100%;
    max-width: 300px;
}

.benefits .icon {
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
}

.benefits .title {
    margin-bottom: 2px;
}

/* media */
@media (max-width: 1560px) {
    .about_row {
        --bs-gutter-x: 60px
    }

    .bg-white-main {
        padding: 150px 0;
    }

    .about .top_side .title {
        margin-bottom: 16px;
    }

    .about .top_side {
        margin-bottom: 30px;
    }

    .benefits .icon {
        margin-bottom: 10px;
    }

    .about_inner::after {
        transform: translate(0%, 50%);
    }
}

@media (max-width: 1199px) {
    .about_row {
        --bs-gutter-x: 1.5rem;
    }

    .bg-white-main {
        padding: 90px 0;
        position: relative;
    }

    .bg-white-main::before {
        border-radius: 0;
    }

    .benefits .item {
        max-width: 100%;
    }

    .about_inner::before,
    .about_inner::after {
        width: 100px;
        height: 100px;
    }

    .about.type-2 .about_inner::before {
        content: none;
    }

    .about.type-2 .about_inner::after {
        width: 200px;
        height: 200px;
        background-image: url('../img/gift-decor-2.webp');
        background-position: left center;
        right: auto;
        left: 0;
        transform: translateY(50%);
    }
}
/* end about block */

/* mission */
.mission_inner {
    position: relative;
}

.mission_inner::before {
    width: 8.125vw;
    max-width: 156px;
    height: 8.125vw;
    max-height: 156px;
    background-image: url('../img/miss_decor.webp');
    background-position: center;
    left: 0;
    top: 0;
    transform: translate(-50%, -50%);
}

.mission.type-2 .mission_inner::before {
    top: 50%;
}

.mission_inner::after {
    width: 15vw;
    max-width: 280px;
    height: 15vw;
    max-height: 280px;
    background-image: url('../img/miss_decor-2.webp');
    background-position: center;
    right: 0;
    bottom: 0;
    transform: translate(50%, 50%);
}

.mission.type-2 .mission_inner::after {
    width: 14vw;
    max-width: 200px;
    height: 14vw;
    max-height: 200px;
    background-image: url('../img/card-decor.webp');
}

.mission_content {
    position: relative;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
    padding: 0 12px;
}

.mission.type-2 .mission_content {
    max-width: 1226px;
}

.mission_content::before {
    content: '';
    width: 100%;
    max-width: 508px;
    height: 50px;
    background-image: url('../img/est.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    margin: 0 auto 46px;
}

.mission_content .title {
    margin-bottom: 18px;
}

.mission.type-2 .title {
    margin-bottom: 60px;
}

.mission.type-2 .btn_box {
    font-size: 0;
}

.mission.type-2 .btn_box > .btn:first-child {
    margin-right: 10px;
}

.mission.type-2 .btn_box .btn {
    min-width: 250px;
}

.mission_content .desc {
    color: var(--color-text);
}

/* media */
@media (max-width: 1560px) {
    .mission_inner::before {
        transform: translate(0%, -50%);
    }
    
    .mission_inner::after {
        transform: translate(0%, 50%);
    }

    .mission.type-2 .title {
        margin-bottom: 40px;
    }
}

@media (max-width: 1199px) {
    .mission_inner::before,
    .mission_inner::after {
        content: none;
    }
    .mission_content::before {
        height: 40px;
        margin: 0 auto 38px;
    }

    .mission.type-2 .mission_inner {
        position: static;
    }

    .mission.type-2 .mission_inner::after {
        width: 90px;
        height: 90px;
        content: '';
        transform: translate(0%,0%);
    }

    .mission.type-2 .btn_box {
        display: inline-flex;
        flex-direction: column;
    }

    .mission.type-2 .btn_box > .btn:first-child {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .mission.type-2 .btn_box .btn {
        min-width: 200px;
    }
}

/* end mission */

/* media */
@media (max-width: 1799px) {
    .left_content::before {
        left: 12px;
        width: 140px;
    }  
}

@media (max-width: 1560px) {
    .left_content::before {
        bottom: 100px;
    }  

    .left_content {
        padding: 100px 0;
    }
}

@media (max-width: 1199px) {
    .left_content::before,
    .left_content::after {
        content: none;
    }  
}

@media (max-width: 991px) {
     .left_content-row {
        --bs-gutter-y: 46px;
     }

     .left_content-row .img_side {
        margin: 0 auto;
     }

     .left_content {
        padding: 60px 0 100px;
    }
} */
/* end left content */

/* contact */
.contact {
    position: relative;
}

.contact::after {
    width: 14.1vw;
    max-width: 270px;
    height: 14.1vw;
    max-height: 270px;
    background-image: url('../img/basil-2.webp');
    background-position: left center;
    bottom: 0;
    left: 0; 
}

.contact_row {
    --bs-gutter-y: 84px;
}

.contact .left_side {
    max-width: 568px;
    position: relative;
}

.contact .left_side::after {
    width: 7.5vw;
    max-width: 144px;
    height: 7.5vw;
    max-height: 144px;
    background-image: url('../img/falling-top.webp');
    background-position: center;
    bottom: 0;
    right: 0; 
    transform: translateY(100%);
}

.contact .left_side .title {
    margin-bottom: 40px;
}

.contact .left_side .links {
    margin-bottom: 90px;
}

.contact .left_side .links > li:not(:last-child) {
    margin-bottom: 20px;
}

.contact .left_side .links a {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    overflow-wrap: break-word;
}

.contact_form {
   max-width: 754px; 
}

.contact_form .form_title {
    text-align: center;
    display: none;
    margin-bottom: 26px;
}

.contact_form button {
    min-width: 194px;
}

.contact.type2::after {
    width: 6vw;
    max-width: 106px;
    height: 6vw;
    max-height: 106px;
    background-image: url('../img/inquire-2.webp');
    background-position: right center;
    left: auto;
    right: 0;
    bottom: 36%;
}

.contact.type2 .left_side {
    position: relative;
    height: 100%;
}

.contact.type2 .left_side::after {
    width: 14vw;
    max-width: 262px;
    height: 14vw;
    max-height: 262px;
    background-image: url('../img/inquire.webp');
    background-position: right bottom;
    right: 0;
    bottom: 0;
    transform: translate(0%, 50%);
}

/* media */
@media (min-width: 992px) {
    .contact .left_side .links a:hover {
        color: var(--color-orange);
    }
}

@media (max-width: 1560px) {
    .contact .left_side .title {
        margin-bottom: 30px;
    }
}

@media (max-width: 1199px) {
    .contact:not(.type2) .left_side::after {
        content: none;
    }

    .contact .left_side .links > li:not(:last-child) {
        margin-bottom: 12px;
    }

    .contact .left_side .links {
        margin-bottom: 40px;
    }

    .contact_form button {
        min-width: 152px;
    }

    .contact.type2::after {
        content: none;
    }
}

@media (max-width: 991px) {
    .contact_form .form_title {
        display: block;
    }

    .contact.type2 .left_side::after {
        width: 170px;
        height: 170px;
        background-image: url('../img/inquire-3.webp');
        background-position: top right;
        right: 0;
        bottom: auto;
        top: 0;
        transform: translate(0%, -50%);
    }

    .contact .left_side .title {
        display: none;
    }

    .contact::after {
        width: 172px;
        height: 172px;
        background-image: url('../img/contact-decor.webp');
        left: auto;
        right: 0;
        transform: translateY(80%);
    }

    .contact .left_side .links a {
        text-transform: unset;
    }
}
/* end contact */

/* map */
.map_top {
    max-width: 504px;
    margin: 80px auto 80px;
}

.map-popup-text {
    display: none;
}

.map-popup.active .map-popup-text {
    display: block;
}

#searchTextField::placeholder {
    font-size: 0;
}

#map-locations {
    border: 1px solid var(--color-orange);
    height: 800px;
    border-radius: 26px;
}

.info-map-box {
    padding: 0;
    position: relative;
}

.map-locations-wrapper .info-map-box {
    cursor: pointer;
    padding: 22px 12px 50px;
}

.info-map-box::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.info-map-box-title {
    margin-bottom: 10px;
}

.info-map-box-text {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 26px;
    font-family: 'Libre Franklin', sans-serif;
}

.hours {
    column-count: 2;
    margin-bottom: -4px;
}

.hours > li {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    margin-bottom: 4px;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 16px;
    line-height: 24px;
}

.si-close-button {
    background: transparent;
    width: 60px;
    height: 60px;
    color: var(--color-black);
    font-size: 40px;
    line-height: 40px;
    opacity: 1;
    transition: var(--transition);
    backface-visibility: hidden;
}

.si-has-border .si-content-wrapper {
    border: 0;
    box-shadow: none;
    border-radius: 4px;
}

.si-content-wrapper {
    padding: 60px 56px;
    max-width: 566px;
    border-radius: 26px!important;
}

.si-close-button:hover {
    opacity: 1!important;
}

.info-map-box .btn {
    min-width: 152px;
    margin-top: 36px;
}

.si-has-border .si-pointer-bg-top {
    border-width: 40px!important;
}

.si-shadow-frame {
    box-shadow: none!important;
}

/*media*/
@media (min-width: 992px) {
    .si-close-button:hover {
        color: var(--color-orange);
    }
}

@media (max-width: 1560px) {
    #map-locations {
        height: 500px;
    }

    .si-content-wrapper {
        padding: 40px 30px;
    }

    .info-map-box-text {
        margin-bottom: 10px;
    }

    .map_top {
        margin: 40px auto 40px;
    }
}

@media (max-width: 991px) {
    #map-locations {
        height: 400px;
    }
}

@media (max-width: 575px) {
    .hours {
        column-count: 1;
    }
}
/* end map */

/* rewards */
.rewards_benefits {
    position: relative;
    padding: 76px 0;
}

.rewards_benefits::before {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(5px);
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
}

.rewards_benefits::after {
    width: 10vw;
    max-width: 176px;
    height: 10vw;
    max-height: 176px;
    background-image: url('../img/not-found-2.webp');
    background-position: center;
    bottom: 0;
    left: 0;
    transform: translateY(50%);
    z-index: -2;
}

.rewards_row {
    --bs-gutter-y: 38px;
}

.rewards_top {
    margin-bottom: 40px;
}

.rewards_top .item {
    height: 100%;
    max-width: 354px;
    margin: 0 auto;
}

.rewards_top .icon {
    width: 74px;
    height: 74px;
    margin: 0 auto 16px;
}

.rewards_top .title {
    margin-bottom: 10px;
}

.rewards_bottom .text{
    max-width: 1230px;
    margin: 0 auto;
}

/* media */
@media (max-width: 1199px) {
    .rewards_benefits::after {
        content: none;
    }
}
/* end rewards */

/* promotions */
.promotions {
    position: relative;
}

.promotions::before {
    width: 13vw;
    max-width: 244px;
    height: 13vw;
    max-height: 244px;
    background-image: url('../img/promotions-icon-2.webp');
    background-position: right center;
    bottom: 30%;
    right: 0;
}

.promotions::after {
    width: 14vw;
    max-width: 260px;
    height: 14vw;
    max-height: 260px;
    background-image: url('../img/promotions-icon-3.webp');
    background-position: center;
    bottom: 0;
    left: 0;
    transform: translateY(50%);
}

.promotions_title {
    margin-bottom: 60px;
}

.promotions_row {
    --bs-gutter-y: 32px;
    position: relative;
}

.promotions_row::before {
    width: 10vw;
    max-width: 220px;
    height: 10vw;
    max-height: 220px;
    background-image: url('../img/promotions-icon-1.webp');
    background-position: right center;
    top: 0;
    right: 0;
    transform: translate(80%, -50%);
}

.promotions_row::after {
    width: 10vw;
    max-width: 280px;
    height: 10vw;
    max-height: 280px;
    background-image: url('../img/promotions-icon-4.webp');
    background-position: center;
    bottom: 0;
    right: 10%;
    transform: translateY(50%);
}

.promotions_row .item {
    height: 100%;
    overflow: hidden;
}

.promotions_row .img_wrapp {
    padding-bottom: 60.301%;
}

.promotions_row .bottom_side {
    background: #FFFFFF;
    backdrop-filter: blur(5px);
    padding: 28px 40px 40px;
}

.promotions_row .date {
    color: var(--color-orange);
    margin-bottom: 16px;
}

.promotions_row .title {
    margin-bottom: 16px;
}

.promotions_row .text {
    margin-bottom: 26px;
}

.promotions_row .btn {
    min-width: 152px;
}

/* media */
@media (min-width: 992px) {
    .promotions_row .title a:hover {
        color: var(--color-orange);
    }
}

@media (max-width: 1560px) {
    .promotions_title {
        margin-bottom: 40px;
    }

    .promotions_row .bottom_side {
        padding: 28px 16px 40px;
    }

    .promotions_row .date,
    .promotions_row .title {
        margin-bottom: 10px;
    }

    .promotions_row .text {
        margin-bottom: 20px;
    }
}

@media (max-width: 1199px) {
    .promotions::before,
    .promotions::after,
    .promotions_row::before,
    .promotions_row::after {
        content: none;
    }
}

@media (max-width: 991px) {
    .promotions_title {
        margin-bottom: 26px;
        text-align: left;
    }
    
    .promotions_row {
        --bs-gutter-y: 30px;
    }
}
/* end promotions */

/*concept*/
.concept {
    padding: 100px 0 0;
    position: relative;
}

.concept::after {
    content: '';
    width: 45vw;
    height: 258px;
    background-image: url("../img/concept_orange.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
    display: block;
    margin-top: -100px;
}

.concept_row {
    --bs-gutter-y: 50px;
}

.concept_row .left_side {
    max-width: 598px;
    padding-bottom: 120px;
}

.concept_row .left_side .pre_title {
    margin-bottom: 22px;
}

.concept_row .left_side .title {
    margin-bottom: 28px;
}

.concept_row .left_side .text {
    margin-bottom: 38px;
}

.concept_row .left_side .btn {
    min-width: 268px;
}

.concept_slider {
    max-width: 100%;
}

.concept_slider .img_wrapp {
    padding-bottom: 100%;
}

.concept_slider .swiper_controls {
    justify-content: flex-end;
    margin-bottom: 10%;
    transform: translate(100%, 0%);
}

/*media*/
@media (min-width: 1811px) {
    .concept_slider .swiper_controls {
        top: auto;
        bottom: 10%;
        transform: translate(100%, 0%);
    }
}

@media (min-width: 1200px) and (max-width: 1810px) {
    .concept_slider .swiper_controls {
        transform: translate(0%, 0%);
    }
}

@media (max-width: 1560px) {
    .concept {
        padding: 60px 0 0;
    }
}

@media (max-width: 991px) {
    .concept {
        padding: 44px 0 0;
    }

    .concept::after {
        content: none;
    }

    .concept_row .left_side {
        padding-bottom: 0;
    }

    .concept_slider .swiper_controls {
        justify-content: center;
        margin-bottom: 0;
        transform: translate(0%,0%);
    }

    .concept_slider {
        margin: 0;
    }

    .concept_row .left_side .title {
        margin-bottom: 22px;
    }

    .concept_row .left_side .text {
        margin-bottom: 30px;
    }
}
/*end concept*/

/*team*/
.team {
    padding: 130px 0 80px;
}

.team .bottom_side {
    max-width: 984px;
    margin: 0 auto;
}

.team .top_side {
    max-width: 1100px;
    margin: 0 auto 50px;
    position: relative;
}

.team .top_side::after {
    content: '';
    width: 248px;
    height: 226px;
    background-image: url("../img/pepper.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    right: 24px;
    bottom: 0;
    transform: translate(100%, 50%);
    pointer-events: none;
}

.team .top_side .title {
    margin-bottom: 26px;
}

.team_row {
    --bs-gutter-y: 60px;
}

.team_row .item {
    height: 100%;
    max-width: 306px;
    margin: 0 auto;
}

.team_row .img_wrapp {
    margin-bottom: 28px;
}

/*media*/
@media (max-width: 1560px) {
    .team .top_side::after {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 1199px) {
    .team .top_side::after {
        content: none;
    }

    .team {
        padding: 80px 0;
    }
}

@media (max-width: 991px) {
    .team_row .img_wrapp {
        margin-bottom: 24px;
    }
}
/*end team*/

/*models*/
.models .models_title {
    margin-bottom: 56px;
    max-width: 80%;
}

.models_slider .swiper_controls {
    position: relative;
    margin-top: 54px;
}

.models_slider .swiper-container {
    overflow: visible;
}

.models_slider .swiper-wrapper{
    transition: transform .8s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.models_slider .item {
    height: 600px;
    overflow: hidden;
}

.models_slider .custom_banner::before {
    content: none;
}

.models_slider .inner-content {
    backdrop-filter: blur(5px);
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 38.832%;
    padding: 20px 56px;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border-radius: 26px 0 0 26px;
}

.models_slider .inner-content .title {
    margin-bottom: 20px;
}

.models_slider .inner-content .text {
    margin-bottom: 30px;
}

.models_slider .inner-content .btn {
    min-width: 196px;
}

.models_slider .img_box {
    height: 100%;
}

.models_slider .img_box .img_wrapp {
    height: 100%;
    padding: 0;
}

/*media*/
@media (max-width: 1560px) {
    .models .models_title {
        margin-bottom: 40px;
    }

    .models_slider .item {
        height: 500px;
    }

    .models_slider .inner-content {
        padding: 20px 30px;
    }

    .models_slider .inner-content .title {
        margin-bottom: 16px;
    }

    .models_slider .inner-content .text {
        margin-bottom: 20px;
    }

    .models_slider .swiper_controls {
        margin-top: 30px;
    }
}

@media (max-width: 1199px) {
    .models .models_title {
        margin-bottom: 26px;
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    .models_slider .swiper_controls {
        margin: 20px 0 0;
    }

    .models_slider .item {
        height: auto;
    }

    .models_slider .inner-content {
        position: relative;
        width: 100%;
        height: auto;
        border-radius: 0 0 26px 26px;
        padding: 40px 20px;
    }

    .models_slider .img_box .img_wrapp{
        height: auto;
        padding-bottom: 74.375%;
    }

    .models_slider .inner-content .btn {
        min-width: 100%;
    }
}
/*end models*/

/*menus*/

.menus_categories {
    position: relative;
    z-index: 5;
    padding: 36px 0;
    background-color: var(--color-orange);
}

.categories-menu .category-title {
    display: none;
}

.categories-list {
    font-size: 0;
    margin-bottom: -12px;
    text-align: center;
}

.categories-list li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 40px;
    margin-bottom: 12px;
}

.categories-list li:last-child {
    margin-right: 0;
}

.categories-list a {
    font-size: 22px;
    line-height: 1.5;
    font-weight: 600;
    color: var(--color-black);
}

.menus_categories.is_stuck {
  padding: 26px 0;
}

.categories_row {
    --bs-gutter-y: 34px;
}

.categories {
    font-size: 0;
    margin-bottom: -12px;
}

.categories > li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 80px;
    margin-bottom: 12px;
}

.categories > li:last-child {
    margin-right: 0;
    margin-bottom: 0;
}

.categories > li a {
    font-weight: 500;
    font-size: 22px;
    line-height: 34px;
}

.product_row {
    --bs-gutter-x: 36px;
    --bs-gutter-y: 36px;
}

.product_row .item {
    height: 100%;
    margin: 0 auto;
    padding: 30px 40px;
    border-radius: 26px;
    background: #fff;
}

.product_row .item .img_side {
    margin-bottom: 20px;
}

.product_row .item .img_side img {
    object-fit: contain;
    object-position: center;
}

.product_row .item .title {
    margin-bottom: 12px;
    text-transform: uppercase;
}

.menus_decor {
    position: relative;
}

.menus_decor::before {
    content: '';
    width: 20vw;
    height: 540px;
    background-image: url("../img/menus_hand.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(-40%);
    z-index: -1;
}

.menus_decor.type2::before {
    background-image: url("../img/sandwich.svg");
    height: 82px;
    top: -80px;
    transform: translateY(-100%);
}

.drinks_wr {
    --bs-gutter-y: 40px;
}

.drinks .links_wr {
    font-size: 0;
}

.drinks .links_wr > li:not(:last-child) {
    margin-bottom: 30px;
}

.drinks .img_side {
    position: relative;
    max-width: 756px;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: 26px;
}

.drinks .img_side::after {
    width: 17vw;
    max-width: 320px;
    height: 17vw;
    max-height: 320px;
    background-image: url('../img/drinks-decor.webp');
    background-position: right top;
    top: 0;
    right: 0;
    transform: translate(50%,-50%);
    z-index: 1;
}

.drinks .img_side .img_wrapp {
    padding-bottom: 50.264%;    
}

.drinks .img_side img {
    object-fit: contain;
    object-position: center;
}

/*media*/
@media (min-width: 992px) {
    .product_row .item .title a:hover,
    .drinks .links_wr > li a:hover {
        color: var(--color-orange);
    }

    .categories-list a:hover {
        color: var(--color-text);
    }
}

@media (max-width: 1560px) {
    .categories-list li {
        margin-right: 20px;
    }
}

@media (max-width: 1199px) {
    .product_row .item {
        padding: 40px 16px 60px;
    }

    .product_row {
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 28px;
    }

    .product_row .item .img_side {
        max-width: 220px;
        margin: 0 auto 10px;
    }

    .product_row .item .title {
        margin-bottom: 8px;
    }

    .drinks .img_side::after {
        content: none
    }
}

@media (max-width: 991px) {
    .menus_categories {
        padding: 12px 0;
        text-align: center;
    }

    .categories-menu .category-title {
        text-align: center;
        display: block;
        font-size: 22px;
        font-weight: 600;
        line-height: 1.5;
        color: var(--color-black);
    }

    .categories-menu .category-title span {
        position: relative;
    }

    .categories-menu .category-title span::after {
        content: '';
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 5px 4.5px 0 4.5px;
        border-color: var(--color-black) transparent transparent transparent;
        position: absolute;
        right: -24px;
        top: 50%;
        transform: translateY(-50%);
        transition: var(--transition);
        backface-visibility: hidden;
    }

    .categories-menu .category-title.active span::after {
        transform: translateY(-50%) rotate(-180deg);
    }

    .categories-list {
        background-color: var(--color-orange);
        padding: 20px 12px;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        display: inline-flex;
        flex-direction: column;
        z-index: 1;
        transition: 0.25s;
        transform-origin: top center;
        transform: scaleY(0);
        z-index: 5;
        margin-bottom: -20px;
    }

    .categories-list li {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .categories-menu.active .categories-list {
        -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
        transform: scaleY(1);
    }

    .product_title {
        margin-bottom: 26px;
        text-align: center;
    }

    .menus_decor::before {
        content: none;
    }

    .categories > li {
        margin-right: 32px;
    }

    .categories {
        display: flex;
        overflow-y: auto;
    }

    .drinks .links_wr > li:not(:last-child) {
        margin-bottom: 20px;
    }

    .banner-align.type-menu {
        height: auto;
    }

    .custom_banner.type-menu .title {
        margin-bottom: 16px;
    }
}
/*end menus*/

/* new banner */
.new_banner {
    position: relative;
    backdrop-filter: blur(5px); 
    padding: 160px 0;
}

.new_banner .content {
    position: relative;
    max-width: 912px;
    margin: 0 auto;
}

.new_banner .content::before {
    width: 10vw;
    max-width: 170px;
    height: 10vw;
    max-height: 170px;
    background-image: url('../img/new-1.webp');
    background-position: center;
    left: 0;
    bottom: 0;
    transform: translate(-100%, 50%);
}

.new_banner .content::after {
    width: 8vw;
    max-width: 126px;
    height: 8vw;
    max-height: 126px;
    background-image: url('../img/new-2.webp');
    background-position: center;
    right: 0;
    top: 0;
    transform: translate(100%, -50%);
}

.new_banner .content > * {
    margin-bottom: 28px;
}

.new_banner .content .desc {
    color: rgba(49, 47, 46, 0.7);
}

/* media */
@media (max-width: 1560px) {
    .new_banner {
        padding: 120px 0;
    }
}

@media (max-width: 991px) {
    .new_banner {
        padding: 90px 0;
    }

    .new_banner .content::before {
        width: 80px;
        height: 80px;
        left: auto;
        right: 0;
        bottom: -90px;
        transform: translate(0%, 0%);
    }
    
    .new_banner .content::after {
        width: 80px;
        height: 80px;;
        right: auto;
        left: 0;
        top: -90px;
        transform: translate(0%, 0%);
    }
}
/* end new banner */

/*team*/
.f-team {
    position: relative;
}

.f-team::before {
    content: '';
    width: 230px;
    height: 332px;
    background-image: url('../img/team-basil.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(-80%);
    z-index: -1;
}

.f-team::after {
    content: '';
    width: 240px;
    height: 180px;
    background-image: url('../img/team-decor-2.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    position: absolute;
    right: 26vw;
    bottom: 0;
    transform: translateY(100%);
    z-index: -1;
}

.f-team-slider::after {
    content: '';
    width: 172px;
    height: 172px;
    background-image: url('../img/team-decor-1.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    position: absolute;
    right: 0;
    top: -20px;
    transform: translateY(-100%);
    z-index: -1;
}

.f-team-slider .swiper-container {
    overflow: visible;
}

.f-team-slider .swiper_controls {
    position: relative;
    margin-top: 74px;
}

.f-team-slider .img_wrapp {
    border-radius: 26px;
}

.f-team-content {
    max-width: 960px;
    margin-bottom: 30px;
}

.f-team-title {
    margin-bottom: 22px;
}

@media (max-width: 1560px) {
    .f-team-slider .swiper_controls {
        margin: 30px 0 0;
    }

    .f-team-slider::after {
        width: 130px;
        height: 130px;
    }

    .f-team::before {
        width: 116px;
        height: 166px;
    }
}

@media (max-width: 1199px) {
    .f-team-slider::after {
        content: none;
    }

    .f-team::before {
        width: 100px;
        height: 80px;
        background-image: url('../img/team-mob-1.webp');
        left: auto;
        right: 8%;
        transform: translateY(-100%);
    }

    .f-team::after {
        background-image: url('../img/team-mob-2.webp');
        width: 102px;
        height: 78px;
        left: 0;
        right: auto;
        transform: translateY(50%);
    }
}

@media (max-width: 767px) {
    .f-team-title {
        text-align: center;
    }
}

@media (max-width: 575px) {
    .f-team-slider .swiper_controls {
        position: static;
        margin-top: 16px;
    }

    .f-team-slider .arr_prev,
    .f-team-slider .arr_next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        margin-top: -25px;
    }

    .f-team-slider .arr_next {
        left: auto;
    }

    .f-team-img {
        max-width: 212px;
        margin: 0 auto;
    }
}

.wpcf7-form .wpcf7-submit{
    display: none;
}