@import url('https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@latest/css/all.min.css');

/* ===== Custom Font: Non Natural Grotesk ===== */
@font-face {
    font-family: 'Non Natural Grotesk Variable';
    src: url('../fonts/Non-Natural-Grotesk-Variable.woff') format('woff');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Non Natural Grotesk Bold';
    src: url('../fonts/Non-Natural-Grotesk-Plain-Bold.woff') format('woff');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Non Natural Grotesk Light';
    src: url('../fonts/Non-Natural-Grotesk-Plain-Light.woff') format('woff');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Non Natural Grotesk Medium';
    src: url('../fonts/Non-Natural-Grotesk-Plain-Medium.woff') format('woff');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Non Natural Grotesk Regular';
    src: url('../fonts/Non-Natural-Grotesk-Plain-Regular.woff') format('woff');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Non Natural Grotesk Thin';
    src: url('../fonts/Non-Natural-Grotesk-Plain-Thin.woff') format('woff');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --full: 100%;
    --relative: relative;
    --flex: flex;
    --center: center;
    --cover: cover;
    --absolute: absolute;
    --half: 50%;
    --hidden: hidden;
    --fs-10: 10px;
    --fs-12: 12px;
    --fs-14: 14px;
    --fs-15: 15px;
    --fs-16: 16px;
    --fs-18: 18px;
    --fs-20: 20px;
    --fs-22: 22px;
    --fs-24: 24px;
    --fs-25: 25px;
    --fs-28: 28px;
    --fs-32: 32px;
    --fs-36: 36px;
    --fs-45: 45px;
    --fw-700: 700;
    --fw-500: 500;
    --fs-1: 1px;
    --primary-color: #1C3C34;
    --sec-color: #732f4e;
    --ter-color: #eeec46;
    --fern-color: #67833d;
    --grey-color: #d8d4d7;
    --dark-grey: #222222;
    --light-white: #fcfdf8;
    --black: #000000;
    --col: column;
    --white: white;
    --auto: auto;
    --zero: 0;
    --left: left;
    --block: block;
    --inline-block: inline-block;
    --inherit: inherit;
    --body-font: 'Non Natural Grotesk Regular', sans-serif;
    --heading-font: 'Non Natural Grotesk Bold';
    --heading-lg: 30px;
    --heading-md: 26px;
    --heading-sm: 22px;
    --normal: normal;
    --none: none;
    --uppercase: uppercase;
}


body {
    font-family: var(--body-font);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    text-transform: var(--inherit);
}

.pt-5 {
    padding-top: 5rem;
}

.pb-5 {
    padding-bottom: 5rem;
}

.primary-color {
    color: var(--primary-color) !important;
}

.primary-bg-color {
    background-color: var(--primary-color);
}

.sec-bg {
    background-color: var(--sec-color);
}

.sec-color {
    color: var(--sec-color) !important;
}

.tertiary-bg {
    background-color: var(--ter-color);
}

.tertiary-color {
    color: var(--ter-color);
}

.fern-color, .bg-fourth {
    background-color: var(--fern-color);
}

.bg-black {
    background-color: var(--black);
}

.text-white {
    color: var(--white);
}

.text-center {
    text-align: var(--center);
}

.text-black {
    color: var(--black);
}

.grey-color {
    color: var(--grey-color);
}

.grey-bg {
    background-color: var(--grey-color);
}

.section-heading-size {
    font-size: var(--fs-24);
}

.sec-btn {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    line-height: var(--normal);
    margin-top: 20px;
}

    .sec-btn:hover {
        color: var(--primary-color);
    }

.d-inline-block {
    display: var(--inline-block);
}

.ll-heading {
    font-size: var(--fs-36);
}

.heading-lg {
    font-size: var(--heading-lg);
}

.heading-md {
    font-size: var(--heading-md);
}

.heading-sm {
    font-size: var(--heading-sm) !important;
}

.bg-white {
    background-color: var(--white) !important;
}

.dark-grey {
    color: var(--dark-grey);
}

.fs-18 {
    font-size: var(--fs-18);
}

.fw-bold {
    font-family: var(--heading-font);
}

.text-uppercase {
    text-transform: var(--uppercase) !important;
}

.custom-pt-1 {
    padding-top: 50px;
}

.custom-pb-1 {
    padding-bottom: 50px;
}

.para-width {
    max-width: 55%;
    margin-right: var(--auto);
    margin-left: var(--auto);
    display: var(--block);
}

.btn-pad {
    padding: 12px 30px;
}

.custom-mt-new {
    margin-top: 25px;
}

.custom-mb-0 {
    margin-bottom: 0;
}

