:root {
    --bg-color: white;
    --text-color: #1B1C21;
    --yellow-color: #E0B432;
    --yellow-bg: #E0B432;
    --violet-color: #4D2762;
}

html,
body {
    height: auto;
    overflow-y: auto;
    scroll-behavior: smooth;
}

.commonSec {
    padding: 120px 0;
}

.yellowBg {
    color: var(--yellow-bg);
}

.yellowText {
    color: var(--yellow-color) !important;
}

.violetText {
    color: var(--violet-color) !important;
}

.bg_1B1C21 {
    background-color: #1B1C21;

    * {
        color: #FFF;
    }

    .btnWrap {
        border-color: rgba(255, 255, 255, 0.50);

        .btnOne {
            color: #FFF;
        }

        /* &:hover {
            border-color: #E9D4A6;

            &::after {
                border-color: #E9D4A6;
            }
        } */
    }

    .pagination {
        ul {
            li {
                border-color: rgba(255, 255, 255, 0.50);

                a {
                    color: #fff;
                }
            }
        }
    }
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background-color: #ccc;
}

::-webkit-scrollbar-thumb {
    background-color: #E0B432;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: 0.3s;
    font-family: 'work Sans';
    font-weight: normal;
}

.headingWrap {
    padding-bottom: 30px;
    position: relative;
}

.secH {
    position: relative;
    color: #E0B432;
    font-size: 85px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 15px;
    text-transform: uppercase;
}

div.asl_r.vertical .results {
    height: 260px !important;
    overflow-y: auto;
}

.br_top_1 {
    border-top: 1px solid #e0b432b6;
}

.br_btm_1 {
    border-bottom: 1px solid #1b1c21b2;
}

/* header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    border-bottom: 1px solid rgba(255, 255, 255, 0.50);
    background: rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(12px);
    transition: all 0.5s;

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

        .logoImg {
            width: 230px;
            height: 120px;
            border-right: 1px solid rgba(255, 255, 255, 0.50);
            transition: all 0.5s;

            a {
                display: block;
                width: 100%;
                height: 100%;
                padding: 10px 10px 10px 0px;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                }
            }
        }

        .headerMid {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 120px;
            width: calc(100% - (230px + 350px));
            border-right: 1px solid rgba(255, 255, 255, 0.50);

            ul {
                display: flex;
                justify-content: center;
                align-items: center;
                width: 100%;
                height: 100%;

                li {
                    padding: 0px 35px;
                    height: 100%;
                    display: flex;
                    align-items: center;

                    &:hover,
                    &.active {
                        a {
                            color: #E0B432;
                        }
                    }

                    &.hasChildActive {
                        >a {
                            color: #E0B432;
                        }
                    }

                    a {
                        color: #FFF;
                        font-family: 'Work Sans';
                        font-size: 18px;
                        font-weight: 400;
                        line-height: 15px;
                        text-transform: uppercase;
                        display: flex;
                        height: 100%;
                        align-items: center;
                        transition: all 0.5s;
                    }

                    &.has_submenu {
                        position: relative;

                        .toggleBtn {
                            position: absolute;
                            top: 50%;
                            right: 8px;
                            transform: translateY(-50%);
                            cursor: pointer;
                            color: #fff;
                            font-size: 18px;
                            transition: all 0.5s;
                        }

                        ul {
                            display: block;
                            width: 100%;
                            max-width: 200px;
                            height: auto;
                            position: absolute;
                            top: 100%;
                            background-color: #fff;
                            visibility: hidden;
                            opacity: 0;
                            transition: all 0.5s;

                            li {
                                background-color: #fff;
                                transition: all 0.5s;
                                padding: 0;

                                a {
                                    color: #E0B432;
                                    padding: 15px 12px;
                                    transition: all 0.5s;
                                    height: auto;
                                    display: block;
                                    width: 100%;
                                    position: relative;
                                }

                                &:not(:last-child) {
                                    border-bottom: 1px solid #E0B432;
                                }

                                &:hover {
                                    background-color: #E0B432;

                                    a {
                                        color: #fff;
                                    }
                                }
                            }

                        }

                        &:hover {
                            .toggleBtn {
                                transform: rotate(180deg) translateY(10px);
                                color: #E0B432;
                            }

                            ul {
                                opacity: 1;
                                visibility: visible;
                            }
                        }
                    }

                }
            }
        }

        .headerRight {
            height: 120px;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            width: 350px;

            .headerSer {
                height: 120px;
                width: 90px;
                border-right: 1px solid rgba(255, 255, 255, 0.50);
                display: flex;
                justify-content: center;
                align-items: center;
                transition: all 0.5s;
                display: none !important;

                .serBtn {
                    width: 50px;
                    height: 50px;
                    border: 1px solid #FFF;
                    border-radius: 50%;
                    padding: 10px;
                    display: flex;
                    text-align: center;
                    justify-content: center;
                    align-items: center;
                    transition: all 0.5s;

                    img {
                        transition: all 0.5s;
                    }

                    &:hover {
                        border-color: transparent;
                        background-color: #E0B432;

                        img {
                            filter: brightness(0) saturate(100%) invert(0%) sepia(7%) saturate(7474%) hue-rotate(13deg) brightness(105%) contrast(106%);
                        }
                    }
                }
            }

            .headerCall {
                a {
                    display: flex;
                    gap: 10px;
                    color: #FFF;
                    font-family: 'Work Sans';
                    font-size: 22px;
                    font-weight: 300;
                    text-transform: uppercase;
                    height: 120px;
                    align-items: center;
                    transition: all 0.5s;
                }

                &:hover {
                    a {
                        color: #E0B432;
                    }
                }
            }

            .headerToggle {
                display: none;
            }
        }
    }

    &.is-sticky {
        position: fixed;
        top: 0;
        left: 0;
        animation: slideDown 0.35s ease-out;
        z-index: 9;
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
        background-color: #000;

        .headerInner {
            .logoImg {
                width: 230px;
                height: 70px;

                a {
                    padding: 5px 5px 5px 0px;
                }
            }

            .logoImg {
                a {
                    img {
                        width: auto;
                        height: 100%;
                        object-fit: inherit;
                        max-width: none;
                    }
                }
            }

            .headerMid {
                height: 70px;

                ul {
                    li {
                        a {
                            font-size: 15px;
                        }

                        .toggleBtn {
                            font-size: 15px;
                        }
                    }
                }
            }

            .headerRight {
                height: 70px;

                .headerSer {
                    height: 70px;

                    .serBtn {
                        width: 42px;
                        height: 42px;
                    }
                }

                .headerCall {
                    a {
                        font-size: 18px;
                    }
                }
            }
        }
    }
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}

/* footer */
.footerSec {
    background-color: #1B1C21;
    position: relative;
    padding-top: 80px;

    * {
        color: #fff;
    }

    a {
        transition: all 0.5s;

        &:hover {
            color: #E0B432;
        }
    }

    .scrollToTopBtnDiv {
        position: absolute;
        top: -45px;
        left: 50%;
        transform: translateX(-50%);
        width: 90px;
        height: 90px;
        border-radius: 50%;
        border: 1px solid #E0B432;
        padding: 12px;
        cursor: pointer;
        animation: jump 1s ease-in-out alternate infinite;

        .scrollToTopBtn {
            width: 100%;
            height: 100%;
            background-color: #E0B432;
            border-radius: 50%;
            padding: 15px;

            img {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }
        }
    }

    .footerTop {
        padding: 0px 30px 40px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);

        .footerTopRow {
            align-items: center;

            .footerLogo {
                width: 100%;
                max-width: 500px;
                height: 230px;

                a {
                    display: block;
                    width: 100%;
                    height: 100%;

                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: contain;
                    }
                }
            }

            .footerTopTxt {
                /* padding-left: 50px; */

                .footerSocialIcon {
                    display: flex;
                    flex-wrap: wrap;
                    gap: 18px;

                    li {
                        width: 55px;
                        height: 55px;

                        a {
                            display: block;
                            width: 100%;
                            height: 100%;

                            img {
                                width: 100%;
                                height: 100%;
                                object-fit: contain;
                            }
                        }
                    }
                }
            }
        }
    }

    .trademarkIconWrap {
        text-align: center;
        display: block;

        .trademarkIcon {
            width: 192px;
            height: 87px;
            display: inline-block;
        }
    }

    .footerMid {
        padding: 40px 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);

        .footerMenu {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;

            li {
                min-width: 180px;
                text-align: center;

                a {
                    font-size: 20px;
                    font-weight: 400;
                }
            }
        }
    }

    .footerAdd {
        padding: 40px 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);

        .footerAddRow {
            .footerAddCol {
                &:not(:last-child) {
                    border-right: 1px solid rgba(255, 255, 255, 0.50);
                }

                .footerAddInn {
                    display: flex;
                    justify-content: center;
                    /* flex-wrap: wrap; */
                    align-items: center;
                    gap: 20px;
                    padding: 18px 15px;

                    .footerCir {
                        width: 60px;
                        min-width: 60px;
                        height: 60px;
                        border-radius: 50%;
                        background-color: #E0B432;
                        padding: 15px;

                        img {
                            width: 100%;
                            height: 100%;
                            object-fit: contain;
                        }
                    }

                    .footerAddCont {

                        /* width: calc(100% - 80px); */
                        h6 {
                            color: #FFF;
                            font-size: 22px;
                            font-weight: 400;
                        }
                    }
                }
            }
        }
    }

    .footerBtm {
        padding: 15px 30px;

        .footerBtmRow {
            .footerBtmCol {
                .footerBtmTxt {
                    p {
                        font-size: 14px;
                    }
                }

                &:nth-child(2) {
                    .footerBtmTxt {
                        text-align: center;
                    }
                }

                &:last-child {
                    .footerBtmTxt {
                        text-align: right;

                        strong {
                            transition: all 0.5s;

                            &:hover {
                                color: #E0B432;
                            }
                        }
                    }
                }
            }
        }
    }
}


