@font-face {
    font-family: 'Constroke Condensed';
    src: url('../fonts/Fontspring-DEMO-constroke-medium500condensed.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Argon';
    src: url('../fonts/Argon-Regular.otf') format('opentype');
    /*font-weight: 500;*/
    font-style: normal;
    font-display: swap;
}

body {
    margin: 0;
    font-family: var(--font1);
    font-size: 16px;
    line-height: 150%;
    overflow-x: hidden;
    background-color: #F5E5D5;
    /* background-image: url(../images/body-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; */
}

:root {
    --primary: #93524C;
    --primarylight: #F6E6D7;
    --dark: #050505;
    --white: #ffff;
    --font1: 'Montserrat', sans-serif;
    --font2: 'Constroke Condensed', sans-serif;
    --font3: 'Argon', sans-serif;
}

* {
    box-sizing: border-box;
}

a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.4s;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    max-width: 100%;
    width: auto;
    height: auto;
    z-index: 1;
}

html .container {
    /* max-width: 100%;
    width: 1370px; */
    width: 100%;
    max-width: 1370px;
    margin: 0 auto;
    padding: 0 25px;
}

html .btn {
    background: var(--primary);
    border-radius: 40px;
    padding: 0 32px;
    border: 1px solid transparent;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    line-height: 48px;
    letter-spacing: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: top;
    transition: all 0.4s;
    text-transform: uppercase;
}

html .btn:hover {
    background: var(--dark);
    color: var(--white);
}


section {
    padding: 100px 0px;
    position: relative;
}


.title h3 {
    font-size: 70px;
    color: var(--primary);
    line-height: 100%;
    margin-bottom: 24px;
    font-family: var(--font2);
    text-transform: uppercase;
}

.title p {
    color: var(--dark);
    line-height: 160%;
    margin-bottom: 0px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 13;
}

header .main-header {
    display: flex;
    justify-content: space-between;
    padding: 40px 50px 20px 80px;
    align-items: center;
    transition: all 0.5s;
}

html.sticky header .main-header {
    padding: 15px 25px;
    backdrop-filter: blur(10px);
    background: #000000cc;
}

html.nav-show .hero {
    background: #00000099;
}

body.menu-active .logo {
    z-index: -1;
}

html header .main-header .logo a {
    display: block;
    max-width: 97px;
    transition: all 0.5s;
}

html.sticky header .main-header .logo a {
    max-width: 75px;
}

body.menu-active {
    overflow: hidden;
}

.nav-menu {
    display: block;
    cursor: pointer;
}

.nav-close {
    display: none;
    padding: 9px;
    background: var(--primarylight);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.nav-close svg path {
    transition: all 0.4s ease;
}

.nav-close:hover {
    background: rgba(0, 0, 0, 0.06);
}

.nav-close:hover svg path {
    stroke: var(--primarylight);
}

/* Side Menu */
.side-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 450px;
    height: 100vh;
    background: #8b4f45;
    padding: 100px 50px 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 1000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Menu Links */
.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links li {
    margin-bottom: 30px;
}

.nav-links a {
    font-family: var(--font3);
    /*font-weight: 700;*/
    /* font-size: 36px; */
    font-size: 24px;
    line-height: 100%;
    color: var(--primarylight);
    text-decoration: none;
    position: relative;
}

.nav-links a {
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--primarylight);
    right: -60px;
    top: 60%;
    transform: translateX(-20px) translateY(-50%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: translateX(0) translateY(-50%);
    opacity: 1;
}

li a.showSubmenu::after {
    display: none;
}

/* row for Menu + icon */
.menu-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* submenu animation */
.submenuWrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.has-submenu.active .submenuWrap {
    max-height: 500px;
}

.submenuWrap ul {
    padding-left: 30px;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.has-submenu .submenu li {
    margin-bottom: 0;
}


/* icon visibility */
.closeIcon {
    display: none;
}

.has-submenu.active .openIcon {
    display: none;
}

.has-submenu.active .closeIcon {
    display: block;
}

/* click area */
.showSubmenu {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.4s ease;
}

.submenu a {
    font-weight: 500;
    /* font-size: 22px; */
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--primarylight);
}

.showSubmenu:hover {
    background: #0000000F;
    border-radius: 50%;
}

/* Social Links */
.social-links {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links li {
    list-style: none;
}

.social-links li a {
    width: 56px;
    height: 56px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primarylight);
    font-weight: bold;
    text-decoration: none;
    transition: all 0.4s;
}

.social-links li a:hover {
    background-color: var(--primarylight);
}

.social-links li a svg {
    transition: all 0.4s;
}

.social-links li a:hover svg path {
    fill: var(--primary);
}



/* Overlay */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: #0000001A;
    backdrop-filter: blur(7px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    z-index: -1;
}

/* Toggle States */
body.menu-active .nav-menu {
    display: none;
}

body.menu-active .nav-close {
    display: flex;
    position: fixed;
    top: 64px;
    right: 50px;
    z-index: 9999;
    cursor: pointer;
}

html.sticky body.menu-active .nav-close {
    top: 44px;
    right: 20px;
}

body.menu-active .side-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

body.menu-active .menu-overlay {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}


/* hero-section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 0;
    padding: 0px;
}



/* Slider */
.hero-slider,
.hero-slider .slide {
    position: relative;
    height: 100vh;
}

.slide {
    position: relative;
    background-size: cover;
    background-position: center;
}


/* slide wrapper */
.slide {
    position: relative;
}

.banner-img {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.banner-img::before {
    position: absolute;
    content: '';
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
    pointer-events: none;
}

.banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.2);
    transition: all 8s;
}

