/*Home Page CSS Start Here*/

/* Header Section CSS Start Here */

.eq-header-section {
    /* max-width: calc(100% - 214px); */
    width: 100%;
    margin: 0 auto;
    /* padding: 0px 40px; */
}

.eq-header-section .container {
    max-width: 1554px;
    width: 100%;
    padding: 0px 20px;
    margin: 0 auto;
}

.eq-header__wrapper {
    background-color: var(--color-dark-bg);
    padding: 17px 32px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    display: flex;
    justify-content: space-between;
    box-shadow: 0px 3.84px 3.84px 0px #00000040;
    align-items: center;
}

.eq-header__wrapper .eq-header__left .eq-header__logo {
    max-width: 147px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eq-header__wrapper .eq-header__left .eq-header__logo img {
    width: 100%;
    height: 100%;
}

.eq-header__wrapper .eq-header__right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
}

.eq-header__wrapper .eq-header__right .eq-header__all-links .all-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

.eq-header__wrapper .eq-header__right .eq-header__all-links {
    padding-top: 5px;
}

.eq-header__wrapper .eq-header__right .eq-header__all-links .all-links a {
    font-family: var(--font-button);
    font-weight: 400;
    font-size: 26.15px;
    line-height: 1.186;
    color: var(--fonts-light);
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.eq-header__wrapper .eq-header__right .eq-header__all-links .all-links:hover a {
    opacity: 0.4;
}

.eq-header__wrapper .eq-header__right .eq-header__all-links .all-links a:hover {
    opacity: 1;
}

.eq-header__wrapper .eq-header__right .eq-header__order-a a {
    font-family: var(--font-button-secondery);
    font-weight: 400;
    font-size: 23px;
    line-height: 1;
    text-align: center;
    color: var(--fonts-dark);
    background-color: var(--color-secondary-bg);
    display: block;
    border: 1px solid transparent;
    /* border: none; */
    outline: none;
    min-width: 150px;
    /* padding: 10px 33px; */
    padding: 16px 33px 11px;
    border-radius: 30px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.eq-header__wrapper .eq-header__right .eq-header__order-a a:hover {
    background-color: transparent;
    border-color: var(--color-secondary-bg);
    color: var(--fonts-yellow);
}

.eq-header__wrapper .eq-header__right .eq-header__social-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.eq-header__wrapper .eq-header__right .eq-header__social-links a {
    /* min-width: 24px; */
    min-width: fit-content;
    width: 100%;
    height: 24px;
    transition: opacity 0.3s ease-in-out;
    -webkit-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    -ms-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
}

.eq-header__wrapper .eq-header__right .eq-header__social-links:hover a {
    opacity: 0.4;
}

.eq-header__wrapper .eq-header__right .eq-header__social-links a:hover {
    opacity: 1;
}

.eq-header__wrapper .eq-header__right .eq-header__social-links a img {
    width: 100%;
    height: 100%;
}

.eq-header__wrapper .eq-header__right .eq-header__menu-a {
    display: none;
}


header.eq-header-section {
    position: sticky;
    top: 67px;
    z-index: 11;
}

@media only screen and (max-width: 1728px) and (min-width: 992px) {
    /* .eq-header-section {
        max-width: calc(100% - 12.384vw);
        padding: 0px 2.315vw;
    } */

    .eq-header-section .container {
        max-width: 89.931vw;
        padding: 0.000vw 1.157vw;
    }

    .eq-header__wrapper {
        padding: 0.984vw 1.852vw;
        border-radius: 1.157vw;
        -webkit-border-radius: 1.157vw;
        -moz-border-radius: 1.157vw;
        -ms-border-radius: 1.157vw;
        -o-border-radius: 1.157vw;
    }

    .eq-header__wrapper .eq-header__left .eq-header__logo {
        max-width: 8.507vw;
    }

    .eq-header__wrapper .eq-header__right {
        gap: 1.273vw;
    }

    .eq-header__wrapper .eq-header__right .eq-header__all-links .all-links {
        gap: 1.852vw;
    }

    .eq-header__wrapper .eq-header__right .eq-header__all-links {
        padding-top: 0.289vw;
    }

    .eq-header__wrapper .eq-header__right .eq-header__all-links .all-links a {
        font-size: 1.513vw;
    }

    .eq-header__wrapper .eq-header__right .eq-header__order-a a {
        font-size: 1.333vw;
        min-width: 8.681vw;
        /* padding: 0.579vw 1.910vw; */
        padding: 0.926vw 1.910vw 0.637vw;
        border-radius: 1.736vw;
        transition: all 0.4s ease-in-out;
        -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        -ms-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
    }

    .eq-header__wrapper .eq-header__right .eq-header__social-links {
        gap: 1.157vw;
    }

    .eq-header__wrapper .eq-header__right .eq-header__social-links a {
        /* min-width: 1.389vw; */
        min-width: fit-content;
        height: 1.389vw;
    }
}

@media only screen and (max-width: 991px) {
    .eq-header__wrapper .eq-header__left .eq-header__logo {
        max-width: 120px;
    }

    .eq-header__wrapper .eq-header__right .eq-header__all-links {
        display: none;
    }

    .eq-header__wrapper .eq-header__right .eq-header__social-links {
        display: none;
    }

    .eq-header__wrapper .eq-header__right .eq-header__menu-a {
        display: block;
    }

    .eq-header__wrapper .eq-header__right .eq-header__order-a a {
        background-color: var(--color-primary-bg);
        color: var(--fonts-light);
    }

    .eq-header__wrapper .eq-header__right .eq-header__order-a a:hover {
        background-color: var(--color-bg-white);
        border-color: var(--color-bg-white);
        color: var(--fonts-red);
    }

}

@media only screen and (max-width: 385px) {
    .eq-header__wrapper .eq-header__right .eq-header__order-a a {
        font-size: 16px !important;
    }

    .eq-header__wrapper .eq-header__right .eq-header__menu-a {
        width: 30px;
        height: 30px;
    }

    .eq-header__wrapper .eq-header__right .eq-header__menu-a a img {
        width: 100%;
        height: 100%;
    }

    .eq-header__wrapper .eq-header__left .eq-header__logo {
        max-width: 76px !important;
    }

    .eq-header__wrapper .eq-header__right .eq-header__order-a a {
        padding: 10px 12px !important;
        font-size: 14px !important;
    }
}

@media only screen and (max-width: 991px) {
    .eq-header-section {
        max-width: calc(100% - 40px);
    }

    .eq-header__wrapper {
        padding: 26px 17px 20px;
    }

    .eq-header__wrapper .eq-header__left .eq-header__logo {
        max-width: 95px;
    }

    .eq-header__wrapper .eq-header__right {
        gap: 12px;
    }

    .eq-header__wrapper .eq-header__right .eq-header__order-a a {
        font-size: 20px;
        /* padding: 10px 18px; */
        padding: 9px 20px 8px 19px;
        font-weight: 500;
        min-width: fit-content;
    }

    header.eq-header-section {
        top: 38px !important;
    }
}

.eq-banner-section {
    margin-top: -90px;
    z-index: 0;
    position: relative;
}

@media only screen and (max-width: 1728px) and (min-width: 992px) {
    header.eq-header-section {
        top: 3.877vw;
    }

    .eq-banner-section {
        margin-top: -5.208vw;
    }
}

/* Header Section CSS End Here */

/* Banner Section CSS Start Here */

.eq-banner-section {
    padding: 35px 0px 52px;
    background-color: var(--color-primary-bg);
    border-radius: 0px 0px 25px 25px;
    -webkit-border-radius: 0px 0px 25px 25px;
    -moz-border-radius: 0px 0px 25px 25px;
    -ms-border-radius: 0px 0px 25px 25px;
    -o-border-radius: 0px 0px 25px 25px;
}

.eq-banner__bg-img {
    position: relative;
    max-width: calc(100% - 86px);
    width: 100%;
    margin: 0 auto;
    padding-bottom: 54.5%;
    border-radius: 25px;
    overflow: hidden;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.eq-banner__bg-img img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.eq-banner__bg-img:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(269.5deg,
            rgba(0, 0, 0, 0) 28.54%,
            rgba(0, 0, 0, 0.22) 92.07%);
}

.eq-banner__bg-video {
    position: relative;
    max-width: calc(100% - 86px);
    width: 100%;
    margin: 0 auto;
    padding-bottom: 54.5%;
    border-radius: 25px;
    overflow: hidden;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.eq-banner__bg-video video {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.eq-banner__bg-video:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(269.5deg,
            rgba(0, 0, 0, 0) 28.54%,
            rgba(0, 0, 0, 0.22) 92.07%);
}

.eq-banner-section .eq-banner__top-section {
    position: relative;
}

.eq-banner-section .eq-banner__top-section .cus-container {
    position: absolute;
    bottom: 59px;
    left: calc(59px + 43px);
    padding: 0px;
    width: fit-content;
}

.eq-banner-section .eq-banner__top-section .eq-banner__heading {
    max-width: 100%;
    width: fit-content;
    position: relative;
}

.eq-banner-section .eq-banner__top-section .eq-banner__heading span {
    display: block;
}

.eq-banner-section .eq-banner__top-section .eq-banner__heading h1 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 188px;
    line-height: 0.85;
    text-transform: uppercase;
    color: var(--fonts-light);
    z-index: 5;
    position: relative;
}

.eq-banner-section .eq-banner__top-section .eq-banner__desc {
    max-width: 60%;
    width: 100%;
}

.eq-banner-section .eq-banner__top-section .eq-banner__desc p {
    font-family: var(--fonts-desc);
    font-weight: 700;
    font-size: 24px;
    color: var(--fonts-light);
    line-height: 1.2;
    margin-top: 8px;
}

.eq-banner-section .eq-banner__top-section .eq-banner__order-btn {
    margin-top: 21px;
    height: 100%;
}

.eq-banner-section .eq-banner__top-section .eq-banner__order-btn a {
    background: var(--color-secondary-bg);
    font-family: var(--font-button-secondery);
    color: var(--fonts-dark);
    display: block;
    width: fit-content;
    font-weight: 400;
    font-size: 32px;
    line-height: 1;
    text-align: center;
    border: none;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    outline: none;
    padding: 18px 38px 13px;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.eq-banner-section .eq-banner__top-section .eq-banner__order-btn a:hover {
    background-color: var(--color-dark-bg-200);
    color: var(--fonts-yellow);
}

.eq-banner__top-section .eq-banner__sticker {
    max-width: 188px;
    width: 100%;
    position: absolute;
    top: -5%;
    right: -11%;
    transform: translate(-51%, -50%);
    -webkit-transform: translate(-51%, -50%);
    -moz-transform: translate(-51%, -50%);
    -ms-transform: translate(-51%, -50%);
    -o-transform: translate(-51%, -50%);
}

.eq-banner__top-section .eq-banner__sticker img {
    width: 100%;
    height: 100%;
}

/* banner bottom section css */

.eq-banner-section.home-banner-bottom {
    margin-top: -25px;
}

.eq-banner-section.home-banner-bottom {
    padding-top: 35px;
}

.eq-banner__bottom-section {
    max-width: calc(100% - 86px);
    width: 100%;
    margin: 0 auto;
    /* padding-top: 62px; */
}

.eq-banner__bottom-section .bottom-section__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 43px;
}

.eq-banner__bottom-section .bottom-section__wrapper .bottom__card {
    padding: 43px 0px 44px;
    background-color: rgba(255, 255, 255, 0.09);
    border-radius: 25px;
    /* max-width: 800px; */
    width: 100%;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.eq-banner__bottom-section .bottom-section__wrapper .bottom__card:last-child .card__wrapper .card-sticker {
    max-width: 132px;
    width: 100%;
    rotate: -19.48deg;
    top: -1px;
    left: -35px;
}

.eq-banner__bottom-section .bottom-section__wrapper .bottom__card .card__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 59px;
    max-width: 74%;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.eq-banner__bottom-section .bottom-section__wrapper .bottom__card .card__wrapper .card-sticker {
    position: absolute;
    top: -15px;
    left: -15px;
    z-index: 1;
    max-width: 81px;
    width: 100%;
}

.eq-banner__bottom-section .bottom-section__wrapper .bottom__card .card__wrapper .card-sticker img {
    width: 100%;
    height: 100%;
}

.eq-banner__bottom-section .bottom-section__wrapper .bottom__card .card__wrapper .card-sticker__location {
    position: absolute;
    top: 2px;
    left: -40px;
    z-index: 1;
    rotate: -19deg;
    max-width: 132px;
    width: 100%;
}

.eq-banner__bottom-section .bottom-section__wrapper .bottom__card .card__wrapper .card-sticker__location img {
    width: 100%;
    height: 100%;
}

.eq-banner__bottom-section .bottom-section__wrapper .bottom__card .card__left-img {
    position: relative;
    max-width: 227px;
    width: 100%;
}

.eq-banner__bottom-section .bottom-section__wrapper .bottom__card .card__left-img .left-img {
    max-width: 227px;
    position: relative;
    padding-bottom: 100%;
    width: 100%;
    border-radius: 50%;
    overflow: hidden;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.eq-banner__bottom-section .bottom-section__wrapper .bottom__card .card__left-img .left-img img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bottom-section__wrapper .bottom__card .card__right-content .content__heading h2 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 64px;
    line-height: 1;
    color: var(--fonts-yellow);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.bottom-section__wrapper .bottom__card .card__right-content .content__desc p {
    font-family: var(--fonts-card-desc);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    color: var(--fonts-light);
    margin-bottom: 22px;
}

.bottom-section__wrapper .bottom__card .card__right-content .content__btn a {
    font-family: var(--font-button-secondery);
    font-weight: 400;
    font-size: 32px;
    max-width: 170px;
    width: 100%;
    display: block;
    line-height: 1;
    text-align: center;
    color: var(--fonts-light);
    text-transform: uppercase;
    background-color: var(--color-dark-bg);
    border: none;
    outline: none;
    padding: 11px 10px 7px;
    border-radius: 30px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.bottom-section__wrapper .bottom__card .card__right-content .content__btn a:hover {
    background-color: var(--fonts-light);
    color: var(--color-dark-bg);
}

@media only screen and (max-width: 1728px) and (min-width: 992px) {
    .eq-banner-section {
        padding: 2.025vw 0px 3.009vw;
        border-radius: 0vw 0vw 1.447vw 1.447vw;
        -webkit-border-radius: 0vw 0vw 1.447vw 1.447vw;
        -moz-border-radius: 0vw 0vw 1.447vw 1.447vw;
        -ms-border-radius: 0vw 0vw 1.447vw 1.447vw;
        -o-border-radius: 0vw 0vw 1.447vw 1.447vw;
    }

    .eq-banner__bg-img {
        max-width: calc(100% - 4.977vw);
        border-radius: 1.447vw;
        -webkit-border-radius: 1.447vw;
        -moz-border-radius: 1.447vw;
        -ms-border-radius: 1.447vw;
        -o-border-radius: 1.447vw;
    }

    .eq-banner__bg-video {
        max-width: calc(100% - 4.977vw);
        border-radius: 1.447vw;
        -webkit-border-radius: 1.447vw;
        -moz-border-radius: 1.447vw;
        -ms-border-radius: 1.447vw;
        -o-border-radius: 1.447vw;
    }

    .eq-banner-section .eq-banner__top-section .cus-container {
        bottom: 3.414vw;
        left: calc(3.414vw + 2.488vw);
    }

    .eq-banner-section .eq-banner__top-section .eq-banner__heading h1 {
        font-size: 10.88vw;
    }

    .eq-banner-section .eq-banner__top-section .eq-banner__desc p {
        font-size: 1.389vw;
        margin-top: 0.463vw;
    }

    .eq-banner-section .eq-banner__top-section .eq-banner__order-btn {
        margin-top: 1.215vw;
    }

    .eq-banner-section .eq-banner__top-section .eq-banner__order-btn a {
        font-size: 1.852vw;
        padding: 1.042vw 2.199vw 0.752vw;
        border-radius: 2.315vw;
        -webkit-border-radius: 2.315vw;
        -moz-border-radius: 2.315vw;
        -ms-border-radius: 2.315vw;
        -o-border-radius: 2.315vw;
    }

    .eq-banner__top-section .eq-banner__sticker {
        max-width: 10.88vw;
    }

    /* banner bottom section CSS*/

    .eq-banner-section.home-banner-bottom {
        margin-top: -1.447vw;
    }

    .eq-banner-section.home-banner-bottom {
        padding-top: 2.025vw;
    }

    .eq-banner__bottom-section {
        max-width: calc(100% - 4.977vw);
        /* padding-top: 3.588vw; */
    }

    .eq-banner__bottom-section .bottom-section__wrapper {
        gap: 2.488vw;
    }

    .eq-banner__bottom-section .bottom-section__wrapper .bottom__card {
        padding: 2.488vw 0vw 2.546vw;
        border-radius: 1.447vw;
        /* max-width: 46.296vw; */
        -webkit-border-radius: 1.447vw;
        -moz-border-radius: 1.447vw;
        -ms-border-radius: 1.447vw;
        -o-border-radius: 1.447vw;
    }

    .eq-banner__bottom-section .bottom-section__wrapper .bottom__card:last-child .card__wrapper .card-sticker {
        max-width: 7.639vw;
        top: -0.058vw;
        left: -2.025vw;
    }

    .eq-banner__bottom-section .bottom-section__wrapper .bottom__card .card__wrapper {
        gap: 3.414vw;
    }

    .eq-banner__bottom-section .bottom-section__wrapper .bottom__card .card__wrapper .card-sticker {
        top: -0.868vw;
        left: -0.868vw;
        max-width: 4.63vw;
    }

    .eq-banner__bottom-section .bottom-section__wrapper .bottom__card .card__wrapper .card-sticker__location {
        top: 0.116vw;
        left: -2.315vw;
        max-width: 7.639vw;
    }

    .eq-banner__bottom-section .bottom-section__wrapper .bottom__card .card__left-img {
        max-width: 13.137vw;
    }

    .bottom-section__wrapper .bottom__card .card__right-content .content__heading h2 {
        font-size: 3.704vw;
        margin-bottom: 0.694vw;
    }

    .bottom-section__wrapper .bottom__card .card__right-content .content__desc p {
        font-size: 0.926vw;
        margin-bottom: 1.273vw;
    }

    .bottom-section__wrapper .bottom__card .card__right-content .content__btn a {
        font-size: 1.852vw;
        padding: 0.637vw 0.579vw 0.405vw;
        border-radius: 1.736vw;
        max-width: 9.838vw;
    }
}

@media only screen and (max-width: 991px) {
    .eq-banner-section.home-banner-bottom {
        margin-top: -25px;
    }

    .eq-banner-section.home-banner-bottom {
        padding-top: 27px;
    }

    .eq-banner-section {
        padding: 25px 0px 52px;
    }

    .eq-banner__bg-img {
        max-width: calc(100% - 40px);
        padding-bottom: 100%;
    }

    .eq-banner__bg-video {
        max-width: calc(100% - 40px);
        padding-bottom: 100%;
    }

    .eq-banner-section .eq-banner__top-section .cus-container {
        bottom: 28px;
        left: calc(22px + 18px);
    }

    /* .eq-banner-section .eq-banner__top-section .eq-banner__heading {
    max-width: 85%;
    width: 100%;
  } */
    .eq-banner-section .eq-banner__top-section .eq-banner__heading h1 {
        font-size: 120px;
    }

    .eq-banner-section .eq-banner__top-section .eq-banner__desc {
        max-width: 85%;
    }

    .eq-banner-section .eq-banner__top-section .eq-banner__order-btn a {
        background-color: var(--color-primary-bg);
        color: var(--fonts-light);
        font-size: 28px;
        padding: 14px 24px 11px;
    }

    .eq-banner__top-section .eq-banner__sticker {
        max-width: 150px;
        /* top: -10%;
    right: 5%; */
        top: 0%;
        right: -18%;
    }

    /* .eq-banner__bottom-section {
    padding-top: 25px;
  } */

    .eq-banner__bottom-section .bottom-section__wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .bottom-section__wrapper .bottom__card .card__right-content .content__btn a {
        font-size: 28px;
        max-width: 150px;
    }

    .eq-banner__bottom-section .bottom-section__wrapper .bottom__card .card__left-img .left-img {
        min-width: 227px;
        padding-bottom: 100%;
    }

    .eq-banner__bottom-section .bottom-section__wrapper .bottom__card .card__wrapper .card-sticker__location {
        bottom: -20px;
        right: -10%;
        top: auto;
        left: auto;
    }

    .eq-banner__bottom-section .bottom-section__wrapper .bottom__card:last-child .card__wrapper .card-sticker {
        bottom: -20px;
        right: -10%;
        top: auto;
        left: auto;
    }

    .eq-banner-section .eq-banner__top-section .eq-banner__order-btn a:hover {
        color: var(--color-primary-bg) !important;
        background-color: var(--fonts-light) !important;
    }
}

@media only screen and (max-width: 767px) {
    .eq-banner-section {
        padding: 25px 0px 25px;
    }

    .eq-banner-section.home-banner-bottom {
        padding-bottom: 65px;
    }

    .eq-banner__bg-img {
        padding-bottom: 189%;
    }

    .eq-banner__bg-video {
        padding-bottom: 189%;
    }

    .eq-banner-section .eq-banner__top-section .eq-banner__heading h1 {
        font-size: 64px;
    }

    .eq-banner-section .eq-banner__top-section .eq-banner__desc p {
        font-size: 16px;
        margin-top: 20px;
    }

    .eq-banner-section .eq-banner__top-section .eq-banner__order-btn {
        margin-top: 22px;
    }

    .eq-banner-section .eq-banner__top-section .eq-banner__order-btn a {
        font-size: 20px;
        font-weight: 500;
        padding: 9px 20px;
    }

    .eq-banner__top-section .eq-banner__sticker {
        max-width: 70px;
        /* top: 7%;
    right: 11%; */
        /* top: 0%;
    right: -14%; */
        top: 5px;
        right: -14%;
    }

    .eq-banner__bottom-section {
        max-width: calc(100% - 38px);
    }

    .eq-banner__bottom-section .bottom-section__wrapper .bottom__card .card__wrapper {
        gap: 24px;
    }

    .eq-banner__bottom-section .bottom-section__wrapper .bottom__card {
        /* padding: 27px 32px 16px 45px; */
        padding: 10px 32px 10px 45px;
        min-height: 251px;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .eq-banner__bottom-section .bottom-section__wrapper .bottom__card .card__wrapper {
        width: 100%;
        max-width: 100%;
    }

    .eq-banner__bottom-section .bottom-section__wrapper .bottom__card .card__left-img .left-img {
        min-width: 117px;
        padding-bottom: 100%;
    }

    .bottom-section__wrapper .bottom__card .card__right-content .content__heading h2 {
        font-size: 40px;
        margin-bottom: 16px;
    }

    .bottom-section__wrapper .bottom__card .card__right-content .content__btn a {
        font-size: 20px;
        padding: 9px 19px;
    }

    .eq-banner__bottom-section .bottom-section__wrapper .bottom__card:last-child .card__wrapper .card-sticker {
        max-width: 76px;
    }

    .bottom-section__wrapper .bottom__card .card__right-content .content__btn a {
        max-width: 111px;
    }
}

@media only screen and (max-width: 540px) {
    .eq-banner__bottom-section .bottom-section__wrapper .bottom__card .card__wrapper .card-sticker {
        max-width: 54px;
    }

    .eq-banner__bottom-section .bottom-section__wrapper .bottom__card .card__wrapper .card-sticker__location {
        max-width: 76px;
        bottom: -15px;
    }
}

/* @media only screen and (max-width: 430px) {
  .eq-banner__top-section .eq-banner__sticker {
    max-width: 70px;
    top: -7%;
    right: 8%;
  }
} */

@media only screen and (max-width: 380px) {
    .eq-banner__top-section .eq-banner__sticker {
        max-width: 55px;
        top: 0%;
        right: -15%;
    }

    .eq-banner-section .eq-banner__top-section .eq-banner__heading h1 {
        font-size: 50px;
    }

    .eq-banner__bottom-section .bottom-section__wrapper .bottom__card .card__wrapper {
        flex-direction: column;
    }

    .eq-banner__bottom-section .bottom-section__wrapper .bottom__card .card__wrapper .card-sticker {
        top: 0;
        left: 0;
    }

    .eq-banner__bottom-section .bottom-section__wrapper .bottom__card:last-child .card__wrapper .card-sticker {
        bottom: 0;
        right: 0;
    }
}

@media only screen and (max-width: 330px) {
    .eq-banner__bottom-section .bottom-section__wrapper .bottom__card {
        padding: 32px;
    }
}

/* @media only screen and (max-width: 380px) {
  .eq-banner-section .eq-banner__top-section .eq-banner__heading {
    max-width: 85%;
    width: 100%;
  }
} */

/* Banner Section CSS End Here */

/*Home Page CSS End Here*/
/* .eq-header__mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: #000;
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.4s ease-in-out;
}

.eq-header__mobile-drawer.open {
  transform: translateX(0);
} */

.eq-header__mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    background: #000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
}

.eq-header__mobile-drawer.open {
    transform: translateX(0);
}

.eq-header__mobile-drawer .eq-header__all-links {
    margin-bottom: 54px;
}

.eq-header__mobile-drawer .eq-header__all-links .header-link {
    text-align: center;
}

.eq-header__mobile-drawer .eq-header__all-links .header-link a {
    font-family: var(--fonts-mobile-drawer);
    font-weight: 400;
    font-size: 64px;
    line-height: 0.85;
    text-align: center;
    text-transform: uppercase;
    color: var(--fonts-light);
}

.eq-header__mobile-drawer .eq-header__order-a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 92px;
}

.eq-header__mobile-drawer .eq-header__order-a a {
    background: var(--color-secondary-bg);
    font-family: var(--font-button-secondery);
    color: var(--fonts-dark);
    font-weight: 400;
    font-size: 23px;
    line-height: 1;
    text-align: center;
    border: 1px solid transparent;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    outline: none;
    /* padding: 14px 35px; */
    padding: 16px 35px 12px;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.eq-header__mobile-drawer .eq-header__order-a a:hover {
    border-color: var(--color-secondary-bg);
    color: var(--fonts-yellow);
    background-color: transparent;
}

.eq-header__mobile-drawer .eq-header__social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.eq-header__mobile-drawer .mobile-deawer__close-btn {
    position: absolute;
    top: 60px;
    right: 40px;
}

.eq-header__mobile-drawer .mobile-deawer__close-btn a {
    background-color: var(--color-primary-bg);
    border: 1px solid transparent;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    border-radius: 45px;
    -webkit-border-radius: 45px;
    -moz-border-radius: 45px;
    -ms-border-radius: 45px;
    -o-border-radius: 45px;
}

.eq-header__mobile-drawer .mobile-deawer__close-btn a:hover {
    background-color: var(--color-bg-white);
}

.eq-header__mobile-drawer .mobile-deawer__close-btn a:hover svg path {
    fill: var(--color-primary-bg);
}

/* Street Food Section CSS Start Here*/

.eq-street-food-section {
    padding-top: 173px;
    margin-top: -25px;
    background: linear-gradient(0deg, #1F1F1F, #1F1F1F),
        linear-gradient(252.86deg, rgba(0, 0, 0, 0) 1.22%, #000000 98.78%);
    /* box-shadow: 0px 4px 4px 0px #00000040; */
}

.eq-street-food-section .street-food__top-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.eq-street-food-section .street-food__top-section .street-food__detail {
    max-width: 530px;
    width: 100%;
}

.street-food__top-section .street-food__detail h2 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 96px;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--fonts-yellow);
    margin-bottom: 20px;
}

.street-food__top-section .street-food__detail h2 span {
    display: block;
    color: #FFFFFF;
}

.street-food__top-section .street-food__detail .street-food__desc p {
    font-family: var(--fonts-desc);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
    color: #FFFFFF;
}

.street-food__top-section .street-food__detail .street-food__desc p:last-child {
    font-family: var(--fonts-card-desc);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    color: #fff;
    margin-top: 25px;
}

.street-food__top-section .street-food__detail .street-food__desc {
    margin-bottom: 48px;
}

.eq-street-food-section .street-food__top-section .street-food__img-wrapper {
    max-width: 576px;
    width: 100%;
    position: relative;
}

.street-food__top-section .street-food__detail .street-food__about-btn a {
    font-family: var(--font-button-secondery);
    font-weight: 400;
    font-size: 32px;
    display: block;
    width: fit-content;
    line-height: 1;
    color: #0A0A0A;
    text-transform: uppercase;
    border: none;
    background-color: var(--color-secondary-bg);
    border: 1px solid transparent;
    transition: all 0.4s ease-in-out;
    padding: 18px 46px 12px;
    border-radius: 35px;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    -o-border-radius: 35px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.street-food__top-section .street-food__detail .street-food__about-btn a:hover {
    background-color: transparent;
    border-color: var(--color-secondary-bg);
    color: var(--fonts-yellow)
}

.eq-street-food-section .street-food__top-section .street-food__img {
    max-width: 576px;
    width: 100%;
    position: relative;
    padding-bottom: 115%;
    border-radius: 20px;
    overflow: hidden;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    box-shadow: -20px 20px 0px 0px #0000000D;
    z-index: 1;
}

.eq-street-food-section .street-food__top-section .street-food__img img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eq-street-food-section .street-food__top-section .street-food__img-wrapper .street-food__sticker {
    position: absolute;
    top: 16%;
    rotate: -22.52deg;
    max-width: 188px;
    width: 100%;
    height: 188px;
    left: -25%;
    z-index: 2;
}

.eq-street-food-section .street-food__top-section .street-food__img-wrapper .street-food__sticker img {
    width: 100%;
    height: 100%;
}

.street-food__top-section .street-food__img-wrapper .street-food__sticker-toy {
    position: absolute;
    top: 27%;
    rotate: -15.55deg;
    max-width: 446px;
    width: 100%;
    /* height: 442px; */
    height: auto;
    left: -51%;
    z-index: 0;
}

.street-food__top-section .street-food__img-wrapper .street-food__sticker-toy img {
    width: 100%;
    height: 100%;
}

.street-food__bottom-section {
    padding-top: 111px;
}

.street-food__bottom-section .street-food__marque {
    width: 100%;
    overflow: hidden;
    background: var(--color-secondary-bg);
    padding: 23px 0;
}

/* .street-food__bottom-section .marquee__track {
    display: flex;
    width: max-content;
    animation: marquee 15s linear infinite;
    -webkit-animation: marquee 15s linear infinite;
}

.street-food__bottom-section .marquee__track span {
    font-size: 54px;
    line-height: 1;
    font-weight: 500;
    color: #000;
    white-space: nowrap;
    margin-right: 48px;
    text-transform: uppercase;
    font-family: var(--font-button)
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
} */

.marquee {
    overflow: hidden;
    width: 100%;
}

.marquee__track {
    display: flex;
    width: max-content;
    animation: marquee 20s linear infinite;
}

.marquee__track span {
    font-size: 54px;
    line-height: 1;
    font-weight: 500;
    color: #000;
    white-space: nowrap;
    margin-right: 48px;
    text-transform: uppercase;
    font-family: var(--font-button);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


.street-food__bottom-section  .marquee {
    overflow: hidden;
    width: 100%;
}

.street-food__bottom-section .marquee__track {
    display: flex;
    width: max-content;
    animation: marquee 5s linear infinite;
    -webkit-animation: marquee 5s linear infinite;
}

.street-food__bottom-section .marquee__track span {
    font-size: 54px;
    line-height: 1;
    font-weight: 500;
    color: #000;
    white-space: nowrap;
    margin-right: 48px;
    text-transform: uppercase;
    font-family: var(--font-button);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {    
        transform: translateX(-20%);
        -webkit-transform: translateX(-20%);
        -moz-transform: translateX(-20%);
        -ms-transform: translateX(-20%);
        -o-transform: translateX(-20%);
}
}



@media only screen and (max-width: 1728px) and (min-width: 992px) {
    .eq-street-food-section {
        padding-top: 10.012vw;
        margin-top: -3.009vw;
        /* box-shadow: 0.000vw 0.231vw 0.231vw 0.000vw #00000040; */
    }

    .eq-street-food-section .street-food__top-section .street-food__detail {
        max-width: 30.671vw;
    }

    .street-food__top-section .street-food__detail h2 {
        font-size: 5.556vw;
        margin-bottom: 1.157vw;
    }

    .street-food__top-section .street-food__detail .street-food__desc p {
        font-size: 1.389vw;
    }

    .street-food__top-section .street-food__detail .street-food__desc p:last-child {
        font-size: 0.926vw;
        margin-top: 1.447vw;
    }

    .street-food__top-section .street-food__detail .street-food__desc {
        margin-bottom: 2.778vw;
    }

    .eq-street-food-section .street-food__top-section .street-food__img-wrapper {
        max-width: 33.333vw;
        width: 100%;
    }

    .street-food__top-section .street-food__detail .street-food__about-btn a {
        font-size: 1.852vw;
        border: 0.058vw solid transparent;
        padding: 1.042vw 2.662vw 0.694vw;
        border-radius: 2.025vw;
        -webkit-border-radius: 2.025vw;
        -moz-border-radius: 2.025vw;
        -ms-border-radius: 2.025vw;
        -o-border-radius: 2.025vw;
        -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        -ms-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
    }

    .eq-street-food-section .street-food__top-section .street-food__img {
        max-width: 33.333vw;
        border-radius: 1.157vw;
        -webkit-border-radius: 1.157vw;
        -moz-border-radius: 1.157vw;
        -ms-border-radius: 1.157vw;
        -o-border-radius: 1.157vw;
        box-shadow: -1.157vw 1.157vw 0.000vw 0.000vw #0000000D;
    }

    .eq-street-food-section .street-food__top-section .street-food__img-wrapper .street-food__sticker {
        max-width: 10.880vw;
        height: 10.880vw;
    }

    .street-food__top-section .street-food__img-wrapper .street-food__sticker-toy {
        max-width: 25.810vw;
        /* height: 25.579vw; */
    }

    .street-food__bottom-section {
        padding-top: 6.424vw;
    }

    .street-food__bottom-section .street-food__marque {
        padding: 1.331vw 0;
    }

    .street-food__bottom-section .marquee__track span {
        font-size: 3.125vw;
        margin-right: 2.778vw;
    }

    

}

@media only screen and (max-width: 991px) {
    .eq-street-food-section {
        padding-top: 112px;
    }

    .street-food__top-section .street-food__detail h2 {
        font-size: 64px;
    }

    .street-food__top-section .street-food__detail .street-food__desc p {
        font-size: 18px;
    }

    .street-food__top-section .street-food__img-wrapper .street-food__sticker-toy {
        max-width: 350px;
        height: 350px !important;
        top: -34% !important;
    }

    .eq-street-food-section .street-food__top-section .street-food__img-wrapper .street-food__sticker {
        max-width: 150px;
        height: 150px;
    }

    .eq-street-food-section .street-food__top-section {
        flex-direction: column;
        gap: 175px;
    }

    .eq-street-food-section .street-food__top-section .street-food__detail,
    .eq-street-food-section .street-food__top-section .street-food__img-wrapper {
        max-width: 100%;
    }

    .eq-street-food-section .street-food__top-section .street-food__img {
        max-width: 100%;
        padding-bottom: 75%;
    }

    .eq-street-food-section .street-food__top-section .street-food__img-wrapper .street-food__sticker {
        top: -17%;
        left: 60%;
    }

    .street-food__top-section .street-food__img-wrapper .street-food__sticker-toy {
        top: -35%;
        rotate: 7deg;
        height: 442px;
        left: 50%;
        transform: translateX(-50%);
    }

    .street-food__bottom-section {
        padding-top: 41px;
    }

    .street-food__bottom-section .street-food__marque {
        padding: 14px 0px;
    }

    .street-food__bottom-section .marquee__track span{
        font-size: 32px;
    }

    .street-food__top-section .street-food__detail .street-food__about-btn a {
        font-size: 28px;
        padding: 14px 30px 8px;
    }
}

@media only screen and (max-width: 767px) {
    .eq-street-food-section {
        /* padding-top: 112px; */
        padding-top: 85px;
    }

    .street-food__top-section .street-food__detail h2 {
        font-size: 48px;
        margin-bottom: 30px;
    }

    .street-food__top-section .street-food__detail .street-food__desc p {
        font-size: 20px;
    }

    .street-food__top-section .street-food__detail .street-food__desc p:last-child {
        margin-top: 30px;
    }

    .street-food__top-section .street-food__detail .street-food__desc {
        margin-bottom: 20px;
    }

    .street-food__top-section .street-food__detail .street-food__about-btn a {
        font-family: var(--font-button-secondery);
        color: var(--fonts-light);
        font-size: 20px;
        padding: 9px 26px;
    }

    .street-food__top-section .street-food__detail .street-food__about-btn a:hover {
        background-color: var(--color-bg-white);
        color: var(--fonts-yellow);
        border-color: var(--color-bg-white);
    }

    .eq-street-food-section .street-food__top-section {
        gap: 90px;
    }

    .eq-street-food-section .street-food__top-section .street-food__img {
        padding-bottom: 115%;
    }

    .street-food__top-section .street-food__img-wrapper .street-food__sticker-toy {
        max-width: 178px;
        height: 168px !important;
        /* top: -19% !important; */
        top: -90px !important;
    }

    .eq-street-food-section .street-food__top-section .street-food__img-wrapper .street-food__sticker {
        max-width: 85px;
        height: 85px;
        /* top: -11%; */
        top: -50px;
    }

    .street-food__bottom-section .street-food__marque {
        padding: 16px 0px;
    }
}

@media only screen and (max-width: 380px) {
    .eq-street-food-section .street-food__top-section .street-food__img-wrapper .street-food__sticker {
        max-width: 65px;
        height: 65px;
        top: -45px;
        left: 60%;
    }
}

@media only screen and (max-width: 380px) {
    .eq-street-food-section .street-food__top-section .street-food__img-wrapper .street-food__sticker {
        left: 63%;
    }
}

/* @media only screen and (max-width: 380px) {
  .street-food__top-section .street-food__img-wrapper .street-food__sticker-toy {
    top: -23% !important;
  }
}

@media only screen and (max-width: 340px) {
  .street-food__top-section .street-food__img-wrapper .street-food__sticker-toy {
      top: -27% !important;
  }
} */

/* Street Food Section CSS Ends Here*/

/* The Food Section CSS Start Here*/

.eq-the-food-section {
    padding: 65px 0px 78px;
    overflow: hidden;
    background-color: var(--color-body-bg);
}

.eq-the-food-section .the-food-section__heading {
    border-bottom: 1px solid #00000033;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}

.the-food-section__heading .heading {
    display: flex;
    flex-direction: row;
    justify-content: start;
    gap: 38px;
    align-items: baseline;
}

.the-food-section__heading .heading h2 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 96px;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--fonts-red)
}

.the-food-section__heading .heading p {
    font-family: var(--fonts-card-desc);
    font-weight: 400;
    font-size: 24px;
    line-height: 1.3;
    color: var(--fonts-black)
}

.the-food-section__heading .food-section__btns {
    display: flex;
    justify-content: end;
    gap: 24px;
    align-items: center;
    flex-direction: row;
}

.the-food-section__heading .food-section__btns .slider-btn {
    display: flex;
    gap: 7px;
    align-items: center;
    flex-direction: row;
}

.the-food-section__heading .food-section__btns .slider-btn a.slick-hidden {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

.the-food-section__heading .food-section__btns .slider-btn a {
    background-color: #BE1622;
    border: 1px solid transparent;
    outline: none;
    min-width: 57px;
    width: 100%;
    height: 57px;
    display: flex;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    align-items: center;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.the-food-section__heading .food-section__btns .slider-btn a svg {
    width: 24px;
    height: 24px;
}

.the-food-section__heading .food-section__btns .slider-btn a:hover {
    border-color: var(--color-primary-bg);
    background-color: transparent;
}

.the-food-section__heading .food-section__btns .slider-btn a:hover svg path {
    fill: var(--color-primary-bg);
}

.the-food-section__heading .food-section__btns .explore-btn a {
    font-family: var(--font-button-secondery);
    font-weight: 400;
    padding: 13px 17px 9px;
    min-width: 294px;
    border-radius: 40px;
    font-size: 32px;
    display: block;
    line-height: 1;
    text-align: center;
    color: var(--fonts-light-200);
    border: 1px solid transparent;
    background-color: #BE1622;
    outline: none;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
}

.the-food-section__heading .food-section__btns .explore-btn a:hover {
    border-color: var(--color-primary-bg);
    color: var(--fonts-red);
    background-color: transparent;
}

.eq-the-food-section .the-food-section__slider {
    padding-top: 48px;
}

.eq-the-food-section .the-food-section__slider .slider__card {
    padding: 0px 18px;
}

.eq-the-food-section .the-food-section__slider .slider__card a {
    position: relative;
    display: block;
}

.the-food-section__slider .slider__card .card-img {
    max-width: 480px;
    width: 100%;
    position: relative;
    /* padding-bottom: 122%; */
    padding-bottom: 128%;
    border-radius: 25px;
    overflow: hidden;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.the-food-section__slider .slider__card .card-img img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.the-food-section__slider .slider__card .card__btn p {
    font-family: var(--font-button);
    font-weight: 400;
    font-size: 32px;
    line-height: 1;
    text-align: center;
    color: var(--fonts-yellow);
    border: 1px solid transparent;
    outline: none;
    background-color: var(--color-dark-bg-200);
    min-width: 228px;
    /* padding: 17px 0px; */
    padding: 17px 25px;
    border-radius: 35px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.the-food-section__slider .slider__card .card__btn p:hover {
    background-color: var(--color-secondary-bg);
    color: var(--fonts-dark);
}

.the-food-section__slider .slider__card .card__btn {
    position: absolute;
    bottom: 34px;
    left: 22px;
}

.the-food-section__slider.slick-initialized {
    max-width: 1510px;
    margin: 0;
    overflow: visible;
}

.the-food-section__slider.slick-initialized .slick-list.draggable {
    overflow: visible;
    margin: 0px -18px;
}

.eq-the-food-section .explore-btn__mobile {
    display: none;
}

@media only screen and (max-width: 1728px) and (min-width: 992px) {
    .eq-the-food-section {
        padding: 3.762vw 0.000vw 4.514vw;
    }

    .eq-the-food-section .the-food-section__heading {
        border-bottom: 0.058vw solid #00000033;
    }

    .the-food-section__heading .heading {
        gap: 2.199vw;
    }

    .the-food-section__heading .heading h2 {
        font-size: 5.556vw;
    }

    .the-food-section__heading .heading p {
        font-size: 1.389vw;
    }

    .the-food-section__heading .food-section__btns {
        gap: 1.389vw;
    }

    .the-food-section__heading .food-section__btns .slider-btn {
        gap: 0.405vw;
    }

    .the-food-section__heading .food-section__btns .slider-btn a {
        border: 0.058vw solid transparent;
        min-width: 3.299vw;
        height: 3.299vw;
        border-radius: 1.736vw;
        -webkit-border-radius: 1.736vw;
        -moz-border-radius: 1.736vw;
        -ms-border-radius: 1.736vw;
        -o-border-radius: 1.736vw;
    }

    .the-food-section__heading .food-section__btns .slider-btn a svg {
        width: 1.389vw;
        height: 1.389vw;
    }

    .the-food-section__heading .food-section__btns .explore-btn a {
        padding: 0.752vw 0.984vw 0.521vw;
        min-width: 16.667vw;
        border-radius: 2.025vw;
        font-size: 1.852vw;
    }

    .eq-the-food-section .the-food-section__slider {
        padding-top: 2.778vw;
    }

    .the-food-section__slider .slider__card .card-img {
        max-width: 27.778vw;
        border-radius: 1.447vw;
        -webkit-border-radius: 1.447vw;
        -moz-border-radius: 1.447vw;
        -ms-border-radius: 1.447vw;
        -o-border-radius: 1.447vw;
    }

    .the-food-section__slider .slider__card .card__btn p {
        font-size: 1.852vw;
        border: 0.058vw solid transparent;
        min-width: 13.194vw;
        /* padding: 0.984vw 0.000vw; */
        padding: 0.984vw 1.447vw;
        border-radius: 2.025vw;
    }

    .the-food-section__slider .slider__card .card__btn {
        bottom: 1.968vw;
        left: 1.273vw;
    }

    .the-food-section__slider.slick-initialized {
        max-width: 87.384vw;
    }

    .eq-the-food-section .the-food-section__slider .slider__card {
        padding: 0px 1.042vw;
    }

    .the-food-section__slider.slick-initialized .slick-list.draggable {
        margin: 0px -1.042vw;
    }
}

@media only screen and (max-width: 991px) {
    .eq-the-food-section {
        padding: 40px 0px;
    }

    .the-food-section__heading .heading h2 {
        font-size: 70px;
    }

    .the-food-section__heading .heading p {
        display: none;
    }

    .the-food-section__heading .food-section__btns .slider-btn a {
        min-width: 45px;
        height: 45px;
    }

    .the-food-section__heading .food-section__btns .slider-btn a svg {
        width: 18px;
        height: 18px;
    }

    .the-food-section__heading .food-section__btns .explore-btn {
        display: none;
    }

    .eq-the-food-section .explore-btn__mobile {
        display: block;
        padding-top: 30px;
    }

    .the-food-section__slider .slider__card .card__btn {
        bottom: 28px;
        left: 20px;
    }

    .the-food-section__slider .slider__card .card__btn p {
        /* padding: 13px 0px; */
        padding: 13px 16px;
    }

    .the-food-section__slider .slider__card .card-img {
        padding-bottom: 140%;
    }

    .eq-the-food-section .explore-btn__mobile a {
        font-family: var(--font-button-secondery);
        font-weight: 400;
        padding: 13px 17px 9px;
        border-radius: 30px;
        display: block;
        width: fit-content;
        font-size: 24px;
        line-height: 1;
        text-align: center;
        color: var(--fonts-light-200);
        border: 1px solid transparent;
        background-color: var(--color-primary-bg);
        outline: none;
        -webkit-border-radius: 30px;
        -moz-border-radius: 30px;
        -ms-border-radius: 30px;
        -o-border-radius: 30px;
    }

    .eq-the-food-section .explore-btn__mobile a:hover {
        border-color: var(--color-primary-bg);
        color: var(--fonts-red);
        background-color: transparent;
    }

    .the-food-section__slider .slider__card .card__btn p {
        font-size: 28px;
        min-width: 190px;
    }

    .eq-the-food-section .the-food-section__heading {
        padding-bottom: 11px;
    }
}

@media only screen and (max-width: 767px) {
    .eq-the-food-section {
        padding: 60px 0px 36px;
    }

    .the-food-section__heading .heading h2 {
        font-size: 48px;
    }

    .the-food-section__heading .food-section__btns .slider-btn {
        gap: 4px;
    }

    .the-food-section__heading .food-section__btns .slider-btn a {
        min-width: 33px;
        width: 100%;
        height: 33px;
    }

    .the-food-section__heading .food-section__btns .slider-btn a svg {
        width: 14px;
        height: 14px;
    }

    .eq-the-food-section .the-food-section__heading {
        padding-bottom: 11px;
    }

    .eq-the-food-section .the-food-section__slider {
        padding-top: 21px;
    }

    .the-food-section__slider .slider__card .card-img {
        padding-bottom: 127%;
    }

    .the-food-section__slider .slider__card .card__btn p {
        font-size: 32px;
        padding: 11px 16px;
        background-color: var(--color-primary-bg);
        color: var(--fonts-light-200);
    }

    .eq-the-food-section .explore-btn__mobile {
        padding-top: 21px;
    }

    .eq-the-food-section .explore-btn__mobile a {
        font-size: 20px;
        padding: 12px 16px;
        min-width: 192px;
    }
}

@media only screen and (max-width: 380px) {
    .the-food-section__slider .slider__card .card__btn p {
        font-size: 24px;
        min-width: 140px;
    }
}

/* The Food Section CSS Ends Here*/

/* The Video Section CSS Start Here*/

.eq-video-section {
    position: relative;
    background-color: var(--color-body-bg);
}

.eq-video-section .video__wrapper {
    max-width: 100%;
    width: 100%;
    position: relative;
    padding-bottom: 54.63%;
}

.eq-video-section .video__wrapper video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eq-video-section .video-section__main-wrapper .center-img__wrapper {
    max-width: 658px;
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
}


.eq-video-section .video-section__main-wrapper .center-img__wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eq-video-section .video-section__main-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 658px;
    width: 100%;
}

.eq-video-section .video-section__bottom-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    /* margin-top: 52px; */
    position: absolute;
    bottom: 47px;
    left: 50%;
    transform: translateX(-50%);
}

.eq-video-section .video-section__bottom-btn a {
    font-family: var(--font-button-secondery);
    font-weight: 400;
    font-size: 32px;
    line-height: 1;
    text-align: center;
    color: var(--fonts-yellow);
    background-color: var(--color-dark-bg-200);
    padding: 17px 33px 11px;
    border-radius: 35px;
    min-width: 188px;
    border: none;
    outline: none;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    -o-border-radius: 35px;
}

.eq-video-section .video-section__bottom-btn a:hover {
    background-color: var(--color-secondary-bg);
    color: var(--fonts-dark);
}

@media only screen and (max-width: 1728px) and (min-width: 992px) {

    .eq-video-section .video-section__main-wrapper .center-img__wrapper {
        max-width: 38.079vw;
    }

    .eq-video-section .video-section__main-wrapper {
        max-width: 38.079vw;
    }

    .eq-video-section .video-section__bottom-btn {
        gap: 0.579vw;
        /* margin-top: 3.009vw; */
        bottom: 2.72vw;
    }

    .eq-video-section .video-section__bottom-btn a {
        font-size: 1.852vw;
        min-width: 10.880vw;
        padding: 0.984vw 1.910vw 0.637vw;
        border-radius: 2.025vw;
        border: 0.058vw solid transparent;
        -webkit-border-radius: 2.025vw;
        -moz-border-radius: 2.025vw;
        -ms-border-radius: 2.025vw;
        -o-border-radius: 2.025vw;
    }
}

@media only screen and (max-width: 991px) {
    .eq-video-section .video__wrapper {
        padding-bottom: 70%;
    }

    .eq-video-section .video-section__main-wrapper {
        max-width: 350px;
    }

    .eq-video-section .video-section__bottom-btn {
        bottom: 30px;
    }

    .eq-video-section .video-section__bottom-btn a {
        font-size: 20px;
        padding: 13px 25px;
        min-width: 145px;
    }
}

@media only screen and (max-width: 767px) {
    .eq-video-section .video-section__main-wrapper {
        max-width: 398px;
    }

    .eq-video-section .video-section__bottom-btn {
        bottom: 26px;
        width: 100%;
    }

    .eq-video-section .video-section__bottom-btn a {
        /* padding: 12px 29px; */
        color: var(--fonts-light-200);
        min-width: 136px;

    }

    .eq-video-section .video-section__bottom-btn a:hover {
        color: var(--fonts-dark);
        background-color: var(--color-body-bg);
    }

    .eq-video-section .video__wrapper {
        padding-bottom: 132%;
    }
}

@media only screen and (max-width: 390px) {
    .eq-video-section .video-section__main-wrapper {
        max-width: 380px;
    }

    .out-team__main-wrapper .out-team__bg-img {
        padding-bottom: 160.5%;
    }

    .eq-video-section .video-section__bottom-btn {
        bottom: 10px;
    }
}

@media only screen and (max-width: 340px) {
    .eq-video-section .video-section__bottom-btn {
        bottom: 5px;
    }

    .eq-video-section .video-section__bottom-btn a {
        font-size: 14px;
        min-width: fit-content;
        padding: 9px 20px !important;
    }
}

/* The Video Section CSS Ends Here*/

/* The Our Team Section CSS Start Here*/

.our-team__section {
    padding: 82px 0px 67px;
    background-color: var(--color-body-bg)
}

.our-team__section .out-team__main-wrapper {
    position: relative;
    padding-bottom: 77px;
    border-bottom: 1px solid #00000033;
}

.out-team__main-wrapper .out-team__bg-img {
    position: relative;
    max-width: 100%;
    width: 100%;
    padding-bottom: 47%;
    border-radius: 25px;
    overflow: hidden;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.out-team__main-wrapper .out-team__bg-img::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(260.85deg, rgba(0, 0, 0, 0.64) 0.67%, rgba(0, 0, 0, 0) 97.84%);
    object-fit: cover;
}

.out-team__main-wrapper .out-team__bg-img img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 60px 0px;
    scale: 1.25;
    transform: rotateY(-180deg);
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
}

.out-team__main-wrapper .out-team__content {
    max-width: 571px;
    width: 100%;
    position: absolute;
    top: calc(50% - 77px);
    transform: translateY(calc(-50% + 38px));
    right: 116px;
}

.out-team__main-wrapper .out-team__content .out-team__content-heading h2 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 128px;
    line-height: 0.9;
    text-align: right;
    text-transform: uppercase;
    color: var(--fonts-light-200);
    margin-bottom: 12px;
}

.out-team__content-heading .team-heading .line-1 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
    position: relative;
}

.out-team__content-heading .team-heading .we {
    color: var(--fonts-light-200);
}

.out-team__content-heading .team-heading .love {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.out-team__content-heading .team-heading .love-text {
    color: var(--fonts-yellow);
}

.out-team__content-heading .team-heading .sticker {
    width: 162px;
    height: 162px;
    border-radius: 90px;
    overflow: hidden;
    position: relative;
    box-shadow: 8px 10px 0 0 rgba(0, 0, 0, 0.25);
}

.out-team__content-heading .team-heading .sticker img {
    width: 100%;
    height: 100%;
}

.out-team__content-heading .team-heading .sticker img {
    width: 100%;
    height: 100%;
}

.out-team__content-heading .team-heading .line-2 {
    display: block;
    margin-top: -15px
}

.out-team__main-wrapper .out-team__content .our-team__content-desc p {
    font-family: var(--fonts-card-desc);
    font-weight: 400;
    font-size: 20px;
    line-height: 1.3;
    text-align: right;
    color: var(--fonts-light-200);
    margin-bottom: 40px;
}

.out-team__main-wrapper .out-team__content .our-team__content-btn {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.out-team__main-wrapper .out-team__content .our-team__content-btn a {
    font-family: var(--font-button-secondery);
    font-weight: 400;
    font-size: 32px;
    line-height: 38px;
    text-align: center;
    color: var(--fonts-dark);
    background-color: var(--color-secondary-bg);
    border: none;
    outline: none;
    min-width: 258px;
    padding: 16px 10px 9px;
    border-radius: 35px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.out-team__main-wrapper .out-team__content .our-team__content-btn a:hover {
    background-color: var(--color-dark-bg-200);
    color: var(--fonts-yellow);
}


@media only screen and (max-width: 1728px) and (min-width: 992px) {
    .our-team__section {
        padding: 4.745vw 0.000vw 3.877vw;
    }

    .our-team__section .out-team__main-wrapper {
        padding-bottom: 4.456vw;
        border-bottom: 0.058vw solid #00000033;
    }

    .out-team__main-wrapper .out-team__bg-img {
        padding-bottom: 47%;
        border-radius: 1.447vw;
        -webkit-border-radius: 1.447vw;
        -moz-border-radius: 1.447vw;
        -ms-border-radius: 1.447vw;
        -o-border-radius: 1.447vw;
    }

    .out-team__main-wrapper .out-team__bg-img img  {
        object-position: 3.472vw 0px;
    }

    .out-team__main-wrapper .out-team__content {
        max-width: 33.044vw;
        right: 6.713vw;
        top: calc(50% - 4.456vw);
        transform: translateY(calc(-50% + 2.199vw));
    }

    .out-team__main-wrapper .out-team__content .out-team__content-heading h2 {
        font-size: 7.407vw;
        margin-bottom: 0.694vw;
    }

    .out-team__content-heading .team-heading .line-1 {
        gap: 1.389vw;
    }

    .out-team__content-heading .team-heading .love {
        gap: 0.810vw;
    }

    .out-team__content-heading .team-heading .sticker {
        width: 9.375vw;
        height: 9.375vw;
        border-radius: 5.208vw;
        box-shadow: 0.463vw 0.579vw 0 0 rgba(0, 0, 0, 0.25);
    }

    .out-team__content-heading .team-heading .line-2 {
        margin-top: -0.868vw
    }

    .out-team__main-wrapper .out-team__content .our-team__content-desc p {
        font-size: 1.157vw;
        margin-bottom: 2.315vw;
    }

    .out-team__main-wrapper .out-team__content .our-team__content-btn a {
        font-size: 1.852vw;
        line-height: 2.199vw;
        min-width: 14.931vw;
        padding: 0.926vw 0.579vw 0.521vw;
        border-radius: 2.025vw;
    }
}

@media only screen and (max-width: 991px) {

    .out-team__main-wrapper .out-team__content {
        right: 60px;
        top: calc(50% - 56px);
    }

    .out-team__main-wrapper .out-team__content .out-team__content-heading h2 {
        font-size: 96px;
    }

    .out-team__content-heading .team-heading .sticker {
        width: 122px;
        height: 122px;
        box-shadow: 4px 5px 0 0 rgba(0, 0, 0, 0.25);
    }

    .out-team__main-wrapper .out-team__bg-img {
        padding-bottom: 85%;
    }

    .out-team__main-wrapper .out-team__bg-img img {
        object-position: -170px 0px;
    }

    .out-team__main-wrapper .out-team__content .our-team__content-btn a {
        font-size: 28px;
        padding: 11px 10px 8px;
        min-width: 235px;
    }

    .out-team__content-heading .team-heading .love-text {
        color: var(--fonts-red);
    }
}

@media only screen and (max-width: 767px) {
    .our-team__section {
        padding: 56px 0px 33px;
    }

    .our-team__section .out-team__main-wrapper {
        padding-bottom: 39px;
    }

    .out-team__main-wrapper .out-team__content .out-team__content-heading h2 {
        font-size: 64px;
        /* font-family: var(--fonts-mobile-drawer); */
        margin-bottom: 40px;
    }

    .out-team__content-heading .team-heading .sticker {
        width: 84px;
        height: 84px;
    }

    .out-team__main-wrapper .out-team__content {
        right: 31px;
        max-width: 85%;
    }

    .out-team__main-wrapper .out-team__content .our-team__content-btn a {
        font-size: 20px;
        line-height: 1;
        padding: 14px 23px 12px;
        min-width: 192px;
        /*background-color: var(--color-primary-bg);*/
        color: var(--fonts-light-200)
    }

    .out-team__main-wrapper .out-team__content .our-team__content-btn a:hover {
        background-color: var(--color-body-bg);
        color: var(--fonts-red);
    }

    .out-team__main-wrapper .out-team__bg-img {
        padding-bottom: 138%;
    }

    .out-team__content-heading .team-heading .line-2 {
        margin-top: -8px;
    }

    .out-team__main-wrapper .out-team__content .our-team__content-desc p {
        margin-bottom: 43px;
    }

    /* .out-team__main-wrapper .out-team__bg-img img {
        transform: rotateY(180deg);
        -webkit-transform: rotateY(180deg);
        -moz-transform: rotateY(180deg);
        -ms-transform: rotateY(180deg);
        -o-transform: rotateY(180deg);
    } */

    .out-team__main-wrapper .out-team__bg-img img {
        /* object-position: -270px 0px;
        scale: 1.03; */
        object-position: -320px 65px;
        scale: 1.35;
    }
}

@media only screen and (max-width: 400px) {
    .out-team__main-wrapper .out-team__bg-img img {
        object-position: -340px 30px;
        scale: 1.15;
    }
}

@media only screen and (max-width: 380px) {
    .out-team__main-wrapper .out-team__content .out-team__content-heading h2 {
        font-size: 44px;
    }

    .out-team__main-wrapper .out-team__bg-img {
        /* padding-bottom: 185%; */
        padding-bottom: 165%;
    }

    .out-team__content-heading .team-heading .sticker {
        width: 74px;
        height: 74px;
    }

    .out-team__content-heading .team-heading .line-1 {
        gap: 10px;
    }
}

/* The Our Team Section CSS Ends Here*/

/* The Download App Section CSS Ends Here*/

.eq-download-app__section {
    padding-bottom: 95px;
    background-color: var(--color-body-bg);
}

.eq-download-app__section .download-app__wrapper {
    width: 100%;
    background-color: var(--color-secondary-bg);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* align-items: center; */
    align-items: flex-start;
    /* padding: 88px 87px 0px; */
    padding: 88px 170px 0px 87px;
    overflow: hidden;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.download-app__wrapper .download-app__content .download-app__heading h2 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 128px;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--fonts-red);
    margin-bottom: 27px;
}

.download-app__wrapper .download-app__content .download-app__heading h2 span {
    display: block;
}

.download-app__wrapper .download-app__content .download-app__desc {
    max-width: 70%;
    width: 100%;
}

.download-app__wrapper .download-app__content .download-app__desc p {
    font-family: var(--fonts-card-desc);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: var(--fonts-dark);
}

.download-app__wrapper .download-app__content .download-app__subtitle p:last-child {
    font-weight: 700;
    margin-top: 26px;
    /* font-family: var(--fonts-card-desc); */
    font-family: var(--fonts-desc);
    font-size: 20px;
}

.download-app__wrapper .download-app__content .download-app__qr-code a {
    display: flex;
    justify-content: start;
    width: fit-content;
    align-items: center;
    margin-top: 36px;
    gap: 10px;
    background-color: var(--color-dark-bg-200);
    padding: 7px 9px;
    border-radius: 11px;
    -webkit-border-radius: 11px;
    -moz-border-radius: 11px;
    -ms-border-radius: 11px;
    -o-border-radius: 11px;
}

.download-app__content .download-app__qr-code .qr-code__wrapper {
    background-color: var(--color-bg-white);
    padding: 5px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.download-app__content .download-app__qr-code .qr-code {
    width: 48px;
    height: 48px;
}

.download-app__content .download-app__qr-code .qr-code img {
    width: 100%;
    height: 100%;
}

.download-app__content .download-app__qr-code .qr-text p {
    font-family: var(--font-button);
    font-weight: 400;
    font-size: 20px;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--fonts-qr);
}

.eq-download-app__section .download-app__wrapper .download-app__content {
    padding-top: 22px;
}

.eq-download-app__section .download-app__wrapper .download-app__content,
.eq-download-app__section .download-app__wrapper .download-app__img-wrapper {
    max-width: 50%;
    width: 100%;
}

.eq-download-app__section .download-app__wrapper .download-app__img {
    position: relative;
    max-width: 383px;
    width: 100%;
    /* padding-bottom: 93.41%; */
    padding-bottom: 99.29%;
    /* margin-right: 116px; */
    /* margin: 0 auto; */
    margin-left: auto;
}

.eq-download-app__section .download-app__wrapper .download-app__img img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.eq-download-app__section .download-app__wrapper .download-app__sticker {
    display: none;
}

.eq-download-app__section .download-app__wrapper .download-app__content .download-app__qr-wrapper {
    display: flex;
    gap: 14px;
    justify-content: flex-start;
}

@media only screen and (max-width: 1728px) and (min-width: 992px) {
    .eq-download-app__section {
        padding-bottom: 5.498vw;
    }

    .eq-download-app__section .download-app__wrapper {
        /* padding: 5.093vw 5.035vw 0.000vw; */
        padding: 5.093vw 9.838vw 0.000vw 5.035vw;
        border-radius: 1.447vw;
        -webkit-border-radius: 1.447vw;
        -moz-border-radius: 1.447vw;
        -ms-border-radius: 1.447vw;
        -o-border-radius: 1.447vw;
    }

    .download-app__wrapper .download-app__content .download-app__heading h2 {
        font-size: 7.407vw;
        margin-bottom: 1.563vw;
    }

    .download-app__wrapper .download-app__content .download-app__desc p {
        font-size: 0.926vw;
    }

    .download-app__wrapper .download-app__content .download-app__subtitle p:last-child {
        margin-top: 1.505vw;
        font-size: 1.157vw;
    }

    .download-app__wrapper .download-app__content .download-app__qr-code a {
        margin-top: 2.083vw;
        gap: 0.579vw;
        padding: 0.405vw 0.521vw;
        border-radius: 0.637vw;
        -webkit-border-radius: 0.637vw;
        -moz-border-radius: 0.637vw;
        -ms-border-radius: 0.637vw;
        -o-border-radius: 0.637vw;
    }

    .download-app__content .download-app__qr-code .qr-code__wrapper {
        padding: 0.289vw;
        border-radius: 0.289vw;
        -webkit-border-radius: 0.289vw;
        -moz-border-radius: 0.289vw;
        -ms-border-radius: 0.289vw;
        -o-border-radius: 0.289vw;
    }

    .download-app__content .download-app__qr-code .qr-code {
        width: 2.778vw;
        height: 2.778vw;
    }

    .download-app__content .download-app__qr-code .qr-text p {
        font-size: 1.157vw;
    }

    .eq-download-app__section .download-app__wrapper .download-app__img {
        max-width: 22.164vw;
    }

    .eq-download-app__section .download-app__wrapper .download-app__content {
        padding-top: 1.273vw;
    }

    .eq-download-app__section .download-app__wrapper .download-app__content .download-app__qr-wrapper {
        gap: 0.810vw;
    }
}

@media only screen and (max-width: 991px) {

    .eq-download-app__section {
        padding-bottom: 70px;
    }

    .eq-download-app__section .download-app__wrapper .download-app__content {
        max-width: 70%;
        padding-top: 0px;
    }

    .eq-download-app__section .download-app__wrapper {
        position: relative;
        padding: 45px 45px;
    }

    .eq-download-app__section .download-app__wrapper .download-app__img {
        position: absolute;
        bottom: -23%;
        right: -2%;
        max-width: 383px;
        width: 100%;
        padding-bottom: 85%;
    }

    .download-app__wrapper .download-app__content .download-app__heading h2 {
        font-size: 85px;
    }

    .download-app__content .download-app__qr-code .qr-code__wrapper {
        background-color: transparent;
    }

    .eq-download-app__section .download-app__wrapper .download-app__content .download-app__qr-wrapper {
        flex-direction: column;
        width: fit-content;
    }

    .eq-download-app__section .download-app__wrapper .download-app__content .download-app__qr-wrapper .download-app__qr-code:last-child a {
        margin: 0px;
    }
}

@media only screen and (max-width: 767px) {
    .eq-download-app__section .download-app__wrapper {
        padding: 48px 18px 39px;
        align-items: center;
    }

    .download-app__wrapper .download-app__content .download-app__heading h2 {
        font-size: 48px;
        /* font-family: var(--fonts-mobile-drawer); */
        margin-bottom: 35px;
    }

    .download-app__wrapper .download-app__content .download-app__qr-code a {
        /* margin-top: 37px; */
        margin-top: 41px;
        padding: 11px;
        max-width: 185px;
        width: 100%;
    }

    .download-app__content .download-app__qr-code .qr-text p {
        font-size: 20px;
    }

    .download-app__wrapper .download-app__content .download-app__desc {
        max-width: 100%;
    }

    .download-app__content .download-app__qr-code .qr-code__wrapper {
        padding: 0;
        border-radius: 0px;
        -webkit-border-radius: 0px;
        -moz-border-radius: 0px;
        -ms-border-radius: 0px;
        -o-border-radius: 0px;
    }

    .download-app__wrapper .download-app__content .download-app__subtitle p:last-child {
        max-width: 75%;
    }

    .eq-download-app__section .download-app__wrapper .download-app__img {
        max-width: 47%;
        /* bottom: -13%; */
        bottom: -55px;
        right: -15px;
        padding-bottom: 74%;
        z-index: 1;
    }

    .eq-download-app__section .download-app__wrapper .download-app__img-wrapper {
        max-width: 33%;
    }

    .eq-download-app__section .download-app__wrapper .download-app__sticker {
        display: block;
        position: relative;
        right: -30%;
        /* bottom: -22px; */
        bottom: -60px;
        rotate: 10.42deg;
        width: fit-content;
        z-index: 2;
    }
}

@media only screen and (max-width: 430px) {
    .eq-download-app__section .download-app__wrapper .download-app__sticker {
        /* bottom: -75px; */
        bottom: -140px;
    }
}

@media only screen and (max-width: 420px) {
    /* .eq-download-app__section .download-app__wrapper .download-app__img-wrapper {
        display: none;
    } */

    .eq-download-app__section .download-app__wrapper .download-app__content .download-app__qr-wrapper .download-app__qr-code a {
        min-width: 170px;
        max-width: 170px;
    }

    .eq-download-app__section .download-app__wrapper .download-app__content {
        max-width: 100%;
    }

    .download-app__content .download-app__qr-code .qr-text p {
        font-size: 16px;
    }

    /* .download-app__wrapper .download-app__content .download-app__qr-code a {
        max-width: fit-content;
    } */
}


@media only screen and (max-width: 380px) {
    .eq-download-app__section .download-app__wrapper .download-app__content {
        max-width: 85% !important;
    }

    .eq-download-app__section .download-app__wrapper .download-app__content .download-app__qr-wrapper .download-app__qr-code a {
        min-width: 150px;
        max-width: 150px;
    }
}

@media only screen and (max-width: 340px) {
    .download-app__wrapper .download-app__content .download-app__subtitle p:last-child {
        max-width: 100%;
    }

    .eq-download-app__section .download-app__wrapper .download-app__content .download-app__qr-wrapper .download-app__qr-code a {
        min-width: 120px;
        max-width: 120px;
    }

    .download-app__content .download-app__qr-code .qr-text p {
        font-size: 14px;
    }

    .download-app__content .download-app__qr-code .qr-code {
        width: 32px;
        height: 32px;
    }

    .eq-download-app__section .download-app__wrapper .download-app__sticker {
        bottom: -185px;
        right: -13px;
        max-width: 42px;
        width: 100%;
        height: 42px;
    }

    .eq-download-app__section .download-app__wrapper .download-app__sticker img {
        width: 100%;
        height: 100%;
    }
}

/* The Download App Section CSS Ends Here*/

/* The Our News Section CSS Ends Here*/

.eq-our-news-section {
    padding-bottom: 60px;
    overflow: hidden;
    background-color: var(--color-body-bg);
}

.eq-our-news-section .the-our-news__heading {
    border-bottom: 1px solid #00000033;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}

.the-our-news__heading .heading {
    display: flex;
    flex-direction: row;
    justify-content: start;
    gap: 38px;
    align-items: baseline;
}

.the-our-news__heading .heading h2 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 96px;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--fonts-red)
}

.the-our-news__heading .heading p {
    font-family: var(--fonts-card-desc);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
    color: var(--fonts-black)
}

.the-our-news__heading .our-news__btns {
    display: flex;
    justify-content: end;
    gap: 24px;
    align-items: center;
    flex-direction: row;
}

.the-our-news__heading .our-news__btns .slider-btn {
    display: flex;
    gap: 7px;
    align-items: center;
    flex-direction: row;
}

.the-our-news__heading .our-news__btns .slider-btn a {
    background-color: #BE1622;
    border: 1px solid transparent;
    outline: none;
    min-width: 57px;
    width: 100%;
    height: 57px;
    display: flex;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    align-items: center;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.the-our-news__heading .our-news__btns .slider-btn a:hover {
    border-color: var(--color-primary-bg);
    background-color: transparent;
}

.the-our-news__heading .our-news__btns .slider-btn a:hover svg path {
    fill: var(--color-primary-bg);
}

.the-our-news__heading .our-news__btns .slider-btn a svg {
    width: 24px;
    height: 24px;
}

.the-our-news__heading .our-news__btns .explore-btn a {
    font-family: var(--font-button-secondery);
    font-weight: 400;
    padding: 13px 17px 9px;
    border-radius: 40px;
    border: 1px solid transparent;
    display: block;
    font-size: 32px;
    line-height: 1;
    text-align: center;
    min-width: 288px;
    color: var(--fonts-light-200);
    border: 1px solid transparent;
    background-color: #BE1622;
    outline: none;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
}

.the-our-news__heading .our-news__btns .explore-btn a:hover {
    border-color: var(--color-primary-bg);
    color: var(--fonts-red);
    background-color: transparent;
}

.eq-our-news-section .the-our-news__slider {
    padding-top: 48px;
}

.eq-our-news-section .the-our-news__slider .slider__card {
    padding: 0px 18px;
    overflow: hidden;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.the-our-news__slider .slider__card .slider-card__img {
    max-width: 480px;
    width: 100%;
    position: relative;
    padding-bottom: 73.5%;
    overflow: hidden;
}

.the-our-news__slider .slider__card .slider-card__img img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    scale: 1.12;
}

.the-our-news__slider .slider__card .slider-card__wrapper {
    border-radius: 25px;
    overflow: hidden;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.the-our-news__slider .slider__card .slider-card__content {
    background-color: #D8D8D85E;
    padding: 46px 26px 25px;
}

.slider-card__content .slider-card__desc h4 {
    font-family: var(--font-button);
    font-weight: 400;
    font-size: 32px;
    line-height: 1.05;
    color: var(--fonts-red);
    margin-bottom: 8px;
}

.slider-card__content .slider-card__desc p {
    font-family: var(--fonts-card-desc);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    color: var(--fonts-black);
    margin-bottom: 21px;
}

.slider-card__content .slider-card__btn a {
    font-family: var(--font-button-secondery);
    display: block;
    width: fit-content;
    font-weight: 400;
    font-size: 21px;
    line-height: 1;
    text-align: center;
    color: var(--fonts-light);
    border: 1px solid transparent;
    background-color: var(--color-primary-bg);
    /* padding: 6px 18px; */
    min-width: 127px;
    padding: 8px 19px 6px;
    transition: all 0.3s ease-in-out;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.slider-card__content .slider-card__btn a:hover {
    background-color: transparent;
    border-color: var(--color-primary-bg);
    color: var(--fonts-red);
}

.the-our-news__slider.slick-initialized {
    max-width: 1510px;
    margin: 0;
    overflow: visible;
}

.the-our-news__slider.slick-initialized .slick-list.draggable {
    overflow: visible;
    margin: 0px -18px;
}

.eq-our-news-section .explore-btn__mobile {
    display: none;
}

@media only screen and (max-width: 1728px) and (min-width: 992px) {
    .eq-our-news-section {
        padding-bottom: 3.472vw;
    }

    .eq-our-news-section .the-our-news__heading {
        border-bottom: 0.058vw solid #00000033;
    }

    .the-our-news__heading .heading {
        gap: 2.199vw;
    }

    .the-our-news__heading .heading h2 {
        font-size: 5.556vw;
    }

    .the-our-news__heading .heading p {
        font-size: 1.389vw;
    }

    .the-our-news__heading .our-news__btns {
        gap: 1.389vw;
    }

    .the-our-news__heading .our-news__btns .slider-btn {
        gap: 0.405vw;
    }

    .the-our-news__heading .our-news__btns .slider-btn a {
        border: 0.058vw solid transparent;
        min-width: 3.299vw;
        height: 3.299vw;
        border-radius: 1.736vw;
        -webkit-border-radius: 1.736vw;
        -moz-border-radius: 1.736vw;
        -ms-border-radius: 1.736vw;
        -o-border-radius: 1.736vw;
    }

    .the-our-news__heading .our-news__btns .slider-btn a svg {
        width: 1.389vw;
        height: 1.389vw;
    }

    .the-our-news__heading .our-news__btns .explore-btn a {
        padding: 0.752vw 0.984vw 0.521vw;
        border-radius: 2.315vw;
        min-width: 16.667vw;
        font-size: 1.852vw;
        border: 0.058vw solid transparent;
        -webkit-border-radius: 2.315vw;
        -moz-border-radius: 2.315vw;
        -ms-border-radius: 2.315vw;
        -o-border-radius: 2.315vw;
    }

    .eq-our-news-section .the-our-news__slider {
        padding-top: 2.778vw;
    }

    .eq-our-news-section .the-our-news__slider .slider__card {
        padding: 0.000vw 1.042vw;
        border-radius: 1.447vw;
        -webkit-border-radius: 1.447vw;
        -moz-border-radius: 1.447vw;
        -ms-border-radius: 1.447vw;
        -o-border-radius: 1.447vw;
    }

    .the-our-news__slider .slider__card .slider-card__img {
        max-width: 27.778vw;
    }

    .the-our-news__slider .slider__card .slider-card__wrapper {
        border-radius: 1.447vw;
        -webkit-border-radius: 1.447vw;
        -moz-border-radius: 1.447vw;
        -ms-border-radius: 1.447vw;
        -o-border-radius: 1.447vw;
    }

    .the-our-news__slider .slider__card .slider-card__content {
        padding: 2.662vw 1.50vw 1.447vw;
    }

    .slider-card__content .slider-card__desc h4 {
        font-size: 1.852vw;
        margin-bottom: 0.463vw;
    }

    .slider-card__content .slider-card__desc p {
        font-size: 0.926vw;
        margin-bottom: 1.215vw;
    }

    .slider-card__content .slider-card__btn a {
        font-size: 1.215vw;
        border: 0.058vw solid transparent;
        /* padding: 0.347vw 1.042vw; */
        min-width: 7.350vw;
        padding: 0.463vw 1.100vw 0.347vw;
        border-radius: 1.157vw;
        -webkit-border-radius: 1.157vw;
        -moz-border-radius: 1.157vw;
        -ms-border-radius: 1.157vw;
        -o-border-radius: 1.157vw;
    }

    .the-our-news__slider.slick-initialized {
        max-width: 87.384vw;
    }

    .the-our-news__slider.slick-initialized .slick-list.draggable {
        margin: 0.000vw -1.042vw;
    }
}

@media only screen and (max-width: 991px) {
    .eq-our-news-section {
        padding-bottom: 40px;
    }

    .the-our-news__heading .heading h2 {
        font-size: 70px;
    }

    .the-our-news__heading .heading p {
        display: none;
    }

    .the-our-news__heading .our-news__btns .explore-btn {
        display: none;
    }

    .eq-our-news-section .explore-btn__mobile {
        display: block;
        padding-top: 30px;
    }

    .eq-our-news-section .explore-btn__mobile a {
        font-family: var(--font-button-secondery);
        font-weight: 400;
        padding: 11px 17px;
        border-radius: 30px;
        font-size: 28px;
        line-height: 1;
        text-align: center;
        color: var(--fonts-light-200);
        border: 1px solid transparent;
        background-color: #BE1622;
        outline: none;
    }

    .the-our-news__slider .slider__card .card__btn a {
        font-size: 28px;
        min-width: 190px;
    }

    .eq-our-news-section .the-our-news__heading {
        padding-bottom: 11px;
    }

    .the-our-news__slider .slider__card .slider-card__content {
        padding: 21px 22px 25px;
    }

    .slider-card__content .slider-card__desc h4 {
        margin-bottom: 10PX;
    }

    /* .slider-card__content .slider-card__btn a {
    padding: 7px 12px;
  } */

    .slider-card__content .slider-card__desc p {
        margin-bottom: 6px;
    }

    .the-our-news__heading .our-news__btns .slider-btn a {
        min-width: 42px;
        height: 42px;
    }

    .the-our-news__heading .our-news__btns .slider-btn a svg {
        width: 18px;
        height: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .eq-our-news-section {
        padding-bottom: 38px;
    }

    .the-our-news__heading .heading h2 {
        font-size: 48px;
    }

    .the-our-news__heading .our-news__btns .slider-btn {
        gap: 4px;
    }

    .the-our-news__heading .our-news__btns .slider-btn a {
        min-width: 33px;
        width: 100%;
        height: 33px;
    }

    .the-our-news__heading .our-news__btns .slider-btn a svg {
        width: 14px;
        height: 14px;
    }

    .eq-our-news-section .the-our-news__heading {
        padding-bottom: 11px;
    }

    .eq-our-news-section .the-our-news__slider {
        padding-top: 21px;
    }

    .the-our-news__slider .slider__card .slider-card__img {
        padding-bottom: 82%;
    }

    .slider-card__content .slider-card__btn a {
        min-width: 118px;
        padding: 8px 8px 6px;
    }

    .the-our-news__slider .slider__card .card__btn a {
        font-size: 32px;
        padding: 11px 0px;
        background-color: var(--color-primary-bg);
        color: var(--fonts-light-200);
    }

    .eq-our-news-section .explore-btn__mobile {
        padding-top: 21px;
    }

    .eq-our-news-section .explore-btn__mobile a {
        font-size: 20px;
        padding: 12px 16px;
    }

    .slider-card__content .slider-card__desc h4 {
        font-family: var(--font-button-secondery);
    }
}

/* The Our News Section CSS Ends Here*/

/* The Follow Us Section CSS Start Here*/

.eq-follow-us-section {
    padding-bottom: 60px;
    overflow: hidden;
    background-color: var(--color-body-bg);
}

.eq-follow-us-section .follow-us-section__heading {
    border-bottom: 1px solid #00000033;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}

.follow-us-section__heading .heading {
    display: flex;
    flex-direction: row;
    justify-content: start;
    gap: 38px;
    align-items: center;
}

.follow-us-section__heading .heading h2 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 96px;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--fonts-red)
}

.follow-us-section__heading .heading .follow-us__social-links {
    display: flex;
    justify-content: center;
    gap: 18px;
    align-self: center;
}

.follow-us-section__heading .heading .follow-us__social-links a {
    width: 32px;
    height: 32px;
}

.follow-us-section__heading .heading .follow-us__social-links a img {
    width: 100%;
    height: 100%;
}

.follow-us-section__heading .follow-us__btns .slider-btn {
    display: none;
    gap: 7px;
    align-items: center;
    flex-direction: row;
}

.follow-us-section__heading .follow-us__btns .slider-btn a {
    background-color: #BE1622;
    border: 1px solid transparent;
    outline: none;
    min-width: 42px;
    width: 100%;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.follow-us-section__heading .follow-us__btns .slider-btn a:hover {
    background-color: transparent;
    border-color: var(--color-primary-bg);
}

.follow-us-section__heading .follow-us__btns .slider-btn a:hover svg path {
    fill: var(--color-primary-bg);
}

.follow-us-section__heading .follow-us__btns .slider-btn a svg {
    width: 18px;
    height: 18px;
}

.follow-us-section__heading .follow-us__btns .explore-btn a {
    font-family: var(--font-button-secondery);
    font-weight: 400;
    padding: 11px 17px;
    border-radius: 30px;
    font-size: 32px;
    line-height: 1;
    text-align: center;
    color: var(--fonts-light-200);
    border: 1px solid transparent;
    background-color: #BE1622;
    outline: none;
}

.eq-follow-us-section .follow-us-section__slider {
    padding-top: 48px;
    /* display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 45px; */
}

.eq-follow-us-section .follow-us-section__slider .slider__card {
    padding: 0px 18px;
}

.follow-us-section__slider .slider__card .card-img {
    max-width: 480px;
    width: 100%;
    position: relative;
    padding-bottom: 143%;
    border-radius: 25px;
    overflow: hidden;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.follow-us-section__slider .slider__card .card-img img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.follow-us-section__slider.slick-initialized {
    max-width: 1510px;
    margin: 0;
    overflow: visible;
}

.follow-us-section__slider.slick-initialized .slick-list.draggable {
    overflow: visible;
    margin: 0px -18px;
}

.eq-follow-us-section .explore-btn__mobile {
    display: none;
}

.follow-us-section__slider.js-slick-slider {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding-top: 48px;
}

.follow-us-section__slider.js-slick-slider .slider__card {
    width: 100%;
}

.follow-us-section__slider.js-slick-slider.slick-initialized {
    display: block !important;
}

.eq-follow-us-section .follow-us__social-links-mobile {
    display: none;
    justify-content: flex-start;
    gap: 12px;
    align-self: center;
    margin-top: 32px;
}

.eq-follow-us-section .follow-us__social-links-mobile a {
    width: 22px;
    height: 22px;
}

.eq-follow-us-section .follow-us__social-links-mobile a img {
    width: 100%;
    height: 100%;
}

@media only screen and (max-width: 1728px) and (min-width: 992px) {
    .eq-follow-us-section {
        padding-bottom: 4.514vw;
    }

    .eq-follow-us-section .follow-us-section__heading {
        border-bottom: 0.058vw solid #00000033;
    }

    .follow-us-section__heading .heading {
        gap: 2.199vw;
    }

    .follow-us-section__heading .heading h2 {
        font-size: 5.556vw;
    }

    .follow-us-section__heading .heading .follow-us__social-links {
        gap: 1.042vw;
    }

    .follow-us-section__heading .heading .follow-us__social-links a {
        width: 1.852vw;
        height: 1.852vw;
    }

    .follow-us-section__heading .follow-us__btns .slider-btn {
        gap: 0.405vw;
    }

    .follow-us-section__heading .follow-us__btns .slider-btn a {
        border: 0.058vw solid transparent;
        min-width: 3.299vw;
        height: 3.299vw;
        border-radius: 1.736vw;
        -webkit-border-radius: 1.736vw;
        -moz-border-radius: 1.736vw;
        -ms-border-radius: 1.736vw;
        -o-border-radius: 1.736vw;
    }

    .follow-us-section__heading .follow-us__btns .slider-btn a svg {
        width: 1.389vw;
        height: 1.389vw;
    }

    .follow-us-section__heading .follow-us__btns .explore-btn a {
        padding: 0.637vw 0.984vw;
        border-radius: 1.736vw;
        font-size: 1.852vw;
    }

    .eq-follow-us-section .follow-us-section__slider {
        padding-top: 2.778vw;
    }

    .follow-us-section__slider .slider__card .card-img {
        max-width: 27.778vw;
        border-radius: 1.447vw;
        -webkit-border-radius: 1.447vw;
        -moz-border-radius: 1.447vw;
        -ms-border-radius: 1.447vw;
        -o-border-radius: 1.447vw;
    }

    .follow-us-section__slider.slick-initialized {
        max-width: 87.384vw;
    }

    .eq-follow-us-section .follow-us-section__slider .slider__card {
        padding: 0px 1.042vw;
    }

    .follow-us-section__slider.slick-initialized .slick-list.draggable {
        margin: 0px -1.042vw;
    }
}

@media only screen and (max-width: 991px) {
    .eq-follow-us-section {
        padding-bottom: 40px;
    }

    .follow-us-section__heading .heading h2 {
        font-size: 70px;
    }

    .follow-us-section__heading .heading .follow-us__social-links {
        display: none;
    }

    .eq-follow-us-section .follow-us-section__heading {
        padding-bottom: 11px;
    }

    .follow-us-section__heading .follow-us__btns .slider-btn {
        display: flex;
    }

    .eq-follow-us-section .follow-us__social-links-mobile {
        display: flex;
    }
}

@media only screen and (max-width: 767px) {
    .eq-follow-us-section {
        padding-bottom: 36px;
    }

    .follow-us-section__heading .heading h2 {
        font-size: 40px;
    }

    .follow-us-section__heading .follow-us__btns .slider-btn {
        gap: 4px;
    }

    .follow-us-section__heading .follow-us__btns .slider-btn a {
        min-width: 33px;
        width: 100%;
        height: 33px;
    }

    .follow-us-section__heading .follow-us__btns .slider-btn a svg {
        width: 14px;
        height: 14px;
    }

    .eq-follow-us-section .follow-us-section__slider {
        padding-top: 21px;
    }

    .follow-us-section__slider .slider__card .card-img {
        padding-bottom: 151%;
    }

    .eq-follow-us-section .follow-us-section__slider .slider__card {
        padding: 0 10px;
    }

    .follow-us-section__slider.slick-initialized .slick-list.draggable {
        margin: 0px -10px;
    }
}


/* The Follow Us Section CSS Ends Here*/


/* Order Now Section  CSS Start Here*/

.eq-order-now__section {
    padding-bottom: 57px;
    background-color: var(--color-body-bg);
}

.eq-order-now__section .order-now__main-wrapper {
    background-color: var(--color-secondary-bg);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-radius: 25px;
    overflow: hidden;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.eq-order-now__section .order-now__main-wrapper .order-now__content {
    padding: 56px 22px 65px 89px;
    max-width: 50%;
    width: 100%;
}

.order-now__main-wrapper .order-now__content .order-now__sticker {
    max-width: 83px;
    width: 100%;
    height: 96px;
    margin-bottom: 35px;
}

.order-now__main-wrapper .order-now__content .order-now__sticker img {
    width: 100%;
    height: 100%;
}

.order-now__main-wrapper .order-now__content .order-now__heading h2 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 128px;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--fonts-red);
    margin-bottom: 20px;
    max-width: 50%;
    width: 100%;
}

.order-now__main-wrapper .order-now__content .order-now__heading h2 span {
    display: block;
}

.order-now__main-wrapper .order-now__content .order-now__heading p {
    font-family: var(--fonts-desc);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    color: var(--fonts-dark);
}

.order-now__main-wrapper .order-now__content .order-now__btns {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
    align-items: center;
    margin-top: 34px;
}

.order-now__main-wrapper .order-now__content .order-now__btns a {
    font-family: var(--font-button-secondery);
    font-weight: 400;
    font-size: 24px;
    line-height: 1;
    text-align: center;
    color: var(--fonts-yellow);
    background-color: var(--color-dark-bg-200);
    min-width: 253px;
    padding: 17px 10px 12px;
    border-radius: 30px;
    border: 1px solid transparent;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.order-now__main-wrapper .order-now__content .order-now__btns a:hover {
    color: var(--fonts-dark);
    background-color: transparent;
    border-color: var(--color-dark-bg-200);
}

.eq-order-now__section .order-now__main-wrapper .order-now__img {
    max-width: 49.41%;
    width: 100%;
    position: relative;
    padding-bottom: 41.05%;
}

.eq-order-now__section .order-now__main-wrapper .order-now__img img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 1728px) and (min-width: 992px) {
    .eq-order-now__section {
        padding-bottom: 3.299vw;
    }

    .eq-order-now__section .order-now__main-wrapper {
        border-radius: 1.447vw;
        -webkit-border-radius: 1.447vw;
        -moz-border-radius: 1.447vw;
        -ms-border-radius: 1.447vw;
        -o-border-radius: 1.447vw;
    }

    .eq-order-now__section .order-now__main-wrapper .order-now__content {
        padding: 3.241vw 1.273vw 3.762vw 5.150vw;
    }

    .order-now__main-wrapper .order-now__content .order-now__sticker {
        max-width: 4.803vw;
        height: 5.556vw;
        margin-bottom: 2.025vw;
    }

    .order-now__main-wrapper .order-now__content .order-now__heading h2 {
        font-size: 7.407vw;
        margin-bottom: 1.157vw;
    }

    .order-now__main-wrapper .order-now__content .order-now__heading p {
        font-size: 1.157vw;
    }

    .order-now__main-wrapper .order-now__content .order-now__btns {
        gap: 0.579vw;
        margin-top: 1.968vw;
    }

    .order-now__main-wrapper .order-now__content .order-now__btns a {
        font-size: 1.389vw;
        min-width: 14.641vw;
        padding: 0.984vw 0.579vw 0.694vw;
        border-radius: 1.736vw;
        border: 0.058vw solid transparent;
    }

}

@media only screen and (max-width: 991px) {
    .eq-order-now__section .order-now__main-wrapper {
        flex-direction: column;
    }

    .eq-order-now__section .order-now__main-wrapper .order-now__content {
        order: 2;
        max-width: 100%;
        padding-left: 40px;
    }

    .eq-order-now__section .order-now__main-wrapper .order-now__img {
        max-width: 100%;
        order: 1;
        padding-bottom: 49%;
    }

    .order-now__main-wrapper .order-now__content .order-now__heading h2 {
        font-size: 96px;
    }

}

@media only screen and (max-width: 767px) {
    .eq-order-now__section {
        padding-bottom: 47px;
    }

    .eq-order-now__section .order-now__main-wrapper .order-now__img {
        padding-bottom: 83.5%;
    }

    .eq-order-now__section .order-now__main-wrapper .order-now__content {
        padding: 19px 10px 36px 22px;
    }

    .order-now__main-wrapper .order-now__content .order-now__sticker {
        max-width: 51px;
        width: 100%;
        height: 63px;
        margin-bottom: 30px;
    }

    .order-now__main-wrapper .order-now__content .order-now__heading h2 {
        font-size: 64px;
        margin-bottom: 17px;
    }

    .order-now__main-wrapper .order-now__content .order-now__btns {
        margin-top: 22px;
        flex-direction: column;
        align-items: flex-start;
        gap: 11px;
    }
}

@media only screen and (max-width: 340px) {
    .order-now__main-wrapper .order-now__content .order-now__btns a {
        min-width: 200px;
    }
}

/* Order Now Section  CSS Ends Here*/

/* Footer Section CSS Start Here*/

.eq-footer__section {
    background-color: var(--color-body-bg);
}

.eq-footer__section .eq-footer__section-wrapper {
    padding: 65px 0px 40px;
    background-color: var(--color-primary-bg);
    border-radius: 25px 25px 0px 0px;
    -webkit-border-radius: 25px 25px 0px 0px;
    -moz-border-radius: 25px 25px 0px 0px;
    -ms-border-radius: 25px 25px 0px 0px;
    -o-border-radius: 25px 25px 0px 0px;
}

.eq-footer__section .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.eq-footer__section .footer-top .footer-top__subscribe {
    display: flex;
    flex-direction: column;
    align-self: flex-start;
    gap: 30px;
}

.eq-footer__section .footer-top .footer-top__subscribe .subscribe__heading {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 44px;
}

.eq-footer__section .footer-top .footer-top__subscribe .subscribe__heading h2 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 64px;
    line-height: 0.8;
    text-transform: uppercase;
    color: var(--fonts-light);
}

.eq-footer__section .footer-top .footer-top__subscribe .subscribe__heading p {
    font-family: var(--fonts-desc);
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -0.6px;
    color: var(--fonts-light);
    max-width: 33%;
}

.eq-footer__section .footer-top .footer-top__subscribe .subscribe__input {
    background-color: var(--color-bg-white);
    overflow: hidden;
    position: relative;
    padding: 12px 10px 13px 26px;
    max-width: 594px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

/* .eq-footer__section .footer-top .footer-top__subscribe .subscribe__input form .wpcf7-response-output {
  display: none;
} */



.footer-top .footer-top__subscribe .subscribe__input input {
    border: none;
    outline: none;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 32px;
    line-height: 0.8;
    /* text-transform: uppercase; */
    color: #0000004D;
    width: calc(100% - 60px);
}

.footer-top .footer-top__subscribe .subscribe__input input::placeholder {
    text-transform: uppercase;
    color: #0000004D;
}

.footer-top .footer-top__subscribe .subscribe__input a {
    width: 44px;
    height: 44px;
    background-color: var(--color-secondary-bg);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    outline: none;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.footer-top .footer-top__subscribe .subscribe__input a img {
    width: 24px;
    height: 24px;
}

.eq-footer__section .footer-top .footer-top__sticker {
    max-width: 210px;
    width: 100%;
}

.eq-footer__section .footer-top .footer-top__sticker img {
    width: 100%;
    height: 100%;
}

.eq-footer__section .footer-bottom {
    background-color: var(--color-dark-bg-200);
    padding: 49px 0px 40px 61px;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.eq-footer__section .footer-bottom .footer-bottom__all-links {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 224px;
}

.eq-footer__section .footer-bottom .footer-bottom__all-links .footer-all-links-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 105px;
}

.footer-bottom .footer-bottom__all-links .footer__logo {
    max-width: 201px;
    width: 100%;
}

.footer-bottom .footer-bottom__all-links .footer__logo img {
    width: 100%;
    height: 100%;
}

.footer-bottom .footer-bottom__all-links .footer__links {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px;
}

.footer-bottom .footer-bottom__all-links .footer__links .links__heading h4 {
    font-family: var(--fonts-desc);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
    text-transform: uppercase;
    color: var(--fonts-light)
}

.footer-bottom .footer-bottom__all-links .footer__links .all-links {
    display: flex;
    flex-direction: column;
}

.footer-bottom .footer-bottom__all-links .footer__links .all-links a {
    font-family: var(--fonts-card-desc);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    text-transform: capitalize;
    color: var(--fonts-light);
    transition: opacity 0.3s ease-in-out;
    -webkit-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    -ms-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
}

.footer-bottom .footer-bottom__all-links .footer__links .all-links:hover a {
    opacity: 0.4;
}

.footer-bottom .footer-bottom__all-links .footer__links .all-links li {
    cursor: pointer;
}

.footer-bottom .footer-bottom__all-links .footer__links .all-links li:hover a {
    opacity: 1;
}

.eq-footer__section .footer-bottom .footer-bottom__text-content h2 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 148.94px;
    line-height: 0.85;
    text-transform: uppercase;
    color: var(--fonts-light);
    margin-top: 82px;
}

.eq-footer__section .footer-copywrite {
    padding-top: 17px;
}

.eq-footer__section .footer-copywrite p {
    font-family: var(--fonts-card-desc);
    font-weight: 400;
    font-size: 10px;
    line-height: 1.4;
    color: var(--font-copywrite);
}

.eq-footer__section .footer-copywrite p a {
    text-decoration: underline;
    font-weight: 700;
    color: var(--font-copywrite);
}


@media only screen and (max-width: 1728px) and (min-width: 992px) {
    .eq-footer__section .eq-footer__section-wrapper {
        padding: 3.762vw 0.000vw 2.315vw;
        border-radius: 1.447vw 1.447vw 0.000vw 0.000vw;
        -webkit-border-radius: 1.447vw 1.447vw 0.000vw 0.000vw;
        -moz-border-radius: 1.447vw 1.447vw 0.000vw 0.000vw;
        -ms-border-radius: 1.447vw 1.447vw 0.000vw 0.000vw;
        -o-border-radius: 1.447vw 1.447vw 0.000vw 0.000vw;
    }

    .eq-footer__section .footer-top {
        margin-bottom: 1.852vw;
    }

    .eq-footer__section .footer-top .footer-top__subscribe {
        gap: 1.736vw;
    }

    .eq-footer__section .footer-top .footer-top__subscribe .subscribe__heading {
        gap: 2.546vw;
    }

    .eq-footer__section .footer-top .footer-top__subscribe .subscribe__heading h2 {
        font-size: 3.704vw;
    }

    .eq-footer__section .footer-top .footer-top__subscribe .subscribe__heading p {
        font-size: 1.157vw;
    }

    .eq-footer__section .footer-top .footer-top__subscribe .subscribe__input {
        padding: 0.694vw 0.579vw 0.752vw 1.505vw;
        max-width: 34.375vw;
        border-radius: 0.579vw;
        -webkit-border-radius: 0.579vw;
        -moz-border-radius: 0.579vw;
        -ms-border-radius: 0.579vw;
        -o-border-radius: 0.579vw;
    }

    .footer-top .footer-top__subscribe .subscribe__input input {
        font-size: 1.852vw;
        width: calc(100% - 3.472vw);
    }

    .footer-top .footer-top__subscribe .subscribe__input a {
        width: 2.546vw;
        height: 2.546vw;
        right: 0.579vw;
        border-radius: 1.447vw;
        -webkit-border-radius: 1.447vw;
        -moz-border-radius: 1.447vw;
        -ms-border-radius: 1.447vw;
        -o-border-radius: 1.447vw;
    }

    .footer-top .footer-top__subscribe .subscribe__input a img {
        width: 1.389vw;
        height: 1.389vw;
    }

    .eq-footer__section .footer-top .footer-top__sticker {
        max-width: 12.153vw;
    }

    .eq-footer__section .footer-bottom {
        padding: 2.836vw 0.000vw 2.315vw 3.530vw;
        border-radius: 1.447vw;
        -webkit-border-radius: 1.447vw;
        -moz-border-radius: 1.447vw;
        -ms-border-radius: 1.447vw;
        -o-border-radius: 1.447vw;
    }

    .eq-footer__section .footer-bottom .footer-bottom__all-links {
        gap: 12.963vw;
    }

    .eq-footer__section .footer-bottom .footer-bottom__all-links .footer-all-links-wrapper {
        gap: 6.076vw;
    }

    .footer-bottom .footer-bottom__all-links .footer__logo {
        max-width: 11.632vw;
    }

    .footer-bottom .footer-bottom__all-links .footer__links {
        gap: 1.389vw;
    }

    .footer-bottom .footer-bottom__all-links .footer__links .links__heading h4 {
        font-size: 1.389vw;
    }

    .footer-bottom .footer-bottom__all-links .footer__links .all-links a {
        font-size: 0.926vw;
    }

    .eq-footer__section .footer-bottom .footer-bottom__text-content h2 {
        font-size: 8.619vw;
        margin-top: 4.745vw;
    }

    .eq-footer__section .footer-copywrite {
        padding-top: 0.984vw;
    }

    .eq-footer__section .footer-copywrite p {
        font-size: 0.579vw;
    }
}

@media only screen and (max-width: 991px) {
    .eq-footer__section .footer-top .footer-top__subscribe .subscribe__heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .eq-footer__section .footer-top .footer-top__subscribe .subscribe__heading p {
        max-width: 70%;
    }

    .eq-footer__section .footer-top {
        position: relative;
    }

    .eq-footer__section .footer-top .footer-top__sticker {
        position: absolute;
        right: 0;
        top: 0;
    }

    .eq-footer__section .footer-top .footer-top__subscribe {
        max-width: 100%;
        width: 100%;
    }

    .eq-footer__section .footer-top .footer-top__subscribe .subscribe__input {
        max-width: 100%;
    }

    .eq-footer__section .footer-bottom .footer-bottom__all-links {
        flex-direction: column;
        gap: 50px;
    }

    .eq-footer__section .footer-bottom .footer-bottom__all-links .footer-all-links-wrapper {
        justify-content: space-between;
        gap: 0;
        width: 100%;
    }

    .eq-footer__section .footer-bottom {
        padding: 40px;
    }

    .eq-footer__section .footer-bottom .footer-bottom__text-content h2 {
        font-size: 125px;
        margin-top: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .eq-footer__section .eq-footer__section-wrapper {
        padding: 45px 0px 22px;
    }

    .eq-footer__section .footer-top .footer-top__subscribe .subscribe__heading h2 {
        font-size: 40px;
    }

    .eq-footer__section .footer-top .footer-top__subscribe .subscribe__heading,
    .eq-footer__section .footer-top .footer-top__subscribe {
        gap: 18px;
    }

    .eq-footer__section .footer-top .footer-top__sticker {
        max-width: 96px;
        top: -5px;
        height: fit-content;
    }

    .eq-footer__section .footer-top .footer-top__subscribe .subscribe__heading p {
        max-width: 80%;
    }

    .eq-footer__section .footer-top {
        margin-bottom: 22px;
    }

    .eq-footer__section .footer-bottom .footer-bottom__all-links {
        gap: 44px;
    }

    .eq-footer__section .footer-bottom .footer-bottom__text-content h2 {
        margin-top: 40px;
        font-size: 64px;
    }

    .eq-footer__section .footer-bottom {
        padding: 24px;
    }

    .eq-footer__section .footer-copywrite {
        padding-top: 18px;
    }

    .eq-footer__section .footer-bottom .footer-bottom__all-links .footer-all-links-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-top .footer-top__subscribe .subscribe__input a {
        background-color: var(--color-black-bg);
    }
}

@media only screen and (max-width: 390px) {
    .eq-footer__section .footer-bottom .footer-bottom__text-content h2 {
        font-size: 54px;
    }
}

@media only screen and (max-width: 400px) {
    .out-team__main-wrapper .out-team__bg-img {
        padding-bottom: 158%;
    }

    .eq-footer__section .footer-bottom .footer-bottom__text-content h2 {
        font-size: 54px;
    }
}

@media only screen and (max-width: 385px) {
    .eq-footer__section .footer-bottom .footer-bottom__text-content h2 {
        font-size: 56px;
    }

    .eq-footer__section .footer-top .footer-top__subscribe .subscribe__heading h2 {
        font-size: 32px;
    }

    .eq-footer__section .footer-top .footer-top__sticker {
        max-width: 80px;
        right: -10px;
    }
}

@media only screen and (max-width: 380px) {
    .out-team__main-wrapper .out-team__bg-img {
        padding-bottom: 197%;
    }

    .eq-footer__section .footer-bottom .footer-bottom__text-content h2 {
        font-size: 42px;
    }
}


/* Footer Section CSS Ends Here*/

/* Home Page CSS End Here*/

/* Menu Page CSS Start Here*/


/* Menu Banner CSS Start Here*/

.eq-menu-banner__section {
    margin-top: -90px;
    z-index: 0;
    background-color: var(--color-body-bg);
}

.eq-menu-banner__section .menu-header__top-wrapper {
    background-color: var(--color-primary-bg);
    padding: 185px 0px 35px;
    margin-top: -90px;
    position: relative;
    z-index: 0;
    border-radius: 0px 0px 25px 25px;
    -webkit-border-radius: 0px 0px 25px 25px;
    -moz-border-radius: 0px 0px 25px 25px;
    -ms-border-radius: 0px 0px 25px 25px;
    -o-border-radius: 0px 0px 25px 25px;
}

.menu-header__top-wrapper .heading h1 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 128px;
    line-height: 0.85;
    text-transform: uppercase;
    color: var(--fonts-light);
}

.eq-menu-banner__section .menu-header__bottom-wrapper {
    background-color: var(--color-dark-bg-200);
    padding: 56px 0px 28px;
    margin-top: -25px;
    border-radius: 0px 0px 25px 25px;
    -webkit-border-radius: 0px 0px 25px 25px;
    -moz-border-radius: 0px 0px 25px 25px;
    -ms-border-radius: 0px 0px 25px 25px;
    -o-border-radius: 0px 0px 25px 25px;
}

.menu-header__bottom-wrapper .menu-a__wrapper {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}

.menu-header__bottom-wrapper .menu-a__wrapper .menu-btn {
    font-family: var(--font-button-secondery);
    font-weight: 500;
    font-size: 32px;
    line-height: 1;
    text-align: center;
    color: var(--fonts-light);
    border: 1px solid var(--color-bg-white);
    min-width: 170px;
    background-color: transparent;
    transition: all 0.3s ease-in-out;
    outline: none;
    padding: 12px 10px 4px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.menu-header__bottom-wrapper .menu-a__wrapper .menu-btn:hover {
    background-color: var(--color-bg-white);
    color: var(--fonts-dark);
}

.menu-header__bottom-wrapper .menu-a__wrapper .menu-btn.active {
    background-color: var(--color-secondary-bg);
    border-color: var(--color-secondary-bg);
    color: var(--fonts-dark);
}

.menu-header__bottom-wrapper .menu-a__wrapper .menu-btn.active:hover {
    background-color: transparent;
    border-color: var(--color-secondary-bg);
    color: var(--fonts-yellow);
}

@media only screen and (max-width: 1728px) and (min-width: 992px) {
    .eq-menu-banner__section {
        margin-top: -5.208vw;
    }

    .eq-menu-banner__section .menu-header__top-wrapper {
        padding: 10.706vw 0.000vw 2.025vw;
        margin-top: -5.208vw;
        border-radius: 0.000vw 0.000vw 1.447vw 1.447vw;
        -webkit-border-radius: 0.000vw 0.000vw 1.447vw 1.447vw;
        -moz-border-radius: 0.000vw 0.000vw 1.447vw 1.447vw;
        -ms-border-radius: 0.000vw 0.000vw 1.447vw 1.447vw;
        -o-border-radius: 0.000vw 0.000vw 1.447vw 1.447vw;
    }

    .menu-header__top-wrapper .heading h1 {
        font-size: 7.407vw;
    }

    .eq-menu-banner__section .menu-header__bottom-wrapper {
        padding: 3.241vw 0.000vw 1.620vw;
        margin-top: -1.447vw;
        border-radius: 0.000vw 0.000vw 1.447vw 1.447vw;
        -webkit-border-radius: 0.000vw 0.000vw 1.447vw 1.447vw;
        -moz-border-radius: 0.000vw 0.000vw 1.447vw 1.447vw;
        -ms-border-radius: 0.000vw 0.000vw 1.447vw 1.447vw;
        -o-border-radius: 0.000vw 0.000vw 1.447vw 1.447vw;
    }

    .menu-header__bottom-wrapper .menu-a__wrapper {
        gap: 0.579vw;
    }

    .menu-header__bottom-wrapper .menu-a__wrapper .menu-btn {
        font-size: 1.852vw;
        border: 0.058vw solid var(--color-bg-white);
        min-width: 9.838vw;
        padding: 0.694vw 0.579vw 0.231vw;
        border-radius: 1.736vw;
    }
}

@media only screen and (max-width: 991px) {
    .menu-header__top-wrapper .heading h1 {
        font-size: 96px;
    }

    .eq-menu-banner__section .menu-header__top-wrapper {
        padding: 162px 0px 45px;
    }
}

@media only screen and (max-width: 767px) {
    .menu-header__top-wrapper .heading h1 {
        /* font-size: 46px; */
        font-size: 64px;
        /* font-family: var(--fonts-mobile-drawer); */
    }

    .menu-header__bottom-wrapper .cus-container {
        padding: 0px;
    }

    .eq-menu-banner__section .menu-header__bottom-wrapper .menu-a__wrapper {
        overflow-x: auto;
        padding: 0px 20px;
    }

    .eq-menu-banner__section .menu-header__bottom-wrapper {
        padding: 42px 0px 20px;
    }

    body.menu-list .menu-header__bottom-wrapper .cus-container {
        padding: 0px;
        /* padding-left: 40px; */
    }
}

/* @media only screen and (max-width: 385px) {

} */


/* Menu Banner CSS End Here*/

/*Menu List Section CSS Start Here*/

.eq-menu-list__section {
    padding: 36px 0px 107px;
    background-color: var(--color-body-bg);
}

.eq-menu-list__section .menu-list__item-list .items-list {
    display: flex;
    justify-content: space-between;
    gap: 56px;
    align-items: center;
    background-color: var(--color-secondary-bg);
    padding: 32px 30px 24px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
     overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.eq-menu-list__section .menu-list__item-list .items-list {
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.eq-menu-list__section .menu-list__item-list .items-list::-webkit-scrollbar {
    display: none;
}

.eq-menu-list__section .menu-list__item-list .items-list {
    cursor: grab;
}

/* .eq-menu-list__section .menu-list__item-list .items-list:active {
    cursor: grabbing;
} */

.eq-menu-list__section .menu-list__item-list .items-list li.active {
    color: var(--fonts-dark);
}

.eq-menu-list__section .menu-list__item-list .items-list li {
    color: #22222280;
    font-family: var(--font-button-secondery);
    min-width: fit-content;
    width: fit-content;
    font-weight: 700;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.eq-menu-list__section .menu-list__item-list .items-list li:hover {
    color: var(--fonts-dark)
}

.eq-menu-list__section .menu-list__item-list {
    margin-bottom: 34px
}

.eq-menu-list__section .menu-list__product-list:not(:first-child) {
    padding-top: 64px;
}

.eq-menu-list__section .menu-list__product-list .heading h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 62px;
    line-height: 0.85;
    text-transform: uppercase;
    color: var(--fonts-dark);
}

.eq-menu-list__section .menu-list__product-list .heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
}

.eq-menu-list__section .menu-list__product-list .heading .slider-btn {
    display: none;
    justify-content: flex-end;
    gap: 6px;
    align-items: center;
}

.eq-menu-list__section .menu-list__product-list .heading .slider-btn a {
    width: 42px;
    height: 42px;
    background-color: var(--color-primary-bg);
    border: 1px solid transparent;
    /* border: none; */
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 45px;
    -webkit-border-radius: 45px;
    -moz-border-radius: 45px;
    -ms-border-radius: 45px;
    -o-border-radius: 45px;
}

.eq-menu-list__section .menu-list__product-list .heading .slider-btn a:hover {
    background-color: transparent;
    border-color: var(--color-primary-bg);
}

.eq-menu-list__section .menu-list__product-list .heading .slider-btn a:hover svg path {
    fill: var(--color-primary-bg);
}

.menu-list__product-list .heading .slider-btn a svg {
    width: 18px;
    height: 18px;
}

.eq-menu-list__section .menu-list__product-list .product-list__slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 66px;
}

/* .eq-menu-list__section .menu-list__product-list .product-list__slider .slider__card {
  cursor: pointer;
} */

.eq-menu-list__section .menu-list__product-list .product-list__slider .slider__card .slider-card__wrapper {
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    background-color: var(--color-dark-bg-200);
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
}

.product-list__slider .slider__card .slider-card__img {
    max-width: 100%;
    width: 100%;
    /* padding-bottom: 107%; */
    /* padding-bottom: 125.54%; */
    padding-bottom: 127.54%;
    position: relative;
}

.product-list__slider .slider__card .slider-card__img img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-list__slider .slider__card .slider-card__content .product-name p {
    font-family: var(--fonts-card-desc);
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    color: var(--fonts-light);
    max-width: 82%;
    width: 100%;
}

.product-list__slider .slider__card .slider-card__content .product-name {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-list__slider .slider__card .slider-card__content .product-name .product-btn {
    width: 55px;
    height: 55px;
    background-color: var(--color-primary-bg);
    border: 1px solid transparent;
    display: flex;
    justify-content: center;
    cursor: pointer;
    align-items: center;
    border: none;
    outline: none;
    border-radius: 60px;
    transition: all 0.3s ease-in-out;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.product-list__slider .slider__card .slider-card__content .product-name .product-btn:hover {
    background-color: var(--color-bg-white);
    /* border-color: var(--color-primary-bg); */
}

.product-list__slider .slider__card .slider-card__content .product-name .product-btn:hover svg path {
    fill: var(--color-primary-bg);
}

.product-list__slider .slider__card .slider-card__content .product-desc {
    margin: 20px 0px;
    /* height: 370px; */
    height: 480px;
    overflow-y: auto;
}

.product-list__slider .slider__card .slider-card__content .product-desc p {
    font-family: var(--fonts-card-desc);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    color: var(--fonts-light);
    /* margin-top: 12px; */
    transition: opacity 0.3s ease;
}

.product-list__slider .slider__card .slider-card__content .product-name .product-btn svg {
    width: 24px;
    height: 24px;
}

.product-list__slider .slider__card .slider-card__content {
    padding: 15px 30px;
}

.product-list__slider .slider__card .slider-card__content {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-dark-bg-200);
    transform: translateY(calc(100% - 86px));
    /*transform: translateY(83%);
  */
    transition: transform 0.4s ease;
    -webkit-transform: translateY(calc(100% - 86px));
    -moz-transform: translateY(calc(100% - 86px));
    -ms-transform: translateY(calc(100% - 86px));
    -o-transform: translateY(calc(100% - 86px));
}

/* .product-list__slider .slider__card:hover .slider-card__content {
  transform: translateY(0);
} */

.product-list__slider .slider-card__wrapper.active .slider-card__content {
    transform: translateY(0) !important;
    -webkit-transform: translateY(0) !important;
    -moz-transform: translateY(0) !important;
    -ms-transform: translateY(0) !important;
    -o-transform: translateY(0) !important;
}

body.menu-list .eq-download-app__section {
    padding: 71px 0px 57px;
}

body.menu-list .eq-download-app__section .download-app__wrapper {
    background-color: var(--color-dark-bg-200);
}

body.menu-list .download-app__wrapper .download-app__content .download-app__heading h2 {
    color: var(--fonts-yellow);
}

body.menu-list .download-app__wrapper .download-app__content .download-app__desc p {
    color: var(--fonts-light);
}

body.menu-list .download-app__wrapper .download-app__content .download-app__qr-code a {
    background-color: var(--color-bg-white);
}

body.menu-list .download-app__content .download-app__qr-code .qr-code__wrapper {
    /* background-color: var(--color-black-bg); */
    padding: 0px;

}

body.menu-list .download-app__wrapper .download-app__content .download-app__subtitle p:last-child {
    color: var(--fonts-light);
}

body.menu-list .download-app__content .download-app__qr-code .qr-code {
    border: 4px solid var(--color-black-bg);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

body.menu-list .download-app__content .download-app__qr-code .qr-text p {
    color: var(--fonts-dark);
}

.product-list__slider .slider-card__wrapper .slider-card__content .info-close-btn {
    display: none;
    width: 55px;
    height: 55px;
    background-color: var(--color-primary-bg);
    margin: 0 auto;
    border: 1px solid transparent;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: none;
    outline: none;
    border-radius: 60px;
    transition: all 0.3s ease-in-out;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.product-list__slider .slider-card__wrapper.active .slider-card__content .product-btn svg {
     transform: rotate(-180deg);
}

.product-list__slider .slider-card__wrapper .slider-card__content .product-btn svg {
     transition: all 0.5s ease-in-out;
     -webkit-transition: all 0.5s ease-in-out;
     -moz-transition: all 0.5s ease-in-out;
     -ms-transition: all 0.5s ease-in-out;
     -o-transition: all 0.5s ease-in-out;
}

.product-list__slider .slider-card__wrapper .slider-card__content .info-close-btn svg {
    width: 24px;
    height: 24px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.product-list__slider .slider-card__wrapper .slider-card__content .info-close-btn:hover {
    background-color: var(--color-bg-white);
}

.product-list__slider .slider-card__wrapper .slider-card__content .info-close-btn:hover svg path {
    fill: var(--color-primary-bg);
}

@media only screen and (max-width: 1728px) and (min-width:992px) {
    .eq-menu-list__section {
        padding: 2.083vw 0.000vw 6.192vw;
    }

    .eq-menu-list__section .menu-list__product-list:not(:first-child) {
        padding-top: 3.704vw;
    }

    .eq-menu-list__section .menu-list__item-list .items-list {
        padding: 1.852vw 1.736vw 1.389vw;
        gap: 3.241vw;
        border-radius: 2.894vw;
        -webkit-border-radius: 2.894vw;
        -moz-border-radius: 2.894vw;
        -ms-border-radius: 2.894vw;
        -o-border-radius: 2.894vw;
    }

    .eq-menu-list__section .menu-list__item-list .items-list li {
        font-size: 1.770vw;
    }

    .eq-menu-list__section .menu-list__item-list {
        margin-bottom: 1.968vw
    }

    .eq-menu-list__section .menu-list__product-list .heading h3 {
        font-size: 3.588vw;
    }

    .eq-menu-list__section .menu-list__product-list .heading {
        padding-bottom: 1.736vw;
    }

    .eq-menu-list__section .menu-list__product-list .product-list__slider {
        /* gap: 3.183vw; */
        gap: 3.819vw;
    }

    .eq-menu-list__section .menu-list__product-list .product-list__slider .slider__card .slider-card__wrapper {
        border-radius: 1.389vw;
        -webkit-border-radius: 1.389vw;
        -moz-border-radius: 1.389vw;
        -ms-border-radius: 1.389vw;
        -o-border-radius: 1.389vw;
    }

    .product-list__slider .slider__card .slider-card__content .product-name p {
        font-size: 1.157vw;
    }

    .product-list__slider .slider__card .slider-card__content .product-name .product-btn {
        width: 3.183vw;
        height: 3.183vw;
        border-radius: 3.472vw;
    }

    .product-list__slider .slider__card .slider-card__content .product-desc {
        margin: 1.157vw 0.000vw;
        /* height: 21.412vw; */
        height: 27.778vw;
    }

    .product-list__slider .slider__card .slider-card__content .product-desc p {
        font-size: 0.926vw;
        /* margin-top: 0.694vw; */
    }

    .product-list__slider .slider__card .slider-card__content .product-name .product-btn svg {
        width: 1.389vw;
        height: 1.389vw;
    }

    .product-list__slider .slider__card .slider-card__content {
        padding: 0.868vw 1.736vw;
        transform: translateY(calc(100% - 4.977vw));
        -webkit-transform: translateY(calc(100% - 4.977vw));
        -moz-transform: translateY(calc(100% - 4.977vw));
        -ms-transform: translateY(calc(100% - 4.977vw));
        -o-transform: translateY(calc(100% - 4.977vw));
    }

    body.menu-list .eq-download-app__section {
        padding: 4.109vw 0.000vw 3.299vw;
    }

    body.menu-list .download-app__content .download-app__qr-code .qr-code {
        border: 0.231vw solid var(--color-black-bg);
        border-radius: 0.289vw;
        -webkit-border-radius: 0.289vw;
        -moz-border-radius: 0.289vw;
        -ms-border-radius: 0.289vw;
        -o-border-radius: 0.289vw;
    }

    .product-list__slider .slider-card__wrapper .slider-card__content .info-close-btn {
        width: 3.183vw;
        height: 3.183vw;
        border: 0.058vw solid transparent;
        border-radius: 3.472vw;
        transition: all 0.3s ease-in-out;
    }

    .product-list__slider .slider-card__wrapper .slider-card__content .info-close-btn svg {
        width: 1.389vw;
        height: 1.389vw;
    }
}

.menu-dropdown {
    display: none;
}

@media only screen and (max-width: 991px) {
    .eq-menu-list__section {
        padding: 38px 0px 56px;
    }

    .eq-menu-list__section .menu-list__product-list:not(:first-child) {
        padding-top: 62px;
    }

    .menu-list__item-list .menu-dropdown {
        font-family: var(--font-button-secondery);
        font-weight: 700;
        font-size: 30px;
        line-height: 1;
        color: var(--fonts-dark);
        border-radius: 80px;
        cursor: pointer;
        position: relative;
        margin-bottom: -5px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        -webkit-border-radius: 80px;
        -moz-border-radius: 80px;
        -ms-border-radius: 80px;
        -o-border-radius: 80px;
    }

    .menu-list__item-list .menu-dropdown .dropdown-icon {
        width: 42px;
        height: 42px;
        border-radius: 45px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--color-primary-bg);
        -webkit-border-radius: 45px;
        -moz-border-radius: 45px;
        -ms-border-radius: 45px;
        -o-border-radius: 45px;
    }

    .menu-list__item-list .menu-dropdown .dropdown-icon svg {
        width: 18px;
        height: 18px;
        transition: all 0.4s ease-in-out;
        -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        -ms-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
    }

    .eq-menu-list__section .menu-list__item-list.active .menu-dropdown .dropdown-icon svg {
        rotate: 180deg;
    }

    .menu-list__item-list .items-list {
        /*display: none;*/
        margin-top: 8px;
        background: #fff;
        border-radius: 8px;
        overflow: hidden;
        height: 0;
        overflow: hidden;
        transition: height 0.5s ease;
        -webkit-transition: height 0.5s ease;
        -moz-transition: height 0.5s ease;
        -ms-transition: height 0.5s ease;
        -o-transition: height 0.5s ease;
    }

    .eq-menu-list__section .menu-list__item-list .items-list {
        padding: 0px;
        gap: 0px;
        background-color: transparent;
        border-radius: 0px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .eq-menu-list__section .menu-list__item-list {
        background-color: var(--color-secondary-bg);
        padding: 18px 14px 17px 30px;
        transition: all 0.3s ease;
        border-radius: 80px;
        -webkit-border-radius: 80px;
        -moz-border-radius: 80px;
        -ms-border-radius: 80px;
        -o-border-radius: 80px;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
    }

    .eq-menu-list__section .menu-list__item-list .menu-dropdown .selected-item {
        margin-bottom: -5px;
    }

    .eq-menu-list__section .menu-list__item-list.open {
        padding: 27px 14px 15px 30px;
        border-radius: 25px;
        -webkit-border-radius: 25px;
        -moz-border-radius: 25px;
        -ms-border-radius: 25px;
        -o-border-radius: 25px;
    }

    .eq-menu-list__section .menu-list__product-list .product-list__slider {
        display: block;
    }

    .eq-menu-list__section .menu-list__product-list .product-list__slider .slider__card {
        padding: 0px 10px;
    }

    .menu-list__product-list .product-list__slider .slick-list.draggable {
        margin: 0px -10px;
    }

    .product-list__slider .slider__card .slider-card__img {
        /* padding-bottom: 135%; */
        padding-bottom: 137%;
    }

    .product-list__slider .slider-card__wrapper .slider-card__content {
        display: flex;
        flex-direction: column;
        /* justify-content: space-between; */
        justify-content: flex-start;
    }

    .product-list__slider .slider__card .slider-card__content .product-desc {
        height: 345px;
    }

    .product-list__slider .slider-card__wrapper .slider-card__content .info-close-btn {
        width: 42px;
        height: 42px;
        border-radius: 45px;
    }

    .product-list__slider .slider-card__wrapper .slider-card__content .info-close-btn svg {
        width: 18px;
        height: 18px;
    }

    .product-list__slider .slider__card .slider-card__content {
        /*transform: translateY(84%) !important;
    */
        transform: translateY(calc(100% - 70px));
    }

    .product-list__slider .slider__card .slider-card__content .product-name .product-btn {
        width: 42px;
        height: 42px;
    }

    .product-list__slider .slider__card .slider-card__content .product-name .product-btn svg {
        width: 18px;
        height: 18px;
    }

    .eq-menu-list__section .menu-list__product-list .heading .slider-btn {
        display: flex;
    }

    body.menu-list .eq-video-section,
    body.menu-list .eq-download-app__section {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .eq-menu-list__section .menu-list__item-list {
        margin-bottom: 38px;
    }

    .eq-menu-list__section .menu-list__product-list .heading {
        padding-bottom: 35px;
    }

    .product-list__slider .slider__card .slider-card__img {
        padding-bottom: 127.5%;
        /* padding-bottom: 114.5%; */
    }

    .product-list__slider .slider__card .slider-card__content .product-name .product-btn {
        width: 42px;
        height: 42px;
    }

    .product-list__slider .slider__card .slider-card__content {
        padding: 11px 16px 11px 22px;
        transform: translateY(calc(100% - 67px)) !important;
        -webkit-transform: translateY(calc(100% - 67px)) !important;
        -moz-transform: translateY(calc(100% - 67px)) !important;
        -ms-transform: translateY(calc(100% - 67px)) !important;
        -o-transform: translateY(calc(100% - 67px)) !important;
    }

    .product-list__slider .slider__card .slider-card__content .product-name .product-btn svg {
        width: 18px;
        height: 18px;
    }
}

@media only screen and (max-width: 380px) {
    .product-list__slider .slider__card .slider-card__content .product-desc {
        height: 240px;
        margin: 0px;
    }
}

@media only screen and (max-width: 340px) {
    .product-list__slider .slider__card .slider-card__content .product-name .product-btn {
        width: 36px;
        height: 36px;
    }

    .product-list__slider .slider-card__wrapper .slider-card__content .info-close-btn {
        width: 36px;
        height: 36px;
    }

    .product-list__slider .slider__card .slider-card__content .product-name .product-btn svg {
        width: 14px;
        height: 14px;
    }

    .product-list__slider .slider-card__wrapper .slider-card__content .info-close-btn svg {
        width: 14px;
        height: 14px;
    }

    .product-list__slider .slider__card .slider-card__content {
        transform: translateY(calc(100% - 57px)) !important;
        -webkit-transform: translateY(calc(100% - 57px)) !important;
        -moz-transform: translateY(calc(100% - 57px)) !important;
        -ms-transform: translateY(calc(100% - 57px)) !important;
        -o-transform: translateY(calc(100% - 57px)) !important;
    }
}


/*Menu List Section CSS End Here*/


/* Menu Page CSS End Here*/

/* Location Page CSS Start Here*/


/* location page banner section CSS start here*/

.eq-location-banner__section {
    margin-top: -90px;
    z-index: 0;
    background-color: var(--color-body-bg);
}

.eq-location-banner__section .location-banner__wrapper {
    background-color: var(--color-primary-bg);
    padding: 185px 0px 45px;
    margin-top: -90px;
    position: relative;
    z-index: 0;
    border-radius: 0px 0px 25px 25px;
    -webkit-border-radius: 0px 0px 25px 25px;
    -moz-border-radius: 0px 0px 25px 25px;
    -ms-border-radius: 0px 0px 25px 25px;
    -o-border-radius: 0px 0px 25px 25px;
}

.location-banner__wrapper .heading h1 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 128px;
    line-height: 0.85;
    text-transform: uppercase;
    color: var(--fonts-light);
}

@media only screen and (max-width: 1728px) and (min-width: 992px) {
    .eq-location-banner__section {
        margin-top: -5.208vw;
    }

    .eq-location-banner__section .location-banner__wrapper {
        padding: 10.706vw 0.000vw 2.604vw;
        margin-top: -5.208vw;
        border-radius: 0.000vw 0.000vw 1.447vw 1.447vw;
        -webkit-border-radius: 0.000vw 0.000vw 1.447vw 1.447vw;
        -moz-border-radius: 0.000vw 0.000vw 1.447vw 1.447vw;
        -ms-border-radius: 0.000vw 0.000vw 1.447vw 1.447vw;
        -o-border-radius: 0.000vw 0.000vw 1.447vw 1.447vw;
    }

    .location-banner__wrapper .heading h1 {
        font-size: 7.407vw;
    }
}

@media only screen and (max-width: 991px) {
    .location-banner__wrapper .heading h1 {
        font-size: 96px;
    }

    .eq-location-banner__section .location-banner__wrapper {
        padding-top: 162px;
    }

    body.location-page .eq-location-banner__section .location-banner__wrapper .cus-container {
        padding: 0px 40px;
    }
}

@media only screen and (max-width: 767px) {
    .location-banner__wrapper .heading h1 {
        font-size: 64px;
        /* font-family: var(--fonts-mobile-drawer); */
    }
}

/* location page banner section CSS end here*/

/* location page Map section CSS start here*/

.map-location__section {
    padding: 66px 0px 78px;
    background-color: var(--color-body-bg);
}

.map-location__section .location__map-wrapper .main__map-wrapper {
    display: flex;
    justify-content: space-between;
    /* gap: 35px; */
    align-items: flex-start;
}

.location__map-wrapper .main__map-wrapper .map-wrapper {
    max-width: 1100px;
    width: 100%;
    height: 601px;
    border-radius: 25px;
    overflow: hidden;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.location__map-wrapper .main__map-wrapper .map-wrapper * {
    width: 100%;
    height: 100%;
}

.location__map-wrapper .main__map-wrapper .locations-wrapper {
    max-width: 373px;
    width: 100%;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.location__map-wrapper .main__map-wrapper .locations-wrapper.scroll-bottom::after {
    opacity: 0;
}

.location__map-wrapper .main__map-wrapper .locations-wrapper .heading h2 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 64px;
    line-height: 0.9;
    letter-spacing: -1.92px;
    text-transform: uppercase;
    color: var(--fonts-red);
}

.location__map-wrapper .main__map-wrapper .locations-wrapper .heading {
    border-bottom: 2px solid var(--color-primary-bg);
    padding-bottom: 6px;
    margin-bottom: 24px;
}

.location__map-wrapper .main__map-wrapper .locations-wrapper .all-locations {
    max-height: 502px;
    overflow-y: auto;
}

.locations-wrapper .all-locations .location {
    padding-bottom: 40px;
    border-bottom: 2px solid #BE162266;
}

.locations-wrapper .all-locations .location:not(:last-child) {
    margin-bottom: 35px;
}

.locations-wrapper .all-locations .location .location__name {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.locations-wrapper .all-locations .location .location__name h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 24px;
    line-height: 1.3;
    color: var(--fonts-red);
}

.locations-wrapper .all-locations .location .location__name a {
    max-width: 117px;
    width: 100%;
    border: 1px solid var(--color-dark-bg-200);
    background-color: transparent;
    font-family: var(--font-button-secondery);
    font-weight: 500;
    font-size: 22px;
    line-height: 1;
    text-align: center;
    color: var(--fonts-dark);
    transition: all 0.3s ease-in-out;
    padding: 7px 10px 3px;
    border-radius: 35px;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    -o-border-radius: 35px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.locations-wrapper .all-locations .location .location__name a:hover {
    background-color: var(--color-dark-bg-200);
    color: var(--fonts-light);
}

.locations-wrapper .all-locations .location .location-detail__wrapper p,
.locations-wrapper .all-locations .location .location-detail__wrapper a {
    font-family: var(--fonts-location);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    color: #00000080;
}

.locations-wrapper .all-locations .location .location__address {
    padding-top: 16px;
    max-width: 50%;
}

.locations-wrapper .all-locations .location .location__address {
    font-family: var(--fonts-location);
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: rgba(0, 0, 0, 0.5);
}

.locations-wrapper .all-locations .location .location__number {
    padding-top: 20px;
    padding-bottom: 18px;
}

.location__map-wrapper .main__map-wrapper .locations-wrapper {
    position: relative;
    padding-top: 12px;
}

.location__map-wrapper .main__map-wrapper .locations-wrapper:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 163px;
    background: linear-gradient(180deg, rgba(249, 249, 249, 0) 0%, #F9F9F9 95.67%);
}

body.location-page .out-team__main-wrapper .out-team__content {
    top: 50%;
    transform: translateY(-50%);
}

@media only screen and (max-width: 1728px) and (min-width: 992px) {
    .map-location__section {
        padding: 3.819vw 0.000vw 4.514vw;
    }

    /* .eq-location-banner__section .location__map-wrapper .main__map-wrapper {
    gap: 2.025vw;
  } */

    .location__map-wrapper .main__map-wrapper .map-wrapper {
        max-width: 63.657vw;
        height: 34.780vw;
        border-radius: 1.447vw;
    }

    .location__map-wrapper .main__map-wrapper .locations-wrapper {
        max-width: 21.586vw;
    }

    .location__map-wrapper .main__map-wrapper .locations-wrapper .heading h2 {
        font-size: 3.704vw;
        letter-spacing: -0.111vw;
    }

    .location__map-wrapper .main__map-wrapper .locations-wrapper .heading {
        border-bottom: 0.116vw solid var(--color-primary-bg);
        padding-bottom: 0.347vw;
        margin-bottom: 1.389vw;
    }

    .location__map-wrapper .main__map-wrapper .locations-wrapper .all-locations {
        max-height: 29.051vw;
    }

    .locations-wrapper .all-locations .location {
        padding-bottom: 2.315vw;
        border-bottom: 0.116vw solid #BE162266;
    }

    .locations-wrapper .all-locations .location:not(:last-child) {
        margin-bottom: 2.025vw;
    }

    .locations-wrapper .all-locations .location .location__name h4 {
        font-size: 1.389vw;
    }

    .locations-wrapper .all-locations .location .location__name a {
        max-width: 6.771vw;
        border: 0.058vw solid var(--color-dark-bg-200);
        font-size: 1.273vw;
        padding: 0.405vw 0.579vw 0.174vw;
        border-radius: 2.025vw;
    }

    .locations-wrapper .all-locations .location .location-detail__wrapper p,
    .locations-wrapper .all-locations .location .location-detail__wrapper a {
        font-size: 0.926vw;
    }

    .locations-wrapper .all-locations .location .location__address {
        padding-top: 0.926vw;
    }

    .locations-wrapper .all-locations .location .location__address {
        font-size: 0.926vw;
    }

    .locations-wrapper .all-locations .location .location__number {
        padding-top: 1.157vw;
        padding-bottom: 1.042vw;
    }

    .location__map-wrapper .main__map-wrapper .locations-wrapper {
        padding-top: 0.694vw;
    }

    .location__map-wrapper .main__map-wrapper .locations-wrapper:after {
        height: 9.433vw;
    }
}

@media only screen and (max-width: 991px) {
    /* .map-location__section .location__map-wrapper {
    padding: 50px 0px 63px;
  } */

    .map-location__section {
        padding: 50px 0px 35px;
    }

    .location__map-wrapper .main__map-wrapper .map-wrapper {
        /* display: none; */
        order: 2;
    }


    .map-location__section .location__map-wrapper .main__map-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .location__map-wrapper .main__map-wrapper .locations-wrapper {
        max-width: 100%;
        width: 100%;
        height: auto;
    }

    .location__map-wrapper .main__map-wrapper .locations-wrapper:after {
        display: none;
    }

    .location__map-wrapper .main__map-wrapper .locations-wrapper .all-locations {
        max-height: fit-content;
    }

    .locations-wrapper .all-locations .location {
        border: none;
    }

    .locations-wrapper .all-locations .location:not(:last-child) {
        margin-bottom: 40px;
        padding-bottom: 0px;
    }

    .locations-wrapper .all-locations .location:last-child {
        padding-bottom: 0px;
    }
}

@media only screen and (max-width: 767px) {
    .location__map-wrapper .main__map-wrapper .locations-wrapper .heading {
        margin-bottom: 31px;
    }

    .locations-wrapper .all-locations .location .location__address {
        max-width: 35%;
    }
}

@media only screen and (max-width: 340px) {
    .locations-wrapper .all-locations .location .location__address {
        max-width: 70%;
    }

    .locations-wrapper .all-locations .location .location__name a {
        max-width: 85px;
    }
}


/* location page Map section CSS End here*/

/* location page our team section css start here */

body.location-page .our-team__section {
    padding: 0px;
    padding-bottom: 78px;
}

body.location-page .our-team__section .out-team__main-wrapper {
    padding: 0px;
    border: none;
}

@media only screen and (max-width: 1728px) and (min-width: 992px) {
    body.location-page .our-team__section {
        padding-bottom: 4.514vw;
    }
}

@media only screen and (max-width: 991px) {
    body.location-page .our-team__section {
        padding-bottom: 63px;
    }
}

/* location page our team section css start here */


/* Location Page CSS End Here*/

/* About Us page CSS Start Here*/

/*About Us Page Banner Section CSS Start Here*/

.eq-about-us_banner-section {
    margin-top: -90px;
}


.eq-about-us_banner-section .banner-section__main-wrapper {
    /* background-color: var(--color-primary-bg); */
    background-color: var(--color-dark-bg-200);
    position: relative;
    padding: 34px 0px 69px;
    border-radius: 0px 0px 25px 25px;
    -webkit-border-radius: 0px 0px 25px 25px;
    -moz-border-radius: 0px 0px 25px 25px;
    -ms-border-radius: 0px 0px 25px 25px;
    -o-border-radius: 0px 0px 25px 25px;
}

.eq-about-us_banner-section .banner-section__img-wrapper {
    max-width: calc(100% - 86px);
    width: 100%;
    margin: 0 auto;
    padding-bottom: 39.65%;
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.eq-about-us_banner-section .banner-section__img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(269.5deg, rgba(0, 0, 0, 0) 28.54%, rgba(0, 0, 0, 0.22) 92.07%);
    object-fit: cover;
}

.eq-about-us_banner-section .banner-section__img-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eq-about-us_banner-section .banner-section__content-wrapper .small-heading h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 24px;
    line-height: 0.85;
    text-transform: uppercase;
    color: var(--fonts-light);
    margin-bottom: 26px;
}

.eq-about-us_banner-section .banner-section__content-wrapper .big-heading {
    max-width: 84%;
    width: 100%;
}

.eq-about-us_banner-section .banner-section__content-wrapper .big-heading h1 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 188px;
    line-height: 0.85;
    text-transform: uppercase;
    color: var(--fonts-light);
    position: relative;
    width: fit-content;
    z-index: 1;
}

.eq-about-us_banner-section .banner-section__content-wrapper .big-heading .banner-section__sticker-wrapper {
    position: absolute;
    top: -5%;
    right: 19%;
    /* top: -45px;
  right: 330px; */
    z-index: 0;
    max-width: 188px;
    width: 100%;
    height: 188px;
}

.eq-about-us_banner-section .banner-section__content-wrapper .big-heading .banner-section__sticker-wrapper img {
    width: 100%;
    height: 100%;
}

.eq-about-us_banner-section .banner-section__content-wrapper {
    position: absolute;
    bottom: 44px;
}

body.franchise-page .eq-franchise__banner-section .banner-section__main-wrapper {
    padding-bottom: 0px;
}

@media only screen and (max-width: 1728px) and (min-width: 992px) {
    .eq-about-us_banner-section {
        margin-top: -5.208vw;
    }

    .eq-about-us_banner-section .banner-section__main-wrapper {
        padding: 1.968vw 0.000vw 3.993vw;
        border-radius: 0.000vw 0.000vw 1.447vw 1.447vw;
    }

    .eq-about-us_banner-section .banner-section__img-wrapper {
        max-width: calc(100% - 4.977vw);
        border-radius: 1.447vw;
    }

    .eq-about-us_banner-section .banner-section__content-wrapper .small-heading h4 {
        font-size: 1.389vw;
        margin-bottom: 1.505vw;
    }

    .eq-about-us_banner-section .banner-section__content-wrapper .big-heading h1 {
        font-size: 10.880vw;
    }

    /* .eq-about-us_banner-section .banner-section__content-wrapper .big-heading .banner-section__sticker-wrapper {
    top: -2.604vw;
    right: 19.097vw;
  } */

    .eq-about-us_banner-section .banner-section__content-wrapper .big-heading .banner-section__sticker-wrapper {
        max-width: 10.88vw;
        height: 10.88vw;
    }

    .eq-about-us_banner-section .banner-section__content-wrapper {
        bottom: 2.546vw;
    }
}

@media only screen and (max-width: 991px) {
    body.franchise-page .eq-about-us_banner-section .banner-section__main-wrapper {
        padding: 25px 0px 20px;
    }

    .eq-about-us_banner-section .banner-section__main-wrapper {
        padding: 60px 0px 40px;
    }

    .eq-about-us_banner-section .banner-section__img-wrapper {
        max-width: calc(100% - 40px);
        padding-bottom: 67.32%;
    }

    .eq-about-us_banner-section .banner-section__content-wrapper {
        padding: 0px 20px;
    }

    .eq-about-us_banner-section .banner-section__content-wrapper .big-heading h1 {
        font-size: 86px;
    }

    .eq-about-us_banner-section .banner-section__content-wrapper .small-heading h4 {
        margin-bottom: 19px;
    }

    .eq-about-us_banner-section .banner-section__content-wrapper .big-heading .banner-section__sticker-wrapper {
        max-width: 120px;
        height: 120px;
        top: -7%;
        right: 15%;
    }
}

@media only screen and (max-width: 767px) {
    body.franchise-page .franchise__bottom-section {
        padding: 24px 0px 28px !important;
    }

    .eq-about-us_banner-section .banner-section__content-wrapper .big-heading h1 {
        font-size: 64px;
        width: 70%;
    }

    .eq-about-us_banner-section .banner-section__img-wrapper {
        padding-bottom: 117.5%;
    }

    .eq-about-us_banner-section .banner-section__content-wrapper {
        bottom: 45px;
    }

    body.franchise-page .eq-about-us_banner-section .banner-section__content-wrapper {
        bottom: 25px;
    }

    .eq-about-us_banner-section .banner-section__content-wrapper .big-heading .banner-section__sticker-wrapper {
        max-width: 70px;
        height: 70px;
        top: 4%;
        right: 40.5%;
    }

    .eq-about-us_banner-section .banner-section__content-wrapper .big-heading {
        max-width: 84%;
    }
}

/*About Us Page Banner Section CSS End Here*/

/* About Us Page Our Story Section Start Here*/

.eq-our-story__section {
    background: linear-gradient(0deg, #1F1F1F, #1F1F1F),
        linear-gradient(252.86deg, rgba(0, 0, 0, 0) 1.22%, #000000 98.78%);
    box-shadow: 0px 4px 4px 0px #00000040;
    padding: 130px 0px 173px;
    margin-top: -25px;
}

.eq-our-story__section .our-story__top-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 185px;
    padding-bottom: 105px;
    border-bottom: 1px solid #FFFFFF80;
}

.eq-our-story__section .our-story__top-content .our-story__media-wrapper {
    max-width: 570px;
    width: 100%;
    position: relative;
}

.eq-our-story__section .our-story__top-content .our-story__video,
.eq-our-story__section .our-story__top-content .our-story__img {
    /* max-width: 570px; */
    width: 100%;
    padding-bottom: 116.15%;
    position: relative;
    box-shadow: -20px 20px 0px 0px #0000000D;
    border-radius: 20px;
    overflow: hidden;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.eq-our-story__section .our-story__top-content .our-story__video video,
.eq-our-story__section .our-story__top-content .our-story__img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eq-our-story__section .our-story__top-content .our-story__content-desc .heading h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 96px;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--fonts-yellow);
    margin-bottom: 40px;
}

.our-story__top-content .our-story__content-desc .desc .desc__heading h5 {
    font-family: var(--fonts-desc);
    font-weight: 700;
    font-size: 32px;
    line-height: 1.3;
    color: var(--fonts-light);
    margin-bottom: 25px;
}

.our-story__top-content .our-story__content-desc .desc .desc__sub-heading p {
    font-family: var(--fonts-card-desc);
    font-weight: 500;
    font-size: 24px;
    line-height: 1.3;
    color: var(--fonts-light);
}

.our-story__top-content .our-story__content-desc .desc .desc__sub-heading p span {
    display: block;
}

.our-story__content-desc .desc .desc__detail {
    margin: 19px 0px;
}

.our-story__content-desc .desc .desc__detail p {
    font-family: var(--fonts-card-desc);
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0%;
    color: var(--fonts-light);
}

.our-story__content-desc .desc .desc__detail ul {
    margin-top: 18px;
    margin-left: 25px;
}

.our-story__content-desc .desc .desc__detail li {
    font-family: var(--fonts-card-desc);
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0%;
    color: var(--fonts-light);
    list-style-type: disc;
}

.our-story__top-content .our-story__content-desc .desc .desc__detail p {
    font-family: var(--fonts-card-desc);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0%;
    color: var(--fonts-light);
}

.our-story__top-content .our-story__content-desc .desc .desc__detail p:not(:last-child) {
    margin-bottom: 24px;
}

.our-story__top-content .our-story__content-desc .desc .desc__culture p {
    font-family: var(--fonts-card-desc);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0%;
    color: var(--fonts-light);
}

.our-story__top-content .our-story__content-desc .order-btn {
    margin-top: 45px;
}

.our-story__top-content .our-story__content-desc .order-btn a {
    font-family: var(--font-button-secondery);
    font-weight: 400;
    font-size: 32px;
    display: block;
    line-height: 1;
    text-align: center;
    color: var(--fonts-light);
    background-color: var(--color-secondary-bg);
    max-width: 188px;
    width: 100%;
    padding: 18px 10px 12px;
    border-radius: 35px;
    border: none;
    outline: none;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.our-story__top-content .our-story__content-desc .order-btn a:hover {
    background-color: var(--color-bg-white);
    color: var(--fonts-yellow);
}

.our-story__top-content .our-story__sticker {
    max-width: 132px;
    width: 100%;
    position: absolute;
    top: -11px;
    left: -60px;
}

.our-story__top-content .our-story__sticker img {
    width: 100%;
    height: 100%;
    rotate: -9.1deg;
}

.eq-our-story__section .our-story__bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 185px;
    padding-top: 109px;
}

.eq-our-story__section .our-story__bottom-content .our-story__media-wrapper {
    max-width: 570px;
    width: 100%;
    position: relative;
}

.eq-our-story__section .our-story__bottom-content .our-story__video,
.eq-our-story__section .our-story__bottom-content .our-story__img {
    /* max-width: 570px; */
    width: 100%;
    padding-bottom: 116.15%;
    position: relative;
    box-shadow: -20px 20px 0px 0px #0000000D;
    border-radius: 20px;
    overflow: hidden;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.eq-our-story__section .our-story__bottom-content .our-story__video video,
.eq-our-story__section .our-story__bottom-content .our-story__img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eq-our-story__section .our-story__bottom-content .our-story__content-desc .heading h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 96px;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--fonts-yellow);
    margin-bottom: 40px;
}

.our-story__bottom-content .our-story__content-desc .desc .desc__heading h5 {
    font-family: var(--fonts-desc);
    font-weight: 700;
    font-size: 32px;
    line-height: 1.3;
    color: var(--fonts-light);
    margin-bottom: 25px;
}

.our-story__bottom-content .our-story__content-desc .desc .desc__sub-heading p {
    font-family: var(--fonts-card-desc);
    font-weight: 500;
    font-size: 24px;
    line-height: 1.3;
    color: var(--fonts-light);
}

.our-story__bottom-content .our-story__content-desc .desc .desc__sub-heading p span {
    display: block;
}

.our-story__bottom-content .our-story__content-desc .desc .desc__list {
    margin-top: 19px;
}

.our-story__bottom-content .our-story__content-desc .desc .desc__list .desc-list__heading p {
    font-family: var(--fonts-card-desc);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    color: var(--fonts-light);
}

.our-story__bottom-content .our-story__content-desc .desc .desc__list .desc-list p {
    font-family: var(--fonts-card-desc);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    color: var(--fonts-light);
}

body.franchise-page .our-story__content-desc .desc .desc__detail {
    margin-top: 20px;
}

body.franchise-page .our-story__content-desc .desc .desc__detail p {
    font-family: var(--fonts-card-desc);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    color: var(--fonts-dark);
}

body.franchise-page .our-story__content-desc .desc .desc__detail li {
    font-family: var(--fonts-card-desc);
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0%;
    color: var(--fonts-dark);
    list-style-type: disc;
}

.our-story__bottom-content .our-story__content-desc .desc .desc__list .desc-list {
    margin-top: 18px;
    margin-left: 25px;
}

.our-story__bottom-content .our-story__content-desc .desc .desc__list .desc-list p span {
    font-weight: 700;
}

.our-story__bottom-content .our-story__content-desc .desc .desc__list .desc-list li {
    list-style-type: disc;
    color: var(--fonts-light);
}

.our-story__bottom-content .our-story__content-desc .desc .desc__list .desc-list li:not(:last-child) {
    margin-bottom: 2px;
}

.our-story__bottom-content .our-story__content-desc .order-btn {
    margin-top: 45px;
}

.our-story__bottom-content .our-story__content-desc .order-btn a {
    font-family: var(--font-button-secondery);
    font-weight: 400;
    font-size: 32px;
    line-height: 1;
    text-align: center;
    display: block;
    color: var(--fonts-light);
    background-color: var(--color-secondary-bg);
    max-width: 188px;
    width: 100%;
    padding: 18px 10px 12px;
    border-radius: 35px;
    border: none;
    outline: none;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.our-story__bottom-content .our-story__content-desc .order-btn a:hover {
    background-color: var(--color-bg-white);
    color: var(--fonts-yellow);
}

.our-story__bottom-content .our-story__sticker {
    max-width: 132px;
    width: 100%;
    position: absolute;
    top: -40px;
    right: -54px;
}

.our-story__bottom-content .our-story__sticker img {
    width: 100%;
    height: 100%;
    rotate: 9.1deg;
}

@media only screen and (max-width: 1728px) and (min-width: 992px) {
    .eq-our-story__section {
        box-shadow: 0.000vw 0.231vw 0.231vw 0.000vw #00000040;
        padding: 7.523vw 0.000vw 10.012vw;
        margin-top: -1.447vw;
    }

    .eq-our-story__section .our-story__top-content {
        gap: 10.706vw;
        padding-bottom: 6.076vw;
        border-bottom: 0.058vw solid #FFFFFF80;
    }

    .eq-our-story__section .our-story__top-content .our-story__media-wrapper {
        max-width: 32.986vw;
    }

    .eq-our-story__section .our-story__top-content .our-story__video,
    .eq-our-story__section .our-story__top-content .our-story__img {
        /* max-width: 32.986vw; */
        box-shadow: -1.157vw 1.157vw 0.000vw 0.000vw #0000000D;
        border-radius: 1.157vw;
        overflow: hidden;
    }

    .eq-our-story__section .our-story__top-content .our-story__content-desc .heading h3 {
        font-size: 5.556vw;
        margin-bottom: 2.315vw;
    }

    .our-story__top-content .our-story__content-desc .desc .desc__heading h5 {
        font-size: 1.852vw;
        margin-bottom: 1.447vw;
    }

    .our-story__top-content .our-story__content-desc .desc .desc__sub-heading p {
        font-size: 1.389vw;
    }

    .our-story__top-content .our-story__content-desc .desc .desc__detail {
        margin: 1.100vw 0.000vw;
    }

    .our-story__top-content .our-story__content-desc .desc .desc__detail p {
        font-size: 0.926vw;
    }

    .our-story__top-content .our-story__content-desc .desc .desc__detail p:not(:last-child) {
        margin-bottom: 1.389vw;
    }

    .our-story__top-content .our-story__content-desc .desc .desc__culture p {
        font-size: 0.926vw;
    }

    .our-story__top-content .our-story__content-desc .order-btn {
        margin-top: 2.604vw;
    }

    .our-story__top-content .our-story__content-desc .order-btn a {
        font-size: 1.852vw;
        max-width: 10.880vw;
        padding: 1.042vw 0.579vw 0.694vw;
        border-radius: 2.025vw;
    }

    .our-story__top-content .our-story__sticker {
        max-width: 7.639vw;
        top: -0.637vw;
        left: -3.472vw;
    }

    .eq-our-story__section .our-story__bottom-content {
        gap: 10.706vw;
        padding-top: 6.308vw;
    }

    .eq-our-story__section .our-story__bottom-content .our-story__media-wrapper {
        max-width: 32.986vw;
    }

    .eq-our-story__section .our-story__bottom-content .our-story__video,
    .eq-our-story__section .our-story__bottom-content .our-story__img {
        /* max-width: 32.986vw; */
        box-shadow: -1.157vw 1.157vw 0.000vw 0.000vw #0000000D;
        border-radius: 1.157vw;
        overflow: hidden;
    }

    .eq-our-story__section .our-story__bottom-content .our-story__content-desc .heading h3 {
        font-size: 5.556vw;
        margin-bottom: 2.315vw;
    }

    .our-story__bottom-content .our-story__content-desc .desc .desc__heading h5 {
        font-size: 1.852vw;
        margin-bottom: 1.447vw;
    }

    .our-story__bottom-content .our-story__content-desc .desc .desc__sub-heading p {
        font-size: 1.389vw;
    }

    .our-story__bottom-content .our-story__content-desc .desc .desc__list {
        margin-top: 1.100vw;
    }

    .our-story__bottom-content .our-story__content-desc .desc .desc__list .desc-list__heading p {
        font-size: 0.926vw;
    }

    .our-story__bottom-content .our-story__content-desc .desc .desc__list .desc-list p {
        font-size: 0.926vw;
    }

    .our-story__bottom-content .our-story__content-desc .desc .desc__list .desc-list {
        margin-top: 1.042vw;
        margin-left: 1.447vw;
    }

    .our-story__bottom-content .our-story__content-desc .desc .desc__list .desc-list li:not(:last-child) {
        margin-bottom: 0.116vw;
    }

    .our-story__bottom-content .our-story__content-desc .order-btn {
        margin-top: 2.604vw;
    }

    .our-story__bottom-content .our-story__content-desc .order-btn a {
        font-size: 1.852vw;
        max-width: 10.880vw;
        padding: 1.042vw 0.579vw 0.694vw;
        border-radius: 2.025vw;
    }

    .our-story__bottom-content .our-story__sticker {
        max-width: 7.639vw;
        top: -2.315vw;
        right: -3.125vw;
    }

    .our-story__content-desc .desc .desc__detail p {
        font-size: 0.926vw;
    }

    .our-story__content-desc .desc .desc__detail ul {
        margin-top: 1.042vw;
        margin-left: 1.447vw;
    }

    .our-story__content-desc .desc .desc__detail li {
        font-size: 0.926vw;
    }

    body.franchise-page .our-story__content-desc .desc .desc__detail {
        margin-top: 1.157vw;
    }

    body.franchise-page .our-story__content-desc .desc .desc__detail p {
        font-size: 0.926vw;
    }

    body.franchise-page .our-story__content-desc .desc .desc__detail li {
        font-size: 0.926vw;
    }
}

@media only screen and (max-width: 991px) {
    .eq-our-story__section {
        padding: 76px 0px 36px;
    }

    .eq-our-story__section .our-story__top-content {
        flex-direction: column;
        gap: 47px;
    }

    .eq-our-story__section .our-story__bottom-content {
        flex-direction: column;
        gap: 43px;
    }

    .eq-our-story__section .our-story__top-content .our-story__media-wrapper,
    .eq-our-story__section .our-story__bottom-content .our-story__media-wrapper {
        max-width: 100%;
    }

    .eq-our-story__section .our-story__top-content .our-story__video,
    .eq-our-story__section .our-story__top-content .our-story__img,
    .eq-our-story__section .our-story__bottom-content .our-story__video,
    .eq-our-story__section .our-story__bottom-content .our-story__img {
        padding-bottom: 80%;
    }

    .eq-our-story__section .our-story__top-content {
        padding-bottom: 40px;
    }

    .eq-our-story__section .our-story__bottom-content {
        padding-top: 47px;
    }

    .our-story__top-content .our-story__sticker,
    .our-story__bottom-content .our-story__sticker {
        left: auto !important;
        right: -8px !important;
        top: -35px;
    }

    .our-story__bottom-content .our-story__sticker img {
        rotate: -9.1deg;
    }

    .eq-our-story__section .our-story__bottom-content .our-story__media-wrapper {
        order: 2;
    }

    .our-story__top-content .our-story__content-desc .order-btn a,
    .our-story__bottom-content .our-story__content-desc .order-btn a {
        font-size: 28px;
        max-width: 150px;
        padding: 14px 10px 8px;
    }
}

@media only screen and (max-width: 767px) {
    .eq-our-story__section .our-story__top-content .our-story__content-desc .heading h3 {
        font-size: 48px;
        /* font-family: var(--fonts-mobile-drawer); */
        margin-bottom: 22px;
    }

    .our-story__top-content .our-story__content-desc .desc .desc__heading h5 {
        margin-bottom: 21px !important;
        font-size: 20px;
    }

    .our-story__top-content .our-story__content-desc .desc .desc__sub-heading p {
        font-size: 20px;
        /* font-family: var(--fonts-desc); */
        font-family: var(--fonts-card-desc);
    }

    .our-story__top-content .our-story__content-desc .desc .desc__detail {
        margin: 26px 0px 21px;
    }

    .our-story__top-content .our-story__content-desc .order-btn {
        margin-top: 28px;
    }

    .our-story__top-content .our-story__content-desc .order-btn a {
        font-size: 20px;
        max-width: 136px;
        padding: 13px 10px;
    }

    .eq-our-story__section .our-story__top-content .our-story__video,
    .eq-our-story__section .our-story__top-content .our-story__img,
    .eq-our-story__section .our-story__bottom-content .our-story__video,
    .eq-our-story__section .our-story__bottom-content .our-story__img {
        padding-bottom: 114.5%;
    }

    .eq-our-story__section .our-story__bottom-content .our-story__content-desc .heading h3 {
        font-size: 48px;
        /* font-family: var(--fonts-mobile-drawer); */
        margin-bottom: 25px;
        max-width: 257px;
        width: 100%;
    }

    .our-story__bottom-content .our-story__content-desc .desc .desc__heading h5 {
        font-size: 20px;
        margin-bottom: 23px;
    }

    .our-story__bottom-content .our-story__content-desc .desc .desc__sub-heading p {
        font-size: 16px;
    }

    body.franchise-page .our-story__bottom-content .our-story__content-desc .desc .desc__sub-heading p {
        font-size: 20px;
    }

    .our-story__bottom-content .our-story__content-desc .desc .desc__sub-heading p span {
        margin-top: 21px;
    }

    .our-story__bottom-content .our-story__content-desc .desc .desc__list {
        margin-top: 21px;
    }

    .our-story__bottom-content .our-story__content-desc .desc .desc__list .desc-list {
        margin-top: 20px;
    }

    .our-story__bottom-content .our-story__content-desc .order-btn {
        margin-top: 24px;
    }

    .our-story__bottom-content .our-story__content-desc .order-btn a {
        font-size: 20px;
        max-width: 136px;
        padding: 13px 10px;
    }

}

@media only screen and (max-width: 390px) {

    .our-story__top-content .our-story__sticker,
    .our-story__bottom-content .our-story__sticker {
        max-width: 90px;
    }
}

/* About Us Page Our Story Section End Here*/

/* About Us Page better life Section Start Here*/

.eq-better-life__section {
    padding: 290px 0px 264px;
    background-color: var(--color-secondary-bg);
    position: relative;
    overflow: hidden;
}

.eq-better-life__section .better-life__main-wrapper .better-life__text-content h2 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 128px;
    line-height: 0.9;
    text-align: center;
    text-transform: uppercase;
    color: var(--fonts-light);
}

.eq-better-life__section .better-life__main-wrapper .better-life__text-content h2 span {
    color: var(--fonts-red);
}

.better-life__main-wrapper .better-life__text-content h2 span:first-child {
    display: inline-block;
}

.better-life__main-wrapper .better-life__text-content h2 span span {
    color: var(--fonts-red);
}

@keyframes float {
    0% {
        /* box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6); */
        transform: translatex(0px);
        -webkit-transform: translatex(0px);
        -moz-transform: translatex(0px);
        -ms-transform: translatex(0px);
        -o-transform: translatex(0px);
    }

    50% {
        /* box-shadow: 0 25px 15px 0px rgba(0,0,0,0.2); */
        transform: translatex(-20px);
        -webkit-transform: translatex(-20px);
        -moz-transform: translatex(-20px);
        -ms-transform: translatex(-20px);
        -o-transform: translatex(-20px);
    }

    100% {
        /* box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6); */
        transform: translatex(0px);
        -webkit-transform: translatex(0px);
        -moz-transform: translatex(0px);
        -ms-transform: translatex(0px);
        -o-transform: translatex(0px);
    }
}

.better-life__main-wrapper .better-life__img-main-wrapper .better-life__top-left-img {
    position: relative;
    padding-bottom: 9.4%;
    max-width: 211px;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: -20px 20px 0px 0px #0000000D;
    position: absolute;
    top: 141px;
    left: 208px;
    animation: float 6s ease-in-out infinite;
}

.better-life__main-wrapper .better-life__img-main-wrapper .better-life__top-right-img {
    position: relative;
    padding-bottom: 17.25%;
    max-width: 259px;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: -20px 20px 0px 0px #0000000D;
    position: absolute;
    top: 48px;
    right: 154px;
    animation: float 6s ease-in-out infinite;
}

.better-life__main-wrapper .better-life__img-main-wrapper .better-life__bottom-left-img {
    position: relative;
    padding-bottom: 10.77%;
    max-width: 339px;
    width: 100%;
    border-radius: 20px;
    box-shadow: -20px 20px 0px 0px #0000000D;
    position: absolute;
    bottom: 48px;
    left: -20px;
    animation: float 6s ease-in-out infinite;
}

.better-life__main-wrapper .better-life__img-main-wrapper .better-life__bottom-left-img img {
    border-radius: 20px;
    overflow: hidden;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.better-life__img-main-wrapper .better-life__bottom-left-img .better-life__sticker {
    max-width: 113px;
    width: 100%;
    position: absolute;
    padding-bottom: 113px;
    top: 45px;
    right: -81px;
}

.better-life__main-wrapper .better-life__img-main-wrapper .better-life__bottom-right-img {
    position: relative;
    padding-bottom: 10.83%;
    max-width: 289px;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: -20px 20px 0px 0px #0000000D;
    position: absolute;
    bottom: 48px;
    right: -35px;
    animation: float 6s ease-in-out infinite;
}

.better-life__main-wrapper .better-life__img-main-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 1728px) and (min-width: 992px) {
    .eq-better-life__section {
        padding: 16.782vw 0.000vw 15.278vw;
    }

    .eq-better-life__section .better-life__main-wrapper .better-life__text-content h2 {
        font-size: 7.407vw;
    }

    .better-life__main-wrapper .better-life__img-main-wrapper .better-life__top-left-img {
        max-width: 12.211vw;
        border-radius: 1.157vw;
        box-shadow: -1.157vw 1.157vw 0.000vw 0.000vw #0000000D;
        top: 8.160vw;
        left: 12.037vw;
    }

    .better-life__main-wrapper .better-life__img-main-wrapper .better-life__top-right-img {
        max-width: 14.988vw;
        border-radius: 1.157vw;
        box-shadow: -1.157vw 1.157vw 0.000vw 0.000vw #0000000D;
        top: 2.778vw;
        right: 8.912vw;
    }

    .better-life__main-wrapper .better-life__img-main-wrapper .better-life__bottom-left-img {
        max-width: 19.618vw;
        border-radius: 1.157vw;
        box-shadow: -1.157vw 1.157vw 0.000vw 0.000vw #0000000D;
        bottom: 2.778vw;
        left: -1.157vw;
    }

    .better-life__main-wrapper .better-life__img-main-wrapper .better-life__bottom-left-img img {
        border-radius: 1.157vw;
    }

    .better-life__img-main-wrapper .better-life__bottom-left-img .better-life__sticker {
        max-width: 6.539vw;
        padding-bottom: 6.539vw;
        top: 2.604vw;
        right: -4.688vw;
    }

    .better-life__main-wrapper .better-life__img-main-wrapper .better-life__bottom-right-img {
        max-width: 16.725vw;
        border-radius: 1.157vw;
        box-shadow: -1.157vw 1.157vw 0.000vw 0.000vw #0000000D;
        bottom: 2.778vw;
        right: -2.025vw;
    }
}

@media only screen and (max-width: 991px) {
    .eq-better-life__section .better-life__main-wrapper .better-life__text-content h2 {
        font-size: 96px;
        max-width: 50%;
        width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .better-life__main-wrapper .better-life__img-main-wrapper .better-life__top-left-img {
        /* box-shadow: none; */
        top: 32px;
        left: -36px;
        padding-bottom: 21.1%;
        /* animation: none;
        -webkit-animation: none; */
    }

    .better-life__main-wrapper .better-life__img-main-wrapper .better-life__top-right-img {
        /* box-shadow: none; */
        top: 168px;
        right: -126px;
        max-width: 224px;
        padding-bottom: 20.6%;
        /* animation: none;
        -webkit-animation: none; */
    }

    .better-life__main-wrapper .better-life__img-main-wrapper .better-life__bottom-left-img {
        /* box-shadow: none; */
        bottom: 66px;
        left: -87px;
        max-width: 224px;
        padding-bottom: 20.47%;
        /* animation: none;
        -webkit-animation: none; */
    }

    .better-life__main-wrapper .better-life__img-main-wrapper .better-life__bottom-right-img {
        /* box-shadow: none; */
        bottom: 0px;
        right: -67px;
        max-width: 259px;
        padding-bottom: 23.57%;
        /* animation: none;
        -webkit-animation: none; */
    }

    .better-life__img-main-wrapper .better-life__bottom-left-img .better-life__sticker {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .eq-better-life__section {
        padding: 247px 0px;
    }

    .eq-better-life__section .better-life__main-wrapper .better-life__text-content h2 {
        font-size: 64px;
        max-width: 285px;
        width: 100%;
        margin: 0 auto;
    }

    .better-life__main-wrapper .better-life__img-main-wrapper .better-life__top-left-img {
        padding-bottom: 36.82%;
    }

    .better-life__main-wrapper .better-life__img-main-wrapper .better-life__top-right-img {
        padding-bottom: 35.7%;
    }

    .better-life__main-wrapper .better-life__img-main-wrapper .better-life__bottom-left-img {
        padding-bottom: 35.7%;
    }

    .better-life__main-wrapper .better-life__img-main-wrapper .better-life__bottom-right-img {
        padding-bottom: 41.14%;
    }
}

@media only screen and (max-width: 400px) {
    .better-life__main-wrapper .better-life__img-main-wrapper .better-life__top-right-img {
        right: -170px;
    }

    .better-life__main-wrapper .better-life__img-main-wrapper .better-life__bottom-right-img {
        right: -110px;
    }
}

/* About Us Page better life Section End Here*/

/* About Us Page Through Year Section Start Here*/

.eq-through-year__section {
    padding: 96px 0px 110px;
    overflow: hidden;
    background-color: var(--color-body-bg);
}

.eq-through-year__section .through-year__main-wrapper .through-year__heading h2 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 128px;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--fonts-red);
    text-align: center;
}

.through-year__main-wrapper .through-year__slider-wrapper {
    max-width: 1539px;
    width: 100%;
    margin: 0 auto;
}

.through-year__main-wrapper .through-year__slider {
    margin-bottom: 44px !important;
}

.through-year__main-wrapper .through-year__slider .slider-card .slider-card__wrapper {
    background-color: var(--color-dark-bg-200);
    padding: 28px 25px;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

/* .through-year__slider .slider-card {
  max-width: 490px;
  width: 100% !important;
}

.through-year__slider .slider-card:not(:last-child) {
  margin-right: 30px;
} */

.through-year__slider .slider-card .slider-card__wrapper .slider-card__top-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 44px;
}

.through-year__slider .slider-card__top-wrapper .slider-card__media-wrapper {
    max-width: 119px;
    width: 100%;
    border-radius: 120px;
    overflow: hidden;
    -webkit-border-radius: 120px;
    -moz-border-radius: 120px;
    -ms-border-radius: 120px;
    -o-border-radius: 120px;
}

.through-year__slider .slider-card__top-wrapper .slider-card__media-wrapper .img-wrapper {
    position: relative;
    padding-bottom: 100%;
    width: 100%;
}

.through-year__slider .slider-card__top-wrapper .slider-card__media-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.through-year__slider .slider-card__top-wrapper h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 48px;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--fonts-red);
}

.through-year__slider .slider-card__wrapper .slider-card__heading h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 96px;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--fonts-yellow);
    margin-bottom: 37px;
}

.through-year__slider .slider-card__wrapper .slider-card__heading span {
    display: block;
}

.through-year__slider .slider-card__wrapper .slider-card__sub-heading p {
    font-family: var(--fonts-desc);
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    color: var(--fonts-light);
    margin-bottom: 35px;
}

.through-year__slider .slider-card__wrapper .slider-card__description {
    min-height: 111px;
}

.through-year__slider .slider-card__wrapper .slider-card__description p {
    font-family: var(--fonts-card-desc);
    font-weight: 400;
    font-size: 20px;
    line-height: 1.2;
    color: var(--fonts-light);
}

.through-year__slider-wrapper .through-year__slider-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.through-year__slider-wrapper .through-year__slider-btns a.prev-btn,
.through-year__slider-wrapper .through-year__slider-btns a.next-btn {
    width: 32px;
    height: 32px;
    background-color: var(--color-primary-bg);
    border: 1px solid transparent;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 35px;
    transition: all 0.3s ease-in-out;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    -o-border-radius: 35px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.through-year__slider-wrapper .through-year__slider-btns a:hover {
    border-color: var(--color-primary-bg);
    background-color: transparent;
}

.through-year__slider-wrapper .through-year__slider-btns a:hover svg path {
    fill: var(--color-primary-bg);
}

.through-year__slider-wrapper .through-year__slider-btns a svg {
    max-width: 13px;
    width: 100%;
    height: 12px;
}

.through-year__slider-wrapper .slick-dots {
    position: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5.5px;
}

.through-year__slider-wrapper .slick-dots li {
    margin: 0;
    width: auto;
    height: auto;
}

.through-year__slider-wrapper .slick-dots li {
    font-size: 10px;
    line-height: 0.4;
}

.through-year__slider-wrapper .slick-dots li button {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 50%;
    background-color: #22222240;
    font-size: 0px;
    border: none;
    opacity: 1;
    transition: all 0.3s ease;
}

.through-year__slider-wrapper .slick-dots li button::before {
    display: none;
}

.through-year__slider-wrapper .slick-dots li.slick-active button {
    width: 36px;
    height: 10px;
    border-radius: 14px;
    background-color: var(--color-dark-bg-200);
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    -ms-border-radius: 14px;
    -o-border-radius: 14px;
}

.through-year__slider-wrapper .slider-card {
    padding: 0px 16px;
}

.through-year__slider-wrapper .through-year__slider .slick-list {
    margin: 0 -16px;
    overflow: visible;
}

.through-year__main-wrapper .through-year__slider-timeline {
    position: relative;
    width: 100%;
    height: 36px;
    margin: 60px 0px 56px;
}

.through-year__main-wrapper .through-year__slider-timeline .timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-primary-bg);
    transform: translateY(-50%);
    border-radius: 2px;
}

.through-year__main-wrapper .through-year__slider-timeline .timeline-dots {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 106px;
    margin-right: 70px;
    height: 36px;
    max-width: 1539px;
    width: 100%;
    margin: 0 auto;
}

.through-year__main-wrapper .through-year__slider-timeline .timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--color-primary-bg);
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    transition: transform 0.4s ease-in-out;
    -webkit-transition: transform 0.4s ease-in-out;
    -moz-transition: transform 0.4s ease-in-out;
    -ms-transition: transform 0.4s ease-in-out;
    -o-transition: transform 0.4s ease-in-out;
}

.through-year__main-wrapper .through-year__slider-timeline .timeline-dot.active {
    background: var(--color-primary-bg);
    width: 36px;
    height: 36px;
}

@media only screen and (max-width: 1728px) and (min-width: 992px) {
    .eq-through-year__section {
        padding: 5.556vw 0.000vw 6.366vw;
    }

    .eq-through-year__section .through-year__main-wrapper .through-year__heading h2 {
        font-size: 7.407vw;
    }

    .through-year__main-wrapper .through-year__slider-wrapper {
        max-width: 89.063vw;
    }

    .through-year__main-wrapper .through-year__slider {
        margin-bottom: 2.546vw !important;
    }

    .through-year__main-wrapper .through-year__slider .slider-card .slider-card__wrapper {
        padding: 1.620vw 1.447vw;
        border-radius: 1.447vw;
        -webkit-border-radius: 1.447vw;
        -moz-border-radius: 1.447vw;
        -ms-border-radius: 1.447vw;
        -o-border-radius: 1.447vw;
    }

    /* .through-year__slider .slider-card {
    max-width: 28.356vw;
    width: 100% !important;
  }

  .through-year__slider .slider-card:not(:last-child) {
    margin-right: 1.736vw;
  } */

    .through-year__slider .slider-card .slider-card__wrapper .slider-card__top-wrapper {
        margin-bottom: 2.546vw;
    }

    .through-year__slider .slider-card__top-wrapper .slider-card__media-wrapper {
        max-width: 6.887vw;
        border-radius: 6.944vw;
    }

    .through-year__slider .slider-card__top-wrapper h4 {
        font-size: 2.778vw;
    }

    .through-year__slider .slider-card__wrapper .slider-card__heading h3 {
        font-size: 5.556vw;
        margin-bottom: 2.141vw;
    }

    .through-year__slider .slider-card__wrapper .slider-card__sub-heading p {
        font-size: 1.852vw;
        margin-bottom: 2.025vw;
    }

    .through-year__slider .slider-card__wrapper .slider-card__description {
        min-height: 6.424vw;
    }

    .through-year__slider .slider-card__wrapper .slider-card__description p {
        font-size: 1.157vw;
    }

    .through-year__slider-wrapper .through-year__slider-btns {
        gap: 0.868vw;
    }

    .through-year__slider-wrapper .through-year__slider-btns a.prev-btn,
    .through-year__slider-wrapper .through-year__slider-btns a.next-btn {
        width: 1.852vw;
        height: 1.852vw;
        border-radius: 2.025vw;
    }

    .through-year__slider-wrapper .through-year__slider-btns a svg {
        max-width: 0.752vw;
        height: 0.694vw;
    }

    .through-year__slider-wrapper .slick-dots {
        gap: 0.318vw;
    }

    .through-year__slider-wrapper .slick-dots li button {
        width: 0.579vw;
        height: 0.579vw;
    }

    .through-year__slider-wrapper .slick-dots li.slick-active button {
        width: 2.083vw;
        height: 0.579vw;
        border-radius: 0.810vw;
    }

    .through-year__slider-wrapper .slider-card {
        padding: 0.000vw 0.926vw;
    }

    .through-year__slider-wrapper .through-year__slider .slick-list {
        margin: 0 -0.926vw;
    }

    .through-year__main-wrapper .through-year__slider-timeline {
        height: 2.083vw;
        margin: 3.472vw 0.000vw 3.241vw;
    }

    .through-year__main-wrapper .through-year__slider-timeline .timeline-line {
        height: 0.116vw;
        border-radius: 0.116vw;
    }

    .through-year__main-wrapper .through-year__slider-timeline .timeline-dots {
        margin-left: 6.134vw;
        margin-right: 4.051vw;
        height: 2.083vw;
        max-width: 89.063vw;
    }

    .through-year__main-wrapper .through-year__slider-timeline .timeline-dot {
        width: 1.157vw;
        height: 1.157vw;
    }

    .through-year__main-wrapper .through-year__slider-timeline .timeline-dot.active {
        width: 2.083vw;
        height: 2.083vw;
    }
}

@media only screen and (max-width: 991px) {
    .eq-through-year__section {
        padding: 41px 0px 54px;
    }

    .eq-through-year__section .through-year__main-wrapper .through-year__heading {
        padding: 0px 20px;
    }

    .eq-through-year__section .through-year__main-wrapper .through-year__heading h2 {
        font-size: 96px;
        text-align: left;
    }

    .through-year__main-wrapper .through-year__slider-timeline {
        margin: 45px 0px 26px;
    }

    .through-year__slider .slider-card__wrapper .slider-card__heading h3 {
        font-size: 64px;
    }

    .through-year__slider-wrapper .through-year__slider-btns {
        justify-content: start;
    }

    .through-year__slider-wrapper .through-year__slider-btns .slick-cus-dots {
        display: none;
    }

    .through-year__slider-wrapper .through-year__slider-btns a.prev-btn,
    .through-year__slider-wrapper .through-year__slider-btns a.next-btn {
        width: 42px;
        height: 42px;
    }

    .through-year__slider-wrapper .through-year__slider-btns a svg {
        max-width: 18px;
        width: 100%;
        height: 18px;
    }

    .through-year__main-wrapper .through-year__slider-timeline .timeline-dots {
        margin-left: 20px;
        width: 30px;
        /*display: flex;
    */
        gap: 345px;
        /*overflow: hidden;
    */
        transition: transform 1s ease-in-out;
        -webkit-transition: transform 0.s ease;
        -moz-transition: transform 0.s ease;
        -ms-transition: transform 0.s ease;
        -o-transition: transform 0.s ease;
    }

    .through-year__main-wrapper .through-year__slider-timeline .timeline-dot.active,
    .through-year__main-wrapper .through-year__slider-timeline .timeline-dot {
        width: 30px;
        height: 30px;
        flex-shrink: 0;
    }
}

@media only screen and (max-width: 767px) {
    .eq-through-year__section .through-year__main-wrapper .through-year__heading h2 {
        font-size: 48px;
        /* font-family: var(--fonts-mobile-drawer); */
        max-width: 315px;
        width: 100%;
    }

    .through-year__main-wrapper .through-year__slider {
        margin-bottom: 32px !important;
    }

    .through-year__main-wrapper .through-year__slider-timeline .timeline-dots {
        gap: 390px;
    }

    .through-year__main-wrapper .through-year__slider .slider-card .slider-card__wrapper {
        padding: 28px 25px 23px;
    }

    .through-year__slider .slider-card .slider-card__wrapper .slider-card__top-wrapper {
        margin-bottom: 120px;
    }

    .through-year__slider .slider-card__top-wrapper .slider-card__media-wrapper {
        display: none;
    }

    .through-year__slider .slider-card__wrapper .slider-card__heading h3 {
        margin-bottom: 32px;
    }

    .through-year__slider-wrapper .through-year__slider-btns {
        gap: 7px;
    }
}


/* About Us Page Through Year Section End Here*/

body.about-us-page .eq-video-section {
    margin-bottom: -25px;
    z-index: 0;
    position: relative;
}

body.about-us-page .eq-footer__section .eq-footer__section-wrapper {
    z-index: 1;
    position: relative;
}

body.about-us-page .our-team__section {
    padding-top: 0px;
}

@media only screen and (max-width: 1728px) and (min-width: 992px) {
    body.about-us-page .eq-video-section {
        margin-bottom: -1.447vw;
    }
}

@media only screen and (max-width: 991px) {
    body.about-us-page .our-team__section .out-team__main-wrapper {
        padding-bottom: 0px;
        border-bottom: 0px;
    }

    body.about-us-page .our-team__section {
        padding-bottom: 43px;
    }

    body.about-us-page .eq-download-app__section .download-app__wrapper {
        background-color: var(--color-primary-bg);
    }

    body.about-us-page .download-app__wrapper .download-app__content .download-app__heading h2,
    body.about-us-page .download-app__wrapper .download-app__content .download-app__desc p,
    body.about-us-page .download-app__wrapper .download-app__content .download-app__subtitle p:last-child {
        color: var(--fonts-light);
    }

    body.about-us-page .download-app__wrapper .download-app__content .download-app__qr-code a {
        background-color: var(--color-bg-white);
        padding: 11px;
    }

    body.about-us-page .download-app__wrapper .download-app__content .download-app__qr-code .qr-code__wrapper {
        padding: 0px;
    }

    body.about-us-page .download-app__content .download-app__qr-code .qr-text p {
        color: var(--fonts-red);
    }

    body.about-us-page .eq-download-app__section {
        padding-bottom: 44px;
    }

    body.about-us-page .eq-video-section .video-section__bottom-btn {
        bottom: 40px;
    }

    body.about-us-page .eq-follow-us-section {
        padding-bottom: 47px;
    }
}

@media only screen and (max-width: 767px) {
    body.about-us-page .eq-video-section .video__wrapper {
        padding-bottom: 153%;
    }

    body.about-us-page .eq-video-section .video-section__bottom-btn {
        bottom: 43px;
    }

    body.about-us-page .out-team__main-wrapper .out-team__content {
        top: calc(50% - 36px);
    }
}

/* About Us page CSS End Here*/

/* News page CSS Start Here*/

/* News page Banner Section CSS Start Here*/

.eq-news-page__banner-section {
    padding: 304px 0px 137px;
    background-color: var(--color-primary-bg);
    position: relative;
    margin-top: -90px;
    border-radius: 0px 0px 25px 25px;
    -webkit-border-radius: 0px 0px 25px 25px;
    -moz-border-radius: 0px 0px 25px 25px;
    -ms-border-radius: 0px 0px 25px 25px;
    -o-border-radius: 0px 0px 25px 25px;
}

.eq-news-page__banner-section .banner-section__heading h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 24px;
    line-height: 0.85;
    text-transform: uppercase;
    color: var(--fonts-light);
}

.eq-news-page__banner-section .banner-section__heading h1 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 188px;
    line-height: 0.85;
    text-transform: uppercase;
    color: var(--fonts-light);
    margin-top: 12px;
}

.eq-news-page__banner-section .banner-section__heading h1 span {
    display: block;
}

.eq-news-page__banner-section .banner__sort-by {
    padding: 15px 20px;
    min-width: 352px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    width: fit-content;
    background-color: var(--color-secondary-bg);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -47px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.eq-news-page__banner-section .banner__sort-by p {
    font-family: var(--font-button);
    font-weight: 400;
    font-size: 24px;
    line-height: 1;
    color: var(--fonts-black);
}

.eq-news-page__banner-section .banner__sort-by .sort-by__btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.eq-news-page__banner-section .banner__sort-by .sort-by__btns a {
    font-family: var(--font-button-secondery);
    font-weight: 400;
    font-size: 24px;
    line-height: 1;
    text-align: center;
    width: 100%;
    border: 1px solid var(--color-dark-bg-200);
    outline: none;
    color: var(--fonts-dark);
    padding: 19px 14px;
    background-color: transparent;
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    min-width: 94px;
}

.eq-news-page__banner-section .banner__sort-by .sort-by__btns a:first-child {
    max-width: 94px;
}

.eq-news-page__banner-section .banner__sort-by .sort-by__btns a.active {
    background-color: var(--color-dark-bg-200);
    color: var(--fonts-light);
}

.eq-news-page__banner-section .banner__sort-by .sort-by__btns a.active:hover {
    background-color: var(--color-body-bg);
    border-color: var(--color-body-bg);
    color: var(--fonts-dark);
}

/* .eq-news-page__banner-section .banner__sort-by .sort-by__btns a.active {
    background-color: var(--fonts-light-200) !important;
    border: 1px solid var(--fonts-light-200) !important;
    color: var(--color-dark-bg-200) !important;
} */

/* .eq-news-page__banner-section .banner__sort-by .sort-by__btns a:last-child {
    font-family: var(--font-button-secondery);
    font-weight: 400;
    font-size: 24px;
    line-height: 1;
    text-align: center;
    border: 1px solid var(--color-black-bg);
    width: 100%;
    padding: 19px 10px;
    outline: none;
    color: var(--fonts-dark);
    background-color: transparent;
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
} */

.eq-news-page__banner-section .banner__sort-by .sort-by__btns a:last-child {
    min-width: 128px;
}

.eq-news-page__banner-section .banner__sort-by .sort-by__btns a:hover {
    background-color: var(--color-dark-bg-200);
    color: var(--fonts-light-200);
}

@media only screen and (max-width: 1728px) and (min-width: 992px) {
    .eq-news-page__banner-section {
        padding: 17.593vw 0.000vw 7.928vw;
        margin-top: -5.208vw;
        border-radius: 0.000vw 0.000vw 1.447vw 1.447vw;
    }

    .eq-news-page__banner-section .banner-section__heading h4 {
        font-size: 1.389vw;
    }

    .eq-news-page__banner-section .banner-section__heading h1 {
        font-size: 10.880vw;
        margin-top: 0.694vw;
    }

    .eq-news-page__banner-section .banner__sort-by {
        padding: 0.868vw 1.157vw;
        min-width: 20.370vw;
        gap: 1.273vw;
        bottom: -2.720vw;
        border-radius: 1.157vw;
        -webkit-border-radius: 1.157vw;
        -moz-border-radius: 1.157vw;
        -ms-border-radius: 1.157vw;
        -o-border-radius: 1.157vw;
    }

    .eq-news-page__banner-section .banner__sort-by p {
        font-size: 1.389vw;
    }

    .eq-news-page__banner-section .banner__sort-by .sort-by__btns {
        gap: 0.463vw;
    }

    .eq-news-page__banner-section .banner__sort-by .sort-by__btns a:first-child {
        font-size: 1.389vw;
        border: 0.058vw solid var(--color-dark-bg-200);
        padding: 1.100vw 0.810vw;
        border-radius: 0.579vw;
        min-width: 5.44vw;
    }

    .eq-news-page__banner-section .banner__sort-by .sort-by__btns a:first-child {
        max-width: 5.440vw;
    }

    .eq-news-page__banner-section .banner__sort-by .sort-by__btns a:last-child {
        font-size: 1.389vw;
        border: 0.058vw solid var(--color-black-bg);
        padding: 1.100vw 0.579vw;
        border-radius: 0.579vw;
    }

    .eq-news-page__banner-section .banner__sort-by .sort-by__btns a:last-child {
        min-width: 7.407vw;
    }
}

@media only screen and (max-width: 991px) {
    .eq-news-page__banner-section .banner-section__heading h1 {
        font-size: 96px;
    }
}

@media only screen and (max-width: 767px) {
    .eq-news-page__banner-section {
        padding: 213px 0px 91px;
    }

    .eq-news-page__banner-section .banner-section__heading h1 {
        font-size: 64px;
        max-width: 325px;
        width: 100%;
        margin-top: 24px;
    }

    .eq-news-page__banner-section .banner__sort-by {
        padding: 12px 15px;
        width: max-content;
        bottom: -37px;
        min-width: 290px;
        gap: 18px;
    }

    .eq-news-page__banner-section .banner__sort-by p {
        font-size: 20px;
    }

    .eq-news-page__banner-section .banner__sort-by .sort-by__btns a:first-child {
        font-size: 20px;
        padding: 15px 13px;
        /* max-width: 78px; */
        min-width: 78px;
    }

    .eq-news-page__banner-section .banner__sort-by .sort-by__btns a:last-child {
        font-size: 20px;
        padding: 15px 10px;
        min-width: 106PX;
    }
}

/* News page Banner Section CSS End Here*/

/* News page News List Section CSS Start Here*/

.eq-news-list-section {
    padding: 135px 0px 36px;
    background-color: var(--color-body-bg);
}

.eq-news-list-section .news-list__main-wrapper .single-news__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 25px;
    background-color: #D8D8D85E;
    overflow: hidden;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.news-list__main-wrapper .single-news__wrapper .single-news__media-wrapper {
    max-width: 50.8%;
    width: 100%;
}

.news-list__main-wrapper .single-news__wrapper .single-news__content-wrapper {
    max-width: 49%;
    width: 100%;
}

.single-news__wrapper .single-news__media-wrapper .img-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 79.5%;
}

.single-news__wrapper .single-news__media-wrapper .img-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-list__main-wrapper .single-news__wrapper .single-news__content-wrapper {
    /* padding: 32px 47px 38px 43px; */
    padding-right: 47px;
    padding-left: 43px;
}

.single-news__wrapper .single-news__content-wrapper .single-news__written-by p {
    font-family: var(--fonts-card-desc);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    color: #00000080;
}

.single-news__wrapper .single-news__content-wrapper .single-news__written-by p span {
    display: block;
}

.single-news__wrapper .single-news__content-wrapper .single-news__heading h3 {
    font-family: var(--font-button);
    font-weight: 400;
    font-size: 64px;
    line-height: 1.05;
    color: var(--fonts-red);
    margin-top: 68px;
}

.single-news__wrapper .single-news__content-wrapper .single-news__description p {
    font-family: var(--fonts-card-desc);
    font-weight: 400;
    font-size: 24px;
    margin-top: 34px;
    line-height: 1.3;
    color: var(--fonts-black);
}

.single-news__wrapper .single-news__content-wrapper .single-news__read-artical-btn {
    margin-top: 35px;
}

.single-news__wrapper .single-news__content-wrapper .single-news__read-artical-btn a {
    font-family: var(--font-button-secondery);
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    min-width: 127px;
    padding: 9px 19px 5px;
    width: fit-content;
    display: block;
    border-radius: 40px;
    text-align: center;
    color: var(--fonts-light);
    background-color: var(--color-primary-bg);
    border: 1px solid transparent;
    transition: all 0.3s ease-in-out;
    outline: none;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.single-news__wrapper .single-news__content-wrapper .single-news__read-artical-btn a:hover {
    border-color: var(--color-primary-bg);
    background-color: transparent;
    color: var(--fonts-red);
}

.news-list__main-wrapper .news-list__all-news-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 64px;
}

.news-list__main-wrapper .news-list__all-news-list .news__wrapper {
    display: flex;
    flex-direction: column;
    border-radius: 25px;
    background-color: #D8D8D85E;
    overflow: hidden;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.news-list__all-news-list .news__media-wrapper {
    max-width: 100%;
    /* max-width: 476px; */
    width: 100%;
}

.news-list__all-news-list .news__media-wrapper .img-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 73.55%;
    overflow: hidden;
}

.news-list__all-news-list .news__media-wrapper .img-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    scale: 1.12;

}

.news-list__all-news-list .news__content-wrapper {
    padding: 46px 26px 25px;
}

.news-list__all-news-list .news__heading h3 {
    font-family: var(--font-button);
    font-weight: 400;
    font-size: 32px;
    line-height: 1.05;
    color: var(--fonts-red);
    margin-bottom: 8px;
}

.news-list__all-news-list .news__description p {
    font-family: var(--fonts-card-desc);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    color: var(--fonts-black);
    margin-bottom: 21px;
}

.news-list__all-news-list .news__read-artical-btn a {
    font-family: var(--font-button-secondery);
    display: block;
    width: fit-content;
    font-weight: 400;
    min-width: 118px;
    padding: 8px 14px 6px;
    font-size: 21px;
    line-height: 1;
    text-align: center;
    color: var(--fonts-light);
    border: 1px solid transparent;
    background-color: var(--color-primary-bg);
    transition: all 0.3s ease-in-out;
    border-radius: 20px;
}

.news-list__all-news-list .news__read-artical-btn a:hover {
    background-color: transparent;
    color: var(--fonts-red);
    border-color: var(--color-primary-bg);
}

@media only screen and (max-width: 1728px) and (min-width: 992px) {
    .eq-news-list-section {
        padding: 7.813vw 0.000vw 2.083vw;
    }

    .eq-news-list-section .news-list__main-wrapper .single-news__wrapper {
        border-radius: 1.447vw;
    }

    .news-list__main-wrapper .single-news__wrapper .single-news__content-wrapper {
        /* padding: 1.852vw 2.720vw 2.199vw 2.488vw; */
        padding-right: 2.720vw;
        padding-left: 2.488vw;
    }

    .single-news__wrapper .single-news__content-wrapper .single-news__written-by p {
        font-size: 0.926vw;
    }

    .single-news__wrapper .single-news__content-wrapper .single-news__heading h3 {
        font-size: 3.704vw;
        margin-top: 3.935vw;
    }

    .single-news__wrapper .single-news__content-wrapper .single-news__description p {
        font-size: 1.389vw;
        margin-top: 1.968vw;
    }

    .single-news__wrapper .single-news__content-wrapper .single-news__read-artical-btn {
        margin-top: 2.025vw;
    }

    .single-news__wrapper .single-news__content-wrapper .single-news__read-artical-btn a {
        font-size: 1.157vw;
        min-width: 7.350vw;
        padding: 0.521vw 1.100vw 0.289vw;
        border-radius: 2.315vw;
        border: 0.058vw solid transparent;
    }

    .news-list__main-wrapper .news-list__all-news-list {
        gap: 2.315vw;
        margin-top: 3.704vw;
    }

    .news-list__main-wrapper .news-list__all-news-list .news__wrapper {
        border-radius: 1.447vw;
    }

    .news-list__all-news-list .news__content-wrapper {
        padding: 2.662vw 1.505vw 1.447vw;
    }

    .news-list__all-news-list .news__heading h3 {
        font-size: 1.852vw;
        margin-bottom: 0.463vw;
    }

    .news-list__all-news-list .news__description p {
        font-size: 0.926vw;
        margin-bottom: 1.215vw;
    }

    .news-list__all-news-list .news__read-artical-btn a {
        font-size: 1.215vw;
        border: 0.058vw solid transparent;
        min-width: 7.350vw;
        padding: 0.463vw 1.100vw 0.347vw;
        border-radius: 1.157vw;
    }
}

@media only screen and (max-width: 991px) {
    .eq-news-page__banner-section {
        padding: 172px 0px 90px;
    }

    .eq-news-list-section .news-list__main-wrapper .single-news__wrapper {
        display: none;
    }

    .news-list__main-wrapper .news-list__all-news-list {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 0px;
        gap: 20px;
    }

    .news-list__all-news-list .news__content-wrapper {
        padding: 24px 22px 25px;
    }

    .news-list__all-news-list .news__heading h3 {
        margin-bottom: 10px;
    }

    .news-list__all-news-list .news__description p {
        margin-bottom: 6px;
    }

    body.page-template-news .eq-news-page__banner-section .eq-news-page__banner-section-wrapper .cus-container {
        padding: 0px 40px;
    }
}

@media only screen and (max-width: 767px) {
    .eq-news-list-section {
        padding: 99px 0px 46px;
    }

    .news-list__main-wrapper .news-list__all-news-list {
        grid-template-columns: repeat(1, 1fr);
        gap: 23px;
        margin-top: 0px;
    }

    .news-list__all-news-list .news__media-wrapper .img-wrapper {
        padding-bottom: 82%;
    }
}

/* News page News List Section CSS End Here*/


/* News page CSS End Here*/

/* Inner News page CSS Start Here*/

/* Inner News page Banner Section CSS Start Here*/

.eq-inner-news__banner-section {
    margin-top: -90px;
    background-color: var(--color-body-bg);
}

.eq-inner-news__banner-section .banner-section__main-wrapper {
    background-color: var(--color-primary-bg);
    padding: 220px 0px 90px;
    border-radius: 0px 0px 25px 25px;
    -webkit-border-radius: 0px 0px 25px 25px;
    -moz-border-radius: 0px 0px 25px 25px;
    -ms-border-radius: 0px 0px 25px 25px;
    -o-border-radius: 0px 0px 25px 25px;
}

.banner-section__main-wrapper .banner-section__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-section__wrapper .banner-section__heading-wrapper {
    max-width: 725px;
    width: 100%;
}

.banner-section__wrapper .banner-section__heading-wrapper h1 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 96px;
    line-height: 0.85;
    text-transform: uppercase;
    color: var(--fonts-light);
    margin-bottom: 20px;
}

.banner-section__wrapper .banner-section__heading-wrapper .banner-section__description p {
    font-family: var(--fonts-card-desc);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    color: var(--fonts-light);
}

.banner-section__wrapper .banner-section__heading-wrapper .banner-section__description p span {
    font-weight: 700;
}

.banner-section__main-wrapper .banner-section__wrapper .banner-section__media-wrapper {
    max-width: 624px;
    width: 100%;
}

.banner-section__wrapper .banner-section__media-wrapper .img-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 79.5%;
    overflow: hidden;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.banner-section__wrapper .banner-section__media-wrapper .img-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 1728px) and (min-width: 992px) {
    .eq-inner-news__banner-section {
        margin-top: -5.208vw;
    }

    .eq-inner-news__banner-section .banner-section__main-wrapper {
        padding: 12.731vw 0.000vw 5.208vw;
        border-radius: 0.000vw 0.000vw 1.447vw 1.447vw;
    }

    .banner-section__wrapper .banner-section__heading-wrapper {
        max-width: 41.956vw;
    }

    .banner-section__wrapper .banner-section__heading-wrapper h1 {
        font-size: 5.556vw;
        margin-bottom: 1.157vw;
    }

    .banner-section__wrapper .banner-section__heading-wrapper .banner-section__description p {
        font-size: 0.926vw;
    }

    .banner-section__main-wrapper .banner-section__wrapper .banner-section__media-wrapper {
        max-width: 36.111vw;
    }

    .banner-section__wrapper .banner-section__media-wrapper .img-wrapper {
        padding-bottom: 79.5%;
        border-radius: 1.447vw;
    }
}

@media only screen and (max-width: 991px) {
    .banner-section__main-wrapper .banner-section__wrapper {
        flex-direction: column;
        gap: 32px;
    }

    .banner-section__main-wrapper .banner-section__wrapper .banner-section__media-wrapper,
    .banner-section__wrapper .banner-section__heading-wrapper {
        max-width: 100%;
    }

    .eq-inner-news__banner-section .banner-section__main-wrapper {
        padding: 165px 0px 21px;
    }
}

@media only screen and (max-width: 767px) {

    .banner-section__wrapper .banner-section__heading-wrapper h1 {
        font-size: 48px;
        margin-bottom: 25px;
    }
}

/* Inner News page Banner Section CSS End Here*/

/* Inner News page News Section CSS Start Here*/

.eq-inner-news__news-section {
    background-color: var(--color-body-bg);
}

.eq-inner-news__news-section .news-section__main-wrapper {
    padding: 74px 0px 102px;
    border-bottom: 1px solid #BE162280;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.news-section__main-wrapper .share-artical__btn {
    max-width: 470px;
    width: 100%;
}

.news-section__main-wrapper .share-artical__btn a {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 40px;
    line-height: 0.85;
    text-transform: uppercase;
    color: var(--fonts-dark);
    background-color: var(--color-secondary-bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border: none;
    padding: 12px 20px 12px 30px;
    outline: none;
    gap: 10px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.news-section__main-wrapper .share-artical__btn a svg {
    width: 30px;
    height: 30px;
}

.news-section__main-wrapper .news-section__all-content {
    max-width: 950px;
    width: 100%;
}

.news-section__main-wrapper .news-section__all-content .all-content__detail .heading h5 {
    font-family: var(--fonts-card-desc);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    color: var(--fonts-dark);
    text-align: left;
    margin-bottom: 25px;
}

.news-section__main-wrapper .news-section__all-content .all-content__detail:not(:last-child) {
    margin-bottom: 28px;
}

.news-section__main-wrapper .news-section__all-content .all-content__detail .heading h5 span {
    display: block;
}

.news-section__main-wrapper .news-section__all-content .all-content__detail .description p {
    font-family: var(--fonts-card-desc);
    font-weight: 400;
    font-size: 20px;
    line-height: 1.3;
    color: var(--fonts-dark);
}

.news-section__main-wrapper .news-section__all-content .all-content__detail .description p span {
    display: block;
}

.news-section__main-wrapper .news-section__all-content .all-content__detail .description.last-gap p span:last-child {
    margin-top: 24px;
    padding-bottom: 38px;
}

.news-section__main-wrapper .news-section__all-content .all-content__media-wrapper {
    max-width: 100%;
    width: 100%;
    padding: 13px 0px 33px;
}

.news-section__main-wrapper .news-section__all-content .all-content__media-wrapper .img-wrapper,
.news-section__main-wrapper .news-section__all-content .all-content__media-wrapper .vider-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 59.59%;
    border-radius: 20px;
    overflow: hidden;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.news-section__main-wrapper .news-section__all-content .all-content__media-wrapper .img-wrapper img,
.news-section__main-wrapper .news-section__all-content .all-content__media-wrapper .img-wrapper video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.inner-news-page .eq-our-news-section {
    padding-top: 115px;
}

@media only screen and (max-width: 1728px) and (min-width: 992px) {
    .eq-inner-news__news-section .news-section__main-wrapper {
        padding: 4.282vw 0.000vw 5.903vw;
        border-bottom: 0.058vw solid #BE162280;
    }

    .news-section__main-wrapper .share-artical__btn {
        max-width: 27.199vw;
    }

    .news-section__main-wrapper .share-artical__btn a {
        font-size: 2.315vw;
        padding: 0.694vw 1.157vw 0.694vw 1.736vw;
        gap: 0.579vw;
        border-radius: 1.157vw;
    }

    .news-section__main-wrapper .share-artical__btn a svg {
        width: 1.736vw;
        height: 1.736vw;
    }

    .news-section__main-wrapper .news-section__all-content {
        max-width: 54.977vw;
    }

    .news-section__main-wrapper .news-section__all-content .all-content__detail .heading h5 {
        font-size: 1.157vw;
        margin-bottom: 1.447vw;
    }

    .news-section__main-wrapper .news-section__all-content .all-content__detail {
        margin-bottom: 1.620vw;
    }

    .news-section__main-wrapper .news-section__all-content .all-content__detail .description p {
        font-size: 1.157vw;
    }

    .news-section__main-wrapper .news-section__all-content .all-content__detail .description.last-gap p span:last-child {
        margin-top: 1.389vw;
    }

    .news-section__main-wrapper .news-section__all-content .all-content__media-wrapper {
        padding: 0.752vw 0.000vw 1.910vw;
    }

    .news-section__main-wrapper .news-section__all-content .all-content__media-wrapper .img-wrapper,
    .news-section__main-wrapper .news-section__all-content .all-content__media-wrapper .video-wrapper {
        border-radius: 1.157vw;
    }

    body.inner-news-page .eq-our-news-section {
        padding-top: 6.655vw;
    }
}

@media only screen and (max-width: 991px) {
    .eq-inner-news__news-section .news-section__main-wrapper {
        padding: 31px 0px 86px;
    }

    .eq-inner-news__news-section .news-section__main-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .news-section__main-wrapper .news-section__all-content {
        max-width: 100%;
        padding: 0px 18px !important;
    }

    body.inner-news-page .eq-our-news-section {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .news-section__main-wrapper .share-artical__btn a {
        padding: 8px 20px 8px 30px;
    }

    .news-section__main-wrapper .news-section__all-content .all-content__media-wrapper {
        padding-bottom: 44px;
    }

    .news-section__main-wrapper .share-artical__btn a svg {
        width: 25px;
        height: 25px;
    }
}

@media only screen and (max-width: 420px) {
    .news-section__main-wrapper .share-artical__btn a {
        font-size: 30px;
        line-height: 1;
    }

    .news-section__main-wrapper .share-artical__btn a span {
        font-size: 25px;
        line-height: 0.6;
    }
}

@media only screen and (max-width: 340px) {
    .news-section__main-wrapper .share-artical__btn a {
        font-size: 25px;
        line-height: 1;
    }

    .news-section__main-wrapper .share-artical__btn a svg {
        width: 20px;
        height: 20px;
    }
}

/* Inner News page News Section CSS End Here*/

/* Inner News page CSS End Here*/

/* Order Now page CSS Start Here*/

/* Order Now Banner Section CSS Start Here */

.eq-order-now__banner-section {
    margin-top: -90px;
    background-color: var(--color-body-bg);
}

.eq-order-now__banner-section .order-now__banner-wrapper {
    position: relative;
    padding: 205px 0px 0px;
}

.eq-order-now__banner-section .order-now__banner-wrapper .order-now__bg-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: calc(100% - 100px);
    z-index: 0;
    background-color: var(--color-primary-bg);
    border-radius: 0px 0px 25px 25px;
    -webkit-border-radius: 0px 0px 25px 25px;
    -moz-border-radius: 0px 0px 25px 25px;
    -ms-border-radius: 0px 0px 25px 25px;
    -o-border-radius: 0px 0px 25px 25px;
}

.order-now__banner-wrapper .banner__main-wrapper {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 66px;
    z-index: 1;
    position: relative;
}

.order-now__banner-wrapper .banner__main-wrapper .banner-section__media-wrapper {
    max-width: 471px;
    width: 100%;
}

.banner__main-wrapper .banner-section__media-wrapper .img-wrapper,
.banner__main-wrapper .banner-section__media-wrapper .video-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 152.5%;
    border-radius: 18px;
    overflow: hidden;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    -ms-border-radius: 18px;
    -o-border-radius: 18px;
}

.banner__main-wrapper .banner-section__media-wrapper .img-wrapper img,
.banner__main-wrapper .banner-section__media-wrapper .video-wrapper video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-now__banner-wrapper .banner__main-wrapper .banner-section__content-wrapper .content__heading h2 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 64px;
    line-height: 0.85;
    text-transform: uppercase;
    color: var(--fonts-light);
    margin-bottom: 49px;
}

.order-now__banner-wrapper .banner__main-wrapper .banner-section__content-wrapper .content__heading h1 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 96px;
    line-height: 0.85;
    text-transform: uppercase;
    color: var(--fonts-yellow);
    margin-bottom: 29px;
}

.order-now__banner-wrapper .banner__main-wrapper .banner-section__content-wrapper .content__desc p {
    font-family: var(--fonts-card-desc);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    color: var(--fonts-light);
    margin-bottom: 29px;
}

.order-now__banner-wrapper .banner__main-wrapper .banner-section__content-wrapper .content_btns {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 15px;
}

.banner__main-wrapper .banner-section__content-wrapper .content_btns a {
    font-family: var(--font-button-secondery);
    font-weight: 400;
    font-size: 32px;
    line-height: 1;
    text-align: center;
    color: var(--fonts-light);
    background-color: var(--color-dark-bg-200);
    padding: 15px 32px 9px;
    transition: all 0.3s ease-in-out;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.banner__main-wrapper .banner-section__content-wrapper .content_btns a:last-child {
    padding: 15px 30px 9px;
}

.banner__main-wrapper .banner-section__content-wrapper .content_btns a:hover {
    background-color: var(--color-bg-white);
    color: var(--color-dark-bg-200);
}

body.order-now-page .eq-download-app__section {
    padding: 43px 0px 84px;
}

@media only screen and (max-width: 1728px) and (min-width: 992px) {
    .eq-order-now__banner-section {
        margin-top: -5.208vw;
    }

    .eq-order-now__banner-section .order-now__banner-wrapper {
        position: relative;
        padding: 11.863vw 0.000vw 0.000vw;
    }

    .eq-order-now__banner-section .order-now__banner-wrapper .order-now__bg-wrapper {
        height: calc(100% - 5.787vw);
        border-radius: 0.000vw 0.000vw 1.447vw 1.447vw;
    }

    .order-now__banner-wrapper .banner__main-wrapper {
        gap: 3.819vw;
    }

    .order-now__banner-wrapper .banner__main-wrapper .banner-section__media-wrapper {
        max-width: 27.257vw;
    }

    .banner__main-wrapper .banner-section__media-wrapper .img-wrapper,
    .banner__main-wrapper .banner-section__media-wrapper .video-wrapper {
        border-radius: 1.042vw;
    }

    .order-now__banner-wrapper .banner__main-wrapper .banner-section__content-wrapper .content__heading h2 {
        font-size: 3.704vw;
        margin-bottom: 2.836vw;
    }

    .order-now__banner-wrapper .banner__main-wrapper .banner-section__content-wrapper .content__heading h1 {
        font-size: 5.556vw;
        margin-bottom: 1.678vw;
    }

    .order-now__banner-wrapper .banner__main-wrapper .banner-section__content-wrapper .content__desc p {
        font-size: 1.157vw;
        margin-bottom: 1.678vw;
    }

    .order-now__banner-wrapper .banner__main-wrapper .banner-section__content-wrapper .content_btns {
        gap: 0.868vw;
    }

    .banner__main-wrapper .banner-section__content-wrapper .content_btns a {
        font-size: 1.852vw;
        padding: 0.868vw 1.852vw 0.521vw;
        border-radius: 1.736vw;
    }

    .banner__main-wrapper .banner-section__content-wrapper .content_btns a:last-child {
        padding: 0.868vw 1.736vw 0.521vw;
    }

    body.order-now-page .eq-download-app__section {
        padding: 2.488vw 0.000vw 4.861vw;
    }
}

@media only screen and (max-width: 991px) {
    .eq-order-now__banner-section .order-now__banner-wrapper {
        padding: 165px 0px 0px;
    }

    .order-now__banner-wrapper .banner__main-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 21px;
    }

    .order-now__banner-wrapper .banner__main-wrapper .banner-section__media-wrapper {
        order: 2;
        max-width: 100%;
        padding: 0px 20px;
    }

    .banner__main-wrapper .banner-section__media-wrapper .img-wrapper,
    .banner__main-wrapper .banner-section__media-wrapper .video-wrapper {
        padding-bottom: 98.5%;
    }

    .eq-order-now__banner-section .order-now__banner-wrapper .order-now__bg-wrapper {
        height: calc(100% - 334px);
    }

    body.order-now-page .eq-download-app__section {
        padding: 33px 0px 37px;
    }

    body.order-now-page .eq-order-now__banner-section .banner-section__content-wrapper {
        padding: 0px 20px;
    }
}

@media only screen and (max-width: 767px) {
    .order-now__banner-wrapper .banner__main-wrapper .banner-section__content-wrapper .content__heading h2 {
        font-size: 48px;
        margin-bottom: 56px;
        max-width: 276px;
        width: 100%;
    }

    .order-now__banner-wrapper .banner__main-wrapper .banner-section__content-wrapper .content__heading h2 span {
        display: block;
    }

    .order-now__banner-wrapper .banner__main-wrapper .banner-section__content-wrapper .content__heading h1 {
        max-width: 325px;
        margin-bottom: 28px;
        width: 100%;
    }

    .order-now__banner-wrapper .banner__main-wrapper .banner-section__content-wrapper .content__desc p {
        margin-bottom: 21px;
        font-size: 16px;
    }

    .banner__main-wrapper .banner-section__content-wrapper .content_btns a {
        font-size: 24px;
        padding: 10px 24px 8px;
    }

    .banner__main-wrapper .banner-section__content-wrapper .content_btns a:last-child {
        padding: 10px 15px 8px;
    }

    .banner__main-wrapper .banner-section__media-wrapper .img-wrapper,
    .banner__main-wrapper .banner-section__media-wrapper .video-wrapper {
        padding-bottom: 152.79%;
    }

    body.order-now-page .eq-download-app__section .download-app__wrapper .download-app__sticker {
        z-index: 0;
    }
}

@media only screen and (max-width: 400px) {
    .banner__main-wrapper .banner-section__content-wrapper .content_btns a {
        font-size: 20px;
        padding: 10px 24px 8px;
    }
}

@media only screen and (max-width: 380px) {
    .banner__main-wrapper .banner-section__content-wrapper .content_btns a {
        font-size: 18px;
        padding: 10px 24px 8px;
    }
}

@media only screen and (max-width: 340px) {
    .banner__main-wrapper .banner-section__content-wrapper .content_btns a {
        font-size: 15px;
        padding: 10px 24px 8px;
    }
}

/* Order Now Banner Section CSS EndS Here */


/* Order Now page CSS End Here*/


/* Terma page CSS Start Here*/

.eq-terms__banner-section {
    margin-top: -90px;
}

.eq-terms__banner-section .eq-terms__banner-wrapper {
    background-color: var(--color-primary-bg);
    margin-top: -90px;
    padding: 245px 0px 30px;
    border-radius: 0px 0px 25px 25px;
    -webkit-border-radius: 0px 0px 25px 25px;
    -moz-border-radius: 0px 0px 25px 25px;
    -ms-border-radius: 0px 0px 25px 25px;
    -o-border-radius: 0px 0px 25px 25px;
}

.eq-terms__banner-wrapper .banner-heading h1 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 96px;
    line-height: 0.85;
    text-transform: uppercase;
    color: var(--fonts-light-200);
}