.custom-mt-1 {
    margin-top: 50px;
}

.custom-mb-1 {
    margin-bottom: 50px;
}

.global-radius {
    border-radius: 15px;
}

.lh-1 {
    line-height: 1.4;
}

.align-center {
    align-items: var(--center);
}

.justify-center {
    justify-content: var(--center);
}

.gap-10 {
    grid-gap: 10px;
}

/*end global classes */
.header nav.primary_nav ul li a:link, .header nav.primary_nav ul li a:visited, .header nav.primary_nav ul li a:focus {
    color: rgb(28, 60, 52);
}

.header nav.primary_nav ul li a {
    text-transform: capitalize;
    font-weight: 600;
}

.header nav.primary_nav ul li a {
    font-size: 1em;
}

.header nav.primary_nav ul li.menu-active a {
    color: var(--sec-color);
}

.header nav.primary_nav ul li.book-now-btn, .primary-btn {
    background-color: rgb(28, 60, 52);
    border-radius: 15px;
    box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.2);
}

    .header nav.primary_nav ul li.book-now-btn a, .primary-btn {
        color: var(--white) !important;
    }

a.menu-toggler span.lines, a.menu-toggler span.lines::before, a.menu-toggler span.lines::after {
    height: 2px;
    background: rgb(28, 60, 52);
}

.nav_and_tools.nav_centered {
    left: 60%;
}

.banner-wrapper {
    position: var(--relative);
    width: var(--full);
    height: 90vh;
    overflow: var(--hidden);
}

.inner-banner-wrapper {
    height: 80vh;
}

.bg-common-ui {
    background-position: var(--center);
    background-repeat: no-repeat;
    background-size: var(--cover);
    height: var(--full);
    width: var(--full);
    position: var(--relative);
}

.common-flex {
    display: var(--flex);
    align-items: var(--center);
    justify-content: var(--center);
}

.home-banner-bg {
    background-image: url("/assets/images/banner.jpg");
}

.rest-banner-bg {
    background-image: url("/assets/images/RESTAURANT.jpg");
}

.stay-banner-bg {
    background-image: url("/assets/images/25.jpg");
}

.crockertor-banner-bg {
    background-image: url("/assets/images/8.jpg");
}

.weddings-banner-bg {
    background-image: url("/assets/images/WeddingShot.jpg");
}

.view-wed-gallery {
    background-image: url("/assets/images/wedding-gallery-1.jpg");
}

.things-banner-bg {
    background-image: url("/assets/images/dartmoor-leat.jpg");
}

.confer-banner-bg {
    background-image: url("/assets/images/conference-main-bg.jpg");
    background-position: top center;
}

.whatsOn-banner-bg {
    background-image: url("/assets/images/group-happy-people.jpg");
}

.contact-new-banner-bg {
    background-image: url("/assets/images/3.jpg");
}

.why-choose-dartmoor-new .img-block {
    height: 470px;
}

.custom-mw {
    max-width: 50%;
}

.has-overlay::after {
    position: var(--absolute);
    width: var(--full);
    height: var(--full);
    content: '';
    background-color: rgba(0,0,0,0.3);
    right: var(--zero);
    left: var(--zero);
}

.has-overlay-two::after {
    background-color: rgba(0,0,0,0.6);
}

.z-1 {
    z-index: 1;
}

.submit_btn {
    padding: 10px 20px;
    border: var(--none);
}

span.your-name, span.your-phone, span.your-email, span.your-subject, span.your-message {
    opacity: 1 !important;
}

.form-control {
    background-color: var(--white);
}

.rooms-main-all .common-text-block ul li {
    padding: 5px 0;
}

.address-center {
    display: flex;
    justify-content: center;
    color: #1B3A33;
}

.mail-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #1B3A33;
}

.flex-gap {
    justify-content: center;
    align-items: center;
    display: flex;
    gap: 10px;
}

.banner-overlay-content {
    position: var(--relative);
    z-index: 2;
    text-align: var(--center);
}

.banner-image-wrapper {
    position: var(--relative);
    display: var(--inline-block);
    animation: fadeInUp 1.2s ease both;
}

.banner-center-image {
    max-width: 700px;
    width: var(--full);
    height: var(--auto);
    border-radius: var(--fs-20);
}

.banner-text {
    position: var(--absolute);
    top: var(--half);
    left: var(--half);
    font-family: 'Non Natural Grotesk Bold', sans-serif;
    transform: translate(-50%, -50%);
    color: var(--white);
    width: var(--half);
    padding: var(--fs-10);
}