@keyframes jump {
    0% {
        top: -50px;
    }

    100% {
        top: -35px;
    }
}

/* pagination */
.pagination {
    padding-top: 50px;
    margin: 0px auto;
    display: flex;
    justify-content: center;
    align-items: center;

    ul {
        display: flex;
        justify-content: center;
        gap: 25px;

        li {
            width: 54px;
            height: 54px;
            border-radius: 50%;
            border: 1px solid rgba(0, 0, 0, 0.50);
            transition: all 0.5s;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            overflow: hidden;

            span {
                display: flex;
                justify-content: center;
                align-items: center;
                width: 100%;
                height: 100%;
                color: #000;
                text-align: center;
                font-size: 25px;
                font-weight: 400;
            }

            a {
                display: flex;
                justify-content: center;
                align-items: center;
                width: 100%;
                height: 100%;
                color: #000;
                text-align: center;
                font-size: 25px;
                font-weight: 400;
            }

            .page-numbers {
                &.current {
                    background-color: #E0B432;
                    border-color: transparent;
                    color: #000;
                }
            }

            &:hover,
            &.active {
                background-color: #E0B432;
                border-color: transparent;

                a {
                    color: #000;
                }
            }
        }
    }
}

/* common tabs */
.tabWrap {
    .tabList {
        display: flex;
        overflow-y: auto;
        padding-bottom: 8px;
        gap: 20px;

        li {
            min-width: 150px;
            cursor: pointer;
            background-color: #fff;
            padding: 8px 10px;
            text-align: center;
            color: #000;
            text-align: center;
            font-family: "Work Sans";
            font-size: 18px;
            font-weight: 400;
            border: 1px solid rgba(0, 0, 0, 0.25);
            transition: all 0.5s;

            &:hover,
            &.active {
                border-color: transparent;
                background-color: #E0B432;
            }
        }
    }
}

.listContBox {
    .tab_content {
        display: none;

        .accTrigger {
            display: none;
            position: relative;
            border: 1px solid rgba(0, 0, 0, 0.25);
            padding: 10px 35px 10px 12px;
            font-size: 16px;

            &::after {
                content: '\f107';
                font-family: fontawesome;
                position: absolute;
                right: 10px;
                top: 10px;
                color: #000;
                transition: all 0.5s;
            }
        }

        &.active {
            display: block;

            .accTrigger {
                background-color: #E0B432;
                border-color: transparent;

                &::after {
                    transform: rotate(180deg);
                }
            }
        }
    }
}

/* counter section */
.abtCounter {
    padding-top: 80px;

    .abtCounterInn {
        .abtCounterTxt {
            position: relative;

            p {
                color: #FFF;
                font-size: 32px;
                font-weight: 500;
                line-height: 1.3;
                text-transform: uppercase;
                text-align: center;

                span {
                    color: #E0B432;
                    text-align: center;
                    font-family: 'Zolina';
                    font-size: 85px;
                    font-weight: 400;
                    margin-right: 5px;
                }
            }
        }

        &:not(:last-child) {
            .abtCounterTxt {
                &::after {
                    content: '';
                    position: absolute;
                    width: 1px;
                    height: 100%;
                    top: 0;
                    right: 0;
                    background-color: #FFF;
                }
            }
        }
    }
}

/* common form */
form {
    .form-group {
        margin-bottom: 20px;
    }

    label {
        color: #000;
        font-family: "Work Sans";
        font-size: 18px;
        font-weight: 500;
        letter-spacing: -0.36px;
        margin-bottom: 10px;
    }

    input,
    select,
    textarea {
        display: block;
        width: 100%;
        background-color: transparent;
        border: 1px solid rgba(0, 0, 0, 0.25);
        height: 60px;
        padding: 5px 15px;
        font-size: 18px;
        color: #000;
        font-weight: 500;
        outline: 0;

        &::placeholder {
            color: #000;
        }
    }

    textarea {
        height: 150px;
    }

    .inpSubWrap {
        position: relative;
        width: 190px;
        height: 50px;
        border: 1px solid rgba(0, 0, 0, 0.50);
        transition: all 0.5s;

        &::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-left: 1px solid #E0B432;
            border-bottom: 1px solid #E0B432;
            z-index: 1;
            opacity: 0;
            transition: all 0.5s;
        }

        input[type='submit'] {
            border: none;
            display: block;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: all 0.5s;
            padding: 5px 10px;
            color: #000;
            font-family: 'Work Sans';
            font-size: 18px;
            font-weight: 400;
            transition: all 0.5s;
            position: relative;
            z-index: 2;
            text-transform: uppercase;
        }

        &:hover {
            width: 230px;
            border-color: #E0B432;

            input[type='submit'] {
                letter-spacing: 3.5px;
            }

            &::after {
                opacity: 1;
                top: 10px;
                left: -10px;
            }
        }
    }
}

form {
    .consent-text {
        display: none;
    }
}

/* inner banner */
.innerBannerWrap {
    position: relative;
    height: 660px;

    .innBanImg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;

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

    &::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #1B1C21 100%);
        width: 100%;
        height: 70%;
        z-index: 1;
    }

    .innBanCont {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 60px);
        z-index: 2;

        .innBanTxt {
            color: #FFF;
            text-align: center;
            font-size: 90px;
            font-weight: 300;
            line-height: 1.2;
            text-transform: uppercase;
        }
    }
}

.viewAllBtnRes {
    display: none;
}

.btnWrap {
    position: relative;
    width: 180px;
    height: 48px;
    border: 1px solid rgba(0, 0, 0, 0.50);
    transition: all 0.5s;
    margin-bottom: 10px !important;

    .btnOne {
        height: 100%;
        text-align: center;
        display: block;
        padding: 5px 10px;
        color: #000;
        font-family: 'Work Sans';
        font-size: 18px;
        line-height: 35px;
        font-weight: 400;
        text-transform: uppercase;
        transition: all 0.5s;
        position: relative;
        z-index: 2;
    }

    &::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-left: 1px solid #E0B432;
        border-bottom: 1px solid #E0B432;
        z-index: -1;
        opacity: 0;
        transition: all 0.5s;
    }

    &:hover {
        width: 230px;
        border-color: #E0B432;

        &::after {
            opacity: 1;
            top: 10px;
            left: -10px;
        }

        .btnOne {
            letter-spacing: 4.5px;
        }
    }
}