.eq-terms__content-section {
    padding: 84px 0px 169px;
}

.eq-terms__content-section .content-section__main-wrapper {
    max-width: 1181px;
    width: 100%;
}

.eq-terms__content-section .content__heading p {
    font-family: var(--fonts-card-desc);
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    color: var(--font-trems);
}

.eq-terms__content-section .content__description .all__content span,
.eq-terms__content-section .content__description .all__content .all-content__heading h5,
.eq-terms__content-section .content__description .all__content .all-content__desc p,
.eq-terms__content-section .content__description .all__content .all-content__desc ul,
li {
    font-family: var(--fonts-card-desc);
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    color: var(--font-trems);
}

.eq-terms__content-section .content__description .all__content span {
    position: relative;
}

.eq-terms__content-section .content__description .all__content span::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 2px;
    background-color: var(--font-trems);
    top: 50%;
    left: 0;
}

.eq-terms__content-section .content__description .all__content .all-content__heading h5 {
    font-weight: 700;
}

.eq-terms__content-section .content__description .all__content .all-content__heading {
    margin: 17px 0px 25px;
}

.eq-terms__content-section .content__description .all__content {
    margin-top: 25px;
}

.eq-terms__content-section .content__description .all__content .all-content__desc ol {
    margin-left: 22px;
}

