:root {
    --black: #222222;
    --white: #ffffff;
    --gray: #929292;
    --lightgray: #EEEEEE;
    --darkgray: #2222220D;
    --orange: #FF6900;

    --gray-hover: #AAAAAA;

}

/* COLORS */
.color-white {
    color: var(--secondary-color);
}

.color-blue {
    color: var(--blue-accent);
}

.color-black {
    color: var(--black);
}

/* BG */
.bg-gray {
    background-color: var(--grey-main);
}

.bb-gray {
    border-bottom: 2px solid var(--grey-main);
}

/* ================================================================================================================== */
/* -----------------------------------------------    GENERAL    -----------------------------------------------------*/
/* ================================================================================================================== */
html {
    overflow-x: hidden;
}

body {
    font-family: "Khand", sans-serif;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-weight: 400;
    line-height: 100%;
    color: var(--black);
    justify-content: space-between;
    position: relative;
    overflow-x: hidden;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}

video {
    width: 100%;
    object-fit: cover;
}

button:focus {
    outline: 0;
}

ul {
    padding-left: 0;
    list-style-type: none;
    margin-bottom: 0;
}

a,
a:hover {
    text-decoration: none;
}

p {
    margin: 0;
    padding: 0;
}

section {
    padding: clamp(70px, calc(10vw + 15px), 130px) 0;
}

section.privacy-policy {
    padding-top: 0;
}

section.privacy-policy p {
    font-size: 20px;
    line-height: 100%;
}

.main-btn {
    padding: 24px 40px 21px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 600;
    text-wrap-mode: nowrap;
    background: var(--orange);
    border: 2px solid var(--orange);
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 10%) inset;
    border-radius: 70px;
    transition: all 300ms ease;
}

.main-btn:hover {
    color: var(--white);
    background: var(--orange);
}

.main-btn--arrow,
.main-btn--pdf {
    padding-right: 45px;
}

a.main-btn--arrow span::after,
a.main-btn--pdf span::after {
    content: '';
    margin-left: 15px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
}

.main-btn--arrow span::after {
    width: 29px;
    height: 22px;
    background-image: url('../images/button-arrow.svg');
}

.main-btn--pdf {
    text-transform: uppercase;
}

.main-btn--pdf span::after {
    width: 30px;
    height: 35px;
    background-image: url('../images/PDF.svg');
}

@media (hover: hover) and (pointer: fine) {

    .main-btn--arrow:hover span::after,
    .main-btn--pdf:hover span::after {
        transform: translate(10px, 0%);
    }
}

.main-btn span {
    display: flex;
    align-items: center;
    line-height: 100%;
}

a.main-btn--mini {
    padding: 13px 25px 10px;
    font-size: 20px;
}

@media (hover: hover) and (pointer: fine) {
    .main-btn:hover {
        color: var(--orange);
        background: var(--white);
    }
}

@media (hover: hover) and (pointer: fine) {

    .main-btn--arrow:hover,
    .main-btn--pdf:hover {
        color: var(--white);
        background: var(--orange);
    }
}


.logo {
    width: 170px;
}

.menu__body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.menu__nav-menu {
    padding: 0;
    display: flex;
    gap: clamp(20px, 4vw, 80px);
}


.text-balance {
    text-wrap: balance;
}

.text-heading {
    margin: 0;
    font-weight: 700;
    font-size: clamp(36px, calc(7.3vw + 5.5px), 80px);
    line-height: clamp(36px, calc(7.3vw + 5.5px), 80px);
    text-align: center;
}

.item-heading {
    margin: 0;
    font-weight: 700;
    font-size: clamp(24px, calc(4.55vw + 4.9px), 54px);
    line-height: clamp(24px, calc(4.55vw + 4.9px), 54px);
    text-align: center;
}

.text-description,
.text-description p {
    margin: 0;
    width: 100%;
    text-wrap-style: balance;
    text-align: center;
    font-weight: 500;
    font-size: clamp(15px, calc(1.7vw + 7.84px), 28px);
    line-height: 130%;
    color: var(--gray);
}


@media (max-width: 400px) {
    .hyphens {
        hyphens: auto;
    }
}

@media (max-width: 1399px) {
    .menu__body {
        align-items: flex-start;
    }

    .menu__nav-menu {
        padding-top: 20px;
    }

    .menu__contacts {
        margin-left: auto;
        padding-bottom: 20px;
        transform: translateY(-100%);
    }
}

@media (max-width: 1199px) {
    .logo {
        width: 160px;
    }

    .menu__nav-menu,
    .menu__contacts {
        padding: 0;
    }

    .menu__nav-menu {
        gap: clamp(20px, 3vw, 50px);
    }
}

@media (max-width: 991px) {

    .main-btn {
        padding: 12px 30px;
    }

    a.main-btn--arrow span::after {
        width: 20px;
        height: 15px;
    }

    .logo {
        width: 80px;
    }
}

@media (max-width: 576px) {
    .main-btn {
        font-size: 18px;
    }
}


/* ================================================================================================================== */
/* -----------------------------------------------    GENERAL    -----------------------------------------------------*/
/* ================================================================================================================== */
html:not(.no-js) [data-aos^="fade"][data-aos^="fade"].aos-twd {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
    transition-duration: 0s;
}

.bgimg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    background-color: var(--grey-main);
}

.mb-title {
    margin-bottom: clamp(20px, calc(10vw), 60px);
}

.mb-20 {
    margin-bottom: 20px;
}

.mw-650 {
    max-width: 650px;
}

html.no-scroll,
body.no-scroll {
    overflow: hidden;
}

.breadcrumbs {
    margin-top: 20px;
    margin-bottom: clamp(50px, calc(2.5vw + 39.5px), 80px);
    font-weight: 500;
    font-size: 15px;
}


.breadcrumbs a,
.breadcrumbs .text-gray {
    color: var(--gray);
}