/* common about section */
.commonAbtSec {
    .commonAbtSecInn {
        row-gap: 40px;

        .commonAbtLeft {
            .abtImg {
                display: none;
            }
        }
    }

    .abtTxt {
        .abtTxtContact {
            display: flex;
            justify-content: space-between;
            padding-top: 40px;
            flex-wrap: wrap;
            row-gap: 15px;

            .abtTxtContactInn {
                display: flex;
                align-items: center;
                gap: 10px;

                .abtTxtCir {
                    width: 60px;
                    height: 60px;
                    border-radius: 50%;
                    background-color: #E0B432;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 10px;

                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: contain;
                    }
                }

                a {
                    font-size: 26px;
                    font-family: 'Zolina';
                    font-weight: 400;
                }
            }
        }
    }

    .abtImg {
        position: sticky;
        top: 60px;

        .abtImgInn {
            position: relative;

            &::after {
                content: '';
                position: absolute;
                right: 0;
                top: 0;
                bottom: 0;
                height: 100%;
                width: calc(100% - 200px);
                border: 1px solid #E0B432;
                z-index: 1;
            }

            img {
                position: relative;
                z-index: 2;
                width: 100%;
                height: 100%;
                object-fit: cover;
                padding: 20px 20px 20px 0px;
            }
        }
    }
}

/* slider buttons */
.slick-arrow {
    font-size: 0;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: #919191;
    position: relative;
    transition: all 0.3s;

    &::after {
        content: '';
        position: absolute;
        top: -8px;
        left: -8px;
        width: calc(100% + 16px);
        height: calc(100% + 16px);
        border-radius: 50%;
        border: 1px solid #919191;
        transition: all 0.3s;
    }

    &::before {
        content: '';
        color: #fff;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 25px;
        height: 18px;
        background-repeat: no-repeat;
        background-size: contain;
        filter: brightness(0) saturate(100%) invert(93%) sepia(0%) saturate(27%) hue-rotate(99deg) brightness(106%) contrast(106%);
        transition: all 0.3s;
    }

    &.slick-prev {
        &::before {
            background-image: url(../images/common/left-arrow.png);
        }
    }

    &.slick-next {
        &::before {
            background-image: url(../images/common/right-arrow.png);
        }
    }

    &:hover,
    &:focus {
        background-color: #E0B432;

        &::after {
            border-color: #E0B432;
        }

        &::before {
            filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(7500%) hue-rotate(327deg) brightness(96%) contrast(104%);
        }
    }

    &.slick-disabled {
        opacity: 0.5;
    }
}

/* swiper buttons */
.swiper-button-next {
    font-size: 0;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: #919191;
    position: relative;
    transition: all 0.3s;

    &::after {
        content: '';
        position: absolute;
        top: -8px;
        left: -8px;
        width: calc(100% + 16px);
        height: calc(100% + 16px);
        border-radius: 50%;
        border: 1px solid #919191;
        transition: all 0.3s;
    }

    &::before {
        content: '';
        color: #fff;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 25px;
        height: 18px;
        background-image: url(../images/common/right-arrow.png);
        background-repeat: no-repeat;
        background-size: contain;
        filter: brightness(0) saturate(100%) invert(93%) sepia(0%) saturate(27%) hue-rotate(99deg) brightness(106%) contrast(106%);
        transition: all 0.3s;
    }

    svg {
        display: none;
    }

    &:hover,
    &:focus {
        background-color: #E0B432;

        &::after {
            border-color: #E0B432;
        }

        &::before {
            filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(7500%) hue-rotate(327deg) brightness(96%) contrast(104%);
        }
    }
}

.swiper-button-prev {
    font-size: 0;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: #919191;
    position: relative;
    transition: all 0.3s;

    &::after {
        content: '';
        position: absolute;
        top: -8px;
        left: -8px;
        width: calc(100% + 16px);
        height: calc(100% + 16px);
        border-radius: 50%;
        border: 1px solid #919191;
        transition: all 0.3s;
    }

    &::before {
        content: '';
        color: #fff;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 25px;
        height: 18px;
        background-image: url(../images/common/left-arrow.png);
        background-repeat: no-repeat;
        background-size: contain;
        filter: brightness(0) saturate(100%) invert(93%) sepia(0%) saturate(27%) hue-rotate(99deg) brightness(106%) contrast(106%);
        transition: all 0.3s;
    }

    svg {
        display: none;
    }

    &:hover,
    &:focus {
        background-color: #E0B432;

        &::after {
            border-color: #E0B432;
        }

        &::before {
            filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(7500%) hue-rotate(327deg) brightness(96%) contrast(104%);
        }
    }
}

/* centered slider section */
.centeredSlideSec {
    .slick-slider {
        padding-bottom: 70px;
    }

    .slick-arrow {
        position: absolute;
        top: auto;
        bottom: -25px;

        &.slick-prev {
            right: auto;
            left: calc(50% - 65px);
        }

        &.slick-next {
            left: auto;
            right: calc(50% - 55px);
        }
    }
}

/* common slider section */
.commonCardSec {
    .headingTop {
        .headingTopRight {
            display: flex;
            justify-content: end;
        }
    }

    .commonCardBtm {
        .commonCardWrap {
            position: relative;

            .commonCardSlide {
                margin-right: 20px;
            }

            .commonCard {
                .commonCardImg {
                    width: 100%;
                    height: 450px;
                    margin-bottom: 20px;
                    overflow: hidden;
                    transition: all 0.5s;
                    position: relative;

                    .cityTag {
                        /* position: absolute;
                        left: 15px;
                        top: 15px;
                        background: #fff;
                        padding: 8px 12px;
                        color: #000;
                        text-align: center;
                        font-size: 16px; */
                        display: none;

                        strong {
                            color: #000;
                        }
                    }

                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        transition: all 0.5s;
                    }
                }

                .commonCardDet {
                    text-align: center;

                    .commonCardDetHead {
                        display: block;
                        color: #4D2762;
                        text-align: center;
                        font-family: 'Zolina';
                        font-size: 25px;
                        font-style: normal;
                        font-weight: 300;
                        line-height: 1.2;
                        letter-spacing: 1.5px;
                        text-transform: uppercase;
                        margin-bottom: 10px;
                        overflow: hidden;
                        text-overflow: ellipsis;
                        display: -webkit-box;
                        -webkit-box-orient: vertical;
                        -webkit-line-clamp: 1;
                    }

                    p {
                        overflow: hidden;
                        text-overflow: ellipsis;
                        display: -webkit-box;
                        -webkit-box-orient: vertical;
                        -webkit-line-clamp: 2;
                        margin-bottom: 10px;
                    }

                    .commonCardDetPrice {
                        color: #878787;
                        text-align: center;
                        font-size: 20px;
                        font-weight: 500;
                        transition: all 0.5s;
                    }

                    .btnWrap {
                        margin-left: auto;
                        margin-right: auto;
                    }
                }

                &:hover {
                    .commonCardImg {
                        img {
                            transform: scale(1.05);
                        }
                    }

                    .commonCardDet {
                        .commonCardDetPrice {
                            color: #1B1C21;
                        }
                    }
                }
            }
        }
    }
}

/* blog section */
.blogSec {
    .commonCardBtm {
        .commonCardSlider {
            .commonCardSlide {
                .commonCard {
                    .commonCardImg {
                        height: 400px;
                    }

                    .commonCardDet {
                        text-align: left;

                        .btnWrap {
                            margin-left: 0;
                        }

                        .blogDetPara {
                            overflow: hidden;
                            text-overflow: ellipsis;
                            display: -webkit-box;
                            -webkit-box-orient: vertical;
                            -webkit-line-clamp: 2;
                            font-size: 20px;
                            font-style: italic;
                            font-weight: 500;
                            color: #1B1C21;
                            line-height: 30px;
                            margin-bottom: 15px;
                        }

                        .blogDate {
                            color: #767676;
                            font-size: 18px;
                            font-weight: 400;
                            line-height: 26px;
                            margin-bottom: 6px;
                        }
                    }
                }
            }
        }
    }
}