.eq-terms__content-section .content__description .all__content .all-content__desc ol li {
    list-style-type: inherit;
}

.eq-terms__content-section .content__description .all__content.with-ol .all-content__desc ul {
    margin-left: 12px;
}

.eq-terms__content-section .content__description .all__content .all-content__desc ul {
    margin-left: 32px;
}

.eq-terms__content-section .content__description .all__content .all-content__desc ul li {
    list-style-type: disc;
}

@media only screen and (max-width: 1728px) and (min-width: 992px) {
    .eq-terms__banner-section {
        margin-top: -5.208vw;
    }

    .eq-terms__banner-section .eq-terms__banner-wrapper {
        margin-top: -5.208vw;
        padding: 14.178vw 0.000vw 1.736vw;
        border-radius: 0.000vw 0.000vw 1.447vw 1.447vw;
    }

    .eq-terms__banner-wrapper .banner-heading h1 {
        font-size: 5.556vw;
    }

    .eq-terms__content-section {
        padding: 4.861vw 0.000vw 9.780vw;
    }

    .eq-terms__content-section .content-section__main-wrapper {
        max-width: 68.345vw;
    }

    .eq-terms__content-section .content__heading p {
        font-size: 1.157vw;
    }

    .eq-terms__content-section .content__description .all__content span,
    .eq-terms__content-section .content__description .all__content .all-content__heading h5,
    .eq-terms__content-section .content__description .all__content .all-content__desc p,
    .eq-terms__content-section .content__description .all__content .all-content__desc ul,
    li {
        font-size: 1.157vw;
    }

    .eq-terms__content-section .content__description .all__content span::after {
        width: 0.579vw;
        height: 0.116vw;
    }

    .eq-terms__content-section .content__description .all__content .all-content__heading {
        margin: 0.984vw 0.000vw 1.447vw;
    }

    .eq-terms__content-section .content__description .all__content {
        margin-top: 1.447vw;
    }

    .eq-terms__content-section .content__description .all__content .all-content__desc ol {
        margin-left: 1.273vw;
    }

    .eq-terms__content-section .content__description .all__content.with-ol .all-content__desc ul {
        margin-left: 0.694vw;
    }

    .eq-terms__content-section .content__description .all__content .all-content__desc ul {
        margin-left: 1.852vw;
    }
}