.item__subheading {
    margin: 0;
    font-weight: 500;
    font-size: clamp(20px, calc(2.3vw + 10.5px), 36px);
    line-height: 100%;
    text-transform: uppercase;
}

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1400px;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
        max-width: 100%;
    }
}

/* ================================================================================================================== */
/* -----------------------------------------------     HEADER     ----------------------------------------------------*/
/* ================================================================================================================== */
.header {
    width: 100%;
    padding: 30px 0;
}

.header-nav {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu {
    padding: 0;
    margin: 0;
    display: flex;
    list-style: none;
}

.has-submenu {
    position: relative;
    margin-right: 30px;
    transition: all 0.2s ease;
}

.has-submenu::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url('../images/dropdown-arrow.svg');
    background-repeat: no-repeat;
    background-position: center;
    transform-origin: center center;
    transition: all 0.2s ease;
}

.has-submenu.submenu--open::after {
    transform: translateY(-50%) scaleY(-1);
}

.has-submenu .menu-link {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.menu-left {
    flex: 1;
    justify-content: flex-start;
}

.menu-right {
    flex: 1;
    justify-content: space-between;
}

.menu-left,
.menu-right ul {
    display: flex;
    align-items: center;
    /* gap: 50px; */
    gap: clamp(20px, calc(3vw - 5px), 50px);
}

.menu-right ul {
    flex: 1 1 auto;
    justify-content: center;
}

.menu-link {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    font-size: 22px;
    text-wrap: nowrap;
    text-transform: uppercase;
    transition: color 0.2s ease;
}


.mobile-menu__list .menu-link {
    width: 100%;
}

.menu-link:hover,
.has-submenu:hover .menu-link {
    color: var(--gray-hover);
}

@media (hover: hover) and (pointer: fine) {
    .menu li .main-btn:hover {
        color: var(--orange);
    }

    .has-submenu:hover::after {
        opacity: 0.35;
    }
}


.logo {
    flex-shrink: 0;
}

.logo img {
    height: 120px;
    display: block;
    object-fit: contain;
}

.submenu {
    padding: 20px;
    position: absolute;
    left: -10px;
    bottom: -25px;
    transform: translateY(100%);
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-wrap-mode: nowrap;
    background: var(--white);
    border: 1px solid var(--lightgray);
    border-radius: 12px;
    box-shadow: 0px 10px 30px 0px var(--darkgray);
}

.submenu-link {
    width: 100%;
    display: block;
    text-decoration: none;
    color: var(--black);
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
    .submenu-link:hover {
        color: var(--gray-hover);
    }
}

.mobile-menu__button {
    width: 40px;
    height: 20px;
    order: 2;
}

.mobile-menu__button::before,
.mobile-menu__button::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: var(--black);
    transition: all 0.3s;
}

.mobile-menu__button::before {
    top: 0;
}

.mobile-menu__button::after {
    bottom: 0;
}

.mobile-menu {
    margin-top: 110px;
    padding: 20px 0;
    width: 100svw;
    height: 100dvh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    gap: 20px;
    transform: translatex(-100%);
    background: var(--white);
    transition: all 0.3s;
}

.mobile-menu.mobile-menu--open {
    transform: translatex(0%);
}

.mobile-menu__button.mobile-menu__close-button::before {
    transform: translate(1px, -8px);
    transform-origin: left top;
    rotate: 45deg;
}

.mobile-menu__button.mobile-menu__close-button::after {
    transform: translate(0px, 8px);
    transform-origin: left bottom;
    rotate: -45deg;
    bottom: 0;
}

.mobile-menu__header {
    display: flex;
    justify-content: space-between;
}

.mobile-menu__list li {
    padding: 0 40px;
    height: 67px;
    width: 100svw;
    display: flex;
    align-items: center;
    position: relative;
    border-top: 1px solid var(--lightgray);
}

.mobile-menu__list li:last-child {
    border-bottom: 1px solid var(--lightgray);
}

.mobile-menu__list li::after {
    right: 40px;
}

.mobile-menu__footer {
    padding: 10px 40px 0;
}

.mobile-menu .submenu {
    width: 100vw;
    padding: 0;
    top: auto;
    bottom: 0;
    left: 0;
    gap: 0;
    border: none;
    box-shadow: none;
}

.mobile-menu .submenu li {
    border: none;
}