.banner-title {
    font-size: var(--fs-45);
    letter-spacing: var(--fs-1);
    animation: fadeInDown 1s ease both;
    text-transform: var(--inherit);
}

.text-center {
    text-align: var(--center);
}

.container {
    margin-right: var(--auto);
    margin-left: var(--auto);
    padding-left: var(--fs-15);
    padding-right: var(--fs-15);
}

.row {
    margin-left: -15px;
    margin-right: -15px;
    overflow: var(--hidden);
}

.explore-lodge-img-card {
    height: 390px;
}

    .explore-lodge-img-card img {
        height: var(--full);
        object-fit: var(--cover);
        width: var(--full);
    }

.explore-lodge-card .text-part {
    background-color: var(--primary-color);
    color: var(--white);
    margin: var(--zero);
    padding: var(--fs-20) var(--zero);
    font-size: var(--fs-24);
    font-weight: var(--fw-500);
}

.green-text {
    display: var(--flex);
    flex-direction: var(--col);
    justify-content: var(--center);
    align-items: var(--center);
}

    .green-text h3, .green-text h6 {
        font-weight: var(--fw-700);
        color: var(--primary-color);
        margin: 50px 0 35px 0;
    }

    .green-text h3 {
        font-size: var(--fs-36);
    }

    .green-text h6 {
        font-size: var(--fs-22);
        margin: 35px 0 20px 0;
    }

    .green-text p {
        font-size: var(--fs-16);
        line-height: var(--fs-25);
    }


.banner-little-lodge {
    background-image: url("/assets/images/4.jpg");
}

.little-lodge-banner-bg {
    background-image: url("/assets/images/4.jpg");
}

.slide-caption-common {
    color: var(--white);
}

.abs-img {
    position: var(--absolute);
    max-width: 35%;
    right: var(--auto);
    left: var(--half);
    top: var(--half);
    z-index: 1;
    margin: var(--auto);
    transform: translate(-50%, -50%);
}

.small-banner-wrapper {
    height: 65vh;
}

footer a:link, footer a:visited {
    color: var(--white);
}

    footer a:link:hover, footer a:visited:hover {
        color: var(--ter-color);
    }

.mb-custom {
    margin-bottom: 30px;
}

.d-block {
    display: var(--block);
}

.c-closed {
    background-color: #3a836f;
    padding: 15px;
    color: #eeeb54;
    font-size: 24px;
    border-radius: 5px;
}

.open-tagline {
    font-size: 13px;
    letter-spacing: 1px;
    padding-top: 6px;
}

.downloadBtn {
    margin-top: 10px;
    padding: 6px 12px;
    background: #1a73e8;
    color: #fff !important;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    display: inline-block;
}

/* Overlay background */
.custom-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

/* Popup Box */
.eat-popup .popup {
    background: #fff;
    padding: 20px;
    width: 75%;
    height: auto;
    border-radius: 12px;
    position: relative;
    animation: popupFade 0.3s ease;
}

/* Close Button */
.eat-popup .closeBtn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 25px;
    cursor: pointer;
}

/* Images */
.eat-popup .image-container {
    margin-top: 15px;
    width: auto;
    height: auto;
}

    .eat-popup .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 6px;
    }

.tasteful-block {
    padding-bottom: 10px !important;
}

/*event page popup*/

.hover-wrapper {
    position: relative;
    overflow: hidden;
}

    .hover-wrapper img {
        width: 100%;
        display: block;
        transition: 0.3s;
    }

    .hover-wrapper:hover img {
        filter: brightness(70%);
    }

/* Button on Hover */
.hover-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px 20px;
    background: #ffffff;
    color: #000;
    border: none;
    font-weight: bold;
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
}

.hover-wrapper:hover .hover-btn {
    opacity: 1;
    pointer-events: auto;
}

/* Popup Styles */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-box {
    background: white;
    padding: 30px;
    width: 400px;
    border-radius: 10px;
    position: relative;
    animation: popupAnim 0.3s ease;
}

@keyframes popupAnim {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.popup-box input, .popup-box textarea {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #cccccc;
    font-size: 14px;
}

.submit-btn {
    width: 100%;
    padding: 10px;
    background: #000;
    color: white;
    border: none;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}




/* Animation */
@keyframes popupFade {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

#openPopupBtn {
    background-color: #eeeb54;
    border: none;
    border-radius: 15px;
    padding: 12px 30px;
    font-size: 16px;
    box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.2);
}

/*new carousel*/

.home-new-images-slide .img-block img {
    object-fit: var(--cover);
}

.new-carousel-block .item {
    position: var(--relative);
}