@media only screen and (max-width: 767px) {
    .eq-terms__banner-section .eq-terms__banner-wrapper {
        padding: 203px 0px 24px;
    }

    .eq-terms__banner-wrapper .banner-heading h1 {
        font-size: 64px;
        max-width: 325px;
        width: 100%;
    }

    .eq-terms__content-section {
        padding: 45px 0px 67px;
    }

    .eq-terms__content-section .content__heading p {
        font-size: 16px;
    }

    .eq-terms__content-section .content__description .all__content span,
    .eq-terms__content-section .content__description .all__content .all-content__heading h5,
    .eq-terms__content-section .content__description .all__content .all-content__desc p,
    .eq-terms__content-section .content__description .all__content .all-content__desc ul,
    li {
        font-size: 16px;
    }

    .eq-terms__content-section .content__description .all__content {
        margin-top: 27px;
    }
}

/* Terma page CSS End Here*/

/* Contact Us page CSS Start Here*/

/* Contact Us Page Banner Section CSS Start Here*/

.eq-contact-us__banner-section {
    margin-top: -90px;
    background-color: var(--color-bg-white);
}

.eq-contact-us__banner-section .contact-us__banner-wrapper {
    background-color: var(--color-primary-bg);
    padding: 244px 0px 70px;
    border-radius: 0px 0px 25px 25px;
    -webkit-border-radius: 0px 0px 25px 25px;
    -moz-border-radius: 0px 0px 25px 25px;
    -ms-border-radius: 0px 0px 25px 25px;
    -o-border-radius: 0px 0px 25px 25px;
}