.hero-title {
    width: 100%;
    position: absolute;
    z-index: 2;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    color: var(--white);
}

.slide-title {
    font-family: var(--font2);
    font-weight: 500;
    font-size: 90px;
    line-height: 120%;
    text-align: center;
    margin: 0 0 10px;
    padding: 0 20px;
    text-transform: uppercase;
}

.sub-title {
    font-family: var(--font1);
    font-weight: 400;
    font-size: 20px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    margin: 0;
}

.owl-item.active .banner-img img {
    transform: scale(1);
}

.owl-item.active .slide-title {
    animation: fadeUp 1.5s ease forwards;
}

.owl-item.active .sub-title {
    animation: fadeUp 1.5s ease forwards;
}


@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dots styling */
.owl-dots {
    position: absolute;
    bottom: 30px;
    width: 100%;
    z-index: 3;
    display: flex;
    text-align: center;
    justify-content: center;
    gap: 6px;
    pointer-events: all;
}

.owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    opacity: 1;
    border-radius: 30px;
    border: 1px solid #FFFFFF4D !important;
    pointer-events: all;
    transition: all 0.4s;
}

.owl-dots .owl-dot:hover,
.owl-dots .owl-dot.active {
    background-color: #fff;
    opacity: 1;
}

.icon-bar {
    position: fixed;
    right: 35px;
    bottom: 40px;
    z-index: 12;
}

.icon-bar ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ICON */
.icon-bar li {
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.35s ease;
}