.new-carousel-block .owl-nav {
    display: var(--flex);
    justify-content: space-between;
    position: var(--absolute);
    top: 50%;
    left: var(--zero);
    right: var(--zero);
    transform: translateY(-50%);
    background: none !important;
}

    .new-carousel-block .owl-nav button {
        cursor: pointer;
        transition: background 0.3s;
    }

.owl-theme.new-carousel-block .owl-controls .owl-nav [class*='owl-'] {
    background: var(--none);
    display: var(--block) !important;
}

    .owl-theme.new-carousel-block .owl-controls .owl-nav [class*='owl-']:hover {
        background: var(--none);
    }

.owl-theme.new-carousel-block .owl-controls .owl-nav i {
    display: var(--none);
}

.owl-theme.new-carousel-block .owl-controls .owl-nav .owl-prev, .owl-theme.new-carousel-block .owl-controls .owl-nav .owl-next {
    position: var(--relative);
}

.new-carousel-block .owl-prev img, .new-carousel-block .owl-next img {
    position: var(--relative);
    width: 30px !important;
    height: var(--auto) !important;
}


.owl-theme.new-carousel-block .owl-dots {
    display: var(--none) !important;
}


.testi-carousel-block li p {
    max-width: 75%;
    margin-right: var(--auto);
    margin-left: var(--auto);
}

.ftr-address {
    font-size: 14px;
}

.rooms-main-all .heading-md {
    margin-top: 40px;
}

.view-wed-gallery {
    min-height: 60vh;
    display: var(--flex);
    flex-direction: column;
    align-items: var(--center);
    justify-content: var(--center);
}

/*gallery block*/

.gallery-section {
    background-color: #7c1d3f;
}

.gallery-wrapper {
    padding: 20px;
}

.top-image {
    width: 100%;
}

.gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Top Image */
.top-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Grid Images */
.grid-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: var(--full);
}

    .grid-images img {
        width: var(--full);
        max-height: 340px;
        object-fit: var(--full);
        border-radius: 6px;
        transition: transform 0.3s ease;
        height: var(--full);
        cursor: pointer;
    }

        .grid-images img:hover {
            transform: scale(1.05);
        }

.lightbox {
    display: var(--none);
    position: fixed;
    z-index: 9999;
    top: var(--zero);
    left: var(--zero);
    width: var(--full);
    height: var(--full);
    background: rgba(0, 0, 0, 0.9);
    justify-content: var(--center);
    align-items: var(--center);
}

.lightbox img {
    width: 700px;
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.lightbox span {
    position: var(--absolute);
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    user-select: var(--none);
}

.close {
    top: 20px;
    right: 30px;
}

.prev {
    left: 100px;
}

.next {
    right: 100px;
}

.dark-brown-bg {
    background-color: #7c1d3f;
}

.common-text-block li strong {
    font-family: var(--heading-font);
}

.head-animation-container {
    display: var(--flex);
}


.xmas {
    padding: 5px;
    position: relative;
    top: -10px;
    font-size: 14px;
    color: #a10707;
    right: 7px;
    font-family: cursive;
    font-weight: 500;
}


.menu-list {
    margin: 20px auto;
    text-align: var(--center);
}

.pdf-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: var(--flex);
    justify-content: var(--center);
    align-items: var(--center);
    width: var(--full);
    grid-gap: 10px;
    flex-wrap: wrap;
}

.pdf-menu li {
    margin-bottom: 12px;
}

.pdf-menu li a {
    display: var(--block);
    padding: 12px 10px;
    background: var(--primary-color);
    border-radius: 6px;
    text-decoration: none;
    color: #f4f4f4;
    font-size: 1.2rem;
    transition: 0.3s ease;
    box-shadow: 3px 5px 10px rgba(0,0,0,0.4);
}

.pdf-menu li a:hover {
    background: #f4f4f4;
    color: var(--primary-color);
}

/* === ANIMATED TREE === */
.animated-tree {
    width: 120px;
    margin-top: 30px;
    text-align: var(--center);
}

.animated-tree svg {
    max-height: 55px;
    display: block;
    overflow: visible;
    margin: auto;
}

.animated-tree svg path {
    fill: #379157;
    stroke: #379157;
    stroke-width: .2;
    transform: scale(0);
    transform-origin: 50% 50%;
    animation: star 8s ease-in-out infinite;
    animation-delay: calc(var(--no) * .025s);
    transform-box: fill-box;
}