.contact-us__banner-wrapper .banner-heading h1 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 96px;
    line-height: 0.85;
    text-transform: uppercase;
    color: var(--fonts-light-200);
}

@media only screen and (max-width: 1728px) and (min-width: 992px) {
    .eq-contact-us__banner-section {
        margin-top: -5.208vw;
    }

    .eq-contact-us__banner-section .contact-us__banner-wrapper {
        padding: 14.120vw 0.000vw 4.051vw;
        border-radius: 0.000vw 0.000vw 1.447vw 1.447vw;
    }

    .contact-us__banner-wrapper .banner-heading h1 {
        font-size: 5.556vw;
    }
}

@media only screen and (max-width: 767px) {
    .eq-contact-us__banner-section .contact-us__banner-wrapper {
        padding: 203px 0px 24px;
    }

    .contact-us__banner-wrapper .banner-heading {
        max-width: 260px;
        width: 100%;
    }

    .contact-us__banner-wrapper .banner-heading h1 {
        font-size: 64px;
        /* font-family: var(--fonts-mobile-drawer); */
    }

    body.page-template-contact-us .contact-us__banner-wrapper .cus-container {
        padding: 0px 40px;
    }
}

/* Contact Us Page Banner Section CSS End Here*/

/* Contact Us Page Main Section CSS Start Here*/

