body {
    #wrap {
        overflow-x: unset;
    }
}

header {
    &.main-header {
        position: sticky;
        top: 0;

        .is-stuck {
            position: unset;
            transform: unset !important;
            transition: ease-in-out .3s;
        }
    }

    .lqd-sticky-placeholder {
        display: none !important;
    }

    .main-header-overlay {
        position: sticky;
        top: 0;
    }

    .is-stuck .navbar-brand {
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .navbar-brand {
        transition: ease-in-out .3s;
    }

    .mobile-marquee {
        display: none;
        --gap: 1rem;
        overflow: hidden;
        user-select: none;
        gap: var(--gap);

        .marquee__content {
            flex-shrink: 0;
            display: flex;
            min-width: 100%;
            gap: var(--gap);
            animation: scroll 15s linear infinite;
            -webkit-animation: scroll 15s linear infinite;
            PADDING: 0 20PX;
            justify-content: flex-end;

            .flex-class {
                display: flex;
                gap: 10px;
                align-items: center;
                color: #a3816a;
            }

            @media screen and (max-width: 410px) {
                flex-direction: column;
                gap: unset;
                align-items: flex-end;
                PADDING: 10px 20PX;

                .flex-class {
                    h3 {
                        margin: 5px 0;
                    }
                }


            }
        }

        @media screen and (max-width: 1199px) {
            display: flex;
        }
    }
}


.omniblock--cta_highlight {

    .grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        letter-spacing: unset;
        margin-left: unset;

        @media screen and (max-width: 767px) {
            grid-template-columns: repeat(1, minmax(0, 1fr));
            grid-template-rows: repeat(2, minmax(0, 1fr));
        }
    }

    .middle {
        background-color: #A3816A;
        display: flex;
        justify-content: center;
        align-items: center;

        .box {
            max-width: 300px;
            text-align: center;
        }

        .text {
            margin-top: 15px;
        }

        .btn {
            padding: 17px 36px;
            background-color: #F9F9F9;
            color: #503c2f;
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            border: unset;

            @media screen and (max-width: 767px) {
                padding: 17px 25px;
                width: max-content;
            }
        }
    }

    .liquid-row-overlay.bg-black {
        background-color: #f9f9f9 !important;
    }

    .img-wrapper {
        position: relative;
        padding-top: 45%;
        min-height: 300px;

        img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            padding: 17px 36px;
            background-color: #F9F9F9;
            color: #503c2f;
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            border: unset;

            @media screen and (max-width: 767px) {
                padding: 17px 25px;
                width: max-content;
            }
        }
    }
}