/* contact section */
.contactMeSec {
    width: 100%;
    height: 600px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    position: relative;
    background-attachment: fixed;
    overflow: hidden;

    &::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.50);
    }

    .contactMeInn {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        text-align: center;
        z-index: 1;
        padding: 0px 30px;

        .contactMePara {
            color: #FFF;
            text-align: center;
            font-size: 60px;
            line-height: 1.2;
            font-weight: 400;
            margin-bottom: 30px;
        }

        .contMeHeadDiv {
            position: relative;

            .contMeHead {
                font-family: 'zolina';
                color: #E0B432;
                font-size: 113px;
                font-weight: 300;
                line-height: 1.2;
                margin-bottom: 15px;
                text-transform: uppercase;
                display: inline-block;
            }

            .contHvrCir {
                overflow: visible;
                z-index: 100;
                transition: 0.6s;
                transform: scale(0) translate(-50%, -50%);
                position: absolute;
                right: 0;
                bottom: 60px;
                width: 100px;
                height: 100px;
                border-radius: 50%;
                -webkit-backdrop-filter: blur(10px);
                backdrop-filter: blur(10px);
                background: #d9d9d940;
                color: #fff;
                font-size: 20px;
                font-weight: 500;
                z-index: 2;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: transform 0.3s ease;
                pointer-events: none;
            }

            .contHvrCirRes {
                width: 70px;
                height: 70px;
                border-radius: 50%;
                -webkit-backdrop-filter: blur(10px);
                backdrop-filter: blur(10px);
                background: #d9d9d940;
                color: #fff;
                font-size: 20px;
                font-weight: 500;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                display: none;
                padding: 18px;
                margin: 0px auto;

                img {
                    width: 100%;
                    height: 100%;
                }
            }

            &:hover {
                .contHvrCir {
                    top: calc(50% + 15px) !important;
                    transform: scale(1) translate(-50%, -50%);
                }
            }
        }
    }
}

/* faq section */
.commonFAQWrap {
    .faqWrapInner {
        .eachFaq {
            border-radius: 9px;
            border: 1px solid rgba(0, 0, 0, 0.25);

            &:not(:last-child) {
                margin-bottom: 20px;
            }

            .eachFaqInner {
                padding: 10px 15px;

                .faqTitle {
                    color: #0E222F;
                    font-family: "Work Sans";
                    font-size: 20px;
                    line-height: 1.2;
                    font-weight: 500;
                    position: relative;
                    padding: 10px 50px 10px 0px;
                    cursor: pointer;
                    transition: all 0.5s;

                    &::before {
                        content: '';
                        position: absolute;
                        right: 0;
                        top: 0;
                        width: 36px;
                        height: 36px;
                        background-color: #E0B432;
                        border-radius: 6px;
                    }

                    &::after {
                        content: '\f107';
                        font-family: fontawesome;
                        position: absolute;
                        right: 9px;
                        top: 6px;
                        color: #000;
                        transition: all 0.5s;
                    }
                }

                .faqCont {
                    display: none;
                    padding: 10px 0px 15px;
                    transition: all 0.5s;

                    .faqContInner {
                        position: relative;
                        padding-left: 25px;

                        &::before {
                            content: '';
                            position: absolute;
                            left: 5px;
                            width: 1px;
                            height: calc(100% - 10px);
                            background-color: #E0B432;
                            top: 50%;
                            transform: translateY(-50%);
                        }



                        p {
                            color: #0E222F;
                            font-family: "Work Sans";
                            font-size: 18px;
                            font-weight: 400;
                            line-height: 28px;
                        }
                    }
                }
            }

            &.active {
                .faqTitle {
                    &::after {
                        transform: rotate(180deg);
                    }
                }

                .faqCont {
                    display: block;
                }
            }
        }
    }
}

.single-post {
    main {
        margin-bottom: 50px;
    }
}

/* testimonial section */
.testiMonialScrollSec {
    position: relative;

    .clipped-image-wrapper {
        position: relative;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        overflow: hidden;
    }

    .gallerySec {
        min-height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;

        .gallerySecWrapper {
            display: flex;
            flex-direction: column;
            gap: 20px;

            .gallerySecRow {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 20px;

                .gallerySecImg {
                    position: relative;
                    overflow: hidden;

                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        display: block;
                        transform-origin: center center;
                    }

                    &.zoom-image img {
                        /* keep fully visible initially but scaled down */
                        transform: scale(1);
                        will-change: transform;
                    }
                }
            }
        }
    }

    .customer_stories {
        position: relative;
        background-repeat: no-repeat;
        background-size: cover;
        min-height: 90vh;

        &::after {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.50);
        }

        .customer_storiesInn {
            position: relative;
            z-index: 2;

            .custSecTop {
                position: relative;
                width: 100%;
                min-height: 200px;

                .secH {
                    color: #fff;
                    position: absolute;
                    right: 20%;
                }

                &::before {
                    content: '';
                    position: absolute;
                    top: 40px;
                    left: 0;
                    width: calc(80% - 570px);
                    height: 1px;
                    background-color: #fff;
                }

                &::after {
                    content: '';
                    position: absolute;
                    bottom: 40px;
                    right: 0;
                    width: 350px;
                    height: 1px;
                    background-color: #fff;
                }
            }

            .custSecBtm {
                padding-top: 50px;

                .custSecSlider {
                    position: relative;

                    .custSecSlide {
                        .custCard {
                            width: 620px;
                            border: 1px solid rgba(255, 255, 255, 0.50);
                            background: rgba(0, 0, 0, 0.23);
                            backdrop-filter: blur(29px);
                            padding: 50px 25px;

                            .custCardInn {
                                width: 100%;
                                max-height: 350px;
                                overflow-y: auto;
                                padding-right: 8px;
                                margin-bottom: 25px;

                                p {
                                    color: #FFF;
                                    font-family: "Work Sans";
                                    font-size: 20px;
                                    font-style: italic;
                                    font-weight: 500;
                                    line-height: 29px;
                                }
                            }

                            .custCardDet {
                                h6 {
                                    color: #E0B432;
                                    font-size: 26px;
                                    font-weight: 500;
                                    letter-spacing: 1.82px;
                                    text-transform: uppercase;
                                    margin-bottom: 8px;
                                }

                                a {
                                    color: #fff;
                                }
                            }
                        }
                    }

                    .slick-arrow {
                        position: absolute;
                        top: 50%;
                        transform: translateY(-50%);
                        z-index: 2;

                        &.slick-prev {
                            left: 150px;
                        }

                        &.slick-next {
                            right: 300px;
                        }
                    }
                }
            }
        }
    }

}

.page-template-sellers {
    &.page-id-566 {
        .commonAbtSec {
            .abtImg {
                .abtImgInn {
                    height: 550px;
                }
            }
        }
    }
}


/* privacy policy & term-conditions page start */
.privacyCont {
    .privacyContInn {
        h2 {
            color: #E0B432;
            font-size: 28px;
            font-weight: 500;
            margin-bottom: 8px;
            font-family: 'work Sans';
        }

        h3 {
            padding-left: 20px;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 10px;
            font-family: 'work Sans';
        }

        ul {
            padding-left: 25px;

            li {
                position: relative;
                padding-left: 20px;
                margin-bottom: 10px;

                &::after {
                    content: '';
                    position: absolute;
                    width: 10px;
                    height: 10px;
                    border-radius: 50%;
                    background-color: #000;
                    left: 0;
                    top: 5px;
                }
            }
        }

        a {
            color: #000;
            font-weight: 600;
        }

        .privacyContBlock {
            margin-bottom: 20px;
        }

        p {
            margin-bottom: 8px;
        }
    }
}

/* privacy policy & term-conditions page end */

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
    border: none;
    padding: 0;
    font-size: 16px;
    margin: 0;
}

.wpcf7-not-valid-tip {
    font-size: 16px;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
    color: #dc3232;
}

/* thank you page start */

.page_thank_you,
.page_not_found {
    .header {
        background-color: #1B1C21;
    }
}