.eq-contact-us__main-section {
    background-color: var(--color-body-bg);
}

.eq-contact-us__main-section .main-section__wrapper {
    padding: 86px 0px 56px;
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    align-items: flex-start;
}

.main-section__wrapper .main-section__map-content {
    max-width: 547px;
    width: 100%;
}

.main-section__wrapper .main-section__map-content .locations-wrapper {
    max-width: 375px;
    width: 100%;
    position: relative;
    margin-bottom: 32px;
}

.main-section__wrapper .main-section__map-content .locations-wrapper.scroll-bottom::after {
    opacity: 0;
}

.main-section__wrapper .main-section__map-content .locations-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 435px;
    height: 165px;
    background: linear-gradient(180deg, rgba(249, 249, 249, 0) 0%, #F9F9F9 95.67%);
}

.main-section__wrapper .main-section__map-content .locations-wrapper .heading h2 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 64px;
    line-height: 0.9;
    letter-spacing: -1.92;
    text-transform: uppercase;
    padding-bottom: 6px;
    margin-bottom: 24px;
    color: var(--fonts-red);
    border-bottom: 2px solid var(--color-primary-bg);
}

.main-section__wrapper .main-section__map-content .locations-wrapper .all-locations {
    height: 502px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.main-section__map-content .locations-wrapper .all-locations::-webkit-scrollbar {
    display: none;
}

.main-section__wrapper .main-section__map-content .map-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: 75%;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.main-section__wrapper .main-section__map-content .map-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-section__form-content {
    max-width: 733px;
    width: 100%;
}

.main-section__form-content .form__wrapper {
    background-color: var(--color-dark-bg-200);
    position: relative;
    padding: 39px 55px 27px 32px;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.main-section__form-content .form__wrapper .form-heading {
    margin-bottom: 35px;
}

.main-section__form-content .form__wrapper .form-heading h2 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 96px;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--fonts-yellow);
}

/* .main-section__form-content .form__wrapper form label {
  display: none;
} */

.main-section__form-content .form__wrapper form input {
    display: block;
    width: 100%;
    background-color: var(--color-body-bg);
    margin-bottom: 39px;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 24px;
    line-height: 0.9;
    /* text-transform: uppercase; */
    color: #22222240;
    border: none;
    outline: none;
    padding: 21px 33px;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
}

.main-section__form-content .form__wrapper form textarea {
    background-color: var(--color-body-bg);
    padding: 21px 33px;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 24px;
    line-height: 0.9;
    max-width: 646px;
    max-height: 333px;
    min-height: 333px;
    min-width: 100%;
    width: 100%;
    height: 333px;
    color: #22222240;
    margin-bottom: 28px;
    text-transform: uppercase;
    outline: none;
    border: none;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
}

.main-section__form-content .form__wrapper form textarea::placeholder {
    color: #22222240;
}

.main-section__form-content .form__wrapper form input::placeholder {
    color: #22222240;
}

.main-section__form-content .form__wrapper form button {
    font-family: var(--font-button-secondery);
    font-weight: 500;
    font-size: 20px;
    line-height: 1;
    text-align: center;
    padding: 13px 10px;
    color: var(--fonts-light);
    background-color: var(--color-primary-bg);
    transition: all 0.3s ease-in-out;
    max-width: 136px;
    width: 100%;
    outline: none;
    border: none;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.main-section__form-content .form__wrapper form button:hover {
    background-color: var(--color-bg-white);
    color: var(--fonts-red);
}

.wpcf7 form.sent .wpcf7-response-output {
    border: none;
    color: #46b450;
    /* position: unset; */
    position: absolute;
    bottom: 5px;
    margin: 0px;
    padding: 0px;
    font-size: 16px;
    font-family: var(--fonts-card-desc);
}

@media only screen and (max-width: 1728px) and (min-width: 992px) {
    .eq-contact-us__main-section .main-section__wrapper {
        padding: 4.977vw 0.000vw 3.241vw;
    }

    .main-section__wrapper .main-section__map-content {
        max-width: 31.655vw;
    }

    .main-section__wrapper .main-section__map-content .locations-wrapper {
        max-width: 21.701vw;
        margin-bottom: 1.852vw;
    }

    .main-section__wrapper .main-section__map-content .locations-wrapper::after {
        width: 25.174vw;
        height: 9.549vw;
    }

    .main-section__wrapper .main-section__map-content .locations-wrapper .heading h2 {
        font-size: 3.704vw;
        padding-bottom: 0.347vw;
        margin-bottom: 1.389vw;
        border-bottom: 0.116vw solid var(--color-primary-bg);
    }

    .main-section__wrapper .main-section__map-content .locations-wrapper .all-locations {
        height: 29.051vw;
    }

    .main-section__wrapper .main-section__map-content .map-wrapper {
        border-radius: 0.694vw;
        -webkit-border-radius: 0.694vw;
        -moz-border-radius: 0.694vw;
        -ms-border-radius: 0.694vw;
        -o-border-radius: 0.694vw;
    }

    .main-section__form-content {
        max-width: 42.419vw;
    }

    .main-section__form-content .form__wrapper {
        padding: 2.257vw 3.183vw 1.563vw 1.852vw;
        border-radius: 1.447vw;
    }

    .main-section__form-content .form__wrapper .form-heading {
        margin-bottom: 2.025vw;
    }

    .main-section__form-content .form__wrapper .form-heading h2 {
        font-size: 5.556vw;
    }

    .main-section__form-content .form__wrapper form input {
        margin-bottom: 2.257vw;
        font-size: 1.389vw;
        padding: 1.215vw 1.910vw;
        border-radius: 2.315vw;
    }

    .main-section__form-content .form__wrapper form textarea {
        padding: 1.215vw 1.910vw;
        max-width: 37.384vw;
        max-height: 19.271vw;
        min-height: 19.271vw;
        font-size: 1.389vw;
        height: 19.271vw;
        margin-bottom: 1.620vw;
        border-radius: 1.389vw;
    }

    .main-section__form-content .form__wrapper form button {
        font-size: 1.157vw;
        padding: 0.752vw 0.579vw;
        max-width: 7.870vw;
        border-radius: 1.447vw;
    }


    .wpcf7 form.sent .wpcf7-response-output {
        bottom: 0.289vw;
        font-size: 0.926vw;
    }
}

@media only screen and (max-width: 991px) {
    .eq-contact-us__main-section .main-section__wrapper {
        flex-direction: column;
        gap: 48px;
        padding: 38px 0px 48px;
    }

    .main-section__form-content {
        max-width: 100%;
    }

    .main-section__form-content .form__wrapper form textarea {
        max-width: 100%;
    }

    .main-section__wrapper .main-section__map-content {
        order: 2;
        max-width: 100%;
        padding: 0px 20px;
    }

    .main-section__wrapper .main-section__map-content .locations-wrapper {
        max-width: 100%;
        margin: 0px -8px;
        margin-bottom: 40px;
    }

    .main-section__wrapper .main-section__map-content .locations-wrapper::after {
        display: none;
    }

    /* .main-section__map-content .locations-wrapper .all-locations .location .location__name a {
    display: none;
  } */

    .main-section__wrapper .main-section__map-content .locations-wrapper .all-locations {
        height: fit-content;
        width: 100%;
    }

    .eq-contact-us__banner-section .contact-us__banner-wrapper {
        padding: 162px 0px 24px;
    }
}

@media only screen and (max-width: 767px) {
    .main-section__form-content .form__wrapper .form-heading h2 {
        font-size: 64px;
        max-width: 265px;
        width: 100%;
    }

    .main-section__wrapper .main-section__map-content .map-wrapper {
        padding-bottom: 167%;
    }

    .main-section__form-content .form__wrapper {
        padding: 27px 20px 43px;
    }

    .main-section__form-content .form__wrapper .form-heading {
        margin-bottom: 25px;
    }

    .main-section__form-content .form__wrapper form input,
    .main-section__form-content .form__wrapper form textarea {
        padding-left: 18px;
    }

    .main-section__form-content .form__wrapper form textarea {
        max-height: 211px;
        min-height: 211px;
        height: 211px;
        margin-bottom: 39px;
    }

    .wpcf7 form.sent .wpcf7-response-output {
        bottom: 20px;
    }
}

@media only screen and (max-width: 400px) {
    .wpcf7 form.sent .wpcf7-response-output {
        bottom: 5px;
    }
}

/* Contact Us Page Main Section CSS End Here*/

/* Contact Us page CSS End Here*/

/* franchise page CSS Start Here*/

/* franchise page Banner Section CSS Start Here*/

.eq-franchise__banner-section {
    margin-top: -90px;
    position: relative;
    z-index: 1;
}

.eq-franchise__banner-section .banner-section__main-wrapper {
    /* background-color: var(--color-dark-bg-200); */
    background-color: var(--color-primary-bg);
    padding: 34px 0px 55px;
    border-radius: 0px 0px 25px 25px;
    -webkit-border-radius: 0px 0px 25px 25px;
    -moz-border-radius: 0px 0px 25px 25px;
    -ms-border-radius: 0px 0px 25px 25px;
    -o-border-radius: 0px 0px 25px 25px;
}


.banner-section__main-wrapper .banner-section__img-wrapper {
    max-width: calc(100% - 86px);
    width: 100%;
    margin: 0 auto;
}

body.about-us-page .banner-section__main-wrapper .banner-section__img-wrapper .img-wrapper {
    padding-bottom: 41.72%;
}

/* body.about-us-page .banner-section__main-wrapper .banner-section__img-wrapper .img-wrapper img {
  transform: scale(1.91);
  object-position: 390px 50%;;
} */

.banner-section__main-wrapper .banner-section__img-wrapper .img-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 44.83%;
    border-radius: 25px;
    overflow: hidden;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.banner-section__main-wrapper .banner-section__img-wrapper .img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(269.5deg, rgba(0, 0, 0, 0) 28.54%, rgba(0, 0, 0, 0.37) 92.07%);
}

.banner-section__main-wrapper .banner-section__img-wrapper .img-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eq-franchise__banner-section .banner-section__main-wrapper .banner-section__top-wrapper {
    position: relative;
}

.eq-franchise__banner-section .banner-section__main-wrapper .banner-section__top-wrapper .banner-section__content-wrapper {
    position: absolute;
    bottom: 57px;
}

.eq-franchise__banner-section .banner-section__content-wrapper .banner__heading h5 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 24px;
    line-height: 0.85;
    text-transform: uppercase;
    color: var(--fonts-light);
    margin-bottom: 30px;
}

.eq-franchise__banner-section .banner-section__content-wrapper .banner__heading h1 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 188px;
    line-height: 0.85;
    text-transform: uppercase;
    color: var(--fonts-light);
    margin-top: 28px;
    position: relative;
    z-index: 1;
    display: inline;
}

.eq-franchise__banner-section .banner-section__content-wrapper .banner__heading h1 p {
    display: inline;
}

.eq-franchise__banner-section .banner-section__content-wrapper .banner__heading h1 span {
    display: block;
}

body.franchise-page .banner-section__content-wrapper .banner-section__btn-wrapper {
    margin-top: 24px;
}

body.franchise-page .banner-section__content-wrapper .banner-section__btn-wrapper a {
    font-family: var(--font-button-secondery);
    font-weight: 500;
    font-size: 32px;
    line-height: 1;
    text-align: center;
    color: var(--fonts-dark);
    max-width: 170px;
    display: block;
    width: 100%;
    background-color: var(--color-secondary-bg);
    transition: all 0.3s ease-in;
    padding: 12px 10px 6px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
}

body.franchise-page .banner-section__content-wrapper .banner-section__btn-wrapper a:hover {
    background-color: var(--color-dark-bg-200);
    color: var(--fonts-yellow)
}

.eq-franchise__banner-section .banner-section__content-wrapper .banner__heading .main-heading {
    position: relative;
    z-index: 1;
}