@keyframes star {
    0% {
        transform: scale(0);
        animation-timing-function: cubic-bezier(.74,1.72,.57,1.01);
    }

    10% {
        transform: scale(1);
    }

    65% {
        transform: translateY(0px) scale(1);
    }

    75% {
        transform: translateY(50px) scale(0);
    }

    100% {
        transform: translateY(0px) scale(0);
    }
}

/* ------------------------------------
    SNOWFALL
------------------------------------ */
.snow-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.snowflake {
    position: absolute;
    top: -10px;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: snowFall linear infinite;
}

@keyframes snowFall {
    to {
        transform: translateY(110vh);
        opacity: 0;
    }
}




@media (max-width: 990px) {
    .grid-images {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}


/*header logo*/

.logo a.brand img {
    max-height: 80px;
}



/*media starts here*/
@media only screen and (min-width: 992px) {
    .mail-contact {
        display: var(--flex);
        flex-direction: row;
        justify-content: var(--center);
        gap: 30px;
    }
}

@media only screen and (min-width: 1300px) {
    .new-carousel-block .owl-prev img {
        left: -70px;
    }

    .new-carousel-block .owl-next img {
        right: -70px;
    }
}



@media only screen and (max-width: 1440px) and (min-width: 1049px) {
    .header nav.primary_nav ul li.book-now-btn a {
        padding: 7px 10px !important;
    }

    .banner-center-image {
        max-width: 550px;
    }

    .small-banner-wrapper .banner-center-image {
        max-width: 280px;
    }
}

@media only screen and (min-width: 1049px) and (max-width: 1249px) {
    .header nav.primary_nav ul li a {
        font-size: 12px;
    }

    .logo a.brand img {
        /*max-height: 30px;*/
        max-height: 60px;
    }

    .animated-tree {
        margin-top: 12px;
    }
    .animated-tree svg {
        max-height: 55px;
    }
}


@media only screen and (min-width: 1537px) and (max-width: 1799px) {
    .nav_and_tools.nav_centered {
        left: 56%;
    }

    .header nav.primary_nav ul li a {
        margin: 20px;
    }
}


/*max media starts here*/

@media only screen and (max-width: 1299px) {
    .new-carousel-block .owl-prev img, .new-carousel-block .owl-next img {
        display: var(--none);
    }

    .banner-center-image {
        max-width: 550px;
    }

    .banner-title {
        font-size: var(--fs-32);
    }

    .ll-heading {
        font-size: var(--fs-32);
    }

    .green-text h3 {
        font-size: var(--fs-22);
    }

    .green-text h3, .green-text h6 {
        margin: 30px 0 15px 0;
        line-height: var(--normal);
    }

    .green-text p {
        font-size: var(--fs-14);
    }

    .green-text h6 {
        font-size: var(--fs-18);
    }

    .explore-lodge-card .text-part {
        padding: 10px;
        font-size: var(--fs-18);
    }

    .explore-lodge-img-card {
        height: 280px;
    }

    .tripadvisor_image {
        width: 100px;
        height: var(--auto);
    }

    .tripadvisor_image img {
        width: var(--full);
        height: var(--full);
    }

    .eat-popup .popup {
        width: 90%;
    }
}

@media only screen and (max-width: 991px) {
    .explore-lodge-card {
        margin-bottom: 20px;
    }

    footer .copyright_content {
        padding-bottom: 20px;
    }

    .black-friday {
        height: auto;
    }
}

@media only screen and (max-width: 767px) {
    .para-width, .testi-carousel-block li p {
        max-width: var(--full);
    }

    .banner-wrapper {
        height: var(--full);
    }

    .banner-title, .ll-heading, .fs-34 {
        font-size: var(--fs-28) !important;
    }

    .banner-center-image {
        max-width: var(--full);
    }

    .small-banner-wrapper {
        height: 65vh;
    }

    body, .text_block p {
        font-size: var(--fs-14) !important;
    }

    .why-choose-dartmoor-new .img-block {
        height: 350px;
    }

    .owl-theme.new-carousel-block .owl-dots {
        display: var(--flex) !important;
        align-items: var(--center);
        justify-content: var(--center);
    }

    .new-carousel-block .owl-controls {
        width: var(--full);
        align-items: var(--center);
        justify-content: var(--center);
        display: var(--flex);
    }

    .new-carousel-block .img-block {
        height: 200px;
    }

    .new-carousel-block .img-block img {
        object-fit: var(--cover);
        height: var(--full);
        height: var(--full);
    }
    .logo a.brand img {
        max-height: 57px;
    }
    .animated-tree svg {
        max-height: 40px;
    }
    .animated-tree {
        margin-top: 18px;
        width: 100px;
    }
    .xmas {
        top: -7px;
        font-size: 12px;
    }
}