.thankyouDiv {
    padding-top: 80px;
    text-align: center;

    .thankyouDivInn {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;

        .wrapper-2 {
            padding: 30px;
            text-align: center;

            .secH {
                margin-bottom: 20px;
            }

            p {
                margin: 0;
                font-size: 1.3em;
                letter-spacing: 1px;
            }

            .btnWrap {
                margin: 30px auto 0px auto;
            }
        }
    }
}

/* thank you page end */

/* 404 not found */

.notFoundDiv {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    text-align: center;

    .notFoundGif {
        width: 100%;
        height: 350px;

        img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
    }

    h6 {
        font-size: 25px;
        font-family: 'work sans';
        font-weight: 600;
    }

    .btnWrap {
        margin: 30px auto 0px auto;
    }
}

/* Responsive */

/*====side form Wrap ===*/
.getInTouchBtn {
    position: fixed;
    right: -65px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    z-index: 9;
    padding: 8px 25px;
    background-color: #000;
    border-radius: 0px;
    cursor: pointer;
    transition: all 0.5s;
    border: 1px solid #d9b03e;

    a {
        display: block;
        width: 100%;
        height: 100%;
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        transition: all 0.5s;
        text-transform: uppercase;
    }

    &:hover {
        background-color: #fff;

        a {
            color: #d9b03e;
        }
    }
}

.sidebarForm {
    position: fixed;
    width: 100%;
    max-width: 350px;
    z-index: 92;
    transform: translateX(120%);
    right: 0;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    min-width: 300px;
    background: #000;
    transition: all 0.5s;
    padding: 30px 20px;
    box-shadow: 2px 0 10px 2px rgba(0, 0, 0, 0.3);

    &.active {
        transform: translateX(0%);
    }

    .sidebarFormInn {
        .sidebarFormTop {
            .sectionMainTitle {
                margin: 0;
                padding: 0;
                font-weight: 600;
                font-size: 30px;
                color: #d9b03e;
            }

            .sidebarHead {
                font-size: 17px;
                margin-top: 10px;
                margin-bottom: 18px;
                line-height: 1.5;
                color: #fff;
            }

            .sideMenuClose {
                position: absolute;
                right: 10px;
                top: 8px;
                font-size: 22px;
                color: #fff;

                svg {
                    color: #fff;
                }
            }
        }

        form {
            .cs_field_group {
                margin-bottom: 1rem;
            }

            textarea {
                height: 100px;
            }

            textarea,
            input,
            select {
                outline: 0;
                background-color: transparent;
                border-radius: 0;
                border: none;
                padding: 0;
                font-size: 15px;
                font-weight: 500;
                border-bottom: 1px solid #dee2e6 !important;
                height: 50px;
                width: 100%;
                font-size: 16px;
                color: #fff;

                &::placeholder {
                    color: #fff;
                    font-weight: 500;
                }
            }

            select {
                appearance: none;
                -webkit-appearance: none;
                -moz-appearance: none;
                background-image: url(../images/common/select-down-arrow.png);
                background-repeat: no-repeat;
                background-position: center right;
                background-size: 18px;
            }

            input.subBtn {
                border: none;
                border-bottom: none !important;
            }

            option {
                color: #000;
            }

            .frmWrap {
                &.btnWrap {
                    margin-top: 15px;
                    width: 100%;
                    display: flex;
                    justify-content: center;
                    position: relative;

                    .wpcf7-submit {
                        position: absolute;
                        width: 100%;
                        height: 100%;
                        border: 1px solid #fff;
                        border-bottom: 1px solid #fff !important;
                    }

                    .wpcf7-spinner {
                        position: absolute;
                        bottom: -26px;
                        right: -18px;
                    }
                }

                .btnOne {
                    display: block;
                    text-align: center;
                }
            }
        }

        .quickAdd {
            .titleSub {
                margin-bottom: 15px;
                color: #000;
            }

            .menu_link_box {
                display: flex;

                a {
                    font-size: 16px;
                    font-weight: 500;
                    color: #fff;
                    text-decoration: none;
                    transition: all 0.5s ease-in-out;
                }

                &:not(:last-child) {
                    margin-bottom: 12px;
                }

                &:hover {
                    a {
                        color: #DA0A0A;
                    }
                }

            }
        }

        .btnTxt {
            color: #fff;
        }
    }

}

.sidebarForm::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.sidebarForm::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

.sidebarForm::-webkit-scrollbar-thumb {
    background-color: #d9b03e;
}

.search-popup {
    position: fixed;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    backdrop-filter: blur(10px);

    /* width: 337px; */
    #ajaxsearchlite1 {
        background-color: #ffffff !important;
        background-image: none !important;

        input {
            background-color: #d9b03e !important;
            height: 50px !important;
        }
    }
}

#ajaxsearchlite1 .probox,
div.asl_w .probox {
    background-color: #d9b03e !important;
    height: 50px !important;
    background-image: none !important;
}

div.asl_w .probox .promagnifier {
    width: 50px !important;
    height: 50px !important;
    background-image: none !important;
    background-color: #000 !important;
}

.close-search {
    top: 0px !important;
    right: 20px !important;
}

.search-popup-box {
    background: #ffffff8f;
}

div.asl_r.vertical {
    background-color: #d9b03e !important;
}

div.asl_w .probox .proclose {
    height: 48px !important;
}

iframe[name="widgetCta"] {
    bottom: 44px !important;
}