.eq-franchise__banner-section .main-heading .sticker-wrapper {
    max-width: 188px;
    width: 100%;
    height: 188px;
    position: absolute;
    top: 50%;
    right: -145px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.eq-franchise__banner-section .main-heading .sticker-wrapper img {
    width: 100%;
    height: 100%;
}

.eq-franchise__banner-section .banner-section__bottom-wrapper {
    max-width: calc(100% - 91px);
    width: 100%;
    margin: 0 auto;
    background-color: var(--color-primary-bg);
    padding: 51px 66px 38px 61px;
    margin-top: 49px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.eq-franchise__banner-section .banner-section__bottom-wrapper .bottom-wrapper__left-content {
    max-width: 841px;
    width: 100%;
}

.banner-section__bottom-wrapper .bottom-wrapper__left-content .bottom-banner__heading h2 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 96px;
    line-height: 0.85;
    text-transform: uppercase;
    color: var(--fonts-light);
    margin-bottom: 45px;
}

.banner-section__bottom-wrapper .bottom-wrapper__left-content .bottom-banner__heading h2 span {
    color: var(--fonts-yellow);
}

.bottom-wrapper__left-content .bottom-banner__description .description {
    margin-top: 18px;
}

.bottom-wrapper__left-content .bottom-banner__description h4,
.bottom-wrapper__left-content .bottom-banner__description .description p {
    font-family: var(--fonts-card-desc);
    font-weight: 700;
    font-size: 32px;
    line-height: 1.3;
    color: var(--fonts-light-200);
}

.bottom-wrapper__left-content .bottom-banner__description .description p {
    font-weight: 400;
    font-size: 16px;
}

.eq-franchise__banner-section .banner-section__bottom-wrapper .bottom-wrapper__right-content {
    max-width: 372px;
    width: 100%;
    height: 372px;
}

.banner-section__bottom-wrapper .bottom-wrapper__right-content img {
    border-radius: 372px;
    overflow: hidden;
    box-shadow: 0px 4px 4px 0px #00000040;
    -webkit-border-radius: 372px;
    -moz-border-radius: 372px;
    -ms-border-radius: 372px;
    -o-border-radius: 372px;
}

.banner-section__bottom-wrapper .bottom-wrapper__right-content img,
.banner-section__bottom-wrapper .bottom-wrapper__right-content .sticker-wrapper {
    width: 100%;
    height: 100%;
}

body.franchise-page .franchise__bottom-section {
    margin-top: 0px;
    background-color: var(--color-dark-bg-200);
    padding: 49px 0px 55px;
    border-radius: 0px 0px 25px 25px;
    -webkit-border-radius: 0px 0px 25px 25px;
    -moz-border-radius: 0px 0px 25px 25px;
    -ms-border-radius: 0px 0px 25px 25px;
    -o-border-radius: 0px 0px 25px 25px;
}

body.franchise-page .eq-about-us_banner-section .banner-section__main-wrapper {
    padding-bottom: 0px;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
}

body.franchise-page .eq-franchise__banner-section .banner-section__bottom-wrapper {
    margin-top: 0px;
}

body.about-us-page .eq-franchise__banner-section .banner-section__content-wrapper .banner__heading .main-heading {
    display: inline;
}

body.about-us-page .eq-franchise__banner-section .main-heading .sticker-wrapper {
    top: -100px;
    right: -2%;
}

body.franchise-page .eq-about-us_banner-section .banner-section__content-wrapper .big-heading {
    max-width: 100%;
}

body.franchise-page .eq-about-us_banner-section .banner-section__content-wrapper .big-heading .banner-section__sticker-wrapper {
    top: 26%;
    right: -35px;
}

@media only screen and (max-width: 1728px) and (min-width: 992px) {
    .eq-franchise__banner-section {
        margin-top: -5.208vw;
    }

    .eq-franchise__banner-section .banner-section__main-wrapper {
        padding: 1.968vw 0.000vw 3.183vw;
        border-radius: 0.000vw 0.000vw 1.447vw 1.447vw;
    }


    .banner-section__main-wrapper .banner-section__img-wrapper {
        max-width: calc(100% - 4.977vw);
    }

    .banner-section__main-wrapper .banner-section__img-wrapper .img-wrapper {
        border-radius: 1.447vw;
    }

    .eq-franchise__banner-section .banner-section__main-wrapper .banner-section__top-wrapper .banner-section__content-wrapper {
        bottom: 3.299vw;
    }

    .eq-franchise__banner-section .banner-section__content-wrapper .banner__heading h5 {
        font-size: 1.389vw;
        margin-bottom: 1.736vw;
    }

    .eq-franchise__banner-section .banner-section__content-wrapper .banner__heading h1 {
        font-size: 10.880vw;
        margin-top: 1.620vw;
    }

    body.franchise-page .banner-section__content-wrapper .banner-section__btn-wrapper {
        margin-top: 1.389vw;
    }

    body.franchise-page .banner-section__content-wrapper .banner-section__btn-wrapper a {
        font-size: 1.852vw;
        max-width: 9.838vw;
        padding: 0.694vw 0.579vw 0.347vw;
        border-radius: 1.736vw;
    }


    .eq-franchise__banner-section .main-heading .sticker-wrapper {
        max-width: 10.880vw;
        height: 10.880vw;
        right: -8.391vw;
    }

    .eq-franchise__banner-section .banner-section__bottom-wrapper {
        max-width: calc(100% - 5.266vw);
        padding: 2.951vw 3.819vw 2.199vw 3.530vw;
        margin-top: 2.836vw;
        border-radius: 1.447vw;
    }

    .eq-franchise__banner-section .banner-section__bottom-wrapper .bottom-wrapper__left-content {
        max-width: 48.669vw;
    }

    .banner-section__bottom-wrapper .bottom-wrapper__left-content .bottom-banner__heading h2 {
        font-size: 5.556vw;
        margin-bottom: 2.604vw;
    }

    .bottom-wrapper__left-content .bottom-banner__description .description {
        margin-top: 1.042vw;
    }

    .bottom-wrapper__left-content .bottom-banner__description h4,
    .bottom-wrapper__left-content .bottom-banner__description .description p {
        font-size: 1.852vw;
    }

    .bottom-wrapper__left-content .bottom-banner__description .description p {
        font-size: 0.926vw;
    }

    .eq-franchise__banner-section .banner-section__bottom-wrapper .bottom-wrapper__right-content {
        max-width: 21.528vw;
        height: 21.528vw;
    }

    .banner-section__bottom-wrapper .bottom-wrapper__right-content img {
        border-radius: 21.528vw;
        box-shadow: 0.000vw 0.231vw 0.231vw 0.000vw #00000040;
        -webkit-border-radius: 21.528vw;
        -moz-border-radius: 21.528vw;
        -ms-border-radius: 21.528vw;
        -o-border-radius: 21.528vw;
    }

    body.franchise-page .franchise__bottom-section {
        margin-top: 0.000vw;
        background-color: var(--color-dark-bg-200);
        padding: 2.836vw 0.000vw 3.183vw;
        border-radius: 0.000vw 0.000vw 1.447vw 1.447vw;
        -webkit-border-radius: 0.000vw 0.000vw 1.447vw 1.447vw;
        -moz-border-radius: 0.000vw 0.000vw 1.447vw 1.447vw;
        -ms-border-radius: 0.000vw 0.000vw 1.447vw 1.447vw;
        -o-border-radius: 0.000vw 0.000vw 1.447vw 1.447vw;
    }

    body.franchise-page .eq-about-us_banner-section .banner-section__main-wrapper {
        padding-bottom: 0.000vw;
        border-radius: 0.000vw;
        -webkit-border-radius: 0.000vw;
        -moz-border-radius: 0.000vw;
        -ms-border-radius: 0.000vw;
        -o-border-radius: 0.000vw;
    }

    body.about-us-page .eq-franchise__banner-section .main-heading .sticker-wrapper {
        top: -5.787vw;
        right: -2%;
    }

    body.franchise-page .eq-about-us_banner-section .banner-section__content-wrapper .big-heading .banner-section__sticker-wrapper {
        top: 26%;
        right: -2.025vw;
    }
}

@media only screen and (max-width: 991px) {
    .eq-franchise__banner-section .banner-section__main-wrapper {
        padding: 25px 0px 28px;
    }

    .eq-franchise__banner-section .banner-section__content-wrapper .banner__heading h1 {
        font-size: 96px;
    }

    .eq-franchise__banner-section .banner-section__content-wrapper .banner__heading h5 {
        margin-top: 24px;
    }

    .banner-section__main-wrapper .banner-section__img-wrapper .img-wrapper {
        padding-bottom: 88%;
    }

    body.about-us-page .banner-section__main-wrapper .banner-section__img-wrapper .img-wrapper {
        padding-bottom: 88%;
    }

    .banner-section__main-wrapper .banner-section__img-wrapper {
        max-width: calc(100% - 40px);
    }

    .eq-franchise__banner-section .banner-section__main-wrapper .banner-section__top-wrapper .banner-section__content-wrapper {
        left: 44px;
    }

    .eq-franchise__banner-section .main-heading .sticker-wrapper {
        max-width: 100px;
        height: 100px;
        top: -50px;
        right: 60px;
    }

    .eq-franchise__banner-section .banner-section__bottom-wrapper {
        max-width: calc(100% - 40px);
        position: relative;
    }

    .banner-section__bottom-wrapper .bottom-wrapper__left-content .bottom-banner__heading h2 {
        font-size: 64px;
    }

    .banner-section__bottom-wrapper .bottom-wrapper__left-content .bottom-banner__heading {
        max-width: 50%;
    }

    .eq-franchise__banner-section .banner-section__bottom-wrapper .bottom-wrapper__right-content {
        position: absolute;
        max-width: 270px;
        height: 270px;
        right: 50px;
        top: 50px;
    }

    .banner-section__bottom-wrapper .bottom-wrapper__right-content img {
        border-radius: 270px;
        -webkit-border-radius: 270px;
        -moz-border-radius: 270px;
        -ms-border-radius: 270px;
        -o-border-radius: 270px;
    }

    body.about-us-page .eq-franchise__banner-section .main-heading .sticker-wrapper {
        top: -47%;
        right: -2%;
    }

    body.franchise-page .eq-about-us_banner-section .banner-section__content-wrapper .big-heading .banner-section__sticker-wrapper {
        top: 20%;
        right: -55px;
    }
}

@media only screen and (max-width: 767px) {
    .eq-franchise__banner-section .banner-section__content-wrapper .banner__heading h1 {
        font-size: 64px;
        margin-top: 24px;
    }

    .banner-section__main-wrapper .banner-section__img-wrapper .img-wrapper {
        padding-bottom: 129.25%;
    }

    body.about-us-page .banner-section__main-wrapper .banner-section__img-wrapper .img-wrapper {
        padding-bottom: 129.25%;
    }

    .eq-franchise__banner-section .banner-section__main-wrapper .banner-section__top-wrapper .banner-section__content-wrapper {
        left: 22px;
        bottom: 25px;
    }

    .eq-franchise__banner-section .main-heading .sticker-wrapper {
        max-width: 70px;
        height: 70px;
        top: -50px;
        right: 29%;
    }

    .banner-section__bottom-wrapper .bottom-wrapper__left-content .bottom-banner__heading h2 {
        font-size: 48px;
        margin-bottom: 38px;
    }

    .banner-section__bottom-wrapper .bottom-wrapper__left-content .bottom-banner__heading {
        max-width: 50%;
    }

    .eq-franchise__banner-section .banner-section__bottom-wrapper .bottom-wrapper__right-content {
        position: absolute;
        max-width: 152px;
        height: 152px;
        right: 20px;
        top: 10%;
    }

    .banner-section__bottom-wrapper .bottom-wrapper__right-content img {
        border-radius: 152px;
        -webkit-border-radius: 152px;
        -moz-border-radius: 152px;
        -ms-border-radius: 152px;
        -o-border-radius: 152px;
    }

    .eq-franchise__banner-section .banner-section__bottom-wrapper {
        padding: 30px 21px;
        margin-top: 24px;
    }

    .eq-franchise__banner-section .banner-section__content-wrapper .banner__btn {
        margin-top: 26px;
    }

    body.franchise-page .banner-section__content-wrapper .banner-section__btn-wrapper a {
        font-size: 21px;
        max-width: 118px;
        padding: 10px 10px 6px;
    }

    body.about-us-page .eq-franchise__banner-section .banner-section__content-wrapper .banner__heading .main-heading {
        max-width: 80%;
        width: 100%;
        display: inline-block;
    }

    body.about-us-page .eq-franchise__banner-section .main-heading .sticker-wrapper {
        top: 5px;
        right: 27%;
    }

    body.franchise-page .eq-about-us_banner-section .banner-section__content-wrapper .big-heading h1 {
        width: 100%;
    }

    body.franchise-page .eq-about-us_banner-section .banner-section__content-wrapper .big-heading .banner-section__sticker-wrapper {
        top: -15%;
        right: 34%;
    }
}

@media only screen and (max-width: 390px) {
    body.about-us-page .eq-franchise__banner-section .main-heading .sticker-wrapper {
        right: 14%;
    }

    body.franchise-page .eq-about-us_banner-section .banner-section__content-wrapper .big-heading h1 {
        font-size: 54px;
    }
}

@media only screen and (max-width: 380px) {
    body.about-us-page .eq-franchise__banner-section .main-heading .sticker-wrapper {
        top: 5px;
        right: 27px;
    }

    body.franchise-page .eq-franchise__banner-section .banner-section__bottom-wrapper .bottom-wrapper__right-content {
        max-width: 140px;
        height: 140px;
    }
}

@media only screen and (max-width: 340px) {
    body.franchise-page .eq-about-us_banner-section .banner-section__content-wrapper .big-heading h1 {
        font-size: 46px;
    }

    body.franchise-page .banner-section__bottom-wrapper .bottom-wrapper__left-content .bottom-banner__heading h2 {
        font-size: 38px;
    }

    .eq-franchise__banner-section .banner-section__bottom-wrapper .bottom-wrapper__right-content {
        max-width: 106px !important;
        height: 106px !important;
    }
}

/* franchise page Banner Section CSS End Here*/

/* franchise page Why Rustyz Section CSS Start Here*/

body.franchise-page .eq-our-story__section {
    box-shadow: none;
    background-color: var(--color-body-bg);
    background: var(--color-body-bg);
    padding: 70px 0px 160px;
}

body.franchise-page .eq-our-story__section .our-story__top-content .our-story__content-desc .heading h3,
body.franchise-page .eq-our-story__section .our-story__bottom-content .our-story__content-desc .heading h3 {
    color: var(--fonts-red);
    max-width: 100%;
}

body.franchise-page .our-story__top-content .our-story__content-desc .desc .desc__heading h5,
body.franchise-page .our-story__top-content .our-story__content-desc .desc .desc__sub-heading p,
body.franchise-page .our-story__top-content .our-story__content-desc .desc .desc__detail p,
body.franchise-page .our-story__top-content .our-story__content-desc .desc .desc__culture p,
body.franchise-page .our-story__bottom-content .our-story__content-desc .desc .desc__heading h5,
body.franchise-page .our-story__bottom-content .our-story__content-desc .desc .desc__sub-heading p,
body.franchise-page .our-story__bottom-content .our-story__content-desc .desc .desc__list .desc-list__heading p,
body.franchise-page .our-story__bottom-content .our-story__content-desc .desc .desc__list .desc-list li,
body.franchise-page .our-story__bottom-content .our-story__content-desc .desc .desc__list .desc-list p {
    color: var(--fonts-dark);
}

body.franchise-page .our-story__top-content .our-story__content-desc .order-btn a {
    background-color: var(--color-primary-bg);
    color: var(--fonts-light-200);
    border: 1px solid transparent;
}

body.franchise-page .our-story__top-content .our-story__content-desc .order-btn a:hover {
    background-color: transparent;
    color: var(--fonts-red);
    border-color: var(--color-primary-bg);
}

body.franchise-page .our-story__bottom-content .our-story__content-desc .order-btn a {
    background-color: var(--color-dark-bg-200);
    color: var(--fonts-light-200);
    border: 1px solid transparent;
}

body.franchise-page .our-story__bottom-content .our-story__content-desc .order-btn a:hover {
    background-color: transparent;
    color: var(--fonts-dark);
    border-color: var(--color-dark-bg-200);
}

body.franchise-page .eq-our-story__section .our-story__bottom-content .our-story__video,
body.franchise-page .eq-our-story__section .our-story__bottom-content .our-story__img,
body.franchise-page .eq-our-story__section .our-story__top-content .our-story__video,
body.franchise-page .eq-our-story__section .our-story__top-content .our-story__img {
    box-shadow: none;
}

body.franchise-page .eq-our-story__section .our-story__top-content {
    border-bottom: 1px solid #22222280;
}

body.franchise-page .eq-our-story__section .our-story__top-content {
    padding-bottom: 71px;
}


body.franchise-page .eq-our-story__section .our-story__bottom-content {
    padding-top: 67px;
    justify-content: start;
}

body.franchise-page .our-story__bottom-content .our-story__sticker {
    display: none;
}

body.franchise-page .our-story__top-content .our-story__content-desc .desc .desc__culture {
    margin-top: 21px;
}

@media only screen and (max-width: 1728px) and (min-width: 992px) {
    body.franchise-page .eq-our-story__section {
        padding: 4.051vw 0.000vw 9.259vw;
    }

    body.franchise-page .our-story__top-content .our-story__content-desc .order-btn a {
        border: 0.058vw solid transparent;
    }

    body.franchise-page .our-story__bottom-content .our-story__content-desc .order-btn a {
        border: 0.058vw solid transparent;
    }

    body.franchise-page .eq-our-story__section .our-story__top-content {
        border-bottom: 0.058vw solid #22222280;
    }

    body.franchise-page .eq-our-story__section .our-story__top-content {
        padding-bottom: 4.109vw;
    }

    body.franchise-page .eq-our-story__section .our-story__bottom-content {
        padding-top: 3.877vw;
    }

    body.franchise-page .our-story__top-content .our-story__content-desc .desc .desc__culture {
        margin-top: 1.215vw;
    }
}

@media only screen and (max-width: 991px) {
    body.franchise-page .our-story__bottom-content .our-story__sticker {
        display: block;
    }

    body.franchise-page .eq-our-story__section {
        padding: 88px 0px 67px;
    }

    body.franchise-page .eq-our-story__section .our-story__top-content {
        padding-bottom: 46px;
    }

    body.franchise-page .eq-our-story__section .our-story__bottom-content {
        padding-top: 46px;
    }

    body.franchise-page .our-story__bottom-content .our-story__content-desc .order-btn a {
        background-color: var(--color-primary-bg);
        color: var(--fonts-light);
    }

    body.franchise-page .our-story__bottom-content .our-story__content-desc .order-btn a:hover {
        background-color: transparent;
        color: var(--fonts-red);
        border-color: var(--color-primary-bg);
    }
}

body.franchise-page .eq-through-year__section {
    padding-top: 0px;
    padding-bottom: 0px;
}

/* franchise page Why Rustyz Section CSS End Here*/

/* franchise page Franchise Review Section CSS Start Here*/

.eq-franchisees-review-section {
    padding: 98px 0px 70px;
    background-color: var(--color-body-bg);
}

.eq-franchisees-review-section .franchisees-review-section__wrapper {
    padding: 39px 0px 83px;
    background: linear-gradient(0deg, #1F1F1F, #1F1F1F),
        linear-gradient(252.86deg, rgba(0, 0, 0, 0) 1.22%, #000000 98.78%);
}

.eq-franchisees-review-section .review-section__heading h2 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 96px;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--fonts-yellow);
    max-width: 60%;
    margin-bottom: 30px;
}

.eq-franchisees-review-section .review-section__slider-wrapper .review-section__slider {
    display: flex;
    justify-content: center;
    gap: 43px;
    align-items: center;
}

.review-section__slider-wrapper .review-section__slider.js-review-slider.slick-initialized .slider__card {
    padding: 0px 21px;
}

.review-section__slider.js-review-slider.slick-initialized .slick-list.draggable {
    margin: 0px -21px;
}

.review-section__slider-wrapper .review-section__slider .slider__card .slider-card__wrapper {
    padding: 39px 49px 27px 30px;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.review-section__slider-wrapper .review-section__slider .slider__card:nth-child(odd) .slider-card__wrapper {
    background-color: var(--color-secondary-bg);
}

.review-section__slider-wrapper .review-section__slider .slider__card:nth-child(even) .slider-card__wrapper {
    background-color: var(--color-bg-white);
}

.review-section__slider .slider__card .slider-media__wrapper {
    max-width: 100px;
    width: 100%;
}

.review-section__slider .slider__card .slider-media__wrapper .img-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 100%;
    border-radius: 100px;
    overflow: hidden;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
}

.review-section__slider .slider__card .slider-media__wrapper .img-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.review-section__slider .slider__card .slider__content .slider__desc p {
    font-family: var(--fonts-card-desc);
    font-weight: 400;
    font-size: 24px;
    line-height: 1.3;
    color: var(--fonts-review-card);
    /* margin-top: 39px; */
    margin-top: 35px;
}

.review-section__slider .slider__card .slider__content .reviewer__name p {
    font-family: var(--fonts-card-desc);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    color: var(--fonts-review-card);
    /* margin-top: 20px; */
    margin-top: 18px;
}

@media only screen and (max-width: 1728px) and (min-width: 992px) {
    .eq-franchisees-review-section {
        padding: 5.671vw 0.000vw 4.051vw;
    }

    .eq-franchisees-review-section .franchisees-review-section__wrapper {
        padding: 2.257vw 0.000vw 4.803vw;
    }

    .eq-franchisees-review-section .review-section__heading h2 {
        font-size: 5.556vw;
        margin-bottom: 1.736vw;
    }

    .eq-franchisees-review-section .review-section__slider-wrapper .review-section__slider {
        gap: 2.488vw;
    }

    .review-section__slider-wrapper .review-section__slider .slider__card .slider-card__wrapper {
        padding: 2.257vw 2.836vw 1.563vw 1.736vw;
        border-radius: 1.447vw;
    }

    .review-section__slider .slider__card .slider-media__wrapper {
        max-width: 5.787vw;
    }

    .review-section__slider .slider__card .slider-media__wrapper .img-wrapper {
        border-radius: 5.787vw;
    }

    .review-section__slider .slider__card .slider__content .slider__desc p {
        font-size: 1.389vw;
        /* margin-top: 2.257vw; */
        margin-top: 2.025vw;
    }

    .review-section__slider .slider__card .slider__content .reviewer__name p {
        font-size: 0.926vw;
        /* margin-top: 1.157vw; */
        margin-top: 1.042vw;
    }
}

@media only screen and (max-width: 991px) {
    .eq-franchisees-review-section {
        padding: 54px 20px 33px;
    }

    .eq-franchisees-review-section .review-section__heading h2 {
        font-size: 64px;
        max-width: 90%;
        margin-bottom: 28px;
    }

    .eq-franchisees-review-section .review-section__slider-wrapper .review-section__slider.js-review-slider.slick-initialized {
        display: block;
    }

    .eq-franchisees-review-section .review-section__slider-wrapper .review-section__slider {
        flex-direction: column;
        gap: 26px;
    }

    .eq-franchisees-review-section .franchisees-review-section__wrapper {
        padding: 36px 0px 65px;
        border-radius: 25px;
        -webkit-border-radius: 25px;
        -moz-border-radius: 25px;
        -ms-border-radius: 25px;
        -o-border-radius: 25px;
    }
}

@media only screen and (max-width: 767px) {
    .review-section__slider-wrapper .review-section__slider .slider__card .slider-card__wrapper {
        padding: 20px 42px 14px 20px;
    }

    .review-section__slider .slider__card .slider__content .slider__desc p {
        margin-top: 45px;
    }
}

@media only screen and (max-width: 340px) {
    .eq-franchisees-review-section .review-section__heading h2 {
        font-size: 54px;
    }
}

/* franchise page Franchise Review Section CSS End Here*/

/* franchise page FAQ Section CSS Start Here*/

.eq-faq-section {
    /* padding-bottom: 114px; */
    padding-bottom: 160px;
    background-color: var(--color-body-bg);
}

.eq-faq-section .faq-section__main-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 43px;
}

.faq-section__main-wrapper .faq-left__wrapper {
    max-width: 733px;
    width: 100%;
    padding: 39px 32px 35px 30px;
    background-color: var(--color-secondary-bg);
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.faq-section__main-wrapper .faq-left__wrapper .faq-heading h2 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 96px;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--fonts-dark);
    margin-bottom: 42px;
}

.faq-section__main-wrapper .faq-left__wrapper .faq-accordian__wrapper {
    height: 580px;
    overflow-y: auto;
}

.faq-section__main-wrapper .faq-left__wrapper .faq-accordian__wrapper .faq-item:not(:last-child) {
    border-bottom: 1px solid var(--color-black-bg);
    padding-bottom: 5px;
    margin-bottom: 25px;
}

.faq-section__main-wrapper .faq-left__wrapper .faq-accordian__wrapper .faq-item:last-child.active {
    border-bottom: 1px solid var(--color-black-bg);
    padding-bottom: 5px;
}

.faq-section__main-wrapper .faq-left__wrapper .faq-accordian__wrapper .faq-item .faq-question h4,
.faq-section__main-wrapper .faq-left__wrapper .faq-accordian__wrapper .faq-item .faq-question span {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 36px;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--fonts-dark);
}

.faq-section__main-wrapper .faq-left__wrapper .faq-accordian__wrapper .faq-item .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 21px;
    cursor: pointer;
}

.faq-section__main-wrapper .faq-left__wrapper .faq-accordian__wrapper .faq-item:last-child .faq-question {
    margin-bottom: 0px;
}

.faq-section__main-wrapper .faq-left__wrapper .faq-accordian__wrapper .faq-item:last-child .faq-answer p {
    margin-top: 21px;
}

.faq-left__wrapper .faq-accordian__wrapper .faq-item .faq-answer p {
    font-family: var(--fonts-card-desc);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    color: var(--fonts-dark);
}

.faq-accordian__wrapper .faq-item .faq-question span.minus {
    display: none;
}

.faq-accordian__wrapper .faq-item.active .faq-question span.minus {
    display: block;
}

.faq-accordian__wrapper .faq-item.active .faq-question span.plus {
    display: none;
}

.faq-accordian__wrapper .faq-item .faq-answer {
    height: 0;
    overflow: hidden;
    transition: height 0.4s ease;
}

.faq-accordian__wrapper .faq-item.active .faq-answer {
    max-height: 300px;
    opacity: 1;
}

.faq-section__main-wrapper .faq-right__wrapper {
    max-width: 733px;
    width: 100%;
}

.faq-section__form-content .form__wrapper {
    background-color: var(--color-dark-bg-200);
    padding: 39px 55px 27px 32px;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.faq-section__form-content .form__wrapper .form-heading {
    margin-bottom: 35px;
}

.faq-section__form-content .form__wrapper .form-heading h2 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 96px;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--fonts-yellow);
}

.faq-section__form-content .form__wrapper form input {
    display: block;
    width: 100%;
    background-color: var(--color-body-bg);
    margin-bottom: 39px;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 24px;
    line-height: 0.9;
    /* text-transform: uppercase; */
    color: #22222240;
    border: none;
    outline: none;
    padding: 21px 33px;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
}

.faq-section__form-content .form__wrapper form textarea {
    background-color: var(--color-body-bg);
    padding: 21px 33px;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 24px;
    line-height: 0.9;
    width: 100%;
    height: 333px;
    color: #22222240;
    margin-bottom: 28px;
    text-transform: uppercase;
    outline: none;
    border: none;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
}

.faq-section__form-content .form__wrapper form textarea::placeholder {
    color: #22222240;
}

.faq-section__form-content .form__wrapper form input::placeholder {
    color: #22222240;
}