.mobile-menu .submenu-link {
    padding-left: 30px;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: var(--black);
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.mobile-menu .submenu li:last-child {
    border-bottom: none;
}

@media (max-width: 1399px) {
    .header .header-nav {
        gap: clamp(20px, calc(3vw - 5px), 50px);
    }

    .header .menu-left {
        padding-top: 15px;
        align-self: stretch;
        align-items: flex-start;
        justify-content: flex-end;
        order: 2;
    }

    .header .logo {
        order: 1;
    }

    .header .menu-right {
        padding-top: 15px;
        height: 100%;
        width: fit-content;
        flex: 0;
        flex-wrap: wrap;
        justify-content: flex-end;
        order: 3;
        gap: 44px;
    }

    .menu-right ul {
        flex: 0 1 auto;
        justify-content: flex-end;
    }

    .header .menu-right div {
        justify-content: end;
        display: flex;
    }
}

@media (max-width: 1199px) {

    .header .header-nav,
    .header .menu-left,
    .menu-right ul {
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .header {
        padding: 0;
    }
}


/* ================================================================================================================== */
/* -----------------------------------------------     SLIDER     ----------------------------------------------------*/
/* ================================================================================================================== */
.slider-section {
    padding: 0;
}

.slider {
    position: relative;
    overflow: hidden;
}

.slider__slide {
    padding: clamp(70px, calc(10vw + 15px), 200px) 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.slider__slide {
    display: none;
}

.slider__slide:first-child {
    display: block;
}

.slick-initialized .slider__slide {
    display: block;
}

.slider__overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(33, 33, 33, 0.450);
    pointer-events: none;
}

.slider__content {
    display: flex;
    flex-direction: column;
    z-index: 2;
    position: relative;
}

.slider__title {
    margin: 0 auto 40px;
    max-width: 1100px;
    height: 100%;
    max-height: 200px;
    color: var(--white);
    font-size: clamp(44px, calc(9.8vw + 3px), 90px);
    font-weight: 700;
    text-align: center;
    text-wrap-style: balance;
}

.slider__title--long-text {
    /* margin-bottom: 40px; */
    max-width: 1200px;
    font-size: clamp(44px, calc(5.4vw + 3px), 90px);
}

@media (max-width: 1400px) {
    .slider__title--long-text {
        margin-bottom: 74px;
    }
}

@media (max-width: 767px) {
    .slider__title {
        margin: 0 auto 25px;
        min-height: 162px;
        font-size: clamp(56px, calc(5.3vw), 90px);
        text-wrap-style: balance;
    }

    .slider__title--long-text {
        max-width: 1200px;
        font-size: clamp(42px, calc(5.3vw), 90px);
        display: flex;
        align-items: center;
    }
}


/* ================================================================================================================== */
/* -----------------------------------------------    INTRODUCTION    ----------------------------------------------------*/
/* ================================================================================================================== */

.catering-intro {
    padding-bottom: 0;
}

.catering-intro .wrapper {
    display: flex;
    flex-direction: column;
    gap: clamp(60px, calc(10.2vw + 17px), 150px);
}

.catering-intro .intro-item {
    height: 880px;
    display: flex;
    justify-content: space-between;
}

.catering-intro .intro-item--reverse {
    flex-direction: row-reverse;
}

.catering-intro .intro-item:not(.intro-item--reverse)::after,
.catering-intro .intro-item--reverse::after {
    content: '';
    display: block;
    position: absolute;
    z-index: 0;
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
}

.catering-intro .intro-item:not(.intro-item--reverse)::after {
    width: 617px;
    height: 559px;
    left: 34%;
    bottom: -32%;
    background-image: url('../images/main-page/garlic.svg');
}

.catering-intro .intro-item--reverse::after {
    width: 738px;
    height: 500px;
    right: -33%;
    bottom: -50%;
    background-image: url('../images/main-page/tomatoes.svg');
}

.catering-intro .intro-item__content,
.catering-intro .intro-item__image {
    flex: 0 1 720px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.catering-intro .intro-item__content {
    max-width: 585px;
}

.catering-intro .intro-item:not(.intro-item--reverse) .intro-item__content {
    margin: 0 0 0 50px;
}

.catering-intro .intro-item .intro-item__content {
    margin: 0 50px 0 0;
}

.catering-intro .intro-item__image {
    max-width: 650px;
    max-height: 755px;
    overflow: hidden;
    border-radius: 276px 0 0 24px;
}

.catering-intro .intro-item--reverse .intro-item__image {
    border-radius: 360px 360px 24px 24px;
}

@media (max-width: 1399px) {

    .catering-intro .intro-item:not(.intro-item--reverse) .intro-item__content,
    .catering-intro .intro-item .intro-item__content {
        margin: 0;
    }

    .catering-intro .intro-item {
        height: auto;
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .catering-intro .intro-item {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 60px;
    }

    .catering-intro .intro-item__content {
        max-width: 100%;
    }

    .catering-intro .intro-item__heading {
        text-wrap: balance;
    }

    .catering-intro .intro-item--reverse .intro-item__image {
        height: 600px;
    }

    .catering-intro .intro-item:not(.intro-item--reverse)::after {
        width: 40%;
        height: 20%;
        left: -12%;
        bottom: 52%;
    }

    .catering-intro .intro-item--reverse::after {
        width: 35%;
        height: 25%;
        right: -20%;
        bottom: 50%;
    }
}

@media (max-width: 767px) {
    .catering-intro .intro-item__image {
        height: 365px;
    }

    .catering-intro .intro-item__content {
        gap: 40px;
    }
}

@media (max-width: 576px) {

    .catering-intro .intro-item__image,
    .catering-intro .intro-item--reverse .intro-item__image {
        border-radius: 20px;
        height: 365px;
    }

    .catering-intro .intro-item--reverse .intro-item__image {}
}

/* ================================================================================================================== */
/* -----------------------------------------------    HIGHLIGHTS    ----------------------------------------------------*/
/* ================================================================================================================== */

.highlights {
    padding-bottom: 0;
}

.highlights .highlights-heading,
.highlights .highlights-items,
.highlights .highlights-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.highlights .highlights-heading {
    margin-bottom: clamp(40px, calc(8.5vw + 4px), 115px);
    gap: clamp(20px, calc(2.3vw + 10.5px), 40px);
}

.highlights .highlights-heading h2 {
    position: relative;
    max-width: 520px;
}

.highlights .highlights-items {
    margin-bottom: clamp(40px, calc(5.7vw + 16px), 90px);
    gap: clamp(40px, calc(8.5vw + 4px), 115px);
}

.highlights .highlights-items h3 {
    max-width: 610px;
}

.highlights .highlights-heading .text-description,
.highlights .highlights-items p {
    max-width: 1050px;
}

.highlights .highlights-item {
    position: relative;
    z-index: 1;
    gap: clamp(15px, calc(2.3vw + 5.5px), 35px);
}

.highlights .highlights-item:last-child {
    z-index: 0;
}

.highlights .highlights-item:last-child::after {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: contain;
    width: 430px;
    height: 875px;
    left: -40%;
    bottom: 0%;
    background-image: url('../images/main-page/pinneapple.svg');
    pointer-events: none;
}

@media (max-width: 757px) {
    .highlights .highlights-item:last-child::after {
        width: 200px;
        height: 200px;
        left: -5%;
    }
}


/* ================================================================================================================== */
/* -----------------------------------------------    INSTAGRAM    ----------------------------------------------------*/
/* ================================================================================================================== */
.instagram-section {
    padding-bottom: clamp(96px, calc(17.9vw - 9.8px), 170px);
}

.instagram-link {
    margin: 0 auto clamp(33px, calc(4.8vw + 13px), 75px);
    max-width: 355px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
}

.instagram-avatar {
    width: 133px;
    height: 133px;
    border-radius: 50%;
    overflow: hidden;
}

.instagram-name {
    margin: 0;
    font-weight: 700;
    font-size: clamp(28px, calc(3.2vw + 14.7px), 48px);
    line-height: clamp(28px, calc(3.2vw + 14.7px), 48px);
    text-align: center;
    color: var(--black);
    transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .instagram-link:hover .instagram-name {
        color: var(--gray-hover);
    }
}

.instagram-section__body {
    margin: 0 auto;
    max-width: 900px;
    max-height: 951px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.instagram-section__body::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.95) 100%);
    pointer-events: none;
}

.instagram-logo {
    content: '';
    position: absolute;
    width: clamp(72px, calc(7.63vw + 39.1px), 140px);
    height: clamp(72px, calc(7.63vw + 39.1px), 140px);
    left: 50%;
    bottom: 0;
    background-image: url('../images/inst_logo.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    overflow: hidden;
    transform: translate(-50%, 50%);
    transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .instagram-logo:hover {
        transform: translate(-50%, 50%) scale(0.98);
    }
}

@media (max-width: 576px) {
    .instagram-avatar {
        width: 100px;
        height: 100px;
    }
}


/* ================================================================================================================== */
/* ---------------------------------------     CORPORATE MENU     ----------------------------------------------------*/
/* ================================================================================================================== */
.corporate-menu {
    padding-top: 0;
}

.corporate-menu .corporate-menu__heading {
    padding: clamp(60px, calc(7vw + 20px), 120px) clamp(30px, calc(6vw + 10px), 105px);
    position: relative;
    background-size: cover;
    background-position: 50% 40%;
    border-radius: 20px;
}

.corporate-menu .corporate-menu__heading::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, rgb(34 34 34 / 60%) 0%, rgb(34 34 34 / 20%) 50%);
    border-radius: 20px;
    pointer-events: none;
}

.corporate-menu .text-heading {
    position: relative;
    max-width: 700px;
    text-wrap: balance;
    text-align: left;
}

.corporate-menu .text-heading.white {
    color: var(--white);
}

.corporate-menu .text-heading.black {
    color: var(--black);
}

.corporate-menu .menu-block .promo-text {
    margin-top: 50px;
    text-align: center;
    font-size: 26px;
    font-weight: 500;
    line-height: 100%;
    text-wrap-style: balance;
}

.corporate-menu .menu-block .promo-text span {
    font-weight: 700;
}

.corporate-menu .menu-section {
    margin-top: clamp(50px, calc(0.035vw + 35px), 80px);
    margin-bottom: clamp(50px, calc(2.5vw + 39.5px), 80px);
}

.corporate-menu .menu-section:last-child {
    margin-bottom: 0;
}

.corporate-menu .menu-block {
    margin-bottom: clamp(80px, calc(0.045vw + 60px), 120px);
}

.corporate-menu .menu-block.single-item .text-description {
    padding: clamp(70px, calc(10vw + 15px), 150px) 0;
}

.corporate-menu .menu-block.single-item .menu-block__pdf-images {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.corporate-menu .menu-block:last-child {
    margin-bottom: 50px;
}

.corporate-menu .menu-section .section__heading {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.corporate-menu .menu-section .section__heading .section__title {
    margin-bottom: 0;
    font-size: clamp(25px, calc(2.3vw + 10.5px), 40px);
    font-weight: 700;
    text-align: center;
    text-wrap-style: balance;
}

.corporate-menu .menu-section .section__heading .section__description {
    font-size: 18px;
    text-align: center;
}

.corporate-menu .menu-section .menu-items {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.corporate-menu .menu-section .menu-items .menu-item {
    padding: 30px;
    flex: 0 1 calc(33.3% - 16px);
    border: 2px solid var(--lightgray);
    border-radius: 20px;
}

.corporate-menu .menu-section .dish {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.corporate-menu .menu-section .dish__heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 24px;
}

.corporate-menu .menu-section .dish-title {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.corporate-menu .menu-section .dish-veg::after {
    content: '';
    margin-left: 15px;
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url('../images/vegan.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.corporate-menu .menu-section .dish-veg {}

.corporate-menu .menu-section .price {
    font-size: 28px;
    font-weight: 600;
}

.corporate-menu .menu-section .dish-desc {
    max-width: 335px;
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    color: var(--gray);
    text-wrap: balance;
}

.corporate-menu .menu-section .dish-options ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.corporate-menu .menu-section .dish-options ul li {
    display: flex;
    justify-content: space-between;
}

.corporate-menu .menu-section .dish-options .dish-option__price {
    min-width: 55px;
    color: var(--black);
}

@media (max-width: 1399px) {
    .corporate-menu .menu-section .menu-items .menu-item {
        flex: 0 1 calc(50% - 12px);
    }
}

@media (max-width: 991px) {
    .corporate-menu .menu-section .menu-items .menu-item {
        flex: 0 1 100%;
    }
}

@media (max-width: 767px) {
    .corporate-menu .menu-block.single-item .menu-block__pdf-images {
        gap: 70px;
    }
}

@media (max-width: 576px) {
    .corporate-menu .menu-section .menu-items {
        gap: 18px;
    }

    .corporate-menu .menu-block .promo-text {
        margin-top: 20px;
        font-size: 18px;
    }
}


/* ================================================================================================================== */
/* -----------------------------------------------     INTRO     ----------------------------------------------------*/
/* ================================================================================================================== */


.intro-section {
    padding-top: 45px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0% 30%;
    position: relative;
}

.intro-section .container {
    display: flex;
    flex-direction: column;
    gap: 160px;
}

.intro-section::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, rgba(34, 34, 34, 0.6) 0%, rgba(34, 34, 34, 0) 75.43%);
}

.intro-section .container {
    position: relative;
    z-index: 1;
}

.intro-section .breadcrumbs {
    margin: 0;
    color: var(--white);
}

.intro-section .breadcrumbs a,
.intro-section .breadcrumbs .text-gray {
    color: var(--lightgray);
}

.intro-section .intro-section__content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.intro-section .intro-section__content .text-heading {
    max-width: 500px;
    text-align: left;
    color: var(--white);
}

.intro-section .intro-section__content p {
    max-width: 450px;
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
}

@media (max-width: 576px) {
    .intro-section .intro-section__content .text-heading {
        max-width: 340px;
    }
}

/* ================================================================================================================== */
/* -----------------------------------------------     EVENTS     ----------------------------------------------------*/
/* ================================================================================================================== */
.events-section {}

.events-section.information-section {}

.events-section.information-section .container {
    display: flex;
    height: 755px;
    position: relative;
    display: flex;
    justify-content: space-between;
}

.events-section.information-section .container::after {
    opacity: 0.5;
    content: '';
    position: absolute;
    width: 542px;
    height: 512px;
    left: 42%;
    bottom: 0%;
    background-image: url(../images/berry.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.events-section .information-section__content {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.events-section .information-section__content .text-description {
    flex: 1;
}

.events-section .information-section__content .text-description p {
    text-align: left;
    line-height: 140%;
}

.events-section .information-section__contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.events-section .information-section__contacts .contacts__phone {
    width: fit-content;
    font-size: clamp(40px, calc(2.22vw + 30.6px), 50px);
    line-height: clamp(40px, calc(2.22vw + 30.6px), 50px);
    font-weight: 400;
}

.events-section .information-section__contacts .contacts__email {
    width: fit-content;
    font-size: clamp(28px, calc(2.22vw + 18.2px), 40px);
    line-height: clamp(28px, calc(2.22vw + 18.2px), 40px);
    font-weight: 400;
}

.events-section .information-section__image {
    max-width: 650px;
    max-height: 755px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    border-radius: 276px 0 0 24px;
}

.events-section .information-section__image img {
    object-position: unset;
}

@media (max-width: 1399px) {
    .events-section.information-section .container {
        height: auto;
        gap: 40px;
    }

    .events-section .information-section__content {
        max-width: 550px;
    }
}

.events-section .information-section__image img {
    object-position: unset;
}

@media (max-width: 1199px) {
    .events-section .information-section__content {
        max-width: 450px;
    }
}

@media (max-width: 991px) {
    .events-section.information-section .container {
        flex-direction: column;
    }

    .events-section .information-section__content {
        width: 100%;
        max-width: unset;
    }

    .events-section .information-section__contacts {
        text-align: center;
    }

    .events-section.information-section .container::after {
        width: 300px;
        height: 300px;
        left: 42%;
        bottom: 50%;
        background-size: contain;
    }
}

@media (max-width: 576px) {
    .events-section .information-section__image {
        border-radius: 20px;
        height: 365px;
    }
}


/* ================================================================================================================== */
/* -----------------------------------------------     Buffet     ----------------------------------------------------*/
/* ================================================================================================================== */

.buffet__video-section .video-section__inner {
    display: flex;
    flex-direction: column;
    gap: clamp(30px, calc(4.17vw + 12.5px), 75px);
    align-items: center;
}

.buffet__video-section .custom-video-player {
    width: 100%;
    max-width: 1120px;
    max-height: 630px;
    aspect-ratio: 1.7;
    position: relative;
    background-color: var(--lightgray);
    border-radius: 20px;
    overflow: hidden;
}

.buffet__video-section .custom-video-player>* {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.buffet__video-section .custom-video-player .video-preview {
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.buffet__video-section .video-play-btn {
    display: block;
    width: clamp(60px, calc(13.33vw - 16.6px), 150px);
    height: clamp(60px, calc(13.33vw - 16.6px), 150px);
    border: none;
    background-color: var(--gray);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.buffet__video-section .video-play-btn::after {
    content: '';
    width: clamp(20px, calc(5.56vw - 3.33px), 40px);
    height: clamp(20px, calc(5.56vw - 3.33px), 40px);
    position: absolute;
    background-image: url(../images/play.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    top: 50%;
    left: 50%;
    transform: translate(-42%, -50%);
}

@media (hover: hover) and (pointer: fine) {
    .buffet__video-section .video-play-btn:hover {
        transform: scale(0.98);
    }
}

.buffet__video-section .video-section__inner .text-description {
    max-width: 1150px;
}

.buffet__contact-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.buffet__contact-section::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #222222A6;
}

.buffet__contact-section>* {
    position: relative;
    z-index: 1;
}

.buffet__contact-section .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.buffet__contact-section .left-block {
    max-width: 645px;
}

.buffet__contact-section .right-block {
    max-width: 570px;
}

.buffet__contact-section .left-block.text-description p {
    text-align: left;
    color: var(--white)
}

.buffet__contact-section .right-block {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.buffet__contact-section .right-block p,
.buffet__contact-section .right-block a {
    font-size: clamp(40px, calc(2.22vw + 30.6px), 50px);
    line-height: clamp(40px, calc(2.22vw + 30.6px), 50px);
    font-weight: 400;
    color: var(--white);
    text-wrap-style: balance;
}

@media (hover: hover) and (pointer: fine) {
    .buffet__contact-section .right-block .menu-link:hover {
        color: var(--gray-hover);
    }
}

.buffet__contact-section .contacts__email {
    text-transform: lowercase;
}

@media (max-width: 767px) {
    .buffet__contact-section .right-block {
        gap: 50px;
    }
}

/* ================================================================================================================== */
/* -----------------------------------------------     VENUES     ----------------------------------------------------*/
/* ================================================================================================================== */

.venues-section {}

.venues-section ul {
    display: flex;
    flex-direction: column;
    gap: clamp(100px, calc(8.33vw + 65px), 200px);
    position: relative;
}

.venues-section ul:after {
    content: '';
    position: absolute;
    width: 592px;
    height: 533px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url('../images/grapes.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
}

.venues-section ul>* {
    position: relative;
    z-index: 1;
}

.venues-section__item {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.venues-section__item--reverse {
    flex-direction: row-reverse;
}

.venues-item__content {
    max-width: 710px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.venues-item__header {
    display: flex;
    flex-direction: column;
    gap: clamp(30px, calc(2.5vw + 19px), 60px);

}

.venues-item__header .text-heading {
    text-align: left;
}

.venues-item__title {}

.venues-item__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 35px;
    font-size: 30px;
    line-height: 35px;
    font-weight: 500;
    color: var(--gray);
}

.venues-item__body strong {
    color: var(--black);
}

.venues-item__footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.venues-item__footer>* {
    width: fit-content;
}

.main-btn {}

.main-btn--pdf {}

.venues-item__image {
    max-width: 720px;
    border-radius: 360px 360px 24px 24px;
    overflow: hidden;
}

.venues-item__image img {
    object-position: center;
}

@media (max-width: 1399px) {

    .venues-item__content,
    .venues-item__image {
        flex: 0 0 calc(50% - 25px);
    }
}

@media (max-width: 1199px) {

    .venues-section__item {
        flex-wrap: wrap;
    }

    .venues-item__content,
    .venues-item__image {
        max-width: unset;
        flex: 1 0 100%;
    }

    .venues-item__footer {
        flex-direction: unset;
        justify-content: center;
        flex-wrap: wrap;
    }

    .venues-section__item {
        gap: 150px;
    }
}

@media (max-width: 991px) {
    .venues-section__item {
        gap: 100px;
    }
}

@media (max-width: 576px) {
    .venues-section__item {
        gap: 40px;
    }

    .venues-item__image {
        border-radius: 20px;
    }
}

/* ================================================================================================================== */
/* -----------------------------------------------     GALLERY     ----------------------------------------------------*/
/* ================================================================================================================== */

.gallery-section .gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.gallery-section .gallery a {
    margin: 0;
    aspect-ratio: 1 / 1;
    flex: 0 1 calc(33.3% - 16px);
    border-radius: 12px;
    overflow: hidden;
}

.gallery-section .gallery a img {
    object-position: center;
}

@media (max-width: 1199px) {
    .gallery-section .gallery a {
        flex: 0 1 calc(50% - 12px);
    }
}

@media (max-width: 767px) {
    .gallery-section .gallery a {
        flex: 0 1 calc(100%);
    }
}

/* ================================================================================================================== */
/* -----------------------------------------------     ABOUT     ----------------------------------------------------*/
/* ================================================================================================================== */

.about-section {}

.about-page__text-content {
    margin-bottom: clamp(30px, calc(2.5vw + 19px), 70px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(30px, calc(2.5vw + 19px), 60px);
    text-align: center;
    position: relative;
}

.about-page__text-content::after {
    content: '';
    width: 438px;
    height: 550px;
    position: absolute;
    bottom: -30%;
    left: -9%;
    background-image: url('../images/pear.svg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.about-page__text-content>* {
    position: relative;
    z-index: 1;
}

.about-page__text-content h2 {
    margin-bottom: 0;
    max-width: 1040px;
    font-size: clamp(28px, calc(3.2vw + 14.7px), 56px);
    font-weight: 400;
    line-height: 140%;
}

.about-page__text-content p {
    max-width: 863px;
    font-size: clamp(15px, calc(1.7vw + 7.84px), 30px);
    line-height: 140%;
    color: var(--gray);
}

.about-page__event-items {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.about-page__event-items li {
    padding: 30px;
    min-height: 360px;
    flex: 1 0 calc(50% - 12px);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 20px;
}

.about-page__event-items li::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, rgba(34, 34, 34, 0.8) 0%, rgba(34, 34, 34, 0) 60.26%);
    border-radius: 20px;
    pointer-events: none;
}

.about-page__event-items li>* {
    position: relative;
    z-index: 1;
}

.about-page__event-items li h3 {
    margin-bottom: 0;
    max-width: 300px;
    font-size: clamp(40px, calc(2.22vw + 30.6px), 60px);
    line-height: 100%;
    font-weight: 400;
    color: var(--white);
}

.about-page__event-items li:last-child h3 {
    max-width: 380px;
}

.about-page__event-items li img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    object-position: top;
}

.about-section__footer .wrapper {}

.about-section__footer .about-section__body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.about-section__footer .about-section__body::after {
    content: '';
    width: 500px;
    height: 500px;
    position: absolute;
    top: -10%;
    left: 55%;
    transform: translate(-50%, 0%);
    background-image: url(../images/gooseberry.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
}

.about-section__footer .about-section__body>* {
    position: relative;
    z-index: 1;
}

.about-section__footer .item__content {
    flex: 0 1 744px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.about-section__footer .item__subheading {}

.about-section__footer .text-heading {
    text-align: left;
}

.about-section__footer .text-description {
    text-align: left;
    font-size: clamp(18px, calc(0.63vw + 16px), 24px);
}

.about-section__footer .item__image {
    max-width: 720px;
    max-height: 880px;
    overflow: hidden;
    border-radius: 276px 0 0 24px;
}

.about-section__footer .item__image img {
    object-position: center;
}

@media (max-width: 1399px) {
    .about-section__footer .item__image {
        max-height: unset;
    }
}

@media (max-width: 991px) {

    .about-page__text-content::after {
        width: 200px;
        height: 300px;
        left: -20%;
    }

    .about-page__event-items li {
        min-height: 300px;
        flex: 1 0 100%;
    }

    .about-page__event-items li img {
        width: 80px;
        height: 80px;
    }

    .about-section__footer .about-section__body {
        flex-direction: column;
        gap: 80px;
    }

    .about-section__footer .about-section__body::after {
        width: 300px;
        height: 300px;
        top: -5%;
        left: 70%;
    }

    .about-section__footer .item__image {
        max-height: 800px;
    }
}

@media (max-width: 757px) {
    .about-page__event-items li {
        min-height: 250px;
    }

    .about-section__footer .about-section__body {
        gap: 50px;
    }

    .about-section__footer .item__image {
        max-height: 600px;
    }
}

@media (max-width: 576px) {
    .about-page__event-items li img {
        width: 60px;
        height: 60px;
    }

    @media (max-width: 757px) {
        .about-section__footer .item__image {
            border-radius: 20px;
            height: 450px;
        }
    }
}

/* ================================================================================================================== */
/* -----------------------------------------------     CONTACTS     ----------------------------------------------------*/
/* ================================================================================================================== */

.contacts-section {}

.contacts-section .heading {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contacts-section .heading h2 {}

.contacts-section .heading p {
    color: var(--black);
}

.contacts-section .contacts-footer {
    justify-content: space-between;
    gap: 50px;
}

.contacts-section .contacts-footer__body {
    max-width: 670px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    position: relative;
}

.contacts-section .contacts-footer__body::after {
    content: '';
    width: 499px;
    height: 572px;
    position: absolute;
    bottom: -54%;
    left: 100%;
    transform: translate(-50%, 0);
    background-image: url('../images/avocado.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
}

.contacts-section .contacts-footer__body>* {
    position: relative;
    z-index: 1;
}

.contacts-section .contacts-footer__body .contacts-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contacts-section .contacts-footer__body .social-links__body a img {
    transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .contacts-section .contacts-footer__body .social-links__body a:hover img {
        opacity: 0.4;
    }
}

.contacts-section .contacts-footer__body .contacts-links .contacts__phone {
    width: fit-content;
    font-size: clamp(40px, calc(2.22vw + 30.6px), 50px);
    line-height: clamp(40px, calc(2.22vw + 30.6px), 50px);
    font-weight: 400;
}

.contacts-section .contacts-footer__body .contacts-links .contacts__email {
    width: fit-content;
    font-size: clamp(28px, calc(2.22vw + 18.2px), 40px);
    line-height: clamp(28px, calc(2.22vw + 18.2px), 40px);
    font-weight: 400;
}

.contacts-section .contacts-footer__body .heading {
    align-items: flex-start;
}

.contacts-section .contacts-footer__body .heading .item-heading {
    text-align: left;
}

.contacts-section .contacts-footer__body .heading p {
    text-align: left;
    text-wrap-style: unset;
    color: var(--gray);
}

.contacts-section .social-links__body {
    gap: 20px;
}

.contacts-section .contacts-footer__map {
    width: 100%;
    max-width: 802px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.contacts-section .contacts-footer__map .map-skeleton {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(100deg,
            #e0e0e0 20%,
            #f0f0f0 40%,
            #e0e0e0 60%);
    background-size: 200% 100%;
    animation: pulse 3.5s infinite linear;
    opacity: 1;
    transition: opacity 0.6s ease;
    border-radius: 12px;
}

.contacts-section .contacts-footer__map .map-skeleton.hidden {
    opacity: 0;
}

@keyframes pulse {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.contacts-section .contacts-footer__map iframe {
    width: 100%;
    height: 100%;
}

.contacts-section .contact-form__wrapper {
    padding-top: 50px;
}

.contacts-section .contact-form__wrapper form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.contacts-section .contact-form__wrapper form .wpcf7-form-control-wrap {
    position: relative;
}

.contacts-section .contact-form__wrapper form .wpcf7-not-valid-tip {
    text-align: center;
    position: absolute;
    bottom: 15px;
    left: 0;
    border: none !important;
}

@media (max-width: 767px) {
    .contacts-section .contact-form__wrapper form .wpcf7-not-valid-tip {
        bottom: 6px;
    }
}

.contacts-section .contact-form__wrapper form .wpcf7-spinner,
.contacts-section .contact-form__wrapper form .wpcf7-response-output {
    display: none;
}

.contacts-section .contact-form__wrapper form .main-btn {
    margin-top: 24px;
}

.contacts-section .contact-form__wrapper .form-row {
    width: 100%;
}

.contacts-section .contact-form__wrapper .form-row p {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.contacts-section .contact-form__wrapper .form-row p span {
    width: 100%;
    border: 1px solid #C4C4C4;
    border-radius: 12px;
}

.contacts-section .contact-form__wrapper .form-row--first p span {
    flex: 1 1 calc(33.3% - 16px);
}

.contacts-section .contact-form__wrapper .form-row .input-field {
    padding: 40px 50px;
    width: 100%;
    font-size: 24px;
    border: none;
    border-radius: 12px;
}




@media (max-width: 991px) {
    .contacts-section .contacts-footer {
        flex-direction: column;
    }

    .contacts-section .contacts-footer__body {
        /* order: 2; */
    }

    .contacts-section .contacts-footer__body::after {
        left: 50%;
    }

    .contacts-section .contacts-footer__map {
        height: 350px;
        /* order: 1; */
    }

    .contacts-section .contact-form__wrapper .form-row .input-field {
        padding: 40px 25px;
    }
}

@media (max-width: 767px) {
    .contacts-section .contact-form__wrapper .form-row p {
        flex-direction: column;
        gap: 15px;
    }

    .contacts-section .contact-form__wrapper form {
        gap: 15px;
    }

    .contacts-section .contact-form__wrapper .form-row .input-field {
        padding: 20px 25px;
    }

    .contacts-section .contact-form__wrapper form .main-btn {
        margin-top: 12px;
    }
}

/* ================================================================================================================== */
/* ---------------------------------------     CORPORATE CATERING     ------------------------------------------------*/
/* ================================================================================================================== */

.catering-section .wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 150px;
}

.corporate-catering__item {
    max-width: 100%;
    min-height: 350px;
    flex: 0 1 100%;
    display: flex;
    justify-content: space-between;
    gap: 45px;
}

.corporate-catering__item--reverse {
    flex-direction: row-reverse;
}

.corporate-catering__item .corporate-catering__item-content {
    max-width: 715px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
}

.corporate-catering__item-content--mobile {
    width: 100%;
    flex-direction: column;
    gap: 20px;
}

.corporate-catering__item-content--mobile .main-btn {
    margin: 0 auto;
    width: fit-content;
}

.corporate-catering__item-content--mobile .corporate-catering__heading {
    min-height: 120px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 20px;
}

.corporate-catering__item-content--mobile .corporate-catering__heading::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, rgba(34, 34, 34, 0.3) 0%, rgb(34 34 34 / 19%) 50%);
    border-radius: 20px;
}

.corporate-catering__item-content--mobile .corporate-catering__heading>* {
    position: relative;
    z-index: 1;
}

.corporate-catering__item-content--mobile .corporate-catering__heading .text-heading {
    color: var(--white);
}

.corporate-catering__item--reverse .corporate-catering__item-content {
    align-items: flex-end;
}

.corporate-catering__item.corporate-catering__item--reverse .corporate-catering__item-content .text-description {
    text-align: right;
}

.corporate-catering__item .corporate-catering__item-content .text-description {
    flex: 1;
    text-align: left;
}

.corporate-catering__item-image {
    width: 100%;
    max-width: 50%;
    height: 350px;
    flex: 0 0 50%;
    border-radius: 160px 24px;
    overflow: hidden;
}

.corporate-catering__item .corporate-catering__item-content .item-heading {
    text-align: left;
}

.text-description {}

.corporate-catering__item .corporate-catering__item-content .main-btn {
    width: fit-content;
}

.corporate-catering__item-image img {
    object-position: center;
}


@media (max-width: 991px) {
    .corporate-catering__item {
        min-height: unset;
    }

    .corporate-catering__item-image {
        min-height: 300px;
    }
}

@media (max-width: 767px) {
    .corporate-catering__item-image {
        max-height: 300px;
        min-height: 150px;
        width: 100%;
        max-width: unset;
        border-radius: 90px 12px;
        overflow: hidden;
    }

    .corporate-catering__item {
        gap: 25px;
    }

    .catering-section .wrapper {
        gap: 70px;
    }
}

@media (max-width: 576px) {
    .corporate-catering__item-image {
        height: 160px;
    }
}


/* ================================================================================================================== */
/* -----------------------------------------------     FOOTER     ----------------------------------------------------*/
/* ================================================================================================================== */
.footer {
    padding: clamp(60px, 10vw, 100px) 0;
    color: var(--white);
    background-color: var(--black);
    display: flex;
    flex-direction: column;
    position: relative;
}

.footer .row {
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.footer .row>* {
    padding: 0;
    margin: 0;
    width: fit-content;
}

.footer .row:first-child {
    margin-bottom: 80px;
    height: 100%;
}

.footer .row:last-child {
    align-items: flex-end;
}

.footer .logo {
    padding: 0;
    width: 220px;
    height: 194px;
}

.footer .logo img {
    height: unset;
}

.footer .menu-wrap {
    display: flex;
    gap: 150px;
}

.footer .menu {
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
}

.footer .menu {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer .menu-link {
    font-size: 30px;
    color: var(--white);
}

@media (hover: hover) and (pointer: fine) {
    .footer .menu-link:hover {
        color: var(--gray-hover);
    }
}

.footer .social-links {
    width: 243px;
}

.footer .social-links,
.footer .address {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer .social-links__title,
.footer .address__title {
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
}

.footer .social-links .social-links__body,
.footer .address__body {
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.footer .social-links a img {
    transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .footer .social-links a:hover img {
        opacity: 0.4;
    }
}

.footer .address__body img {
    width: 23px;
}

.footer .address-info {
    max-width: 200px;
    font-size: 22px;
    line-height: 100%;
    text-transform: uppercase;
    color: var(--gray);
}

.footer .legal-info,
.footer .legal-info .menu-link {
    text-transform: none;
    font-size: 22px;
}

@media (max-width: 1399px) {
    .footer .menu-wrap {
        gap: 80px;
    }

    .footer .menu-link {
        font-size: 24px;
    }
}

@media (max-width: 1199px) {
    .footer .logo {
        width: 140px;
        height: 123px;
    }
}

@media (max-width: 991px) {
    .footer .row {
        gap: 60px;
    }

    .footer .row:first-child {
        margin-bottom: 60px;
    }

    .footer .social-links,
    .footer .address,
    .footer .legal-info {
        align-items: center;
        width: 100%;
    }

    .footer .legal-info {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .footer .row:first-child {
        flex-direction: column;
        align-items: center;
    }

    .footer .row .menu-wrap {
        flex-direction: column;
        gap: 35px;
    }

    .footer .row .menu-wrap .menu {
        gap: 35px;
        text-align: center;
    }

    .footer .legal-info {
        display: flex;
        flex-direction: column;
        gap: 35px;
        line-height: 100%;
    }
}