@media (max-width: 1768px) {

    /* cmommon */
    .secH {
        font-size: 65px;
    }

    /* about counter */
    .abtCounter {
        .abtCounterInn {
            .abtCounterTxt {
                p {
                    font-size: 28px;

                    span {
                        font-size: 80px;
                    }
                }
            }
        }
    }

    /* common card */
    .commonCardSec {
        .commonCardBtm {
            .commonCardWrap {
                .commonCard {
                    .commonCardImg {
                        height: 420px;
                    }
                }
            }
        }
    }

    /* footer */
    .footerSec {
        .footerTop {
            .footerTopRow {
                .footerLogo {
                    max-width: 450px;
                    height: 200px;
                }

                .footerTopTxt {
                    .footerSocialIcon {
                        li {
                            width: 50px;
                            height: 50px;
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 1600px) {

    .commonSec {
        padding: 100px 0;
    }

    /* header */
    .header {
        .headerInner {
            .logoImg {
                width: 220px;
                height: 90px;
            }

            .headerMid {
                height: 90px;
            }

            .headerRight {
                height: 90px;

                .headerSer {
                    height: 90px;

                    .serBtn {
                        width: 40px;
                        height: 40px;
                    }
                }

                .headerCall {
                    img {
                        width: 28px;
                        height: auto;
                    }

                    a {
                        font-size: 20px;
                    }
                }
            }
        }

        &.is-sticky {
            .headerInner {
                .headerRight {
                    .headerSer {
                        .serBtn {
                            width: 36px;
                            height: 36px;
                            padding: 8px;
                        }
                    }
                }
            }
        }
    }

    /* banner */
    .innerBannerWrap {
        height: 570px;

        .innBanCont {
            .innBanTxt {
                font-size: 80px;
            }
        }
    }

    /* counter */
    .abtCounter {
        .abtCounterInn {
            .abtCounterTxt {
                p {
                    font-size: 25px;

                    span {
                        font-size: 55px;
                    }
                }
            }
        }
    }

    .commonCardSec {
        .commonCardBtm {
            .commonCardWrap {
                .commonCard {
                    .commonCardImg {
                        height: 320px;
                    }
                }
            }
        }
    }

    .blogSec {
        .commonCardBtm {
            .commonCardSlider {
                .commonCardSlide {
                    .commonCard {
                        .commonCardImg {
                            height: 330px;
                        }
                    }
                }
            }
        }
    }

    .testiMonialScrollSec {
        .customer_stories {
            .customer_storiesInn {
                .custSecBtm {
                    padding-top: 30px;

                    .custSecSlider {
                        .custSecSlide {
                            .custCard {
                                .custCardInn {
                                    max-height: 300px;
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    /* footer */
    .footerSec {
        .footerTop {
            .footerTopRow {
                .footerTopTxt {
                    .footerSocialIcon {
                        li {
                            width: 42px;
                            height: 42px;
                        }
                    }
                }

                .footerLogo {
                    max-width: 400px;
                    height: 170px;
                }
            }
        }

        .footerAdd {
            .footerAddRow {
                .footerAddCol {
                    .footerAddInn {
                        .footerAddCont {
                            h6 {
                                font-size: 18px;
                            }
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 1440px) {
    .header {
        .headerInner {
            .headerMid {

                ul {
                    li {
                        a {
                            font-size: 16px;
                        }

                        .toggleBtn {
                            font-size: 16px;
                        }
                    }
                }
            }
        }

        &.is-sticky {
            .headerInner {
                .logoImg {
                    width: 160px;
                    height: 45px;
                }

                .headerMid {
                    width: calc(100% - (160px + 330px));
                    height: 45px;

                    ul {
                        li {
                            a {
                                font-size: 14px;
                            }

                            .toggleBtn {
                                font-size: 14px;
                            }
                        }
                    }
                }

                .headerRight {
                    width: 330px;
                    height: 45px;

                    .headerSer {
                        height: 45px;

                        .serBtn {
                            width: 32px;
                            height: 32px;
                            padding: 6px;
                        }
                    }
                }
            }
        }
    }

    .footerSec {
        .footerMid {
            .footerMenu {
                li {
                    min-width: 140px;
                }
            }
        }
    }

    .secH {
        font-size: 55px;
    }

    .commonAbtSec {
        .abtTxt {
            .abtTxtContact {
                .abtTxtContactInn {
                    .abtTxtCir {
                        width: 45px;
                        height: 45px;
                    }

                    a {
                        font-size: 22px;
                    }
                }
            }
        }
    }

    .btnWrap {
        width: 150px;
        height: 40px;

        .btnOne {
            font-size: 16px;
            line-height: 28px;
        }

        &:hover {
            width: 200px;

            .btnOne {
                letter-spacing: 3.5px;
            }
        }

    }

    form {
        .inpSubWrap {
            width: 180px;
            height: 40px;

            input[type='submit'] {
                font-size: 16px;
            }

            &:hover {
                width: 210px;

                .btnOne {
                    letter-spacing: 2.5px;
                }
            }
        }
    }

    .contactMeSec {
        height: 500px;

        .contactMeInn {
            .contMeHeadDiv {
                .contMeHead {
                    font-size: 80px;
                }

                .contHvrCir {
                    width: 80px;
                    height: 80px;
                }
            }

            .contactMePara {
                font-size: 36px;
            }
        }
    }

    .thankyouDiv {
        .thankyouDivInn {
            .wrapper-2 {
                p {
                    font-size: 18px;
                }
            }
        }
    }

    .page-template-sellers {
        &.page-id-566 {
            .commonAbtSec {
                .abtTxt {
                    .secH {
                        text-align: left;
                    }
                }

                .abtImg {
                    .abtImgInn {
                        height: 500px;
                    }
                }
            }
        }
    }

    /* testimonial section */
    .testiMonialScrollSec {
        .customer_stories {
            .customer_storiesInn {
                .custSecBtm {
                    padding-top: 25px;

                    .custSecSlider {
                        .custSecSlide {
                            .custCard {
                                padding: 35px 20px;

                                .custCardInn {
                                    max-height: 200px;

                                    p {
                                        font-size: 16px;
                                        line-height: 26px;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 1400px) {
    .header {
        .headerInner {
            .logoImg {
                width: 160px;
                height: 75px;
            }

            .headerMid {
                width: calc(100% - (160px + 330px));
                height: 75px;

                ul {
                    li {
                        padding: 0px 25px;

                        &.has_submenu {
                            .toggleBtn {
                                right: 0;
                            }
                        }
                    }
                }
            }

            .headerRight {
                width: 330px;
                height: 75px;

                .headerSer {
                    height: 75px;
                }

                .headerCall {
                    a {
                        font-size: 18px;
                    }
                }
            }
        }
    }
}

@media (max-width: 1366px) {

    .commonSec {
        padding: 90px 0;
    }

    /* banner */
    .innerBannerWrap {
        height: 520px;

        .innBanCont {
            .innBanTxt {
                font-size: 70px;
            }
        }
    }

    .secH {
        font-size: 52px;
    }

    p,
    ul li {
        font-size: 16px;
        line-height: 26px;
    }

    form {

        input,
        select {
            height: 50px;
        }

        input,
        select,
        textarea {
            font-size: 16px;
        }
    }

    .wpcf7-not-valid-tip {
        font-size: 16px;
    }

    .tabWrap {
        .tabList {
            li {
                font-size: 16px;
            }
        }
    }

    .abtCounter {
        .abtCounterInn {
            .abtCounterTxt {
                p {
                    font-size: 22px;

                    span {
                        font-size: 40px;
                    }
                }
            }
        }
    }

    .centeredSlideSec {
        .slick-arrow {
            &.slick-prev {
                left: calc(50% - 55px);
            }

            &.slick-next {
                right: calc(50% - 50px);
            }
        }
    }

    .slick-arrow {
        width: 38px;
        height: 38px;

        &::before {
            width: 22px;
            height: 15px;
        }
    }

    .commonCardSec {
        .commonCardBtm {
            .commonCardWrap {
                .commonCard {
                    .commonCardImg {
                        height: 320px;
                        margin-bottom: 10px;
                    }

                    .commonCardDet {
                        .commonCardDetHead {
                            font-size: 20px;
                        }
                    }
                }
            }
        }
    }

    .blogSec {
        .commonCardBtm {
            .commonCardSlider {
                .commonCardSlide {
                    .commonCard {
                        .commonCardImg {
                            height: 290px;
                        }
                    }
                }
            }
        }
    }

    .commonFAQWrap {
        .faqWrapInner {
            .eachFaq {
                .eachFaqInner {
                    .faqTitle {
                        font-size: 18px;
                    }

                    .faqCont {
                        .faqContInner {
                            font-size: 16px;
                        }

                        p {
                            font-size: 16px;
                            line-height: 26px;
                        }
                    }
                }
            }
        }
    }

    .blogSec {
        .commonCardBtm {
            .commonCardSlider {
                .commonCardSlide {
                    .commonCard {
                        .commonCardDet {
                            .blogDate {
                                font-size: 16px;
                            }

                            .blogDetPara {
                                font-size: 18px;
                            }
                        }
                    }
                }
            }
        }
    }

    .footerSec {
        .scrollToTopBtnDiv {
            width: 80px;
            height: 80px;
        }
    }

}

@media (max-width: 1280px) {

    .blogSec {
        .commonCardBtm {
            .commonCardSlider {
                .commonCardSlide {
                    .commonCard {
                        .commonCardDet {
                            .btnWrap {
                                margin-left: 12px;
                            }
                        }
                    }
                }
            }
        }
    }

    .contactMeSec {
        height: 450px;

        .contactMeInn {
            .contactMePara {
                font-size: 32px;

                br {
                    display: none;
                }
            }

            .contMeHeadDiv {
                .contMeHead {
                    font-size: 65px;
                }
            }
        }
    }

    .commonCardSec {
        .commonCardBtm {
            .commonCardWrap {
                .commonCardSlide {
                    margin: 0px 10px;
                }
            }
        }
    }

    .testiMonialScrollSec {
        .customer_stories {
            .customer_storiesInn {
                .custSecBtm {
                    .custSecSlider {
                        .custSecSlide {
                            .custCard {
                                padding: 25px 20px;

                                .custCardInn {
                                    max-height: 160px;
                                }

                                .custCardDet {
                                    h6 {
                                        font-size: 22px;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    /* footer */
    .footerSec {
        .footerTop {
            .footerTopRow {
                .footerLogo {
                    max-width: 330px;
                    height: 140px;
                }
            }
        }

        .footerMid {
            .footerMenu {
                li {
                    min-width: 140px;
                }
            }
        }

        .footerAdd {
            .footerAddRow {
                .footerAddCol {
                    .footerAddInn {
                        flex-direction: column;

                        .footerAddCont {
                            h6 {
                                text-align: center;
                            }
                        }
                    }
                }
            }
        }

        .footerBtm {
            .footerBtmRow {
                .footerBtmCol {
                    width: 100%;

                    .footerBtmTxt {
                        p {
                            text-align: center;
                        }
                    }
                }
            }
        }
    }


    iframe[name="widgetCta"] {
        bottom: 110px !important;
    }

}

@media (max-width: 1199px) {

    .header {
        .headerInner {
            .headerMid {
                ul {
                    li {
                        padding: 0px 18px;

                        a {
                            font-size: 15px;
                        }

                        &.has_submenu {
                            .toggleBtn {
                                font-size: 14px;
                            }
                        }
                    }
                }
            }
        }
    }

    .footerSec {
        .footerMid {
            .footerMenu {
                li {
                    min-width: 120px;

                    a {
                        font-size: 18px;
                    }
                }
            }
        }
    }

    .innerBannerWrap {
        .innBanCont {
            width: calc(100% - 40px);

            .innBanTxt {
                font-size: 55px;
            }
        }
    }

    .secH {
        font-size: 45px;
    }

    .commonAbtSec {
        .commonAbtSecInn {
            .commonAbtLeft {
                .abtImg {
                    display: block;
                }
            }
        }

        .abtImg {
            .abtImgInn {
                width: 100%;
                height: auto;
                max-width: 500px;
                margin: 0px auto 30px auto;
            }
        }

        .abtTxt {
            .abtTxtContact {
                justify-content: flex-start;
                gap: 15px;
            }

            .secH {
                text-align: center;
            }
        }

        .commonAbtRight {
            display: none;
        }
    }

    .abtCounter {
        .abtCounterInn {
            .abtCounterTxt {
                p {
                    font-size: 18px;

                    span {
                        font-size: 35px;
                    }
                }
            }
        }
    }

    .commonCardSec {
        .commonCardBtm {
            .commonCardWrap {
                .commonCard {
                    .commonCardImg {
                        height: 280px;
                    }
                }
            }
        }
    }
}

@media (max-width: 1140px) {
    .testiMonialScrollSec {
        .customer_stories {
            .customer_storiesInn {
                .custSecBtm {
                    .custSecSlider {
                        .custSecSlide {
                            .custCard {
                                width: 100%;
                                max-width: 75%;
                                margin: 0 auto;
                            }
                        }

                        .slick-arrow {
                            &.slick-next {
                                right: 25px;
                            }

                            &.slick-prev {
                                left: 25px;
                            }
                        }
                    }
                }

                .custSecTop {
                    position: relative;
                    width: 100%;
                    min-height: 115px;

                    &::after {
                        bottom: 0;
                    }

                    .secH {
                        right: 40%;
                    }
                }
            }
        }
    }

    .testiMonialScrollSec {
        .customer_stories {
            min-height: auto;

            .customer_storiesInn {
                .custSecBtm {
                    .custSecSlider {
                        .custSecSlide {
                            .custCard {
                                .custCardInn {
                                    max-height: 160px;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 1100px) {
    .container-mid {
        padding: 0px 15px;
    }

    .header {
        .headerInner {
            .logoImg {
                border: none;

                a {
                    padding: 6px 0px;
                }
            }

            .headerMid {
                display: none;
            }

            .headerRight {
                width: auto;
                height: auto;

                .headerSer {
                    width: auto;
                    padding-right: 20px;
                }

                .headerCall {
                    display: none;
                }

                .headerToggle {
                    display: block;
                    padding-left: 20px;

                    a {
                        display: block;
                        color: #fff;
                        font-size: 18px;
                    }
                }
            }

        }

        &.is-sticky {
            .headerInner {
                .headerRight {
                    width: auto;
                }
            }
        }
    }
}

@media (max-width: 1024px) {

    .commonSec {
        padding: 70px 0;
    }

    .innerBannerWrap {
        height: 420px;

        .innBanCont {
            width: calc(100% - 40px);

            .innBanTxt {
                font-size: 45px;
                overflow: hidden;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 2;
            }
        }
    }

    .secH {
        font-size: 38px;
    }

    .commonAbtSec {
        .abtTxt {
            .abtTxtContact {
                .abtTxtContactInn {
                    a {
                        font-size: 18px;
                    }
                }
            }
        }
    }

    .abtCounter {
        padding-top: 40px;

        .abtCounterInn {
            .abtCounterTxt {
                padding: 0px 12px;

                p {
                    font-size: 16px;

                    span {
                        font-size: 32px;
                        display: block;
                    }
                }
            }
        }
    }

    .contactMeSec {
        background-position: 65% 0%;

        .contactMeInn {
            .contMeHeadDiv {
                .contHvrCir {
                    display: none;
                }

                .contHvrCirRes {
                    display: block;
                }
            }
        }
    }

    .footerSec {
        .footerAdd {
            .footerAddRow {
                .footerAddCol {
                    .footerAddInn {
                        .footerAddCont {
                            h6 {
                                font-size: 16px;
                            }
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 991px) {
    .secH {
        text-align: center;
    }

    .headingWrap {
        padding-bottom: 12px;
    }

    .btnWrap {
        width: 190px;
        border-color: #E0B432;

        .btnOne {
            letter-spacing: 1.5px;
        }

        &::after {
            opacity: 1;
            top: 10px;
            left: -10px;
        }
    }

    .pagination {
        ul {
            li {
                width: 46px;
                height: 46px;

                span {
                    font-size: 18px;
                }

                a {
                    font-size: 18px;
                }
            }
        }
    }

    form {
        .inpSubWrap {
            width: 190px;
            border-color: #E0B432;
            margin: 0px auto;
            margin-bottom: 30px;

            input[type='submit'] {
                letter-spacing: 1.5px;
            }

            &::after {
                opacity: 1;
                top: 10px;
                left: -10px;
            }
        }
    }

    main {
        margin-bottom: 50px;
    }

    .commonCardSec {
        .headingTop {
            .headingTopRight {
                display: none;
            }
        }

        .commonCardBtm {
            .commonCardWrap {
                .commonCardSlide {
                    margin: 0px 10px;
                }
            }
        }
    }

    .viewAllBtnRes {
        display: block;
        margin-top: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .centeredSlideSec {
        .slick-arrow {
            bottom: 20px;
        }

        .slick-slider {
            padding-bottom: 90px;
        }
    }

    .commonFAQWrap {
        .faqWrapInner {
            .eachFaq {
                .eachFaqInner {
                    .faqTitle {
                        &::before {
                            width: 32px;
                            height: 32px;
                        }
                    }
                }
            }
        }
    }

    .testiMonialScrollSec {
        .customer_stories {
            .customer_storiesInn {
                .custSecTop {
                    min-height: auto;

                    &::before {
                        content: normal;
                    }

                    .secH {
                        text-align: center;
                        width: 100%;
                        position: static;
                        padding: 0px 15px;

                        br {
                            display: none;
                        }

                    }

                    &::after {
                        content: normal;
                    }
                }
            }
        }
    }

    .footerSec {
        padding-top: 60px;

        .footerTop {
            padding: 0px 20px 30px;

            .footerTopRow {
                .footerLogo {
                    max-width: 280px;
                    height: 120px;
                    margin: 0px auto;
                    margin-bottom: 15px;
                }

                .footerTopTxt {
                    text-align: center;

                    .footerSocialIcon {
                        justify-content: center;

                        li {
                            width: 35px;
                            height: 35px;
                        }
                    }
                }
            }
        }

        .footerMid {
            padding: 30px 20px;

            .footerMenu {
                li {
                    min-width: 100px;

                    a {
                        font-size: 16px;
                    }
                }
            }
        }

        .footerAdd {
            padding: 30px 20px;

            .footerAddRow {
                row-gap: 20px;

                .footerAddCol {
                    .footerAddInn {
                        flex-direction: row;
                        justify-content: flex-start;
                        padding: 12px 15px;
                        padding: 0;
                        gap: 12px;

                        .footerCir {
                            width: 50px;
                            min-width: 50px;
                            height: 50px;
                            padding: 12px;
                        }

                        .footerAddCont {
                            text-align: left;

                            h6 {
                                font-size: 14px;
                                text-align: left;
                            }
                        }
                    }

                    &:not(:last-child) {
                        border: none;
                    }
                }
            }
        }

        .footerBtm {
            padding: 15px 20px;
        }

        .trademarkIconWrap {
            margin-top: 20px;
        }
    }

    .notFoundDiv {
        .notFoundGif {
            height: 220px;
        }
    }

    .custSecBtm {
        .custSecSlider {
            .custSecSlide {
                .custCard {
                    .custCardInn {
                        p {
                            font-size: 16px;
                            line-height: 25px;
                        }
                    }
                }
            }
        }
    }

    .privacyCont {
        .privacyContInn {
            h2 {
                font-size: 22px;
            }

            h3 {
                font-size: 18px;
            }
        }
    }

    .page-template-sellers {
        &.page-id-566 {
            .commonAbtSec {
                .abtTxt {
                    .secH {
                        text-align: center;
                    }
                }

                .abtImg {
                    .abtImgInn {
                        height: auto;

                        &::after {
                            width: calc(100% - 100px);
                        }
                    }
                }
            }
        }
    }

    .getInTouchBtn {
        right: -60px;

        a {
            font-size: 14px;
        }
    }
}

@media (max-width: 768px) {
    .innerBannerWrap {
        height: 360px;
    }

    p,
    ul li {
        font-size: 14px;
        line-height: 24px;
    }

    .wpcf7-response-output {
        font-size: 14px;
    }

    form {

        input,
        select {
            height: 42px;
        }

        input,
        select,
        textarea {
            font-size: 14px;
            padding: 5px 12px;
        }
    }

    .blogSec {
        .commonCardBtm {
            .commonCardSlider {
                .commonCardSlide {
                    .commonCard {
                        .commonCardDet {
                            .blogDate {
                                font-size: 15px;
                            }

                            .blogDetPara {
                                font-size: 16px;
                            }
                        }
                    }
                }
            }
        }
    }

    .commonAbtSec {
        .abtTxt {
            text-align: center;

            .abtTxtContact {
                justify-content: center;

                .abtTxtContactInn {
                    a {
                        font-size: 16px;
                    }
                }
            }
        }
    }

    .contactMeSec {
        .contactMeInn {
            padding: 0px 20px;

            .contactMePara {
                font-size: 24px;
            }

            .contMeHeadDiv {
                .contMeHead {
                    font-size: 45px;
                }
            }
        }
    }

    .commonFAQWrap {
        .faqWrapInner {
            .eachFaq {
                .eachFaqInner {
                    .faqTitle {
                        &::before {
                            width: 30px;
                            height: 30px;
                            top: 3px;
                        }

                        &::after {
                            right: 8px;
                            top: 8px;
                        }
                    }

                    .faqCont {
                        .faqContInner {
                            p {
                                font-size: 14px;
                                line-height: 24px;
                            }
                        }
                    }
                }
            }
        }
    }

    .testiMonialScrollSec {
        .customer_stories {
            .customer_storiesInn {
                .custSecBtm {
                    .custSecSlider {
                        padding-bottom: 60px;

                        .custSecSlide {
                            .custCard {
                                max-width: 95%;
                            }
                        }

                        .slick-arrow {
                            top: auto;
                            bottom: -10px;
                            transform: none;

                            &.slick-prev {
                                left: calc(50% - 55px);
                            }

                            &.slick-next {
                                right: calc(50% - 55px);
                            }
                        }
                    }
                }
            }
        }
    }

    .thankyouDiv {
        .thankyouDivInn {
            .wrapper-2 {
                padding: 10px;

                p {
                    font-size: 16px;
                }
            }
        }
    }

    .privacyCont {
        .privacyContInn {
            ul {
                li {
                    &::after {
                        width: 8px;
                        height: 8px;
                        top: 8px;
                    }
                }
            }
        }
    }
}

@media (max-width: 767px) {

    .abtCounter {
        .abtCounterInn {
            .abtCounterTxt {
                padding: 15px 0px;
            }

            &:not(:last-child) {
                .abtCounterTxt {
                    &::after {
                        position: absolute;
                        width: 100%;
                        height: 1px;
                        top: auto;
                        right: 0;
                        bottom: 0;
                    }
                }
            }
        }
    }

    .contactMeSec {
        background-position: 72% 0%;
    }

    .commonFAQWrap {
        .faqWrapInner {
            .eachFaq {
                .eachFaqInner {
                    .faqTitle {
                        font-size: 16px;
                    }

                    .faqCont {
                        .faqContInner {
                            font-size: 14px;
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 575px) {
    .secH {
        font-size: 32px;
    }

    .footerSec {
        .footerTop {
            padding: 0px 0px 30px;
        }

        .scrollToTopBtnDiv {
            width: 75px;
            height: 75px;
        }

        .footerMid {
            padding: 30px 15px;

            .footerMenu {
                gap: 5px;

                li {
                    min-width: 90px;

                    a {
                        font-size: 14px;
                    }
                }
            }
        }

        .footerAdd {
            padding: 30px 15px;
        }
    }

    .testiMonialScrollSec {
        .customer_stories {
            .customer_storiesInn {
                .custSecTop {
                    .secH {
                        left: 0;
                        padding: 0px 10px;
                    }

                    &::after {
                        width: 100%;
                    }
                }
            }
        }
    }


}

@media (max-width: 480px) {
    .contactMeSec {
        .contactMeInn {
            .contactMePara {
                font-size: 22px;
                margin-bottom: 18px;
            }

            .contMeHeadDiv {
                .contMeHead {
                    font-size: 36px;
                }
            }
        }
    }

    .commonSec {
        padding: 50px 0;
    }

    .testiMonialScrollSec {
        .customer_stories {
            min-height: auto;

            .customer_storiesInn {

                .custSecBtm {
                    .custSecSlider {
                        .custSecSlide {
                            .custCard {
                                padding: 20px 20px;

                                .custCardInn {
                                    width: 100%;
                                    max-height: 250px;
                                    overflow-y: auto;
                                    padding-right: 8px;
                                    margin-bottom: 25px;
                                }

                                .custCardDet {
                                    h6 {
                                        font-size: 20px;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    .testiMonialScrollSec {
        .customer_stories {
            .customer_storiesInn {
                .custSecBtm {
                    .custSecSlider {
                        .custSecSlide {
                            .custCard {
                                .custCardInn {
                                    p {
                                        font-size: 16px;
                                        line-height: 24px;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    .header {
        &.is-sticky {
            .headerInner {
                .headerRight {
                    .headerSer {
                        .serBtn {
                            width: 30px;
                            height: 30px;
                            padding: 6px;
                        }
                    }
                }
            }
        }
    }
}

.citySearchPopup {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999999999;
    display: flex;
    align-items: center;
    backdrop-filter: blur(14px);
    height: 100%;
}

.citySearchPopup .popupBox {
    position: relative;
    max-width: 600px;
    width: 90%;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    padding: 20px 25px;
    overflow-y: auto;
    max-height: 80vh;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: popupFade 0.25s ease;
    top: 50%;
    transform: translateY(-50%);
}

.texasLawWrap {
    padding: 30px;
    background: #e0b4324d;
    border-radius: 15px;
    margin: 0 0 20px;
}

.texasLawWrap>div {
    display: flex;
    flex-wrap: wrap;
    padding: 5px 0;
}

.texasLawWrap h3 {
    font-size: 24px;
    padding-left: 0 !important;
    text-decoration: underline;
}

.texasLawWrap a {
    display: block;
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

.texasLawWrap a:hover {
    color: #9e7d1b;
}

.form-group-new label{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}
.wpcf7-acceptance .wpcf7-list-item{
	margin: 0 !important;
}
.form-group-new label input[type="checkbox"]{
	width: 24px;
	height: 24px;
	margin-top: 5px;
	display: inline-block;
}
.form-group-new label .wpcf7-list-item-label{
	width: calc(100% - 24px);
	padding-left: 15px;
	display: inline-block;
}

.sidebarFormInn .consent-dynamic{
	color: #fff;
	font-size: 14px;
}
.sidebarFormInn	.form-group-new label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 7px;
}

/* select {
  -webkit-appearance: none; 
  -moz-appearance: none;
  appearance: none;
} */