.icon-bar li a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* ALWAYS SHOW TOGGLE */
.icon-bar li.toggle {
    width: 46px;
    height: 46px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.icon-bar li.toggle i {
    background-color: var(--primary);
}

/* ACTIVE STATE */
.icon-bar.active li {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

/* TOOLTIP */
.tooltip {
    position: absolute;
    right: 60px;
    font-family: var(--font1);
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    background: var(--primarylight);
    color: var(--primary);
    padding: 7px 10px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: 0.4s ease;
    pointer-events: none;
}

.tooltip::after {
    position: absolute;
    content: '';
    width: 5px;
    height: 10px;
    background-image: url('/images/arrow.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
}

/* SHOW TOOLTIP ON HOVER */
.icon-bar li:hover .tooltip {
    opacity: 1;
    transform: translateX(0);
}

.toggle a {
    position: relative;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
}

.toggle .icon {
    position: absolute;
    transition: 0.4s ease;
}

/* default */
.icon-close {
    opacity: 0;
    transform: rotate(-90deg) scale(0.8);
}

/* when active */
.icon-bar.active .icon-menu {
    opacity: 0;
    transform: rotate(90deg) scale(0.8);
}

.icon-bar.active .icon-close {
    opacity: 1;
    transform: rotate(0) scale(1);
}





.inner_banner_sec {
    background-image: url(../images/inner-banner-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 180px;
    z-index: 1;
}

.inner_banner_sec:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #00000099;
    z-index: -1;
}

.inner_banner_sec h3 {
    font-size: 60px;
    font-weight: 500;
    line-height: 100%;
    text-transform: uppercase;
    letter-spacing: 0px;
    color: var(--white);
    margin: 0px;
    font-family: var(--font2);
    text-align: center;
}

.inner_banner_sec img {
    position: absolute;
    bottom: -74px;
    right: 200px;
    animation: rotate 25s linear infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

footer {
    background-image: url(../images/half-leave.png);
    background-repeat: no-repeat;
    background-position: 100% 65%;
    position: relative;
}

footer .garlic-img,
footer .tomato-img {
    position: absolute;
}

footer .garlic-img {
    top: auto;
    bottom: 44px;
    left: 22px;
}

footer .tomato-img {
    position: absolute;
    bottom: 0;
    left: auto;
    right: 77px;
}

footer .footer_top {
    padding: 60px 0px 50px;
}

footer .footer_middle {
    padding: 30px 0px;
    position: relative;
}

footer .footer_bottom {
    padding: 30px 0px;
}

footer .footer_middle:before,
footer .footer_middle:after {
    position: absolute;
    content: "";
    height: 1px;
    width: 100%;
    top: 0;
    background: linear-gradient(90deg, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 0.1) 48%, rgba(5, 5, 5, 0) 100%);
}

footer .footer_middle:after {
    bottom: 0px;
    top: auto;
}

footer ul {
    display: flex;
}

footer .footer_middle ul {
    gap: 60px;
    justify-content: center;
}

.footer_middle ul li {
    font-size: 16px;
    font-weight: 500;
    position: relative;
}

.footer_middle ul li:before {
    position: absolute;
    content: "";
    height: 5px;
    width: 5px;
    background-color: var(--primary);
    border-radius: 50%;
    right: -30px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.footer_middle ul li:last-child:before {
    display: none;
}

.footer_middle ul li a {
    color: var(--dark);
}

.footer_middle ul li:hover a,
.footer_middle ul li.active a {
    color: var(--primary);
}

.footer_bottom p {
    font-size: 15px;
    line-height: 130%;
    color: var(--dark);
    text-align: center;
}

footer .footer_logo {
    text-align: center;
    margin-bottom: 50px;
}

footer .footer_logo img {
    transition: all 0.5s;
}

footer .footer_logo img:hover {
    transform: scale(0.98);
}

.footer_top ul {
    gap: 46px;
    justify-content: center;
}

.footer_top ul li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer_top ul li .icon {
    height: 44px;
    min-width: 44px;
    background-color: #0505050A;
    border: 1px solid #0505050A;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer_top ul li p,
.footer_top ul li a {
    font-size: 18px;
    font-weight: 500;
    color: var(--dark);
    line-height: 150%;
    margin-bottom: 0px;
    margin-top: 0;
}

.footer_top ul li:hover a {
    color: var(--primary);
}

.footer_top ul li:first-child p {
    max-width: 436px;
    width: 100%;
}

.connect_sec .title p {
    max-width: 870px;
    width: 100%;
    margin: auto;
    margin-bottom: 20px;
}

.connect_sec .title {
    margin-bottom: 40px;
}

.connect_sec .contact_form_wrap {
    background-color: #93524c;
    max-width: 832px;
    width: 100%;
    margin: auto;
    overflow: hidden;
    position: relative;
    padding: 3px;
}

.contact_form_wrap input.form-control,
.contact_form_wrap textarea.form-control {
    margin-bottom: 20px;
    background-color: #93524C12;
    border: 1px solid #0505050A;
    backdrop-filter: blur(6px);
    border-radius: 26px;
    padding: 0px 22px;
    height: 50px;
    font-size: 15px;
    color: var(--dark);
}

.contact_form_wrap textarea.form-control {
    height: 100px;
    padding: 14px 22px;
}

.contact_form_wrap input.form-control:focus,
.contact_form_wrap textarea.form-control:focus {
    box-shadow: unset;
}

.contact_form_wrap input.form-control::placeholder,
.contact_form_wrap textarea.form-control::placeholder {
    color: #050505E5;
}

.contact_form_wrap form {
    margin-bottom: 0px;
    text-align: center;
    padding: 100px 67px;
    background: #f5e5d5;
}

.contact_form_wrap .input-with-icon {
    position: relative;
}

.contact_form_wrap .input-with-icon .calendar-icon {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.contact_form_wrap .input-with-icon .calendar-icon svg {
    width: 16px;
    height: 16px;
}

.contact_form_wrap .custom-time {
    background-color: #93524C12;
    border: 1px solid #0505050A;
    backdrop-filter: blur(6px);
    border-radius: 40px;
    padding: 12px 20px;
    font-size: 16px;
    color: #5a4636;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    box-shadow: none;
    cursor: pointer;
}

.contact_form_wrap .custom-time {
    background-image: url("data:image/svg+xml;utf8,<svg fill='%235a4636' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

.contact_form_wrap .custom-time:focus {
    outline: none;
    box-shadow: none;
    background-color: #d9c7b6;
}

.connect_sec img.garlic-img,
.connect_sec img.leave-img {
    position: absolute;
}

.connect_sec img.garlic-img {
    top: 153px;
    left: 0;
    filter: drop-shadow(0px 40px 32px #00000026);

}

.connect_sec img.leave-img {
    left: auto;
    right: 60px;
    top: auto;
    bottom: 170px;
    filter: drop-shadow(0px 24px 24px #0000002B);
}

.contact_form_wrap .wrp .circle {
    position: absolute;
    width: 50px;
    height: 50px;
    left: 0px;
    top: 0;
    background-image: url('data:image/svg+xml,<svg width="50" height="50" viewBox="0 0 50 50" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_301_20)"><circle cx="58.4375" cy="58.4375" r="56.9375" transform="matrix(-4.37114e-08 1 1 4.37114e-08 -66.875 0)" fill="%23F5E4D4" stroke="%2393524C" stroke-width="3"/></g><defs><clipPath id="clip0_301_20"><rect width="50" height="50" fill="white" transform="matrix(-4.37114e-08 1 1 4.37114e-08 2.18557e-06 0)"/></clipPath></defs></svg>');
    transform: rotate(90deg);
}

.contact_form_wrap .wrp .circle.circle-2 {
    left: auto;
    right: 0;
    transform: rotate(180deg);
}

.contact_form_wrap .wrp .circle.circle-3 {
    top: auto;
    bottom: 0;
    transform: rotate(0deg);
}

.contact_form_wrap .wrp .circle.circle-4 {
    top: auto;
    bottom: 0;
    left: auto;
    right: 0;
    transform: rotate(270deg);
}

.cnt_detail_sec {
    background-image: url(../images/graps.png);
    background-repeat: no-repeat;
    background-position: 100% 94%;
}

.cnt_detail_sec .container {
    width: 1120px;
    max-width: 100%;
}

.cnt_detail_sec .title h3 {
    font-size: 50px;
    margin-bottom: 16px;
}

.cnt_detail_sec .title {
    margin-bottom: 40px;
}

.cnt_info_wrap ul.social_media {
    display: flex;
    gap: 8px;
}

.cnt_info_wrap ul.social_media a {
    height: 50px;
    width: 50px;
    display: inline-block;
    border: 1px solid #93524C;
    background-color: #F5E4D5;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    border-radius: 30px;
    color: var(--primary);
    transition: all 0.5s;
}

.cnt_info_wrap ul.social_media a:hover {
    background-color: var(--primary);
    color: var(--white);
}

.cnt_detail_sec ul.cnt_info li {
    display: flex;
    gap: 12px;
}

.cnt_detail_sec ul.cnt_info li .icon {
    height: 50px;
    min-width: 50px;
    background-color: #93524C;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cnt_detail_sec ul.cnt_info li {
    margin-bottom: 30px;
}

.cnt_detail_sec ul.cnt_info li span {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #93524C;
    line-height: 120%;
    margin-bottom: 4px;
    display: block;
}

.cnt_detail_sec ul.cnt_info li p,
.cnt_detail_sec ul.cnt_info li a {
    margin-bottom: 0px;
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
    color: #050505;
}

.cnt_detail_sec ul.cnt_info li a:hover {
    color: var(--primary);
}

.cnt_detail_sec ul.cnt_info li .content {
    padding-left: 0px;
}

.cnt_detail_sec .content {
    padding-left: 38px;
}

.cnt_detail_sec ul.cnt_info li:last-child {
    margin-bottom: 40px;
}



.about_hero_sec .container {
    width: 780px;
    max-width: 100%;
}

.about_hero_sec {
    padding-bottom: 0;
    padding-top: 132px;
    background-color: var(--primary);
}

.aboutus_sec .image_wrpr img {
    border: 4px solid var(--primary);
    width: 280px;
    min-width: 280px;
    max-width: 100%;
    display: block;
}

.aboutus_sec .image_wrpr {
    width: 695px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    min-height: 480px;
}

.aboutus_sec .image_wrpr img.image1 {
    position: absolute;
    left: 78px;
    top: 0;
}

.aboutus_sec .image_wrpr img.image2 {
    position: absolute;
    top: 196px;
    left: 0;
}

.aboutus_sec .image_wrpr img.image5 {
    position: absolute;
    top: 207px;
    right: 0;
    left: auto;
}

.aboutus_sec .image_wrpr img.image4 {
    position: absolute;
    right: 34px;
    top: 8px;
    left: auto;
}

.aboutus_sec .image_wrpr img.image3 {
    position: absolute;
    top: 71px;
    left: 175px;
}

.aboutus_sec .hello_img img {
    margin-left: 13px;
    display: block;
    margin-top: 5px;
}

section.theart_sec {
    padding-bottom: 65px;
    padding-top: 0;
}

.milan_italy_logo {
    height: 155px;
    width: 155px;
    display: block;
    margin: 26px auto 90px;
}

.theart_content {
    max-width: 100%;
    width: 730px;
    margin: 0 auto;
}

.theart_content h2 {
    font-family: var(--font2);
    font-weight: 500;
    font-size: 54px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.theart_content h5 {
    font-family: var(--font2);
    margin: 30px 0 14px;
}

.theart_content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #050505;
}

.theart_content p:last-child {
    margin-bottom: 0;
}

section.aboutus_sec {
    padding-top: 0;
    padding-bottom: 330px;
    margin-top: -1px;
}

section.aboutus_sec:before {
    content: "";
    background-color: var(--primary);
    position: absolute;
    inset: 0;
    height: 560px;
    z-index: -1;
}

.cta-image-wrapper {
    position: absolute;
    transform-style: preserve-3d;
}

#gallery {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    grid-template-columns:auto auto auto;
    display: grid;
}

#gallery {
    column-width: 350px;
    gap: 30px;
}

#gallery li {
    width: 100%;
    height: auto;
    display: block;
    break-inside: avoid;
    background: #000;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    margin-bottom: 0;
    transition: all 0.4s;
}

#gallery img {
    width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
    position: static !important;
    transition: all 1s;
}

#gallery li:hover img {
    transform: scale(1.08);
}

#gallery .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    top: auto !important;
    right: 0;
    padding: 30px;
    font-size: 28px;
    font-weight: 500;
    font-family: var(--font2);
    color: #fff;
    text-align: center;
    z-index: 2;
    line-height: 100%;
}

#gallery li:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

.milan_italy_logo img {
    display: block;
    animation: rotate 25s linear infinite;
}

.event_bx {
    background: #EEDACA;
    padding: 20px;
    border-radius: 14px;
    border: 2px solid transparent;
    position: relative;
    transition: all 0.4s;
}

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

.event_bx .image {
    height: 260px;
    display: block;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.event_bx .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.event_bx .date {
    background: #00000066;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 4px 14px;
    color: #FFF;
    font-size: 12px;
    font-weight: 500;
    position: absolute;
    top: 0;
    right: 0;
    margin: 30px;
    z-index: 2;
}

.event_bx .cntnt {
    margin-top: 24px;
}

.event_bx .cntnt a {
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    margin-bottom: 10px;
    display: block;
    color: var(--primary);
}

.event_bx .cntnt a:hover {
    color: var(--dark);
}

.event_bx .cntnt p {
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    color: #050505;
    margin: 0;
}

section.galerry_sec .container,
section.event_sec .container {
    width: 1370px;
    max-width: 100%;
    padding: 0 25px;
}

.event-carousel .owl-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s;
}

.event_bx:hover .event-carousel .owl-nav {
    visibility: visible;
    opacity: 1;
}

.event-carousel .owl-nav button {
    background: #00000066 !important;
    backdrop-filter: blur(10px);
    height: 30px;
    width: 30px;
    border-radius: 50px;
    color: #FFF !important;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    margin: auto;
    transition: all 0.4s;
}

.event-carousel .owl-nav button:hover {
    background: var(--primary) !important;
    color: #FFF !important;
}

.event-carousel .owl-nav button.owl-next {
    left: auto;
    right: 20px;
}

.laxraj-love svg {
    color: var(--primary);
    margin: 0 3px;
    font-size: 10px;
    animation: pound .35s infinite alternate;
    -webkit-animation: pound .35s infinite alternate;
    width: 12px;
    height: auto;
}

@keyframes pound {
    100% {
        transform: scale(1.1);
    }
}

.lime-love {
    font-size: 14px;
    font-weight: 400;
    line-height: 130%;
    color: #050505;
}

.lime-love a {
    color: #050505;
}

.lime-love a:hover {
    color: var(--primary);
}

html .fancybox__thumbs {
    display: none;
}