.faq-section__form-content .form__wrapper form button {
    font-family: var(--font-button-secondery);
    font-weight: 500;
    font-size: 20px;
    line-height: 1;
    text-align: center;
    padding: 13px 10px;
    color: var(--fonts-light);
    background-color: var(--color-primary-bg);
    transition: all 0.3s ease-in-out;
    max-width: 136px;
    width: 100%;
    outline: none;
    border: none;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.faq-section__form-content .form__wrapper form button:hover {
    background-color: var(--color-bg-white);
    color: var(--fonts-red);
}

body.franchise-page .eq-our-news-section {
    padding-bottom: 80px;
}

@media only screen and (max-width: 1728px) and (min-width: 992px) {
    .eq-faq-section {
        /* padding-bottom: 6.597vw; */
        padding-bottom: 9.259vw;
    }

    .eq-faq-section .faq-section__main-wrapper {
        gap: 2.488vw;
    }

    .faq-section__main-wrapper .faq-left__wrapper {
        max-width: 42.419vw;
        padding: 2.257vw 1.852vw 2.025vw 1.736vw;
        border-radius: 1.447vw;
    }

    .faq-section__main-wrapper .faq-left__wrapper .faq-heading h2 {
        font-size: 5.556vw;
        margin-bottom: 2.431vw;
    }

    .faq-section__main-wrapper .faq-left__wrapper .faq-accordian__wrapper {
        height: 33.565vw;
    }

    .faq-section__main-wrapper .faq-left__wrapper .faq-accordian__wrapper .faq-item:not(:last-child) {
        border-bottom: 0.058vw solid var(--color-black-bg);
        padding-bottom: 0.289vw;
        margin-bottom: 1.447vw;
    }

    .faq-section__main-wrapper .faq-left__wrapper .faq-accordian__wrapper .faq-item:last-child.active {
        border-bottom: 0.058vw solid var(--color-black-bg);
        padding-bottom: 0.289vw;
    }

    .faq-section__main-wrapper .faq-left__wrapper .faq-accordian__wrapper .faq-item .faq-question h4,
    .faq-section__main-wrapper .faq-left__wrapper .faq-accordian__wrapper .faq-item .faq-question span {
        font-size: 2.083vw;
    }

    .faq-section__main-wrapper .faq-left__wrapper .faq-accordian__wrapper .faq-item .faq-question {
        margin-bottom: 1.215vw;
    }

    .faq-left__wrapper .faq-accordian__wrapper .faq-item .faq-answer p {
        font-size: 0.926vw;
    }

    .faq-accordian__wrapper .faq-item.active .faq-answer {
        max-height: 17.361vw;
    }

    .faq-section__main-wrapper .faq-right__wrapper {
        max-width: 42.419vw;
    }

    .faq-section__form-content .form__wrapper {
        padding: 2.257vw 3.183vw 1.563vw 1.852vw;
        border-radius: 1.447vw;
    }

    .faq-section__form-content .form__wrapper .form-heading {
        margin-bottom: 2.025vw;
    }

    .faq-section__form-content .form__wrapper .form-heading h2 {
        font-size: 5.556vw;
    }

    .faq-section__form-content .form__wrapper form input {
        margin-bottom: 2.257vw;
        font-size: 1.389vw;
        padding: 1.215vw 1.910vw;
        border-radius: 2.315vw;
    }

    .faq-section__form-content .form__wrapper form textarea {
        padding: 1.215vw 1.910vw;
        font-size: 1.389vw;
        height: 19.271vw;
        margin-bottom: 1.620vw;
        border-radius: 1.389vw;
    }

    .faq-section__form-content .form__wrapper form button {
        font-size: 1.157vw;
        padding: 0.752vw 0.579vw;
        max-width: 7.870vw;
        border-radius: 1.447vw;
    }

    body.franchise-page .eq-our-news-section {
        padding-bottom: 4.630vw;
    }
}

@media only screen and (max-width: 991px) {
    .eq-faq-section {
        padding-bottom: 48px;
    }

    .eq-faq-section .faq-section__main-wrapper {
        flex-direction: column;
        gap: 26px;
    }

    .faq-section__main-wrapper .faq-left__wrapper,
    .faq-section__main-wrapper .faq-right__wrapper {
        max-width: 100%;
    }

    body.franchise-page .eq-our-news-section {
        padding-bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .faq-section__main-wrapper .faq-left__wrapper {
        padding: 20px 18px;
    }

    .faq-section__main-wrapper .faq-left__wrapper .faq-heading h2 {
        font-size: 64px;
        margin-bottom: 28px;
    }

    .faq-section__main-wrapper .faq-left__wrapper .faq-accordian__wrapper {
        height: 542px;
    }

    .faq-section__main-wrapper .faq-left__wrapper .faq-accordian__wrapper .faq-item .faq-question h4 {
        font-size: 20px;
    }

    .faq-section__main-wrapper .faq-left__wrapper .faq-accordian__wrapper .faq-item .faq-question span {
        font-size: 24px;
    }

    .faq-section__main-wrapper .faq-left__wrapper .faq-accordian__wrapper .faq-item:not(:last-child) {
        margin-bottom: 27px;
    }

    .faq-section__form-content .form__wrapper .form-heading h2 {
        font-size: 64px;
        max-width: 270px;
        width: 100%;
    }

    .faq-section__form-content .form__wrapper {
        padding: 27px 18px 30px 23px;
    }
}

/* franchise page FAQ Section CSS End Here*/

/* franchise page CSS End Here*/

/* Dynamic Inner News Page CSS Start*/

body.inner-news-page .eq-inner-news__banner-section .banner-section__main-wrapper {
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
}

.eq-inner-news__news-section .news-section__main-wrapper .news-section__all-content p {
    font-family: var(--fonts-card-desc);
    font-weight: 400;
    font-size: 20px;
    line-height: 1.3;
    color: var(--fonts-dark);
}

.eq-inner-news__news-section .news-section__main-wrapper .news-section__all-content figure {
    max-width: 100%;
    width: 100%;
    position: relative;
    padding-bottom: 59.58%;
    margin: 41px 0px 30px;
    border-radius: 25px;
    overflow: hidden;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.eq-inner-news__news-section .news-section__main-wrapper .news-section__all-content figure img,
.eq-inner-news__news-section .news-section__main-wrapper .news-section__all-content figure video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.inner-news-page .eq-inner-news__banner-section {
    background-color: var(--color-body-bg);
}

@media only screen and (max-width: 1728px) and (min-width: 992px) {
    .eq-inner-news__news-section .news-section__main-wrapper .news-section__all-content p {
        font-size: 1.157vw;
    }

    .eq-inner-news__news-section .news-section__main-wrapper .news-section__all-content figure {
        margin: 2.373vw 0.000vw 1.736vw;
        border-radius: 1.447vw;
    }
}

@media only screen and (max-width: 991px) {
    body.inner-news-page .eq-inner-news__banner-section .banner-section__main-wrapper {
        border-radius: 0px 0px 25px 25px;
        -webkit-border-radius: 0px 0px 25px 25px;
        -moz-border-radius: 0px 0px 25px 25px;
        -ms-border-radius: 0px 0px 25px 25px;
        -o-border-radius: 0px 0px 25px 25px;
    }

    body.inner-news-page .eq-inner-news__banner-section .banner-section__main-wrapper .banner-section__heading-wrapper {
        padding: 0px 20px;
    }
}

@media only screen and (max-width: 767px) {
    .eq-inner-news__news-section .news-section__main-wrapper .news-section__all-content figure {
        margin: 65px 0px 45px;
    }
}

/* Dynamic Inner News Page CSS End*/


/* Franchise Page Form Error CSS Start*/

.faq-section__form-content .wpcf7-form .wpcf7-form-control-wrap {
    position: relative;
    display: block;
}

.faq-section__form-content .wpcf7-form p br {
    display: none;
}

.faq-section__form-content .wpcf7-form .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
    position: absolute;
    width: 100%;
    bottom: -30px;
    font-size: 16px;
}

.faq-section__form-content .wpcf7-form {
    position: relative;
}

.faq-section__form-content form.invalid .wpcf7-response-output {
    margin: 0px;
    border: none;
    color: var(--fonts-red);
    position: absolute;
    bottom: 50px;
    font-size: 16px;
}

@media only screen and (max-width: 1728px) and (min-width: 992px) {
    .faq-section__form-content .wpcf7-form .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
        bottom: -1.736vw;
        font-size: 0.926vw;
    }

    .faq-section__form-content form.invalid .wpcf7-response-output {
        font-size: 0.926vw;
        bottom: 2.894vw
    }
}

@media only screen and (max-width: 767px) {
    .faq-section__form-content form.invalid .wpcf7-response-output {
        bottom: 45px;
    }
}



/* Franchise Page Form Error CSS End*/

@media only screen and (max-width: 1728px) and (min-width: 992px) {
    .eq-faq-section {
        padding-bottom: 6.597vw;
    }

    .eq-faq-section .faq-section__main-wrapper {
        gap: 2.488vw;
    }

    .faq-section__main-wrapper .faq-left__wrapper {
        max-width: 42.419vw;
        padding: 2.257vw 1.852vw 2.025vw 1.736vw;
        border-radius: 1.447vw;
    }

    .faq-section__main-wrapper .faq-left__wrapper .faq-heading h2 {
        font-size: 5.556vw;
        margin-bottom: 2.431vw;
    }

    .faq-section__main-wrapper .faq-left__wrapper .faq-accordian__wrapper {
        height: 33.565vw;
    }

    .faq-section__main-wrapper .faq-left__wrapper .faq-accordian__wrapper .faq-item:not(:last-child) {
        border-bottom: 0.058vw solid var(--color-black-bg);
        padding-bottom: 0.289vw;
        margin-bottom: 1.447vw;
    }

    .faq-section__main-wrapper .faq-left__wrapper .faq-accordian__wrapper .faq-item:last-child.active {
        border-bottom: 0.058vw solid var(--color-black-bg);
        padding-bottom: 0.289vw;
    }

    .faq-section__main-wrapper .faq-left__wrapper .faq-accordian__wrapper .faq-item .faq-question h4,
    .faq-section__main-wrapper .faq-left__wrapper .faq-accordian__wrapper .faq-item .faq-question span {
        font-size: 2.083vw;
    }

    .faq-section__main-wrapper .faq-left__wrapper .faq-accordian__wrapper .faq-item .faq-question {
        margin-bottom: 1.215vw;
    }

    .faq-left__wrapper .faq-accordian__wrapper .faq-item .faq-answer p {
        font-size: 0.926vw;
    }

    .faq-accordian__wrapper .faq-item.active .faq-answer {
        max-height: 17.361vw;
    }

    .faq-section__main-wrapper .faq-right__wrapper {
        max-width: 42.419vw;
    }

    .faq-section__form-content .form__wrapper {
        padding: 2.257vw 3.183vw 1.563vw 1.852vw;
        border-radius: 1.447vw;
    }

    .faq-section__form-content .form__wrapper .form-heading {
        margin-bottom: 2.025vw;
    }

    .faq-section__form-content .form__wrapper .form-heading h2 {
        font-size: 5.556vw;
    }

    .faq-section__form-content .form__wrapper form input {
        margin-bottom: 2.257vw;
        font-size: 1.389vw;
        padding: 1.215vw 1.910vw;
        border-radius: 2.315vw;
    }

    .faq-section__form-content .form__wrapper form textarea {
        padding: 1.215vw 1.910vw;
        font-size: 1.389vw;
        height: 19.271vw;
        margin-bottom: 1.620vw;
        border-radius: 1.389vw;
    }

    .faq-section__form-content .form__wrapper form button {
        font-size: 1.157vw;
        padding: 0.752vw 0.579vw;
        max-width: 7.870vw;
        border-radius: 1.447vw;
    }

    body.franchise-page .eq-our-news-section {
        padding-bottom: 4.630vw;
    }
}

@media only screen and (max-width: 991px) {
    .eq-faq-section {
        padding-bottom: 48px;
    }

    .eq-faq-section .faq-section__main-wrapper {
        flex-direction: column;
        gap: 26px;
    }

    .faq-section__main-wrapper .faq-left__wrapper,
    .faq-section__main-wrapper .faq-right__wrapper {
        max-width: 100%;
    }

    body.franchise-page .eq-our-news-section {
        padding-bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .faq-section__main-wrapper .faq-left__wrapper {
        padding: 20px 18px;
    }

    .faq-section__main-wrapper .faq-left__wrapper .faq-heading h2 {
        font-size: 64px;
        margin-bottom: 28px;
    }

    .faq-section__main-wrapper .faq-left__wrapper .faq-accordian__wrapper {
        /* height: 542px; */
        height: fit-content;
    }

    .faq-section__main-wrapper .faq-left__wrapper .faq-accordian__wrapper .faq-item .faq-question h4 {
        font-size: 20px;
    }

    .faq-section__main-wrapper .faq-left__wrapper .faq-accordian__wrapper .faq-item .faq-question span {
        font-size: 24px;
    }

    .faq-section__main-wrapper .faq-left__wrapper .faq-accordian__wrapper .faq-item:not(:last-child) {
        margin-bottom: 27px;
    }

    .faq-section__form-content .form__wrapper .form-heading h2 {
        font-size: 64px;
        max-width: 270px;
        width: 100%;
    }

    .faq-section__form-content .form__wrapper {
        padding: 27px 18px 30px 23px;
    }
}

/* franchise page FAQ Section CSS End Here*/

/* franchise page CSS End Here*/

/* Dynamic Inner News Page CSS Start*/

.eq-inner-news__news-section .news-section__main-wrapper .news-section__all-content p {
    font-family: var(--fonts-card-desc);
    font-weight: 400;
    font-size: 20px;
    line-height: 1.3;
    color: var(--fonts-dark);
    margin: 0 0 30px 0;
}

.eq-inner-news__news-section .news-section__main-wrapper .news-section__all-content p:last-child {
    margin-bottom: 0px;
}

.eq-inner-news__news-section .news-section__main-wrapper .news-section__all-content figure {
    max-width: 100%;
    width: 100%;
    position: relative;
    padding-bottom: 59.58%;
    margin: 41px 0px 30px;
    border-radius: 25px;
    overflow: hidden;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.eq-inner-news__news-section .news-section__main-wrapper .news-section__all-content img,
.eq-inner-news__news-section .news-section__main-wrapper .news-section__all-content video {
    width: 100%;
    /* height: 100%; */
    height: 566px;
    object-fit: cover;
    margin: 30px 0 0;
    border-radius: 20px;
}

@media only screen and (max-width: 1728px) and (min-width: 992px) {
    .eq-inner-news__news-section .news-section__main-wrapper .news-section__all-content p {
        font-size: 1.157vw;
    }

    .eq-inner-news__news-section .news-section__main-wrapper .news-section__all-content figure {
        margin: 2.373vw 0.000vw 1.736vw;
        border-radius: 1.447vw;
    }

    .eq-inner-news__news-section .news-section__main-wrapper .news-section__all-content img,
    .eq-inner-news__news-section .news-section__main-wrapper .news-section__all-content video {
        height: 32.755vw;
        margin: 1.736vw 0 0;
        border-radius: 1.157vw;
    }
}

@media only screen and (max-width: 767px) {
    .eq-inner-news__news-section .news-section__main-wrapper .news-section__all-content figure {
        margin: 65px 0px 45px;
    }

    .eq-inner-news__news-section .news-section__main-wrapper .news-section__all-content img,
    .eq-inner-news__news-section .news-section__main-wrapper .news-section__all-content video {
        height: 216px;
    }
}

/* Dynamic Inner News Page CSS End*/


/* Franchise Page Form Error CSS Start*/

.faq-section__form-content .wpcf7-form .wpcf7-form-control-wrap {
    position: relative;
    display: block;
}

.faq-section__form-content .wpcf7-form p br {
    display: none;
}

.faq-section__form-content .wpcf7-form .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
    position: absolute;
    width: 100%;
    bottom: -30px;
    font-size: 16px;
}

.faq-section__form-content .wpcf7-form {
    position: relative;
}

.faq-section__form-content form.invalid .wpcf7-response-output {
    margin: 0px;
    border: none;
    color: var(--fonts-red);
    position: absolute;
    bottom: 50px;
    font-size: 16px;
}

@media only screen and (max-width: 1728px) and (min-width: 992px) {
    .faq-section__form-content .wpcf7-form .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
        bottom: -1.736vw;
        font-size: 0.926vw;
    }

    .faq-section__form-content form.invalid .wpcf7-response-output {
        font-size: 0.926vw;
        bottom: 2.894vw
    }
}

@media only screen and (max-width: 767px) {
    .faq-section__form-content form.invalid .wpcf7-response-output {
        bottom: 45px;
    }
}

/* Franchise Page Form Error CSS End*/


/*Footer Section Dynamic Subscribe section CSS start*/

.eq-footer__section .footer-top .footer-top__subscribe .subscribe__input button {
    width: 43px;
    height: 44px;
    background-color: var(--color-secondary-bg);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    outline: none;
    font-size: 0px;
    border-radius: 25px;
}

.eq-footer__section .footer-top .footer-top__subscribe .subscribe__input .wpcf7-not-valid-tip {
    position: absolute;
    bottom: -18px;
    font-size: 14px;
    font-family: var(--fonts-card-desc);
}

.eq-footer__section .footer-top .footer-top__subscribe .subscribe__input .wpcf7 form.invalid .wpcf7-response-output,
.eq-footer__section .footer-top .footer-top__subscribe .subscribe__input .wpcf7 form.failed .wpcf7-response-output {
    font-size: 14px;
    font-family: var(--fonts-card-desc);
    margin: 0px;
    padding: 0px;
    border: none;
    color: #BE1622;
    position: unset;
    bottom: 0;
}

.eq-footer__section .footer-top .footer-top__subscribe .subscribe__input .wpcf7 form.sent .wpcf7-response-output {
    color: #46b450;
}

.eq-footer__section .footer-top .footer-top__subscribe .subscribe__input button:after {
    content: '';
    position: absolute;
    width: 23px;
    height: 23px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 25 25' fill='none'%3E%3Cpath d='M0.500488 12.1267C0.500488 5.69782 5.69831 0.499999 12.1272 0.499999C18.5561 0.5 23.7539 5.69782 23.7539 12.1267C23.7539 18.5556 18.5561 23.7534 12.1272 23.7534C5.69831 23.7534 0.500487 18.5556 0.500488 12.1267ZM22.3861 12.1267C22.3861 6.45014 17.8038 1.86785 12.1272 1.86785C6.45063 1.86785 1.86834 6.45014 1.86834 12.1267C1.86834 17.8033 6.45063 22.3856 12.1272 22.3856C17.8038 22.3856 22.3861 17.8033 22.3861 12.1267Z' fill='%23BE1622' stroke='%23BE1622'/%3E%3Cpath d='M11.1688 17.8548L16.2009 12.8169L6.13663 12.8169L6.13663 11.4367L16.2009 11.4367L11.1688 6.39877L12.1338 5.43262L18.8203 12.1268L12.1338 18.8209L11.1688 17.8548Z' fill='%23BE1622' stroke='%23BE1622'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}


@media only screen and (max-width: 1728px) and (min-width: 992px) {
    .eq-footer__section .footer-top .footer-top__subscribe .subscribe__input button {
        width: 2.488vw;
        height: 2.546vw;
        right: 0.579vw;
        border-radius: 1.447vw;
    }

    .eq-footer__section .footer-top .footer-top__subscribe .subscribe__input .wpcf7 form.invalid .wpcf7-response-output,
    .eq-footer__section .footer-top .footer-top__subscribe .subscribe__input .wpcf7 form.failed .wpcf7-response-output {
        font-size: 0.810vw;
        font-family: var(--fonts-card-desc);
        margin: 0.000vw;
        padding: 0.000vw;
        border: none;
        color: #BE1622;
        position: absolute;
        bottom: 0;
    }

    .eq-footer__section .footer-top .footer-top__subscribe .subscribe__input button:after {
        width: 1.331vw;
        height: 1.331vw;
    }

    .eq-footer__section .footer-top .footer-top__subscribe .subscribe__input .wpcf7-not-valid-tip {
        bottom: -1.042vw;
        font-size: 0.81vw;
    }
}

@media only screen and (max-width: 991px) {
    .eq-footer__section .footer-top .footer-top__subscribe .subscribe__input button {
        background-color: var(--color-black-bg);
    }

    .eq-footer__section .footer-top .footer-top__subscribe .subscribe__input button:after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 25 25' fill='none'%3E%3Cpath d='M0.499999 12.1267C0.5 5.69782 5.69782 0.499999 12.1267 0.499999C18.5556 0.5 23.7534 5.69782 23.7534 12.1267C23.7534 18.5556 18.5556 23.7534 12.1267 23.7534C5.69782 23.7534 0.499999 18.5556 0.499999 12.1267ZM22.3856 12.1267C22.3856 6.45014 17.8033 1.86785 12.1267 1.86785C6.45014 1.86785 1.86785 6.45014 1.86785 12.1267C1.86785 17.8033 6.45014 22.3856 12.1267 22.3856C17.8033 22.3856 22.3856 17.8033 22.3856 12.1267Z' fill='white' stroke='white'/%3E%3Cpath d='M11.1693 17.8543L16.2013 12.8164L6.13712 12.8164L6.13712 11.4362L16.2013 11.4362L11.1693 6.39828L12.1343 5.43213L18.8208 12.1263L12.1343 18.8205L11.1693 17.8543Z' fill='white' stroke='white'/%3E%3C/svg%3E");
    }
}

/*Footer Section Dynamic Subscribe section CSS end*/

/* Dynamic Privacy Policy Page CSS Start*/

body.privacy-policy .eq-news-page__banner-section {
    background-color: var(--color-body-bg);
    border-radius: 0;
    padding: 0;
}

body.privacy-policy .eq-news-page__banner-section-wrapper {
    background-color: var(--color-primary-bg);
    border-radius: 0px 0px 25px 25px;
    padding: 245px 0px 70px;
}

body.privacy-policy .eq-page-content-section {
    padding: 84px 0px 169px;
    background-color: var(--color-body-bg);
}

body.privacy-policy .eq-news-page__banner-section .banner-section__heading h1 {
    font-size: 96px;
}

body.privacy-policy .eq-page-content-section .page-content__wrapper {
    max-width: 1180px;
    width: 100%;
}

body.privacy-policy .eq-page-content-section .page-content__wrapper h2,
body.privacy-policy .eq-page-content-section .page-content__wrapper h3 {
    font-family: var(--fonts-card-desc);
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    color: var(--font-trems);
    margin-bottom: 25px;
}

body.privacy-policy .eq-page-content-section .page-content__wrapper h3 {
    font-weight: 400;
    margin-bottom: 0px;
}

body.privacy-policy .eq-page-content-section .page-content__wrapper p {
    font-family: var(--fonts-card-desc);
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    color: var(--font-trems);
    margin-bottom: 25px;
}

body.privacy-policy .eq-page-content-section .page-content__wrapper p:last-child {
    margin-bottom: 0px;
}

body.privacy-policy .eq-page-content-section .page-content__wrapper ul {
    margin-bottom: 25px;
    padding: 0 0 0 30px;
}

body.privacy-policy .eq-page-content-section .page-content__wrapper ul li {
    list-style: disc;
    margin: 0 0 5px 0;
}

@media only screen and (max-width: 1728px) and (min-width: 992px) {
    body.privacy-policy .eq-news-page__banner-section-wrapper {
        /* padding: 4.861vw 0.000vw 9.780vw; */
        padding: 14.178vw 0.000vw 4.051vw;
        border-radius: 0.000vw 0.000vw 1.447vw 1.447vw;
    }

    body.privacy-policy .eq-page-content-section {
        padding: 4.861vw 0.000vw 9.780vw;
    }

    body.privacy-policy .eq-page-content-section .page-content__wrapper {
        max-width: 68.287vw;
    }

    body.privacy-policy .eq-news-page__banner-section .banner-section__heading h1,
    body.privacy-policy .eq-page-content-section .page-content__wrapper h3 {
        font-size: 5.556vw;
    }
    body.privacy-policy .eq-page-content-section .page-content__wrapper h3 {
        font-size: 1.157vw;
    }

    body.privacy-policy .eq-page-content-section .page-content__wrapper h2 {
        font-size: 1.157vw;
        margin-bottom: 1.447vw;
    }

    body.privacy-policy .eq-page-content-section .page-content__wrapper p {
        font-size: 1.157vw;
        margin-bottom: 1.447vw;
    }

    body.privacy-policy .eq-page-content-section .page-content__wrapper ul {
        margin-bottom: 1.447vw;
    }
}

@media only screen and (max-width: 991px) {
    body.privacy-policy .eq-page-content-section {
        padding: 45px 0px 67px;
    }

    body.privacy-policy .eq-news-page__banner-section-wrapper {
        padding: 162px 0px 24px;
    }
}

@media only screen and (max-width: 580px) {
    body.privacy-policy .eq-page-content-section .page-content__wrapper p {
        font-size: 16px;
    }

    body.privacy-policy .eq-news-page__banner-section .banner-section__heading h1 {
        font-size: 64px;
        max-width: 325px;
        width: 100%;
        margin-top: 0px;
    }

    body.privacy-policy .eq-page-content-section .page-content__wrapper h2,
    body.privacy-policy .eq-page-content-section .page-content__wrapper h3 {
        font-size: 16px;
    }
}


/* Dynamic Privacy Policy Page CSS End*/

/* Contact Us error message CSS*/

body.page-template-contact-us .main-section__form-content .wpcf7 form.invalid .wpcf7-response-output,
body.page-template-contact-us .main-section__form-content .wpcf7 form.failed .wpcf7-response-output {
    border: none;
    padding: 0;
    margin: 0;
    color: var(--fonts-red);
    position: absolute;
    font-size: 16px;
    bottom: 5px;
}

body.page-template-contact-us .main-section__form-content .wpcf7-not-valid-tip {
    position: absolute;
    bottom: -25px;
    font-size: 16px;
}

@media only screen and (max-width: 1728px) and (min-width: 992px) {

    body.page-template-contact-us .main-section__form-content .wpcf7 form.invalid .wpcf7-response-output,
    body.page-template-contact-us .main-section__form-content .wpcf7 form.failed .wpcf7-response-output {
        bottom: 0.289vw;
        font-size: 0.926vw;
    }

    body.page-template-contact-us .main-section__form-content .wpcf7-not-valid-tip {
        font-size: 0.926vw;
        bottom: -1.447vw;
    }
}

/*Dynamic feanchise banner css*/

body.franchise-page .eq-franchise__banner-section .banner-section__main-wrapper {
    background-color: var(--color-dark-bg-200);
}

body.franchise-page .eq-franchise__banner-section .banner-section__content-wrapper .banner__btn a {
    font-family: var(--font-button-secondery);
    font-weight: 700;
    font-size: 32px;
    line-height: 1;
    text-align: center;
    color: var(--fonts-dark);
    background-color: var(--color-secondary-bg);
    min-width: 170px;
    width: fit-content;
    display: block;
    padding: 12px 10px 6px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

body.franchise-page .eq-franchise__banner-section .banner-section__content-wrapper .banner__btn {
    margin-top: 25px;
}

body.franchise-page .eq-franchise__banner-section .banner-section__content-wrapper .banner__btn a:hover {
    background-color: var(--color-dark-bg-200);
    color: var(--fonts-yellow);
}

@media only screen and (max-width: 1728px) and (min-width: 992px) {
    body.franchise-page .eq-franchise__banner-section .banner-section__content-wrapper .banner__btn a {
        font-size: 1.852vw;
        min-width: 9.838vw;
        padding: 0.694vw 0.579vw 0.347vw;
        border-radius: 2.894vw;
    }

    body.franchise-page .eq-franchise__banner-section .banner-section__content-wrapper .banner__btn {
        margin-top: 1.447vw;
    }
}

@media only screen and (max-width: 767px) {
    body.franchise-page .eq-franchise__banner-section .banner-section__content-wrapper .banner__btn a {
        font-size: 21px;
        min-width: 118px;
        padding: 9px 10px 7px;
        border-radius: 40px;
    }

    body.franchise-page .eq-franchise__banner-section .banner-section__content-wrapper .banner__btn {
        margin-top: 26px;
    }
}

/* 09-02-2026 css*/
/* .through-year__main-wrapper .cus-container {
    padding: 0 30px;
} */oter Section Dynamic Subscribe section CSS start*/

.eq-footer__section .footer-top .footer-top__subscribe .subscribe__input button {
    width: 43px;
    height: 44px;
    background-color: var(--color-secondary-bg);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    outline: none;
    font-size: 0px;
    border-radius: 25px;
}

.eq-footer__section .footer-top .footer-top__subscribe .subscribe__input .wpcf7-not-valid-tip {
    position: absolute;
    bottom: -18px;
    font-size: 14px;
    font-family: var(--fonts-card-desc);
}

.eq-footer__section .footer-top .footer-top__subscribe .subscribe__input .wpcf7 form.invalid .wpcf7-response-output,
.eq-footer__section .footer-top .footer-top__subscribe .subscribe__input .wpcf7 form.failed .wpcf7-response-output {
    font-size: 14px;
    font-family: var(--fonts-card-desc);
    margin: 0px;
    padding: 0px;
    border: none;
    color: #BE1622;
    position: absolute;
    bottom: 0;
}

.eq-footer__section .footer-top .footer-top__subscribe .subscribe__input .wpcf7 form.sent .wpcf7-response-output {
    color: #46b450;
}

.eq-footer__section .footer-top .footer-top__subscribe .subscribe__input button:after {
    content: '';
    position: absolute;
    width: 23px;
    height: 23px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 25 25' fill='none'%3E%3Cpath d='M0.500488 12.1267C0.500488 5.69782 5.69831 0.499999 12.1272 0.499999C18.5561 0.5 23.7539 5.69782 23.7539 12.1267C23.7539 18.5556 18.5561 23.7534 12.1272 23.7534C5.69831 23.7534 0.500487 18.5556 0.500488 12.1267ZM22.3861 12.1267C22.3861 6.45014 17.8038 1.86785 12.1272 1.86785C6.45063 1.86785 1.86834 6.45014 1.86834 12.1267C1.86834 17.8033 6.45063 22.3856 12.1272 22.3856C17.8038 22.3856 22.3861 17.8033 22.3861 12.1267Z' fill='%23BE1622' stroke='%23BE1622'/%3E%3Cpath d='M11.1688 17.8548L16.2009 12.8169L6.13663 12.8169L6.13663 11.4367L16.2009 11.4367L11.1688 6.39877L12.1338 5.43262L18.8203 12.1268L12.1338 18.8209L11.1688 17.8548Z' fill='%23BE1622' stroke='%23BE1622'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}


@media only screen and (max-width: 1728px) and (min-width: 992px) {
    .eq-footer__section .footer-top .footer-top__subscribe .subscribe__input button {
        width: 2.488vw;
        height: 2.546vw;
        right: 0.579vw;
        border-radius: 1.447vw;
    }

    .eq-footer__section .footer-top .footer-top__subscribe .subscribe__input .wpcf7 form.invalid .wpcf7-response-output,
    .eq-footer__section .footer-top .footer-top__subscribe .subscribe__input .wpcf7 form.failed .wpcf7-response-output {
        font-size: 0.810vw;
        font-family: var(--fonts-card-desc);
        margin: 0.000vw;
        padding: 0.000vw;
        border: none;
        color: #BE1622;
        position: absolute;
        bottom: 0;
    }

    .eq-footer__section .footer-top .footer-top__subscribe .subscribe__input button:after {
        width: 1.331vw;
        height: 1.331vw;
    }

    .eq-footer__section .footer-top .footer-top__subscribe .subscribe__input .wpcf7-not-valid-tip {
        bottom: -1.042vw;
        font-size: 0.81vw;
    }
}

@media only screen and (max-width: 991px) {
    .eq-footer__section .footer-top .footer-top__subscribe .subscribe__input button {
        background-color: var(--color-black-bg);
    }

    .eq-footer__section .footer-top .footer-top__subscribe .subscribe__input button:after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 25 25' fill='none'%3E%3Cpath d='M0.499999 12.1267C0.5 5.69782 5.69782 0.499999 12.1267 0.499999C18.5556 0.5 23.7534 5.69782 23.7534 12.1267C23.7534 18.5556 18.5556 23.7534 12.1267 23.7534C5.69782 23.7534 0.499999 18.5556 0.499999 12.1267ZM22.3856 12.1267C22.3856 6.45014 17.8033 1.86785 12.1267 1.86785C6.45014 1.86785 1.86785 6.45014 1.86785 12.1267C1.86785 17.8033 6.45014 22.3856 12.1267 22.3856C17.8033 22.3856 22.3856 17.8033 22.3856 12.1267Z' fill='white' stroke='white'/%3E%3Cpath d='M11.1693 17.8543L16.2013 12.8164L6.13712 12.8164L6.13712 11.4362L16.2013 11.4362L11.1693 6.39828L12.1343 5.43213L18.8208 12.1263L12.1343 18.8205L11.1693 17.8543Z' fill='white' stroke='white'/%3E%3C/svg%3E");
    }
}

/*Footer Section Dynamic Subscribe section CSS end*/

/* Dynamic Privacy Policy Page CSS Start*/

body.privacy-policy .eq-news-page__banner-section {
    background-color: var(--color-body-bg);
    border-radius: 0;
    padding: 0;
}

body.privacy-policy .eq-news-page__banner-section-wrapper {
    background-color: var(--color-primary-bg);
    border-radius: 0px 0px 25px 25px;
    padding: 245px 0px 70px;
}

body.privacy-policy .eq-page-content-section {
    padding: 84px 0px 169px;
    background-color: var(--color-body-bg);
}

body.privacy-policy .eq-news-page__banner-section .banner-section__heading h1 {
    font-size: 96px;
}

body.privacy-policy .eq-page-content-section .page-content__wrapper {
    max-width: 1180px;
    width: 100%;
}

body.privacy-policy .eq-page-content-section .page-content__wrapper h2,
body.privacy-policy .eq-page-content-section .page-content__wrapper h3 {
    font-family: var(--fonts-card-desc);
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    color: var(--font-trems);
    margin-bottom: 25px;
}

body.privacy-policy .eq-page-content-section .page-content__wrapper h3 {
    font-weight: 400;
    margin-bottom: 0px;
}

body.privacy-policy .eq-page-content-section .page-content__wrapper p {
    font-family: var(--fonts-card-desc);
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    color: var(--font-trems);
    margin-bottom: 25px;
}

body.privacy-policy .eq-page-content-section .page-content__wrapper p:last-child {
    margin-bottom: 0px;
}

body.privacy-policy .eq-page-content-section .page-content__wrapper ul {
    margin-bottom: 25px;
    padding: 0 0 0 30px;
}

body.privacy-policy .eq-page-content-section .page-content__wrapper ul li {
    list-style: disc;
    margin: 0 0 5px 0;
}

@media only screen and (max-width: 1728px) and (min-width: 992px) {
    body.privacy-policy .eq-news-page__banner-section-wrapper {
        /* padding: 4.861vw 0.000vw 9.780vw; */
        padding: 14.178vw 0.000vw 4.051vw;
        border-radius: 0.000vw 0.000vw 1.447vw 1.447vw;
    }

    body.privacy-policy .eq-page-content-section {
        padding: 4.861vw 0.000vw 9.780vw;
    }

    body.privacy-policy .eq-page-content-section .page-content__wrapper {
        max-width: 68.287vw;
    }

    body.privacy-policy .eq-news-page__banner-section .banner-section__heading h1,
    body.privacy-policy .eq-page-content-section .page-content__wrapper h3 {
        font-size: 5.556vw;
    }
    body.privacy-policy .eq-page-content-section .page-content__wrapper h3 {
        font-size: 1.157vw;
    }

    body.privacy-policy .eq-page-content-section .page-content__wrapper h2 {
        font-size: 1.157vw;
        margin-bottom: 1.447vw;
    }

    body.privacy-policy .eq-page-content-section .page-content__wrapper p {
        font-size: 1.157vw;
        margin-bottom: 1.447vw;
    }

    body.privacy-policy .eq-page-content-section .page-content__wrapper ul {
        margin-bottom: 1.447vw;
    }
}

@media only screen and (max-width: 991px) {
    body.privacy-policy .eq-page-content-section {
        padding: 45px 0px 67px;
    }

    body.privacy-policy .eq-news-page__banner-section-wrapper {
        padding: 162px 0px 24px;
    }
}

@media only screen and (max-width: 580px) {
    body.privacy-policy .eq-page-content-section .page-content__wrapper p {
        font-size: 16px;
    }

    body.privacy-policy .eq-news-page__banner-section .banner-section__heading h1 {
        font-size: 64px;
        max-width: 325px;
        width: 100%;
        margin-top: 0px;
    }

    body.privacy-policy .eq-page-content-section .page-content__wrapper h2,
    body.privacy-policy .eq-page-content-section .page-content__wrapper h3 {
        font-size: 16px;
    }
}


/* Dynamic Privacy Policy Page CSS End*/

/* Contact Us error message CSS*/

body.page-template-contact-us .main-section__form-content .wpcf7 form.invalid .wpcf7-response-output,
body.page-template-contact-us .main-section__form-content .wpcf7 form.failed .wpcf7-response-output {
    border: none;
    padding: 0;
    margin: 0;
    color: var(--fonts-red);
    position: absolute;
    font-size: 16px;
    bottom: 5px;
}

body.page-template-contact-us .main-section__form-content .wpcf7-not-valid-tip {
    position: absolute;
    bottom: -25px;
    font-size: 16px;
}

@media only screen and (max-width: 1728px) and (min-width: 992px) {

    body.page-template-contact-us .main-section__form-content .wpcf7 form.invalid .wpcf7-response-output,
    body.page-template-contact-us .main-section__form-content .wpcf7 form.failed .wpcf7-response-output {
        bottom: 0.289vw;
        font-size: 0.926vw;
    }

    body.page-template-contact-us .main-section__form-content .wpcf7-not-valid-tip {
        font-size: 0.926vw;
        bottom: -1.447vw;
    }
}

/*Dynamic feanchise banner css*/

body.franchise-page .eq-franchise__banner-section .banner-section__main-wrapper {
    background-color: var(--color-dark-bg-200);
}

body.franchise-page .eq-franchise__banner-section .banner-section__content-wrapper .banner__btn a {
    font-family: var(--font-button-secondery);
    font-weight: 700;
    font-size: 32px;
    line-height: 1;
    text-align: center;
    color: var(--fonts-dark);
    background-color: var(--color-secondary-bg);
    min-width: 170px;
    width: fit-content;
    display: block;
    padding: 12px 10px 6px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

body.franchise-page .eq-franchise__banner-section .banner-section__content-wrapper .banner__btn {
    margin-top: 25px;
}

body.franchise-page .eq-franchise__banner-section .banner-section__content-wrapper .banner__btn a:hover {
    background-color: var(--color-dark-bg-200);
    color: var(--fonts-yellow);
}

@media only screen and (max-width: 1728px) and (min-width: 992px) {
    body.franchise-page .eq-franchise__banner-section .banner-section__content-wrapper .banner__btn a {
        font-size: 1.852vw;
        min-width: 9.838vw;
        padding: 0.694vw 0.579vw 0.347vw;
        border-radius: 2.894vw;
    }

    body.franchise-page .eq-franchise__banner-section .banner-section__content-wrapper .banner__btn {
        margin-top: 1.447vw;
    }
}

@media only screen and (max-width: 767px) {
    body.franchise-page .eq-franchise__banner-section .banner-section__content-wrapper .banner__btn a {
        font-size: 21px;
        min-width: 118px;
        padding: 9px 10px 7px;
        border-radius: 40px;
    }

    body.franchise-page .eq-franchise__banner-section .banner-section__content-wrapper .banner__btn {
        margin-top: 26px;
    }
}

/* 09-02-2026 css*/
/* .through-year__main-wrapper .cus-container {
    padding: 0 30px;
} */ter Section Dynamic Subscribe section CSS start*/

.eq-footer__section .footer-top .footer-top__subscribe .subscribe__input button {
    width: 43px;
    height: 44px;
    background-color: var(--color-secondary-bg);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    outline: none;
    font-size: 0px;
    border-radius: 25px;
}

.eq-footer__section .footer-top .footer-top__subscribe .subscribe__input .wpcf7-not-valid-tip {
    position: absolute;
    bottom: -18px;
    font-size: 14px;
    font-family: var(--fonts-card-desc);
}

.eq-footer__section .footer-top .footer-top__subscribe .subscribe__input .wpcf7 form.invalid .wpcf7-response-output,
.eq-footer__section .footer-top .footer-top__subscribe .subscribe__input .wpcf7 form.failed .wpcf7-response-output {
    font-size: 14px;
    font-family: var(--fonts-card-desc);
    margin: 0px;
    padding: 0px;
    border: none;
    color: #BE1622;
    position: unset;
    bottom: 0;
}

.eq-footer__section .footer-top .footer-top__subscribe .subscribe__input .wpcf7 form.sent .wpcf7-response-output {
    color: #46b450;
}

.eq-footer__section .footer-top .footer-top__subscribe .subscribe__input button:after {
    content: '';
    position: absolute;
    width: 23px;
    height: 23px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 25 25' fill='none'%3E%3Cpath d='M0.500488 12.1267C0.500488 5.69782 5.69831 0.499999 12.1272 0.499999C18.5561 0.5 23.7539 5.69782 23.7539 12.1267C23.7539 18.5556 18.5561 23.7534 12.1272 23.7534C5.69831 23.7534 0.500487 18.5556 0.500488 12.1267ZM22.3861 12.1267C22.3861 6.45014 17.8038 1.86785 12.1272 1.86785C6.45063 1.86785 1.86834 6.45014 1.86834 12.1267C1.86834 17.8033 6.45063 22.3856 12.1272 22.3856C17.8038 22.3856 22.3861 17.8033 22.3861 12.1267Z' fill='%23BE1622' stroke='%23BE1622'/%3E%3Cpath d='M11.1688 17.8548L16.2009 12.8169L6.13663 12.8169L6.13663 11.4367L16.2009 11.4367L11.1688 6.39877L12.1338 5.43262L18.8203 12.1268L12.1338 18.8209L11.1688 17.8548Z' fill='%23BE1622' stroke='%23BE1622'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}


@media only screen and (max-width: 1728px) and (min-width: 992px) {
    .eq-footer__section .footer-top .footer-top__subscribe .subscribe__input button {
        width: 2.488vw;
        height: 2.546vw;
        right: 0.579vw;
        border-radius: 1.447vw;
    }

    .eq-footer__section .footer-top .footer-top__subscribe .subscribe__input .wpcf7 form.invalid .wpcf7-response-output,
    .eq-footer__section .footer-top .footer-top__subscribe .subscribe__input .wpcf7 form.failed .wpcf7-response-output {
        font-size: 0.810vw;
        font-family: var(--fonts-card-desc);
        margin: 0.000vw;
        padding: 0.000vw;
        border: none;
        color: #BE1622;
        position: unset;
        bottom: 0;
    }

    .eq-footer__section .footer-top .footer-top__subscribe .subscribe__input button:after {
        width: 1.331vw;
        height: 1.331vw;
    }

    .eq-footer__section .footer-top .footer-top__subscribe .subscribe__input .wpcf7-not-valid-tip {
        bottom: -1.042vw;
        font-size: 0.81vw;
    }
}

@media only screen and (max-width: 991px) {
    .eq-footer__section .footer-top .footer-top__subscribe .subscribe__input button {
        background-color: var(--color-black-bg);
    }

    .eq-footer__section .footer-top .footer-top__subscribe .subscribe__input button:after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 25 25' fill='none'%3E%3Cpath d='M0.499999 12.1267C0.5 5.69782 5.69782 0.499999 12.1267 0.499999C18.5556 0.5 23.7534 5.69782 23.7534 12.1267C23.7534 18.5556 18.5556 23.7534 12.1267 23.7534C5.69782 23.7534 0.499999 18.5556 0.499999 12.1267ZM22.3856 12.1267C22.3856 6.45014 17.8033 1.86785 12.1267 1.86785C6.45014 1.86785 1.86785 6.45014 1.86785 12.1267C1.86785 17.8033 6.45014 22.3856 12.1267 22.3856C17.8033 22.3856 22.3856 17.8033 22.3856 12.1267Z' fill='white' stroke='white'/%3E%3Cpath d='M11.1693 17.8543L16.2013 12.8164L6.13712 12.8164L6.13712 11.4362L16.2013 11.4362L11.1693 6.39828L12.1343 5.43213L18.8208 12.1263L12.1343 18.8205L11.1693 17.8543Z' fill='white' stroke='white'/%3E%3C/svg%3E");
    }
}

/*Footer Section Dynamic Subscribe section CSS end*/

/* Dynamic Privacy Policy Page CSS Start*/

body.privacy-policy .eq-news-page__banner-section {
    background-color: var(--color-body-bg);
    border-radius: 0;
    padding: 0;
}

body.privacy-policy .eq-news-page__banner-section-wrapper {
    background-color: var(--color-primary-bg);
    border-radius: 0px 0px 25px 25px;
    padding: 245px 0px 70px;
}

body.privacy-policy .eq-page-content-section {
    padding: 84px 0px 169px;
    background-color: var(--color-body-bg);
}

body.privacy-policy .eq-news-page__banner-section .banner-section__heading h1 {
    font-size: 96px;
}

body.privacy-policy .eq-page-content-section .page-content__wrapper {
    max-width: 1180px;
    width: 100%;
}

body.privacy-policy .eq-page-content-section .page-content__wrapper h2,
body.privacy-policy .eq-page-content-section .page-content__wrapper h3 {
    font-family: var(--fonts-card-desc);
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    color: var(--font-trems);
    margin-bottom: 25px;
}

body.privacy-policy .eq-page-content-section .page-content__wrapper h3 {
    font-weight: 400;
    margin-bottom: 0px;
}

body.privacy-policy .eq-page-content-section .page-content__wrapper p {
    font-family: var(--fonts-card-desc);
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    color: var(--font-trems);
    margin-bottom: 25px;
}

body.privacy-policy .eq-page-content-section .page-content__wrapper p:last-child {
    margin-bottom: 0px;
}

body.privacy-policy .eq-page-content-section .page-content__wrapper ul {
    margin-bottom: 25px;
    padding: 0 0 0 30px;
}

body.privacy-policy .eq-page-content-section .page-content__wrapper ul li {
    list-style: disc;
    margin: 0 0 5px 0;
}

@media only screen and (max-width: 1728px) and (min-width: 992px) {
    body.privacy-policy .eq-news-page__banner-section-wrapper {
        /* padding: 4.861vw 0.000vw 9.780vw; */
        padding: 14.178vw 0.000vw 4.051vw;
        border-radius: 0.000vw 0.000vw 1.447vw 1.447vw;
    }

    body.privacy-policy .eq-page-content-section {
        padding: 4.861vw 0.000vw 9.780vw;
    }

    body.privacy-policy .eq-page-content-section .page-content__wrapper {
        max-width: 68.287vw;
    }

    body.privacy-policy .eq-news-page__banner-section .banner-section__heading h1,
    body.privacy-policy .eq-page-content-section .page-content__wrapper h3 {
        font-size: 5.556vw;
    }
    body.privacy-policy .eq-page-content-section .page-content__wrapper h3 {
        font-size: 1.157vw;
    }

    body.privacy-policy .eq-page-content-section .page-content__wrapper h2 {
        font-size: 1.157vw;
        margin-bottom: 1.447vw;
    }

    body.privacy-policy .eq-page-content-section .page-content__wrapper p {
        font-size: 1.157vw;
        margin-bottom: 1.447vw;
    }

    body.privacy-policy .eq-page-content-section .page-content__wrapper ul {
        margin-bottom: 1.447vw;
    }
}

@media only screen and (max-width: 991px) {
    body.privacy-policy .eq-page-content-section {
        padding: 45px 0px 67px;
    }

    body.privacy-policy .eq-news-page__banner-section-wrapper {
        padding: 162px 0px 24px;
    }

    body.privacy-policy .eq-news-page__banner-section .cus-container {
        padding: 0px 40px;
    }
}

@media only screen and (max-width: 580px) {
    body.privacy-policy .eq-page-content-section .page-content__wrapper p {
        font-size: 16px;
    }

    body.privacy-policy .eq-news-page__banner-section .banner-section__heading h1 {
        font-size: 64px;
        max-width: 325px;
        width: 100%;
        margin-top: 0px;
    }

    body.privacy-policy .eq-page-content-section .page-content__wrapper h2,
    body.privacy-policy .eq-page-content-section .page-content__wrapper h3 {
        font-size: 16px;
    }

    .eq-footer__section .footer-top .footer-top__subscribe .subscribe__input .wpcf7 form.invalid .wpcf7-response-output,
    .eq-footer__section .footer-top .footer-top__subscribe .subscribe__input .wpcf7 form.failed .wpcf7-response-output,
    .eq-footer__section .footer-top .footer-top__subscribe .subscribe__input .wpcf7 form.sent .wpcf7-response-output  {
        max-width: 85%;
    }
}

.eq-footer__section .footer-top .footer-top__subscribe .subscribe__input .wpcf7 form.sent .wpcf7-response-output {
    position: unset;
}

/* Dynamic Privacy Policy Page CSS End*/

/* Contact Us error message CSS*/

body.page-template-contact-us .main-section__form-content .wpcf7 form.invalid .wpcf7-response-output,
body.page-template-contact-us .main-section__form-content .wpcf7 form.failed .wpcf7-response-output {
    border: none;
    padding: 0;
    margin: 0;
    color: var(--fonts-red);
    position: absolute;
    font-size: 16px;
    bottom: 5px;
}

body.page-template-contact-us .main-section__form-content .wpcf7-not-valid-tip {
    position: absolute;
    bottom: -25px;
    font-size: 16px;
}

@media only screen and (max-width: 1728px) and (min-width: 992px) {

    body.page-template-contact-us .main-section__form-content .wpcf7 form.invalid .wpcf7-response-output,
    body.page-template-contact-us .main-section__form-content .wpcf7 form.failed .wpcf7-response-output {
        bottom: 0.289vw;
        font-size: 0.926vw;
    }

    body.page-template-contact-us .main-section__form-content .wpcf7-not-valid-tip {
        font-size: 0.926vw;
        bottom: -1.447vw;
    }
}

/*Dynamic feanchise banner css*/

body.franchise-page .eq-franchise__banner-section .banner-section__main-wrapper {
    background-color: var(--color-dark-bg-200);
}

body.franchise-page .eq-franchise__banner-section .banner-section__content-wrapper .banner__btn a {
    font-family: var(--font-button-secondery);
    font-weight: 700;
    font-size: 32px;
    line-height: 1;
    text-align: center;
    color: var(--fonts-dark);
    background-color: var(--color-secondary-bg);
    min-width: 170px;
    width: fit-content;
    display: block;
    padding: 12px 10px 6px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

body.franchise-page .wpcf7 form.sent .wpcf7-response-output {
    bottom: -22px;
}

body.franchise-page .eq-franchise__banner-section .banner-section__content-wrapper .banner__btn {
    margin-top: 25px;
}

body.franchise-page .eq-franchise__banner-section .banner-section__content-wrapper .banner__btn a:hover {
    background-color: var(--color-dark-bg-200);
    color: var(--fonts-yellow);
}

@media only screen and (max-width: 1728px) and (min-width: 992px) {
    body.franchise-page .eq-franchise__banner-section .banner-section__content-wrapper .banner__btn a {
        font-size: 1.852vw;
        min-width: 9.838vw;
        padding: 0.694vw 0.579vw 0.347vw;
        border-radius: 2.894vw;
    }

    body.franchise-page .eq-franchise__banner-section .banner-section__content-wrapper .banner__btn {
        margin-top: 1.447vw;
    }

    body.franchise-page .wpcf7 form.sent .wpcf7-response-output {
        bottom: -1.273vw;
    }

}

@media only screen and (max-width: 991px) {
    body.franchise-page .wpcf7 form.sent .wpcf7-response-output {
        bottom: -22px;
    }
}

@media only screen and (max-width: 767px) {
    body.franchise-page .eq-franchise__banner-section .banner-section__content-wrapper .banner__btn a {
        font-size: 21px;
        min-width: 118px;
        padding: 9px 10px 7px;
        border-radius: 40px;
    }

    body.franchise-page .eq-franchise__banner-section .banner-section__content-wrapper .banner__btn {
        margin-top: 26px;
    }

    body.franchise-page .wpcf7 form.sent .wpcf7-response-output {
        bottom: -22px;
    }
}

/* 09-02-2026 css*/
/* .through-year__main-wrapper .cus-container {
    padding: 0 30px;
} */


.through-year__slider .slider-card__wrapper .slider-card__heading h3 {
     word-wrap: break-word;
}