/* Header css start here */
.eq-header{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    background: rgba(82, 62, 45, 0.25);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 12345;
    transition: var(--transition-primary);
}
header.eq-header.sticky {
    top: 0;
    position: fixed;
    background-color: rgba(82, 62, 45, 0.7);
}
.eq-header__wrap{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.eq-header__left{
    max-width: 778px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
}
.eq-header__logo{
    max-width: 51px;
    width: 100%;
}
.eq-header__nav{
    padding-left: 43px;
    padding-right: 26px;
}
.eq-header__nav-list{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.eq-header__nav-list > li{
    padding: 47px 0px;
}
.eq-header__nav-list li.menu-item-has-children{
    position: relative;
    padding-right: 14px;
}
.eq-header__nav-list li.menu-item-has-children .sub-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 119px;
    max-width: 280px;
    min-width: 280px;
    width: 100%;
    background-color: rgba(82, 62, 45, 0.25);
    margin: 0;
    transform: translateY(30px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-primary);
}
.eq-header__nav-list li a{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    color: var(--color-light);
    text-transform: capitalize;
    padding: 0 14px;
    transition: color 0.4s ease-in-out;
}
.eq-header__nav-list li a:hover{
    color: var(--color-primary);
}
.eq-header__nav-list > li.current-menu-item > a{
    color: var(--color-primary);
}
.eq-header__nav-list li.current-menu-item.menu-item-has-children > a::before{
    background-color: var(--color-primary);
}
.eq-header__nav-list li.current-menu-item.menu-item-has-children > a::after{
    background-color: var(--color-primary);
}
.eq-header__nav-list > li:hover > a{
    color: var(--color-primary);
}
.eq-header__nav-list li.menu-item-has-children > a::after{
    content: '';
    height: 10px;
    width: 2px;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--color-light);
    transition: var(--transition-primary);
}
.eq-header__nav-list li.menu-item-has-children > a::before{
    content: '';
    width: 10px;
    height: 2px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--color-light);
    transition: var(--transition-primary);
}
.eq-header__nav-list li.menu-item-has-children:hover > a::after{
    opacity: 0;
}
.eq-header__nav-list li.menu-item-has-children:hover > a::before{
    background-color: var(--color-primary);
}
.eq-header__nav-list li.menu-item-has-children:hover .sub-menu{
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
}
.eq-header__nav-list li.menu-item-has-children .sub-menu > li > a {
    padding: 10px 14px;
    display: inline-block;
}
.eq-header__nav-list li.menu-item-has-children .sub-menu > li:first-child{
    border-top: 1px solid rgba(255, 250, 243, 0.6);
}
.eq-header__nav-list li.menu-item-has-children .sub-menu > li{
    border-bottom: 1px solid rgba(255, 250, 243, 0.6);
    border-left: 1px solid rgba(255, 250, 243, 0.6);
    border-right: 1px solid rgba(255, 250, 243, 0.6);
}

.eq-header__action-link{
    max-width: 462px;
    width: 100%;    
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 10px 0 10px 23px;
}
.eq-header__action-link .action-link{
    display: flex;
    align-items: center;
    justify-content: center;
}
.eq-header__action-link .action-link img,
.eq-header__action-link .action-link svg{
    max-width: 18px;
    width: 100%;
    margin-right: 12px;
}
.eq-header__action-tel{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    color: var(--color-light);
    margin-right: 15px;
    transition: color 0.4s ease-in-out;
}
.eq-header__action-tel:hover{
    color: var(--color-primary);
}
.eq-header__action-tel svg g path{
    transition: var(--transition-primary);
}
.eq-header__action-tel:hover svg g path{
    fill: var(--color-primary);
}
.eq-header__action-book-appointment{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    color: var(--color-primary);
    border: 1px solid var(--color-primary-100);
    background-color: rgba(255, 248, 237, 0.5);
    padding: 14px 17px;
    border-radius: 30px;
    transition: color 0.4s ease-in-out, background-color 0.4s ease-in-out;
}
.eq-header__action-book-appointment:hover{
    background-color: var(--color-primary-100);
    color: var(--color-light);
}
.eq-header__action-book-appointment svg g path{
    transition: var(--transition-primary);
}
.eq-header__action-book-appointment:hover svg g path{
    fill:  var(--color-light);
}
.eq-header__btn-hamburger-menu{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    color: var(--color-light);
    align-items: center;
    display: none;
}
.eq-header__btn-hamburger-menu span{
    margin-right: 19px;
}
.eq-header__btn-hamburger-menu svg line,
.eq-header__btn-hamburger-menu span{
    transition: var(--transition-primary);
}
.eq-header__btn-hamburger-menu[aria-expanded="true"] span{
    opacity: 0;
    pointer-events: none;
}
.eq-header__btn-hamburger-menu[aria-expanded="true"] svg line:first-child {
    transform: rotate(-45deg) translate(-13px, 17px);
}
.eq-header__btn-hamburger-menu[aria-expanded="true"] svg line:nth-child(2) {
    transform: rotate(45deg) translate(4px, -13px);
}
.eq-header__btn-hamburger-menu[aria-expanded="true"] svg line:last-child {
    display: none;
}
.eq-header__nav-bg{
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.eq-header__nav-bg::after{
    content: '';
    background: rgba(82, 62, 45, 0.25);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.eq-header__nav-bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.eq-header__action-link.mobile{
    display: none;
}
.eq-header__nav-list li.menu-item-has-children > .submenu-toggle{
    display: none;
}

@media only screen and (max-width: 1740px) and (min-width: 992px) {
    .eq-header__left{
        max-width: 44.713vw;
        border-right: 0.057vw solid rgba(255, 255, 255, 0.5);
    }
    .eq-header__logo{
        max-width: 2.931vw;
    }
    .eq-header__nav{
        padding-left: 2.471vw;
        padding-right: 1.494vw;
    }
    .eq-header__nav-list > li{
        padding: 2.701vw 0.000vw;
    }
    .eq-header__nav-list li.menu-item-has-children{
        padding-right: 0.805vw;
    }
    .eq-header__nav-list li.menu-item-has-children .sub-menu {
        top: 6.839vw;
        max-width: 16.092vw;
        min-width: 16.092vw;
        transform: translateY(1.724vw);
    }
    .eq-header__nav-list li a{
        font-size: 1.149vw;
        padding: 0 0.805vw;
    }
    .eq-header__nav-list li.menu-item-has-children > a::after{
        height: 0.575vw;
        width: 0.115vw;
        right: 0.805vw;
    }
    .eq-header__nav-list li.menu-item-has-children > a::before{
        width: 0.575vw;
        height: 0.115vw;
        right: 0.575vw;
    }
    .eq-header__nav-list li.menu-item-has-children .sub-menu > li > a {
        padding: 0.575vw 0.805vw;
    }
    .eq-header__nav-list li.menu-item-has-children .sub-menu > li:first-child{
        border-top: 0.057vw solid rgba(255, 250, 243, 0.6);
    }
    .eq-header__nav-list li.menu-item-has-children .sub-menu > li{
        border-bottom: 0.057vw solid rgba(255, 250, 243, 0.6);
        border-left: 0.057vw solid rgba(255, 250, 243, 0.6);
        border-right: 0.057vw solid rgba(255, 250, 243, 0.6);
    }
    .eq-header__action-link{
        max-width: 26.552vw;
        padding: 0.575vw 0 0.575vw 1.322vw;
    }
    .eq-header__action-link .action-link img,
    .eq-header__action-link .action-link svg{
        max-width: 1.034vw;
        margin-right: 0.690vw;
    }
    .eq-header__action-tel{
        font-size: 1.149vw;
        margin-right: 0.862vw;
    }
    .eq-header__action-book-appointment{
        font-size: 1.149vw;
        border: 0.057vw solid var(--color-primary-100);
        padding: 0.805vw 0.977vw;
        border-radius: 1.724vw;
    }
    .eq-header__btn-hamburger-menu{
        font-size: 1.149vw;
    }
    .eq-header__btn-hamburger-menu.active svg line:first-child {
        transform: rotate(-45deg) translate(-0.747vw, 0.977vw);
    }
    .eq-header__btn-hamburger-menu.active svg line:nth-child(2) {
        transform: rotate(45deg) translate(0.230vw, -0.747vw);
    }
}
@media only screen and (max-width: 991px){
    .eq-header{
        padding: 30px 0;
    }
    .eq-header__nav-list li{
        padding: 0;
        width: 100%;
    }
    .eq-header__nav-list > li:hover > a{
        color: var(--color-light);
    }
    .eq-header__nav-list > li.menu-item-has-children.current-menu-item > .submenu-toggle::before,
    .eq-header__nav-list > li.menu-item-has-children.current-menu-item > .submenu-toggle::after{
        background-color: var(--color-primary);
    }
    .eq-header__nav-list li.menu-item-has-children .sub-menu > li.current-menu-item > a{
        color: var(--color-primary);
    }
    .eq-header__nav-list li.menu-item-has-children > a::before,
    .eq-header__nav-list li.menu-item-has-children > a::after{
        display: none;
    }
    .eq-header__nav-list li.menu-item-has-children > .submenu-toggle.open::after{
        opacity: 0;
    }
    .eq-header__nav-list li.menu-item-has-children > .submenu-toggle{
        width: 30px;
        height: 30px;
        display: inline-block;
        position: absolute;
        right: 0;
        top: 6px;
        z-index: 1111;
    }
    .eq-header__nav-list li.menu-item-has-children{
        padding: 0;
    }
    .eq-header__nav-list li.menu-item-has-children > .submenu-toggle::after {
        content: '';
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%);
        background-color: var(--color-light);
        transition: var(--transition-primary);
        height: 18px;
        width: 3px;
        left: 50%;
    }
    .eq-header__nav-list li.menu-item-has-children > .submenu-toggle::before {
        content: '';
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%);
        background-color: var(--color-light);
        transition: var(--transition-primary);
        width: 18px;
        height: 3px;
        right: 0;
        left: 50%;
    }
    .eq-header__btn-hamburger-menu{
        display: inline-flex;
    }
    .eq-header__nav{
        position: fixed;
        bottom: 0;
        left: 0;
        width: 80%;
        background-color: var(--color-theme-dark-1);
        height: calc(100dvh - 120px);
        padding: 52px 20px;
        opacity: 0;
        transform: translate(-100%);
        pointer-events: none;
        z-index: 11;
        transition: var(--transition-primary);
        display: flex;
        flex-direction: column;
    }
    .eq-header.open-menu .eq-header__nav{
        opacity: 1;
        transform: translate(0);
        pointer-events: all;
    }
    .eq-header__nav-bg{
        display: block;        
    }
    .eq-header__action-link{
        display: none;
    }
    .eq-header__left{
        border-right: 0;
        justify-content: space-between;
    }
    .eq-header__nav-list {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
        flex-grow: 1;
        overflow-y: auto;
        margin-bottom: 20px;
        flex-wrap: nowrap;
    }
    .eq-header__nav-list > li{
        margin-bottom: 15px;
    }
    .eq-header__nav-list li:last-child{
        margin-bottom: 0;
    }
    .eq-header__nav-list li a{
        font-size: 42px;
        padding: 0;
        position: relative;
        display: block;
    }
    .eq-header__action-link.mobile{
        display: flex;
        max-width: 100%;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 0;
        flex-direction: column; 
        padding-top: 32px;
        border-top: 1px solid var(--color-secondary);
    }
    .eq-header__action-link.mobile .action-link:last-child{
        margin-top: 26px;
    }
    .eq-header__action-tel:hover{
        color: var(--color-primary);
    }
    .eq-header__action-tel:hover svg g path{
        fill: var(--color-primary);
    }
    .eq-header__nav-list li.menu-item-has-children .sub-menu{
        position: unset;
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        background: transparent;
        padding-left: 20px;
        margin-top: 20px;
        display: none;
        transition: none;
    }
    .eq-header__nav-list li.menu-item-has-children .sub-menu > li,
    .eq-header__nav-list li.menu-item-has-children .sub-menu > li:first-child{
        border: none;
    }
    .eq-header__nav-list li.menu-item-has-children .sub-menu > li{
        margin-bottom: 15px;
    }
    .eq-header__nav-list li.menu-item-has-children .sub-menu > li > a {
        padding: 0;
        display: inline-block;
        font-size: 26px;
    }
}
@media only screen and (max-width: 767px){
    .eq-header__nav{
        width: 100%;
    }
    .eq-header__nav-list li a{
        font-size: 32px;
    }
    .eq-header__nav-list li.menu-item-has-children > .submenu-toggle {
        top: 2px;
    }
}
@media only screen and (max-width: 400px){
    .eq-header__nav-list li a{
        font-size: 26px;
    }
    .eq-header__nav-list li.menu-item-has-children > .submenu-toggle {
        top: 2px;
        width: 20px;
        height: 20px;
    }
    .eq-header__nav-list li.menu-item-has-children .sub-menu > li > a {
        font-size: 22px;
    }
}
/* Header css end here */

/* Banner css start here */
.eq-home-banner{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 213px 0 70px;
    position: relative;
    border-radius: 0 0 32px 32px;
    overflow: hidden;
    z-index: 11;
}
.eq-home-banner__bg::after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(130, 78, 55, 0.3) 0%, rgba(192, 175, 151, 0.3) 100%);
}
.eq-home-banner__bg{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.eq-home-banner__bg img,
.eq-home-banner__bg video,
.eq-home-banner__bg iframe{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.eq-home-banner > .cus-container{
    position: relative;
}
.eq-home-banner__wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 160px;
    max-width: 1233px;
    margin: 0 auto;
}
.eq-home-banner__wrap-content {
    max-width: 510px;
    width: 100%;
}
.eq-home-banner__wrap-content h1{
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 100px;
    line-height: 1;
    color: var(--color-light);
    margin-bottom: 30px;
}
.eq-home-banner__wrap-content .text-desc{
    width: 100%;
    margin-bottom: 30px;
}
.eq-home-banner__wrap-content .text-desc p{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: var(--color-light);
    margin-top: 44px;
}
.eq-home-banner__wrap-content .text-desc p:first-child{
    margin-top: 0;
}
.eq-home-banner__wrap-media{
    max-width: 554px;
    width: 100%;
}
.eq-home-banner__media {
    width: 100%;
    position: relative;
    padding-bottom: 116.3%;
    border-radius: 300px 300px 30px 30px;
    overflow: hidden;
}
.eq-home-banner__media::after {
    content: '';
    border: 21px solid rgba(242, 230, 213, 0.44);
    z-index: 111;
    position: absolute;
    border-radius: 300px 300px 30px 30px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.eq-home-banner__media::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(82, 62, 45, 0) 0%, rgba(82, 62, 45, 0.5) 100%);
    z-index: 1;
}
.eq-home-banner__media-main {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.eq-home-banner__media-action {
    position: absolute;
    top: 56%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1234;
}
.eq-home-banner__media-action-link{
    position: relative;
    width: 125px;
    height: 125px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.eq-home-banner__media-action-link img{
    max-width: 94px;
    width: 100%;
}
.eq-home-banner__button-text{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.eq-home-banner__media-action-text {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateText 10s linear infinite;
    color: rgb(0, 0, 0);
    border-radius: 50%;
}
.eq-home-banner__media-action span {
    position: absolute;
    left: 50%;    
    transform-origin: 0 74px;
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-light);
}

.eq-home-banner__review-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 26px;
    margin-top: 15px;
}
.eq-home-banner__trustpilot{
    max-width: 213px;
    width: 100%;
}
.eq-home-banner__google-review{
    max-width: 172px;
    width: 100%;
}
.eq-denture-services{
    width: 100%;
    max-width: 1233px;
    margin: 40px auto 0;
}
.eq-denture-services__wrap{
    width: 100%;
    height: 166px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.eq-denture-services__wrap.slick-initialized{
    height: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.eq-denture-services__wrap .slick-list{
    margin: 0 -22px;
    padding: 20px 0;
}
.eq-denture-services__wrap .slick-track{
    display: flex;
}
.eq-denture-services__wrap .slick-list .slick-track .slide{
    padding: 0 22px;
    height: unset;
}
.denture-services__box{
    width: 100%;
    background-color: rgba(255, 250, 243, 0.6);
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.25);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 38px 30px;
    height: 100%;
}
.denture-services__box figure {
    max-width: 80px;
    width: 100%;
    margin-right: 28px;
}
.denture-services__box h4{
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 25px;
    line-height: 1;
    color: var(--color-primary);
    max-width: 180px;
    width: 100%;
}
.eq-denture-services__action {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 4px;
}
.eq-denture-services__action .link-view-all-denture-services{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-primary);
}
.eq-denture-services__action .link-view-all-denture-services:hover{
    color: var(--color-light);
}
.eq-denture-services__action-arrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 62px;
    width: 100%;
    gap: 6px;
    margin-right: 10px;
}
.eq-denture-services__action-arrow .slick-arrow{
    max-width: 28px;
    width: 100%;
    font-size: 0;
}
.eq-denture-services__action-arrow .slick-arrow.slick-disabled{
    opacity: 0.5;
    cursor: auto;
}
@media only screen and (max-width: 1740px) and (min-width: 992px) {
    .eq-home-banner{
        padding: 12.241vw 0 4.023vw;
        border-radius: 0 0 1.839vw 1.839vw;
    }
    .eq-home-banner__wrap {
        gap: 9.195vw;
        max-width: 70.862vw;
    }
    .eq-home-banner__wrap-content {
        max-width: 29.310vw;
    }
    .eq-home-banner__wrap-content h1{
        font-size: 5.747vw;
        margin-bottom: 1.724vw;
    }
    .eq-home-banner__wrap-content .text-desc{
        margin-bottom: 1.724vw;
    }
    .eq-home-banner__wrap-content .text-desc p{
        font-size: 1.034vw;
        margin-top: 2.529vw;
    }
    .eq-home-banner__wrap-media{
        max-width: 31.839vw;
    }
    .eq-home-banner__media {
        border-radius: 17.241vw 17.241vw 1.724vw 1.724vw;
    }
    .eq-home-banner__media::after {
        border: 1.207vw solid rgba(242, 230, 213, 0.44);
        border-radius: 17.241vw 17.241vw 1.724vw 1.724vw;
    }
    .eq-home-banner__media-action-link{
        width: 7.184vw;
        height: 7.184vw;
    }
    .eq-home-banner__media-action-link img{
        max-width: 5.402vw;
    }
    .eq-home-banner__media-action span {
        transform-origin: 0 4.253vw;
        font-size: 0.805vw;
    }
    .eq-home-banner__review-logo {
        gap: 1.494vw;
        margin-top: 0.862vw;
    }
    .eq-home-banner__trustpilot{
        max-width: 12.241vw;
    }
    .eq-home-banner__google-review{
        max-width: 9.885vw;
    }
    .eq-denture-services{
        max-width: 70.862vw;
        margin: 2.299vw auto 0;
    }
    .eq-denture-services__wrap .slick-list{
        margin: 0 -1.264vw;
        padding: 1.149vw 0;
    }
    .eq-denture-services__wrap .slick-list .slick-track .slide{
        padding: 0 1.264vw;
    }
    .denture-services__box{
        box-shadow: 0.000vw 0.287vw 0.862vw 0.000vw rgba(0, 0, 0, 0.25);
        border-radius: 5.747vw;
        padding: 2.184vw 1.724vw;
    }
    .denture-services__box figure {
        max-width: 4.598vw;
        margin-right: 1.609vw;
    }
    .denture-services__box h4{
        font-size: 1.437vw;
        max-width: 10.345vw;
    }
    .eq-denture-services__action {
        margin-bottom: 0.230vw;
    }
    .eq-denture-services__action .link-view-all-denture-services{
        font-size: 0.920vw;
    }
    .eq-denture-services__action-arrow {
        max-width: 3.563vw;
        gap: 0.345vw;
        margin-right: 0.575vw;
    }
    .eq-denture-services__action-arrow .slick-arrow{
        max-width: 1.609vw;
    }
}
@media only screen and (max-width: 991px){
    .eq-home-banner__wrap{
        gap: 30px;
    }
    .eq-home-banner__wrap-content h1{
        font-size: 60px;
    }
    .denture-services__box figure {
        max-width: 60px;
        margin-right: 15px;
    }
    .denture-services__box{
        padding: 27px;
        min-height: 98px;
    }
    .denture-services__box h4{
        font-size: 22px;
    }
}
@media only screen and (max-width: 767px){
    .eq-home-banner__wrap{
        flex-wrap: wrap;
    }
    .eq-home-banner__button-mobile a:last-child{
        margin-top: 10px;
    }
    .eq-home-banner {
        padding: 164px 0 100px;
        overflow: hidden;
        border-radius: 0;
    }
    .eq-home-banner__wrap-content h1{
        font-size: 64px;
        margin-bottom: 28px;
    }
    .eq-home-banner__media{
        max-width: 350px;
        padding-bottom: 101.7%;
        margin-bottom: 58px;
    }
    .eq-home-banner__media-action a img{
        max-width: 59px;
        width: 100%;
    }
    .eq-home-banner__wrap-content .text-desc {
        max-width: 345px;
        margin-bottom: 38px;
    }
    .eq-home-banner__media-action-link {
        width: 100px;
        height: 100px;
    }
    .eq-home-banner__media-action span {
        transform-origin: 0 50px;
        font-size: 12px;
    }
    .eq-home-banner__review-logo{
        flex-direction: column;
        align-items: flex-start;
        margin: 0;
        gap: 0;
    }
    .eq-home-banner__trustpilot{
        max-width: 346px;
    }
    .eq-home-banner__google-review {
        margin-top: 26px;
        max-width: 248px;
    }
    .eq-home-banner__button-mobile {
        margin-bottom: 40px;
    }
    .eq-home-banner__wrap-content .text-desc p{
        font-size: 20px;
        margin-top: 20px;
    }
    .eq-denture-services__action-arrow{
        justify-content: space-between;
        margin: 0;
        max-width: 100%;
    }
    .eq-denture-services__action-arrow .slick-arrow{
        font-family: var(--font-theme);
        font-weight: 400;
        font-size: 20px;
        line-height: 1;
        color: #242424;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        max-width: max-content;
        gap: 0;
    }
    .eq-denture-services__action-arrow .slick-arrow.prev-arrow img{
        margin-right: 15px;
    }
    .eq-denture-services__action-arrow .slick-arrow.next-arrow img{
        margin-left: 15px;
    }
    .denture-services__box figure {
        max-width: 34px;
        margin-right: 20px;
    }
    .eq-denture-services__wrap .slick-list .slick-track .slide {
        padding: 0 7px;
    }
    .eq-denture-services__wrap .slick-list {
        margin: 0 -7px;
        overflow: visible;
        padding: 20px 0 28px;
    }
    .denture-services__box h4 {
        font-size: 20px;
    }

}
/* Banner css end here */

/* brick street css start here */
.brick-street{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 30px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin: -30px 0;
}
.brick-street__bg{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}
/* .brick-street__bg::after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(140, 107, 92, 0.5) 0%, rgba(147, 114, 97, 0.5) 100%);
} */
.brick-street__bg img,
.brick-street__bg video,
.brick-street__bg iframe{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.brick-street__wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.brick-street__content{
    max-width: 667px;
    width: 100%;
    padding: 103px 0 52px;
}
.brick-street__content-logo{
    max-width: 216px;
    width: 100%;
    margin-bottom: 30px;
}
.brick-street__box {
    max-width: 582px;
    width: 100%;
    background-color: rgba(255, 250, 243, 0.1);
    padding: 20px 22px;
    border-radius: 30px;
}
.brick-street__box h2{
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 34px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 16px;
}
.brick-street__box .text-desc{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
}
.brick-street__box .text-desc p{
    margin-top: 30px;
}
.brick-street__box .text-desc p:first-child{
    margin-top: 0;
}
.brick-street__action-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 28px;
    margin-top: 36px;
}
.brick-street__action-btn-left {
    max-width: 295px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.brick-street__action-btn-left .brick-street__button{
    position: relative;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.brick-street__action-btn-left .brick-street__button.learn-more img{
    max-width: 53px;
    width: 100%;
}
.brick-street__action-btn-left .brick-street__button.view-our-case-studies img{
    max-width: 87px;
    width: 100%;
}
.brick-street__button-text{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.brick-street__action-btn-right {
    max-width: 342px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 22px;
}
.brick-street__review-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    gap: 18px;
}
.brick-street__trustpilot {
    max-width: 177px;
    width: 100%;
}
.brick-street__google-review {
    max-width: 146px;
    width: 100%;
}

.brick-street__media{
    max-width: 573px;
    width: 100%;
    position: relative;
    z-index: -1;
}
.brick-street__media figure img{
    margin: -40% -50% -50% -32%;
    max-width: 200%;
    width: 200%;
}

@media only screen and (max-width: 1740px) and (min-width: 992px) {
    .brick-street{
        padding: 1.724vw 0;
        margin: -1.724vw 0;
    }
    .brick-street__content{
        max-width: 38.333vw;
        padding: 5.920vw 0 2.989vw;
    }
    .brick-street__content-logo{
        max-width: 12.414vw;
        margin-bottom: 1.724vw;
    }
    .brick-street__box {
        max-width: 33.448vw;
        padding: 1.149vw 1.264vw;
        border-radius: 1.724vw;
    }
    .brick-street__box h2{
        font-size: 1.954vw;
        margin-bottom: 0.920vw;
    }
    .brick-street__box .text-desc{
        font-size: 1.034vw;
    }
    .brick-street__box .text-desc p{
        margin-top: 1.724vw;
    }
    .brick-street__action-btn {
        gap: 1.609vw;
        margin-top: 2.069vw;
    }
    .brick-street__action-btn-left {
        max-width: 16.954vw;
        gap: 0.575vw;
    }
    .brick-street__action-btn-left .brick-street__button{
        width: 7.471vw;
        height: 7.471vw;
    }
    .brick-street__action-btn-left .brick-street__button.learn-more img{
        max-width: 3.046vw;
    }
    .brick-street__action-btn-left .brick-street__button.view-our-case-studies img{
        max-width: 5.000vw;
    }
    .brick-street__action-btn-right {
        max-width: 19.655vw;
        gap: 1.264vw;
    }
    .brick-street__review-logo {
        gap: 1.034vw;
    }
    .brick-street__trustpilot {
        max-width: 10.172vw;
    }
    .brick-street__google-review {
        max-width: 8.391vw;
    }
    .brick-street__media{
        max-width: 32.931vw;
    }
    .brick-street__media figure img{
        margin: -39% -50% -50% -68%;
        max-width: 240%;
        width: 240%;
    }
}
@media only screen and (max-width: 991px){
    .brick-street__media{
        display: none;
    }
    .brick-street__content{
        max-width: 100%;
    }
}
@media only screen and (max-width: 767px){
    .brick-street{
        display: none;
    }
    .brick-street__content{
        padding: 45px 0 52px;
    }
    .brick-street__box h2{
        line-height: 1.2;
    }
    .brick-street__box {
        max-width: 100%;
        padding: 20px 27px;
    }
    .brick-street__content-logo {
        margin-bottom: 45px;
    }
    .brick-street__review-logo{
        display: none;
    }
    .brick-street__button-mobile {
        width: 100%;
        gap: 0;
        display: inline-flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .brick-street__button-mobile .btn:last-child{
        margin-top: 10px;
    }
    .brick-street__action-btn {
        margin-top: 27px;
    }
}
/* brick street css end here */

/* eq real stories css start here */
.eq-real-stories{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 130px 0 108px;
    border-radius: 30px;
    background-color: var(--color-light-100);
    overflow: hidden;
    position: relative;
    z-index: 11;
}
.eq-real-stories__head{
    width: 100%;
    margin-bottom: 30px;
    border-top: 1px solid var(--color-secondary);
    padding-top: 30px;
}
.eq-real-stories__head h4{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: var(--color-primary-100);    
    margin-bottom: 14px;
}
.eq-real-stories__head h2{
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 59px;
    line-height: 100%;
    color: var(--color-primary);
}
.eq-real-stories__content{
    width: 100%;
}
.eq-real-stories__slider{
    width: 100%;
    height: 580px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.eq-real-stories__slider.slick-initialized{
    height: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.eq-real-stories__slider .slick-list{
    overflow: visible;
}
.eq-real-stories__box{
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}
.eq-real-stories__bg{
    position: relative;
    padding-bottom: 114.4%;
    width: 100%;
}
.eq-real-stories__bg::after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(82, 62, 45, 0) 0%, rgba(82, 62, 45, 0.78) 100%);
}
.eq-real-stories__bg img,
.eq-real-stories__bg video,
.eq-real-stories__bg iframe{
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.eq-real-stories__inner-content {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 38px;
}
.eq-real-stories__inner-logo{
    max-width: 32px;
    width: 100%;
    margin-bottom: 14px;
}
.eq-real-stories__inner-content h4{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: var(--color-light);
    margin-bottom: 10px;
}
.eq-real-stories__inner-content h3{
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 35px;
    line-height: 1.1;
    color: var(--color-light);
    max-width: 84%;
    width: 100%;
}
.eq-real-stories__inner-content h3 a{
    color: var(--color-light);
}
.eq-real-stories__action {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 22px;
}
.eq-real-stories__action-slider {
    max-width: 981px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.eq-real-stories__action-slider .slick-arrow{    
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    max-width: 39px;
    width: 100%;
}
.eq-real-stories__action-slider .slick-arrow.slick-disabled {
    opacity: 0.5;
    cursor: auto;
}
.eq-real-stories__action-slider .slick-arrow span{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 20px;    
    line-height: 1;
    color: var(--color-primary);
    display: none;
}
.eq-real-stories__action-slider .progress {
    position: relative;
    flex: 1;
    height: 2px;    
    border-radius: 50px;
    max-width: 860px;
    width: 100%;
    margin: 0 auto;
    z-index: 1;
}
.eq-real-stories__action-slider .progress::after{
    content: '';
    width: 100%;
    background-color: var(--color-secondary);
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    z-index: -1;
}

/* Progress fill */
.eq-real-stories__action-slider .progress-bar {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 11px;
    display: block;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--color-secondary);
    transition: var(--transition-primary);
}

.eq-real-stories__action-btn{
    max-width: 234px;
    width: 100%;
}

@media only screen and (max-width: 1740px) and (min-width: 992px) {
    .eq-real-stories{
        padding: 7.471vw 0 6.207vw;
        border-radius: 1.724vw;
    }
    .eq-real-stories__head{
        margin-bottom: 1.724vw;
        border-top: 0.057vw solid var(--color-secondary);
        padding-top: 1.724vw;
    }
    .eq-real-stories__head h4{
        font-size: 1.034vw;
        margin-bottom: 0.805vw;
    }
    .eq-real-stories__head h2{
        font-size: 3.391vw;
    }
    .eq-real-stories__box{
        border-radius: 1.724vw;
    }
    .eq-real-stories__inner-content {
        padding: 2.184vw;
    }
    .eq-real-stories__inner-logo{
        max-width: 1.839vw;
        margin-bottom: 0.805vw;
    }
    .eq-real-stories__inner-content h4{
        font-size: 1.034vw;
        margin-bottom: 0.575vw;
    }
    .eq-real-stories__inner-content h3{
        font-size: 2.011vw;
    }
    .eq-real-stories__action {
        gap: 1.437vw;
        margin-top: 1.264vw;
    }
    .eq-real-stories__action-slider {
        max-width: 56.379vw;
        gap: 0.862vw;
    }
    .eq-real-stories__action-slider .slick-arrow{    
        gap: 1.034vw;
        max-width: 2.241vw;
    }
    .eq-real-stories__action-slider .slick-arrow span{
        font-size: 1.149vw;    
    }
    .eq-real-stories__action-slider .progress {
        height: 0.115vw;    
        border-radius: 2.874vw;
        max-width: 49.425vw;
    }
    .eq-real-stories__action-slider .progress::after{
        height: 0.115vw;
    }
    /* Progress fill */
    .eq-real-stories__action-slider .progress-bar {
        height: 0.632vw;
        border-radius: 0.575vw;
    }
    .eq-real-stories__action-btn{
        max-width: 13.448vw;
    }
}
@media only screen and (max-width: 991px){
    .eq-real-stories__action-slider{
        max-width: 100%;
    }
    .eq-real-stories__action-btn{
        max-width: 100%;
    }
    .eq-real-stories__head h2 {
        font-size: 48px;
    }
    .eq-real-stories {
        padding: 80px 0;
    }
}
@media only screen and (max-width: 767px){
    .eq-real-stories__bg {
        padding-bottom: 194.4%;
    }
    .eq-real-stories__head {
        margin-bottom: 26px;
        border-top: 0;
        padding-top: 0;
    }
    .eq-real-stories__head h4{
        font-size: 20px;
    }
    .eq-real-stories__head h2 {
        font-size: 64px;
    }
    .eq-real-stories__inner-content {
        padding: 20px 26px;
    }
    .eq-real-stories__inner-content h4 {
        font-size: 20px;
        margin-bottom: 16px;
    }
    .eq-real-stories__inner-content h3 {
        font-size: 64px;
        max-width: 100%;
    }
    .eq-real-stories__inner-logo{
        display: none;
    }
    .eq-real-stories__content {
        display: flex;
        flex-direction: column-reverse;
    }
    .eq-real-stories__action-slider .progress{
        display: none;
    }
    .eq-real-stories__action-btn{
        display: none;
    }
    .eq-real-stories__action-slider{
        margin-bottom: 26px;
    }
    .eq-real-stories__button{
        margin-top: 30px;
    }
    .eq-real-stories__action-slider .slick-arrow span{
        display: block;
    }
    .eq-real-stories__action-slider .slick-arrow{
        max-width: max-content;
        gap: 0;
    }
    .eq-real-stories__action-slider .slick-arrow img{
        max-width: 27px;
    }
    .eq-real-stories__action-slider .slick-arrow.prev-arrow img{
        margin-right: 18px;
    }
    .eq-real-stories__action-slider .slick-arrow.next-arrow img{
        margin-left: 18px;
    }
    .eq-real-stories__action{
        margin-top: 0;
    }
    .eq-real-stories {
        padding: 56px 0 110px;
        margin-top: -30px;
        z-index: 111;
        position: relative;
        border-radius: 30px 30px 0 0;
    }
    body.page-template-about-us .eq-real-stories{
        padding: 56px 0 40px;
    }
}
/* eq real stories css end here */

/* eq-transforming-dentures css start here */
.eq-transforming-dentures{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 170px 0 120px;
    position: relative;
    z-index: 1;
    margin: -25px 0;
}
.eq-transforming-dentures__bg{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.eq-transforming-dentures__bg img,
.eq-transforming-dentures__bg video,
.eq-transforming-dentures__bg iframe{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.eq-transforming-dentures__bg::after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(147, 114, 97, 0.297) 0%, rgba(130, 78, 55, 0.3) 100%);
}
.eq-transforming-dentures > .cus-container{
    position: relative;
}
.eq-transforming-dentures__title{
    width: 100%;
    max-width: 1196px;
    margin: 0 auto 28px;
}
.eq-transforming-dentures__title h3{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: var(--color-light-200);
    margin-bottom: 12px;
}
.eq-transforming-dentures__title h2{
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 59px;
    line-height: 1;
    color: var(--color-light-300);
}
.eq-transforming-dentures__content{
    width: 100%;
    max-width: 1196px;
    margin: 0 auto;
}
.eq-transforming-dentures__media{
    width: 100%;
    position: relative;
    padding-bottom: 57.8%;
    border-radius: 36px;
    overflow: hidden;
}
.eq-transforming-dentures__media::after{
    content: '';
    background: linear-gradient(180deg, rgba(82, 62, 45, 0.4) 0%, rgba(192, 175, 151, 0.4) 100%);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.eq-transforming-dentures__media .main-media{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.eq-transforming-dentures__video-button {
    max-width: 130px;
    width: 100%;
    height: 130px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
    display: flex;
    align-items: center;
    justify-content: center;
}
.eq-transforming-dentures__btn-video-sound{
    position: absolute;
    left: 24px;
    top: 24px;
    background-color: var(--color-light-400);
    padding: 13px 25px;
    z-index: 11;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-radius: 50px;    
}
.eq-transforming-dentures__btn-video-sound span{
    font-family: var(--font-theme);
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    color: var(--color-primary);
}
.eq-transforming-dentures__btn-video-sound img{
    max-width: 43px;
    width: 100%;
}
.eq-transforming-dentures__video-button img{
    max-width: 94px;
    width: 100%;
}
.eq-transforming-dentures__button-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.eq-transforming-dentures__button{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    max-width: 1196px;
    margin: 44px auto 0;
}
.eq-transforming-dentures__review-logo{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 27px;
}
.eq-transforming-dentures__trustpilot{
    max-width: 213px;
    width: 100%;
}
.eq-transforming-dentures__google-review{
    max-width: 170px;
    width: 100%;
}
@media only screen and (max-width: 1740px) and (min-width: 992px) {
    .eq-transforming-dentures{
        padding: 9.655vw 0 6.667vw;
    }
    .eq-transforming-dentures__title{
        max-width: 68.736vw;
        margin: 0 auto 1.609vw;
    }
    .eq-transforming-dentures__title h3{
        font-size: 1.034vw;
        margin-bottom: 0.690vw;
    }
    .eq-transforming-dentures__title h2{
        font-size: 3.391vw;
    }
    .eq-transforming-dentures__content{
        max-width: 68.736vw;
    }
    .eq-transforming-dentures__media{
        border-radius: 2.069vw;
    }
    .eq-transforming-dentures__video-button {
        max-width: 7.471vw;
        height: 7.471vw;
    }
    .eq-transforming-dentures__btn-video-sound{
        left: 1.379vw;
        top: 1.379vw;
        padding: 0.747vw 1.437vw;
        gap: 0.805vw;
        border-radius: 2.874vw;    
    }
    .eq-transforming-dentures__btn-video-sound span{
        font-size: 1.034vw;
    }
    .eq-transforming-dentures__btn-video-sound img{
        max-width: 2.471vw;
    }
    .eq-transforming-dentures__video-button img{
        max-width: 5.402vw;
    }
    .eq-transforming-dentures__button{
        gap: 2.299vw;
        max-width: 68.736vw;
        margin: 2.529vw auto 0;
    }
    .eq-transforming-dentures__review-logo{
        gap: 1.552vw;
    }
    .eq-transforming-dentures__trustpilot{
        max-width: 12.241vw;
    }
    .eq-transforming-dentures__google-review{
        max-width: 9.770vw;
    }
}
@media only screen and (max-width: 991px){
    .eq-transforming-dentures__title h2{
        font-size: 48px;
    }
    .eq-transforming-dentures__btn-video-sound img {
        max-width: 30px;
    }
    .eq-transforming-dentures__btn-video-sound span {
        font-size: 16px;
    }
    .eq-transforming-dentures__btn-video-sound {
        left: 20px;
        top: 20px;
        padding: 10px 18px;
    }
    .eq-transforming-dentures__video-button {
        max-width: 100px;
        width: 100%;
        height: 100px;
    }
    .eq-transforming-dentures__video-button img {
        max-width: 70px;
    }
    .eq-transforming-dentures__media {
        padding-bottom: 70%;
        border-radius: 30px;
    }
    .eq-transforming-dentures {
        padding: 140px 0;
    }
    .eq-transforming-dentures__button{
        gap: 20px;
    }
    .eq-transforming-dentures__trustpilot {
        max-width: 190px;
    }
    .eq-transforming-dentures__google-review {
        max-width: 140px;
    }
    .eq-transforming-dentures__review-logo{
        gap: 20px;
    }
}
@media only screen and (max-width: 767px){
    .eq-transforming-dentures{
        display: none;
    }
}
/* eq-transforming-dentures css end here */

/* eq-transformation-results css start here */
.eq-transformation-results{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 120px 0 86px;
    background-color: var(--color-light-100);
    border-radius: 30px;
    overflow: hidden;
    z-index: 11;
    position: relative;
}
.eq-transformation-results__title{
    width: 100%;
    margin-bottom: 22px;
}
.eq-transformation-results__title h2{
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 59px;
    line-height: 1;
    color: var(--color-primary);
    border-bottom: 1px solid var(--color-secondary);
    padding-bottom: 16px;
}
.eq-transformation-results__title .text-desc{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-primary-100);
    max-width: 1043px;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 50px;
}
.eq-transformation-results__title span{
    display: block;
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 1.4px;
    color: rgba(155, 123, 97, 0.5);
}
.eq-transformation-results__content{
    width: 100%;
}
.eq-transformation-results__slider{
    width: 100%;
    height: 463px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.eq-transformation-results__slider.slick-initialized{
    height: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.eq-transformation-results__slider .slick-list{
    overflow: visible;
}
.eq-transformation-results__box{
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}
.eq-transformation-results__media-wrap{
    width: 100%;
    position: relative;
    padding-bottom: 91.322%;
}
.eq-transformation-results__media-wrap::after{
    content: 'After';
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 1.4px;
    color: var(--color-light);
    position: absolute;
    left: 20px;
    top: 20px;
    width: 100%;
    z-index: 11;
    display: block;
    transition: var(--transition-primary);
}
.eq-transformation-results__media-wrap::before{
    content: 'Before';
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 1.4px;
    color: var(--color-light);
    position: absolute;
    left: 100%;
    top: 20px;
    width: 100%;
    z-index: 11;
    display: block;
    transition: var(--transition-primary);
}
.eq-transformation-results__box:hover .eq-transformation-results__media-wrap::after{
    left: -100%;
}
.eq-transformation-results__box:hover .eq-transformation-results__media-wrap::before{
    left: 20px;
}
.eq-transformation-results__media-wrap img.eq-after {
    left: 100%;
}
.eq-transformation-results__box:hover img.eq-after{
    left: 0;
}
.eq-transformation-results__box:hover img.eq-before{
    left: -100%;
}

.eq-transformation-results__media-wrap img,
.eq-transformation-results__media-wrap video,
.eq-transformation-results__media-wrap iframe{
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-primary);
}
.eq-transformation-results__box::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(82, 62, 45, 0) 39.42%, rgba(82, 62, 45, 0.78) 100%);
}
.eq-transformation-results__action {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 22px;
}
.eq-transformation-results__action-slider {
    max-width: 981px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.eq-transformation-results__action-slider .slick-arrow{    
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    max-width: 39px;
    width: 100%;
}
.eq-transformation-results__action-slider .slick-arrow.slick-disabled{
    opacity: 0.5;
    cursor: auto;
}
.eq-transformation-results__action-slider .slick-arrow span{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 20px;    
    line-height: 1;
    color: var(--color-light);
    display: none;
}
.eq-transformation-results__action-slider .progress {
    position: relative;
    flex: 1;
    height: 2px;    
    border-radius: 50px;
    max-width: 860px;
    width: 100%;
    margin: 0 auto;
    z-index: 1;
}
.eq-transformation-results__action-slider .progress::after{
    content: '';
    width: 100%;
    background-color: var(--color-secondary);
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    z-index: -1;
}

/* Progress fill */
.eq-transformation-results__action-slider .progress-bar {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 11px;
    display: block;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--color-secondary);
    background-size: 0 100%;
    transition: var(--transition-primary);
}

.eq-transformation-results__action-btn{
    max-width: 234px;
    width: 100%;
}
@media only screen and (max-width: 1740px) and (min-width: 992px) {
    .eq-transformation-results{
        padding: 6.897vw 0 4.943vw;
        border-radius: 1.724vw;
    }
    .eq-transformation-results__title{
        margin-bottom: 1.264vw;
    }
    .eq-transformation-results__title h2{
        font-size: 3.391vw;
        border-bottom: 0.057vw solid var(--color-secondary);
        padding-bottom: 0.920vw;
    }
    .eq-transformation-results__title .text-desc{
        font-size: 1.034vw;
        max-width: 59.943vw;
        margin-top: 1.724vw;
        margin-bottom: 2.874vw;
    }
    .eq-transformation-results__title span{
        font-size: 0.805vw;
        letter-spacing: 0.080vw;
    }
    .eq-transformation-results__box{
        border-radius: 1.724vw;
    }    
    .eq-transformation-results__action {
        gap: 1.437vw;
        margin-top: 1.264vw;
    }
    .eq-transformation-results__action-slider {
        max-width: 56.379vw;
        gap: 0.862vw;
    }
    .eq-transformation-results__action-slider .slick-arrow{    
        gap: 1.034vw;
        max-width: 2.241vw;
    }
    .eq-transformation-results__action-slider .slick-arrow span{
        font-size: 1.149vw;    
    }
    .eq-transformation-results__action-slider .progress {
        height: 0.115vw;    
        border-radius: 2.874vw;
        max-width: 49.425vw;
    }
    .eq-transformation-results__action-slider .progress::after{
        height: 0.115vw;
    }
    .eq-transformation-results__action-slider .progress-bar {
        height: 0.632vw;
        border-radius: 0.575vw;
    }
    .eq-transformation-results__action-btn{
        max-width: 13.448vw;
    }
}
@media only screen and (max-width: 991px){
    .eq-transformation-results__action-btn{
        max-width: 100%;
    }
    .eq-transformation-results{
        padding: 80px 0;
    }
    .eq-transformation-results__title h2{
        font-size: 48px;
    }
}
@media only screen and (max-width: 767px){
    .eq-transformation-results{
        background-color: var(--color-tertiary);
        margin: -30px 0;
        z-index: 111;
        padding: 70px 0 45px;
    }
    .eq-transformation-results__title h2{
        font-size: 64px;
        line-height: 1.1;
        color: var(--color-light);
        border-bottom-color: var(--color-light);
    }
    .eq-transformation-results__title .text-desc,
    .eq-transformation-results__title span{
        display: none;
    }
    .eq-transformation-results__title{
        margin-bottom: 29px;
    }
    .eq-transformation-results__action-btn{
        display: none;
    }
    .eq-transformation-results__button {
        margin-top: 28px;
    }
    .eq-transformation-results__button .btn{
        padding: 14px 32px;
    }
    .eq-transformation-results__content {
        display: flex;
        flex-direction: column-reverse;
    }
    .eq-transformation-results__action{
        margin-top: 0;
    }
    .eq-transformation-results__action-slider{
        margin-bottom: 26px;
    }
    .eq-transformation-results__action-slider .progress{
        display: none;
    }
    .eq-transformation-results__action-slider .slick-arrow span{
        display: block;
    }
    .eq-transformation-results__action-slider .slick-arrow {
        max-width: max-content;
        gap: 0;
    }
    .eq-transformation-results__action-slider .slick-arrow.prev-arrow img{
        margin-right: 18px;
    }
    .eq-transformation-results__action-slider .slick-arrow.next-arrow img{
        margin-left: 18px;
    }
    .eq-transformation-results__media-wrap{
        padding-bottom: 92%;
    }
}
/* eq-transformation-results css end here */

/* eq-trusted-denture-care css start here */
.eq-trusted-denture-care{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    padding: 120px 0 140px;
    margin: -25px 0;
}
.eq-trusted-denture-care__bg{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
/* .eq-trusted-denture-care__bg::after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(155, 123, 97, 0.9) 0%, rgba(82, 62, 45, 0.9) 100%);
} */
.eq-trusted-denture-care__bg img,
.eq-trusted-denture-care__bg video,
.eq-trusted-denture-care__bg iframe{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.eq-trusted-denture-care .cus-container{
    position: relative;
    z-index: 1;
}
.eq-trusted-denture-care__title{
    width: 100%;
    border-bottom: 1px solid var(--color-secondary);
    padding-bottom: 10px;
    margin-bottom: 32px;
}
.eq-trusted-denture-care__title h3{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: var(--color-light-200);
    margin-bottom: 12px;
}
.eq-trusted-denture-care__title h2{
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 59px;
    line-height: 1;
    color: var(--color-light-400);
}
.eq-trusted-denture-care__button {
    width: 100%;
    gap: 38px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 38px;
}
.eq-trusted-denture-care__button-link{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    color: rgba(255, 255, 255, 0.8);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.eq-trusted-denture-care__button-link svg,
.eq-trusted-denture-care__button-link img{
    max-width: 19px;
    width: 100%;
    margin-right: 13px;
}
.eq-trusted-denture-care__button-link svg g path{
    transition: var(--transition-primary);
}
.eq-trusted-denture-care__button-link:hover svg g path{
    fill: var(--color-light);
}
.eq-trusted-denture-care__button-link:hover{
    color: var(--color-light);
}
.eq-trusted-denture-care__content {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 21px;
}
.eq-trusted-denture-care__left {
    max-width: 364px;
    width: 100%;
}
.eq-trusted-denture-care__left-media{
    width: 100%;
    position: relative;
    padding-bottom: 176%;
    border-radius: 30px;
    overflow: hidden;
}
.eq-trusted-denture-care__left-media::after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(82, 62, 45, 0.47) 30.77%, rgba(192, 175, 151, 0.0846) 100%);
}
.eq-trusted-denture-care__left-media img,
.eq-trusted-denture-care__left-media video,
.eq-trusted-denture-care__left-media iframe{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.eq-trusted-denture-care__left-text {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding: 44px 40px;
    z-index: 1;
}
.eq-trusted-denture-care__left-text h4{
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 30px;
    line-height: 1;
    color: var(--color-light);
    margin-bottom: 15px;
}
.eq-trusted-denture-care__left-text .text-desc{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-light);
}


.eq-trusted-denture-care__right {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 855px;
    gap: 24px;
}
.eq-trusted-denture-care__gallary-box{
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}
.eq-trusted-denture-care__gallary-box .main-media{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eq-trusted-denture-care__one{
    max-width: 454px;
    width: 100%;    
    padding-bottom: 40.118%;
}
.eq-trusted-denture-care__one::after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(82, 62, 45, 0.65) 39.9%, rgba(192, 175, 151, 0.65) 100%);
}

.eq-trusted-denture-care__right-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 303px;
    width: 100%;
    z-index: 1;
}
.eq-trusted-denture-care__two {
    max-width: 376px;
    width: 100%;
    position: relative;
    padding-bottom: 40.118%;
    border-radius: 30px;
    overflow: hidden;
}
.eq-trusted-denture-care__two::after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(140, 107, 92, 0.28) 0%, rgba(155, 123, 97, 0.28) 100%);
}
.eq-trusted-denture-care__three {
    max-width: 569px;
    width: 100%;
    padding-bottom: 32.118%;
}
.eq-trusted-denture-care__right-text {
    position: absolute;
    left: 36px;
    bottom: 36px;
    z-index: 1;
    max-width: 294px;
    width: 100%;    
}
.eq-trusted-denture-care__right-text h4{
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 30px;
    line-height: 1;
    color: var(--color-light);
}
.eq-trusted-denture-care__right-text .text-desc{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: var(--color-light);
    margin-top: 20px;
}
.eq-trusted-denture-care__four {
    max-width: 261px;
    width: 100%;
    padding-bottom: 32.118%;
}
.eq-trusted-denture-care__four::after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(192, 175, 151, 0.56) 0%, rgba(82, 62, 45, 0.56) 52.4%);
}
.eq-trusted-denture-care__four .eq-trusted-denture-care__right-logo {
    max-width: 104px;
}

@media only screen and (max-width: 1740px) and (min-width: 992px) {
    .eq-trusted-denture-care{
        padding: 6.897vw 0 8.046vw;
        margin: -1.437vw 0;
    }
    .eq-trusted-denture-care__title{
        border-bottom: 0.057vw solid var(--color-secondary);
        padding-bottom: 0.575vw;
        margin-bottom: 1.839vw;
    }
    .eq-trusted-denture-care__title h3{
        font-size: 1.034vw;
        margin-bottom: 0.690vw;
    }
    .eq-trusted-denture-care__title h2{
        font-size: 3.391vw;
    }
    .eq-trusted-denture-care__button {
        gap: 2.184vw;
        margin-top: 2.184vw;
    }
    .eq-trusted-denture-care__button-link{
        font-size: 1.034vw;
    }
    .eq-trusted-denture-care__button-link svg,
    .eq-trusted-denture-care__button-link img{
        max-width: 1.092vw;
        margin-right: 0.747vw;
    }
    .eq-trusted-denture-care__content {
        gap: 1.207vw;
    }
    .eq-trusted-denture-care__left {
        max-width: 20.920vw;
    }
    .eq-trusted-denture-care__left-media{
        border-radius: 1.724vw;
    }
    .eq-trusted-denture-care__left-text {
        padding: 2.529vw 2.299vw;
    }
    .eq-trusted-denture-care__left-text h4{
        font-size: 1.724vw;
        margin-bottom: 0.862vw;
    }
    .eq-trusted-denture-care__left-text .text-desc{
        font-size: 1.034vw;
    }
    .eq-trusted-denture-care__right {
        max-width: 49.138vw;
        gap: 1.379vw;
    }
    .eq-trusted-denture-care__gallary-box{
        border-radius: 1.724vw;
    }
    .eq-trusted-denture-care__one{
        max-width: 26.092vw;
        padding-bottom: 40.118%;
    }
    .eq-trusted-denture-care__right-logo {
        max-width: 17.414vw;
    }
    .eq-trusted-denture-care__two {
        max-width: 21.609vw;
        border-radius: 1.724vw;
    }
    .eq-trusted-denture-care__three {
        max-width: 32.701vw;
    }
    .eq-trusted-denture-care__right-text {
        left: 2.069vw;
        bottom: 2.069vw;
        max-width: 16.897vw;
    }
    .eq-trusted-denture-care__right-text h4{
        font-size: 1.724vw;
    }
    .eq-trusted-denture-care__right-text .text-desc{
        font-size: 1.034vw;
        margin-top: 1.149vw;
    }
    .eq-trusted-denture-care__four {
        max-width: 15.000vw;
    }
    .eq-trusted-denture-care__four .eq-trusted-denture-care__right-logo {
        max-width: 5.977vw;
    }
}
@media only screen and (max-width: 991px){
    .eq-trusted-denture-care__content{
        flex-wrap: wrap;
    }
    .eq-trusted-denture-care__left-media {
        padding-bottom: 46%;
    }
    .eq-trusted-denture-care__left{
        max-width: 100%;
    }
    .eq-trusted-denture-care__one,
    .eq-trusted-denture-care__two,
    .eq-trusted-denture-care__three,
    .eq-trusted-denture-care__four{
        max-width: 100%;
    }
    .eq-trusted-denture-care__three,
    .eq-trusted-denture-care__four{
        padding-bottom: 40.118%;
    }
    .eq-trusted-denture-care__title h2 {
        font-size: 48px;
    }
    .eq-trusted-denture-care{
        padding: 80px 0;
    }
}
@media only screen and (max-width: 767px){
    .eq-trusted-denture-care{
        display: none;
    }
}
/* eq-trusted-denture-care css end here */

/* eq-denture-testimonials css start here */
.eq-denture-testimonials{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 131px 0 144px;
    background-color: var(--color-light-500);
    border-radius: 30px;
    overflow: hidden;
    z-index: 11;
    position: relative;
}
.eq-denture-testimonials__title{
    width: 100%;
    padding-top: 36px;
    border-top: 1px solid var(--color-secondary);
    margin-bottom: 30px;
}
.eq-denture-testimonials__title h3{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-primary-100);
    margin-bottom: 8px;
}
.eq-denture-testimonials__title h2{
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 59px;
    line-height: 1;
    color: var(--color-primary);
}
.eq-denture-testimonials__content{
    width: 100%;
}
.eq-denture-testimonials__slider{
    width: 100%;
    height: 460px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.eq-denture-testimonials__slider.slick-initialized{
    height: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.eq-denture-testimonials__slider .slick-list{
    overflow: visible;
}
.eq-denture-testimonials__slider .slick-track{
    display: flex;
}
.eq-denture-testimonials__slider .slide{
    height: unset;
}
.eq-denture-testimonials__box{
    width: 100%;
    background-color: var(--color-light);
    border-radius: 30px;
    overflow: hidden;
    padding: 30px 35px 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 66px;
}
.eq-denture-testimonials__box span{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: var(--color-primary);
}
.eq-denture-testimonials__box-content{
    width: 100%;
}
.eq-denture-testimonials__box-logo{
    max-width: 31px;
    width: 100%;
    margin-bottom: 28px;
}
.eq-denture-testimonials__box-content h4{
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 35px;
    line-height: 1.1;
    color: var(--color-primary);
}
.eq-denture-testimonials__box-content .text-desc{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-primary);
    margin-top: 38px;
}
.eq-denture-testimonials__box-content .review-logo {
    width: 100%;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
}
.eq-denture-testimonials__box-content .review-logo img{
    max-width: 17px;
    width: 100%;
}
.eq-denture-testimonials__action {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 22px;
}
.eq-denture-testimonials__action-slider {
    max-width: 981px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.eq-denture-testimonials__action-slider .slick-arrow{    
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    max-width: 39px;
    width: 100%;
}
.eq-denture-testimonials__action-slider .slick-arrow.slick-disabled {
    opacity: 0.5;
    cursor: auto;
}
.eq-denture-testimonials__action-slider .slick-arrow span{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 20px;    
    line-height: 1;
    color: var(--color-primary);
    display: none;
}
.eq-denture-testimonials__action-slider .progress {
    position: relative;
    flex: 1;
    height: 2px;    
    border-radius: 50px;
    max-width: 860px;
    width: 100%;
    margin: 0 auto;
    z-index: 1;
}
.eq-denture-testimonials__action-slider .progress::after{
    content: '';
    width: 100%;
    background-color: var(--color-secondary);
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    z-index: -1;
}

/* Progress fill */
.eq-denture-testimonials__action-slider .progress-bar {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 11px;
    display: block;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--color-secondary);
    transition: var(--transition-primary);
}
.eq-denture-testimonials__action-btn{
    max-width: 234px;
    width: 100%;
}
@media only screen and (max-width: 1740px) and (min-width: 992px) {
    .eq-denture-testimonials{
        padding: 7.529vw 0 8.276vw;
        border-radius: 1.724vw;
    }
    .eq-denture-testimonials__title{
        padding-top: 2.069vw;
        border-top: 0.057vw solid var(--color-secondary);
        margin-bottom: 1.724vw;
    }
    .eq-denture-testimonials__title h3{
        font-size: 1.034vw;
        margin-bottom: 0.460vw;
    }
    .eq-denture-testimonials__title h2{
        font-size: 3.391vw;
    }
    .eq-denture-testimonials__box{
        border-radius: 1.724vw;
        padding: 1.724vw 2.011vw 1.437vw;
        gap: 3.793vw;
    }
    .eq-denture-testimonials__box span{
        font-size: 0.920vw;
    }
    .eq-denture-testimonials__box-logo{
        max-width: 1.782vw;
        margin-bottom: 1.609vw;
    }
    .eq-denture-testimonials__box-content h4{
        font-size: 2.011vw;
    }
    .eq-denture-testimonials__box-content .text-desc{
        font-size: 1.034vw;
        margin-top: 2.184vw;
    }
    .eq-denture-testimonials__box-content .review-logo {
        margin-top: 1.437vw;
        gap: 0.230vw;
    }
    .eq-denture-testimonials__box-content .review-logo img{
        max-width: 0.977vw;
    }
    .eq-denture-testimonials__action {
        gap: 1.437vw;
        margin-top: 1.264vw;
    }
    .eq-denture-testimonials__action-slider {
        max-width: 56.379vw;
        gap: 0.862vw;
    }
    .eq-denture-testimonials__action-slider .slick-arrow{    
        gap: 1.034vw;
        max-width: 2.241vw;
    }
    .eq-denture-testimonials__action-slider .slick-arrow span{
        font-size: 1.149vw;    
    }
    .eq-denture-testimonials__action-slider .progress {
        height: 0.115vw;    
        border-radius: 2.874vw;
        max-width: 49.425vw;
    }
    .eq-denture-testimonials__action-slider .progress::after{
        height: 0.115vw;
    }

    /* Progress fill */
    .eq-denture-testimonials__action-slider .progress-bar {
        height: 0.632vw;
        border-radius: 0.575vw;
    }
    .eq-denture-testimonials__action-btn{
        max-width: 13.448vw;
    }
}
@media only screen and (max-width: 991px){
    .eq-denture-testimonials__title h2 {
        font-size: 48px;
    }
    .eq-denture-testimonials__box-content h4 {
        font-size: 32px;
    }
    .eq-denture-testimonials__action-btn {
        max-width: 100%;
    }
    .eq-denture-testimonials{
        padding: 80px 0;
    }
}
@media only screen and (max-width: 767px){
    .eq-denture-testimonials{
        border-radius: 0 0 30px 30px;
        padding: 97px 0 50px;
        background-color: var(--color-light-100);
    }
    .eq-denture-testimonials__content {
        display: flex;
        flex-direction: column-reverse;
    }
    .eq-denture-testimonials__button{
        margin-top: 28px;
    }
    .eq-denture-testimonials__button .btn-primary{
        background-color: var(--color-primary-200);
        border-color: var(--color-primary-200);
    }
    .eq-denture-testimonials__button .btn-primary:hover{
        background-color: var(--color-light);
        border-color:  var(--color-light);
    }
    .eq-denture-testimonials__title h3{
        font-size: 20px;
        margin-bottom: 14px;
    }
    .eq-denture-testimonials__title{
        padding-top: 0;
        border: 0;
        margin-bottom: 32px;
    }
    .eq-denture-testimonials__title h2 {
        font-size: 64px;
    }
    .eq-denture-testimonials__action-slider .progress{
        display: none;
    }
    .eq-denture-testimonials__action-slider .slick-arrow{
        max-width: max-content;
        gap: 0;
    }
    .eq-denture-testimonials__action-slider .slick-arrow.prev-arrow img{
        margin-right: 15px;
    }
    .eq-denture-testimonials__action-slider .slick-arrow.next-arrow img{
        margin-left: 15px;
    }
    .eq-denture-testimonials__action-slider .slick-arrow span{
        display: block;
    }
    .eq-denture-testimonials__action-slider{
        margin-bottom: 20px;
    }
    .eq-denture-testimonials__box {
        padding: 30px 32px 25px;
        border: 1px solid rgba(0, 0, 0, 0.5);
        gap: 60px;
    }
    .eq-denture-testimonials__box span{
        font-size: 20px;
    }
    .eq-denture-testimonials__box-content h4 {
        font-size: 35px;
    }
    .eq-denture-testimonials__box-content .text-desc{
        font-size: 20px;
        margin-top: 20px;
    }
    .eq-denture-testimonials__box-logo{
        display: none;
    }
    .eq-denture-testimonials__action{
        margin-top: 0;
    }
}
/* eq-denture-testimonials css end here */

/* eq-our-commitment css start here */
.eq-our-commitment{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 191px 0 141px;
    position: relative;
    z-index: 1;
    margin: -30px 0;
}
.eq-our-commitment__bg{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.eq-our-commitment__bg::after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(192, 175, 151, 0.1088) 0%, rgba(82, 62, 45, 0.68) 100%);
}
.eq-our-commitment__bg img,
.eq-our-commitment__bg video,
.eq-our-commitment__bg iframe{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.eq-our-commitment .cus-container{
    position: relative;
    z-index: 1;
    max-width: 1268px;
}
.eq-our-commitment__content {
    max-width: 542px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.eq-our-commitment__logo{
    max-width: 214px;
    width: 100%;
}
.eq-our-commitment__content h2{
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 40px;
    line-height: 1.1;
    color: var(--color-light);   
    padding-top: 28px; 
    border-top: 1px solid var(--color-secondary);
    margin-top: 60px;
}
.eq-our-commitment__content .text-desc{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-light);
    margin-top: 18px;
}
.eq-our-commitment__content .text-desc p{
    margin-top: 32px;
}
.eq-our-commitment__content .text-desc p:first-child{
    margin-top: 0;
}
.eq-our-featured-services{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 38px;
}
.eq-our-featured-services__title{
    width: 100%;
    border-bottom: 1px solid var(--color-secondary);
    padding-bottom: 8px;
}
.eq-our-featured-services__title span{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: var(--color-light-200);
}
.eq-our-featured-services__title h2{
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 39px;
    line-height: 1;
    color: var(--color-light-400);
    margin-top: 10px;
}
.eq-our-featured-services__content{
    width: 100%;
}

.eq-our-featured-services__wrap{
    width: 100%;
    height: 178px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.eq-our-featured-services__wrap.slick-initialized{
    height: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.eq-our-featured-services__wrap .slick-list{
    margin: 0 -20px;
    padding: 26px 0;
}
.eq-our-featured-services__wrap .slick-list .slick-track .slide{
    padding: 0 20px;
}
.eq-our-featured-services__box{
    width: 100%;
    background-color: rgba(255, 250, 243, 0.6);
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.25);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 38px 30px;
}
.eq-our-featured-services__box figure {
    max-width: 80px;
    width: 100%;
    margin-right: 28px;
}
.eq-our-featured-services__box h4{
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 25px;
    line-height: 1;
    color: var(--color-primary);
    max-width: 180px;
    width: 100%;
}
.eq-our-featured-services__action {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 4px;
}
.eq-our-featured-services__action .link-view-all-denture-services{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: var(--color-light);
}
.eq-our-featured-services__action .link-view-all-denture-services:hover{
    color: var(--color-light);
}
.eq-our-featured-services__action-arrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 62px;
    width: 100%;
    gap: 6px;
    margin-right: 10px;
}
.eq-our-featured-services__action-arrow .slick-arrow{
    max-width: 28px;
    width: 100%;
    font-size: 0;
}
.eq-our-featured-services__action-arrow .slick-arrow.slick-disabled{
    opacity: 0.5;
    cursor: auto;
}
@media only screen and (max-width: 1740px) and (min-width: 992px) {
    .eq-our-commitment{
        padding: 10.977vw 0 8.103vw;
        margin: -1.724vw 0;
    }
    .eq-our-commitment .cus-container{
        max-width: 72.874vw;
    }
    .eq-our-commitment__content {
        max-width: 31.149vw;
    }
    .eq-our-commitment__logo{
        max-width: 12.299vw;
    }
    .eq-our-commitment__content h2{
        font-size: 2.299vw;
        padding-top: 1.609vw; 
        border-top: 0.057vw solid var(--color-secondary);
        margin-top: 3.448vw;
    }
    .eq-our-commitment__content .text-desc{
        font-size: 1.034vw;
        margin-top: 1.034vw;
    }
    .eq-our-commitment__content .text-desc p{
        margin-top: 1.839vw;
    }
    .eq-our-featured-services{
        margin-top: 2.184vw;
    }
    .eq-our-featured-services__title{
        border-bottom: 0.057vw solid var(--color-secondary);
        padding-bottom: 0.460vw;
    }
    .eq-our-featured-services__title span{
        font-size: 1.034vw;
    }
    .eq-our-featured-services__title h2{
        font-size: 2.241vw;
        margin-top: 0.575vw;
    }
    .eq-our-featured-services__wrap .slick-list{
        margin: 0 -1.149vw;
        padding: 1.494vw 0;
    }
    .eq-our-featured-services__wrap .slick-list .slick-track .slide{
        padding: 0 1.149vw;
    }
    .eq-our-featured-services__box{
        box-shadow: 0.000vw 0.287vw 0.862vw 0.000vw rgba(0, 0, 0, 0.25);
        border-radius: 5.747vw;
        padding: 2.184vw 1.724vw;
    }
    .eq-our-featured-services__box figure {
        max-width: 4.598vw;
        margin-right: 1.609vw;
    }
    .eq-our-featured-services__box h4{
        font-size: 1.437vw;
        max-width: 10.345vw;
    }
    .eq-our-featured-services__action {
        margin-bottom: 0.230vw;
    }
    .eq-our-featured-services__action .link-view-all-denture-services{
        font-size: 1.034vw;
    }
    .eq-our-featured-services__action-arrow {
        max-width: 3.563vw;
        gap: 0.345vw;
        margin-right: 0.575vw;
    }
    .eq-our-featured-services__action-arrow .slick-arrow{
        max-width: 1.609vw;
    }
}
@media only screen and (max-width: 991px){
    .eq-our-featured-services__box {
        padding: 27px;
        min-height: 98px;
    }
    .eq-our-featured-services__box figure {
        max-width: 60px;
        margin-right: 15px;
    }
    .eq-our-featured-services__box h4 {
        font-size: 22px;
    }    
}
@media only screen and (max-width: 767px){
    .eq-our-featured-services__action-arrow {
        justify-content: space-between;
        margin: 0;
        max-width: 100%;
    }
    .eq-our-featured-services__action-arrow .slick-arrow {
        font-family: var(--font-theme);
        font-weight: 400;
        font-size: 20px;
        line-height: 1;
        color: var(--color-light);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        max-width: max-content;
        gap: 15px;
    }
    .eq-our-featured-services__box h4 {
        font-size: 22px;
    }
    .eq-our-featured-services__box figure {
        max-width: 60px;
        margin-right: 15px;
    }
    .eq-our-featured-services__box {
        padding: 27px;
        min-height: 98px;
    }
    .eq-our-featured-services__wrap .slick-list .slick-track .slide {
        padding: 0 7px;
    }
    .eq-our-featured-services__wrap .slick-list {
        margin: 0 -7px;
        overflow: visible;
        padding: 20px 0 28px;
    }
    .eq-our-commitment{
        overflow: hidden;
        padding: 97px 0 92px;
    }
    .eq-our-featured-services{
        display: none;
    }
    .eq-our-commitment__logo{
        display: none;
    }
    .eq-our-commitment__content h2{
        margin-top: 0;
        padding-top: 0;
        border: 0;
        font-size: 64px;
    }
    .eq-our-commitment__content .text-desc{
        font-size: 20px;
        margin-top: 24px;
    }
    .eq-our-commitment__content .text-desc p {
        margin-top: 30px;
    }    
    .eq-our-commitment__bg{
        background: rgba(0, 0, 0, 0.5);
    }
    .eq-our-commitment__bg::after {
        content: '';
        background: linear-gradient(352.34deg, rgba(192, 175, 151, 0.1088) -0.34%, rgba(82, 62, 45, 0.68) 100%);
    }
    .eq-our-commitment__bg img,
    .eq-our-commitment__bg video, 
    .eq-our-commitment__bg iframe{
        display: none;
    }
}
@media only screen and (max-width: 439px){
    .eq-our-commitment__content h2 {
        font-size: 52px;
    }
    .denture-services__box {
        padding: 22px 20px;
        min-height: 90px;
    }
}
/* eq-our-commitment css end here */

/* eq-from-our-experts css start here */
.eq-from-our-experts{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 63px 0 70px;
    background-color: var(--color-light-100);
    position: relative;
    z-index: 11;
    border-radius: 30px;
    overflow: hidden;
}
.eq-from-our-experts__title{
    width: 100%;
    border-top: 1px solid var(--color-secondary);
    padding-top: 30px;
    margin-bottom: 40px;
}
.eq-from-our-experts__title span{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: var(--color-primary-100);
    margin-bottom: 12px;
    display: block;
}
.eq-from-our-experts__title h2{
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 59px;
    line-height: 1;
    color: var(--color-primary);
}
.eq-from-our-experts__content{
    width: 100%;
}
.eq-from-our-experts__slider{
    width: 100%;
    height: 650px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.eq-from-our-experts__slider.slick-initialized{
    height: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.eq-from-our-experts__slider .slick-list{
    overflow: visible;
}
.eq-from-our-experts__action-slider {
    width: 100%;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    display: none;
}
.eq-from-our-experts__action-slider .slick-arrow{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.eq-from-our-experts__action-slider .slick-arrow span{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    color: var(--color-primary);
}
.eq-from-our-experts__box{
    width: 100%;
}
.eq-from-our-experts__box figure{
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 50px;
    padding-bottom: 86.195%;
    position: relative;
}
.eq-from-our-experts__box figure img{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.eq-from-our-experts__box-content{
    width: 100%;
    padding: 0 25px;
}
.eq-from-our-experts__box h3{
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 35px;
    line-height: 1.1;
    color: var(--color-primary);
    margin-bottom: 6px;
}
.eq-from-our-experts__box h3 a{
    color: var(--color-primary);
}
.eq-from-our-experts__box span{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    text-transform: uppercase;
    color: var(--color-secondary);
}
.eq-from-our-experts__box .text-desc{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-primary);
    margin-top: 8px;
}
@media only screen and (max-width: 1740px) and (min-width: 992px) {
    .eq-from-our-experts{
        padding: 3.621vw 0 4.023vw;
        border-radius: 1.724vw;
    }
    .eq-from-our-experts__title{
        border-top: 0.057vw solid var(--color-secondary);
        padding-top: 1.724vw;
        margin-bottom: 2.299vw;
    }
    .eq-from-our-experts__title span{
        font-size: 1.034vw;
        margin-bottom: 0.690vw;
    }
    .eq-from-our-experts__title h2{
        font-size: 3.391vw;
    }
    .eq-from-our-experts__action-slider {
        margin-bottom: 0.920vw;
    }
    .eq-from-our-experts__action-slider .slick-arrow{
        gap: 0.862vw;
    }
    .eq-from-our-experts__action-slider .slick-arrow span{
        font-size: 1.149vw;
    }
    .eq-from-our-experts__box figure{
        max-width: 29.138vw;
        border-radius: 1.724vw;
        margin-bottom: 2.874vw;
    }
    .eq-from-our-experts__box-content{
        padding: 0 1.437vw;
    }
    .eq-from-our-experts__box h3{
        font-size: 2.011vw;
        margin-bottom: 0.345vw;
    }
    .eq-from-our-experts__box span{
        font-size: 1.034vw;
    }
    .eq-from-our-experts__box .text-desc{
        font-size: 1.034vw;
        margin-top: 0.460vw;
    }
}
@media only screen and (max-width: 991px){
    .eq-from-our-experts{
        padding: 80px 0;
    }
    .eq-from-our-experts__title h2{
        font-size: 48px;
    }
    .eq-from-our-experts__box h3{
        font-size: 32px;
    }
}
@media only screen and (max-width: 767px){
    .eq-from-our-experts {
        padding: 54px 0;
    }
    .eq-from-our-experts__title{
        padding-top: 0;
        border-top: 0;
        margin-bottom: 28px;
    }
    .eq-from-our-experts__title span {
        font-size: 20px;
        margin-bottom: 16px;
    }
    .eq-from-our-experts__title h2 {
        font-size: 64px;        
    }
    .eq-from-our-experts__action-slider{
        display: flex;
    }
    .eq-from-our-experts__box figure{
        max-width: 100%;
        position: relative;
        padding-bottom: 97%;
        margin-bottom: 30px;
    }
    .eq-from-our-experts__box figure img,
    .eq-from-our-experts__box figure video,
    .eq-from-our-experts__box figure iframe{
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .eq-from-our-experts__box h3 {
        font-size: 40px;
        margin: 0;
    }
    .eq-from-our-experts__box span{
        display: none;
    }
    .eq-from-our-experts__box-content{
        padding: 0 20px;
    }
    .eq-from-our-experts__box .text-desc{
        margin-top: 28px;
    }
    body.page-template-about-us .eq-from-our-experts{
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        padding-top: 40px;
    }
    .eq-from-our-experts__box .btn{
        margin-top: 22px;
    }
    .eq-from-our-experts__action-slider .slick-arrow{
        gap: 0;
    }
    .eq-from-our-experts__action-slider .slick-arrow.prev-arrow img{
        margin-right: 15px;
    }
    .eq-from-our-experts__action-slider .slick-arrow.next-arrow img{
        margin-left: 15px;
    }
}
/* eq-from-our-experts css end here */

/* eq-our-clinic css start here */
.eq-our-clinic{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 155px 0 102px;
    position: relative;
    z-index: 1;
    margin: -30px 0;
}
.eq-our-clinic__bg{
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
/* .eq-our-clinic__bg::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(147, 114, 97, 0.7029) 0%, rgba(82, 62, 45, 0.71) 100%);
} */
.eq-our-clinic__bg img,
.eq-our-clinic__bg video,
.eq-our-clinic__bg iframe{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.eq-our-clinic > .cus-container{
    position: relative;
    z-index: 1;
}
.eq-our-clinic__wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.eq-our-clinic__left{
    max-width: 520px;
    width: 100%;
}
.eq-our-clinic__left h3{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: var(--color-light-200);
    margin-bottom: 22px;
}
.eq-our-clinic__left h2{
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 59px;
    line-height: 1;
    color: var(--color-light);
}
.eq-our-clinic__right{
    max-width: 680px;
    width: 100%;
}
.eq-our-clinic__address{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-light-200);
    margin-top: 44px;
}
.eq-our-clinic__address address{
    font-style: normal;
    margin: 0;
}
.eq-our-clinic__address a{    
    color: var(--color-light);
}
.eq-our-clinic__address a:hover{
    color: var(--color-light-200);
}
.eq-our-clinic__address a.link-mail{
    text-decoration: underline;
}
.eq-our-clinic__address p{
    margin-top: 32px;
}
.eq-our-clinic__address span{
    color: rgba(243, 227, 206, 0.42);
}
.eq-our-clinic__map {
    position: relative;
    width: 100%;
    padding-bottom: 78.4%;
    overflow: hidden;
    border-radius: 30px;
}
.eq-our-clinic__map iframe{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100% !important;
    height: 100% !important;
    border-radius: 30px;
}
@media only screen and (max-width: 1740px) and (min-width: 992px) {
    .eq-our-clinic{
        padding: 8.908vw 0 5.862vw;
        margin: -1.724vw 0;
    }
    .eq-our-clinic__wrap {
        gap: 2.299vw;
    }
    .eq-our-clinic__left{
        max-width: 29.885vw;
    }
    .eq-our-clinic__left h3{
        font-size: 1.034vw;
        margin-bottom: 1.264vw;
    }
    .eq-our-clinic__left h2{
        font-size: 3.391vw;
    }
    .eq-our-clinic__right{
        max-width: 39.080vw;
    }
    .eq-our-clinic__address{
        font-size: 1.034vw;
        margin-top: 2.529vw;
    }
    .eq-our-clinic__address p{
        margin-top: 1.839vw;
    }
    .eq-our-clinic__map {
        border-radius: 1.724vw;
    }
}
@media only screen and (max-width: 991px){
    .eq-our-clinic{
        padding: 100px 0 90px;
    }
    .eq-our-clinic__wrap{
        flex-wrap: wrap;
        gap: 0;
    }
    .eq-our-clinic__right{
        margin-top: 46px;
    }
    .eq-our-clinic__left,
    .eq-our-clinic__right{
        max-width: 100%;
    }
}
@media only screen and (max-width: 767px){
    .eq-our-clinic__left h3 {
        font-size: 20px;
        margin-bottom: 18px;
    }
    .eq-our-clinic__left h2 {
        font-size: 48px;
    }
    .eq-our-clinic__address{
        font-size: 20px;
        color: var(--color-light);
        margin-top: 30px;
    }
    .eq-our-clinic__address span{
        color: var(--color-light-200);
    }
    .eq-our-clinic__map {
        padding-bottom: 69.5%;
    }
    .eq-our-clinic__address address {
        margin-bottom: 30px;
    }
    .eq-our-clinic__address p {
        margin-top: 30px;
    }
    .eq-our-clinic__button-mobile {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0;
        margin-top: 25px;
    }
    .eq-our-clinic__button-mobile .btn:last-child{
        margin-top: 10px;
    }
}
/* eq-our-clinic css end here */

/* About Us */
body.page-template-about-us .eq-home-banner,
body.single-service .eq-home-banner{
    padding: 248px 0 100px;
}
body.page-template-about-us .brick-street .brick-street__media figure img,
body.single-service .brick-street .brick-street__media figure img{
    max-width: 136%;
    width: 136%;
    margin: -40% -40% -50% -20%;
}
body.page-template-about-us .brick-street .brick-street__action-btn-right,
body.single-service .brick-street .brick-street__action-btn-right{
    flex-direction: column-reverse;
}
/* body.page-template-about-us .brick-street .brick-street__bg::after,
body.single-service .brick-street .brick-street__bg::after{
    background: linear-gradient(252.83deg, rgba(0, 0, 0, 0) 0.13%, rgba(0, 0, 0, 0.2) 100%);
} */
body.page-template-about-us .brick-street .brick-street__content,
body.single-service .brick-street .brick-street__content{
    padding: 96px 0;
}
body.page-template-about-us .brick-street .brick-street__box h2,
body.single-service .brick-street .brick-street__box h2{
    color: rgba(255, 255, 255, 0.75);
}
body.page-template-about-us .brick-street .brick-street__box .text-desc,
body.single-service .brick-street .brick-street__box .text-desc{
    color: rgba(255, 255, 255, 0.75);
}
@media only screen and (max-width: 1740px) and (min-width: 992px) {
    body.page-template-about-us .eq-home-banner,
    body.single-service .eq-home-banner{
        padding: 14.253vw 0 5.747vw;
    }
    body.page-template-about-us .brick-street .brick-street__content,
    body.single-service .brick-street .brick-street__content{
        padding: 5.517vw 0;
    }
}
@media only screen and (max-width: 767px){
    body.page-template-about-us .brick-street,
    body.single-service .brick-street{
        display: block;
    }
    body.page-template-about-us .eq-home-banner,
    body.page-template-thank-you .eq-home-banner{
        border-radius: 0 0 32px 32px;
        padding: 200px 0 77px;
    }    
    body.single-service .eq-home-banner {
        padding: 163px 0 62px;
        border-radius: 0 0 32px 32px;
    }
    body.page-template-about-us .brick-street .brick-street__content,
    body.single-service .brick-street .brick-street__content{
        padding: 45px 0 52px;
    }
}

/* Service page css start here */
body.page-template-services .eq-home-banner{
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding: 213px 0 110px;
}
.service-list{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 74px 0 84px;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(139.5deg, #ECE5DC 55.69%, #E2D1BC 100%);
    margin-top: -50px;
    z-index: 111;
    position: relative;
}
.service-list__wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
}
.service-list__left{
    max-width: 525px;
    width: 100%;
}
.service-list__left figure{
    max-width: 48px;
    width: 100%;
    margin-bottom: 34px;
}
.service-list__left h2{
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 59px;
    line-height: 1.1;
    color: var(--color-primary);
    margin-bottom: 12px;
}
.service-list__left h2 span{
    display: block !important;
}
.service-list__left h3{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 24px;
    line-height: 1.4;
    color: rgba(82, 62, 45, 0.5);
    margin-bottom: 34px;
}
.service-list__left .text-desc{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: rgba(82, 62, 45, 0.5);
    margin-bottom: 46px;
    max-width: 446px;
    width: 100%;
}
.service-list__right{
    max-width: 663px;
    width: 100%;
}
.service-list__right figure{
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    padding-bottom: 89.8%;
}
.service-list__right figure::after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(82, 62, 45, 0) 0%, rgba(82, 62, 45, 0.78) 100%);
}
.service-list__right figure img,
.service-list__right figure video,
.service-list__right figure iframe{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-list .eq-book-appointment{
    margin-top: 64px;
}
@media only screen and (max-width: 1740px) and (min-width: 992px) {
    body.page-template-services .eq-home-banner{
        padding: 12.241vw 0 6.264vw;
    }
    .service-list{
        padding: 5.402vw 0 4.483vw;
        border-radius: 1.724vw;
        margin-top: -1.724vw;
    }
    .service-list__wrap {
        gap: 2.759vw;
    }
    .service-list__left{
        max-width: 30.172vw;
    }
    .service-list__left figure{
        max-width: 2.759vw;
        margin-bottom: 1.954vw;
    }
    .service-list__left h2{
        font-size: 3.391vw;
        margin-bottom: 0.690vw;
    }
    .service-list__left h3{
        font-size: 1.379vw;
        margin-bottom: 1.954vw;
    }
    .service-list__left .text-desc{
        font-size: 1.034vw;
        margin-bottom: 2.644vw;
        max-width: 25.632vw;
    }
    .service-list__right{
        max-width: 38.103vw;
    }
    .service-list__right figure{
        border-radius: 1.724vw;
    }
    .service-list .eq-book-appointment{
        margin-top: 3.678vw;
    }    
}
@media only screen and (max-width: 991px){
    .service-list__wrap{
        flex-direction: column-reverse;
    }
    .service-list__left,
    .service-list__right{
        max-width: 100%;
    }
    .service-list__right{
        display: none;
    }
    .service-list__left .text-desc{
        max-width: 100%;
    }
    .service-list__left h2 span {
        display: inline !important;
    }
}
@media only screen and (max-width: 767px){
    .service-list {
        padding: 150px 0 70px;
        margin-top: -50px;
        /* border-radius: 0; */
        /* z-index: 0; */
    }
    body.page-template-services .eq-home-banner {
        padding: 163px 0 120px;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
        z-index: 1111;
    }
    .service-list .eq-book-appointment {
        margin-top: 44px;
    }
    .service-list__left figure {
        max-width: 42px;
        margin-bottom: 24px;
    }
    .service-list__left h2 {
        margin-bottom: 4px;
    }
    .service-list__left h3 {
        margin-bottom: 28px;
    }
    .service-list__left .text-desc {
        margin-bottom: 30px;
    }
}

/* service-list reverse css start here */
.service-list.reverse{
    background: linear-gradient(129.75deg, #D18C61 0.5%, #B66D3F 100%);
    z-index: 11;
    margin-top: -50px;
    padding: 124px 0 134px;
}
.service-list.reverse .service-list__wrap{
    flex-direction: row-reverse;
}
.service-list.reverse .service-list__wrap .btn-secondary{
    background-color: #E4D5C3;
    border-color: #E4D5C3;
    color: #523E2D;
}
.service-list.reverse .service-list__wrap .btn-secondary:hover{
    background-color: #523E2D;
    border-color: #523E2D;
    color: #E4D5C3;
}
.service-list.reverse .service-list__left h2{
    color: var(--color-light-100);
}
.service-list.reverse .service-list__left h3{
    color: rgba(255, 255, 255, 0.5);   
}
.service-list.reverse .service-list__left .text-desc{
    color: rgba(255, 255, 255, 0.5);   
}
.service-list.reverse .eq-book-appointment{
    background-color: #E4D5C3;
}
.service-list.reverse .eq-book-appointment__left h2,
.service-list.reverse .eq-book-appointment__left p{
    color: var(--color-primary);
}
.service-list.reverse .eq-book-appointment__right .btn-book-appointment{
    color: #E4D5C3;
}
.service-list.reverse .eq-book-appointment__right .btn-book-appointment:hover{
    color: var(--color-primary);
}
.service-list.reverse .eq-book-appointment__right .btn-book-appointment svg path{
    fill: #E4D5C3;
}
.service-list.reverse .eq-book-appointment__right .btn-book-appointment:hover svg path{
    fill: var(--color-primary);
}
.service-list.reverse .eq-book-appointment__right .link-tel{
    color: var(--color-primary);
}
.service-list.reverse .eq-book-appointment__right .link-tel svg g path{
    fill: var(--color-primary);
}
@media only screen and (max-width: 767px){
    .service-list.reverse {
        padding: 150px 0 115px;
    }
}
/* service-list reverse css end here */
/* Service page css end here */

/* Privacy Policy css start here */
body.privacy-policy .eq-home-banner{
    border-radius: 0;
    padding: 214px 0 95px;
}
body.privacy-policy .eq-home-banner__wrap-content h1{
    font-size: 59px;
    margin: 0;
}
.entry-content.cms-page{
    margin: 0;
}
.cms-page{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 65px 0 80px;
}
.cms-page__wrap.wysiwyg{
    width: 100%;
    font-family: var(--font-theme);
    color: rgba(82, 62, 45, 0.5);
    line-height: 1.5;    
}
.cms-page__wrap.wysiwyg h4{
    margin: 0;
    font-weight: 700;
    font-size: 18px;
}
.cms-page__wrap.wysiwyg a{
    color: rgba(82, 62, 45, 0.5);
}
.cms-page__wrap.wysiwyg h5{
    margin: 0;
    font-size: 18px;
}
.cms-page__wrap.wysiwyg p{
    font-weight: 400;
    font-size: 18px;
    width: 100%;
}
@media only screen and (max-width: 1740px) and (min-width: 992px) {
    body.privacy-policy .eq-home-banner{
        padding: 12.299vw 0 5.460vw;
    }
    body.privacy-policy .eq-home-banner__wrap-content h1{
        font-size: 3.391vw;
    }
    .cms-page{
        padding: 3.736vw 0 4.598vw;
    }
    .cms-page__wrap.wysiwyg h4{
        font-size: 1.034vw;
    }
    .cms-page__wrap.wysiwyg h5{
        font-size: 1.034vw;
    }
    .cms-page__wrap.wysiwyg p{
        font-size: 1.034vw;
    }
}
@media only screen and (max-width: 767px){
    body.privacy-policy .eq-home-banner__wrap-content h1 {
        font-size: 64px;
    }
    body.privacy-policy .eq-home-banner__wrap-content {
        max-width: 350px;
        width: 100%;
    }
    body.privacy-policy .eq-home-banner {
        padding: 160px 0 44px;
    }
    .cms-page {
        padding: 43px 0 53px;
    }
}
/* Privacy Policy css end here */

/* eq-our-process css start here */
.eq-our-process{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 130px 0 106px;
    position: relative;
    z-index: 1;
    margin: -30px 0;
}
/* .eq-our-process__bg::after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(147, 114, 97, 0.297) 0%, rgba(130, 78, 55, 0.3) 100%);
} */
.eq-our-process__bg{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.eq-our-process__bg img,
.eq-our-process__bg video,
.eq-our-process__bg iframe{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.eq-our-process .cus-container{
    position: relative;
    z-index: 1;
}
.eq-our-process__title {
    width: 100%;
    margin-bottom: 30px;
}
.eq-our-process__title span{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: var(--color-light-200);
    display: block;
    margin-bottom: 12px;
}
.eq-our-process__title h2{
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 59px;
    line-height: 1;
    color: var(--color-light-300);
}
.eq-our-process__content{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px;
}
.eq-our-process__box{
    max-width: calc(50% - 12px);
    width: 100%;
    background-color: rgba(255, 250, 243, 0.2);
    padding: 32px 36px 36px;
    border-radius: 30px;
    overflow: hidden;
}
.eq-our-process__box figure{
    max-width: 38px;
    width: 100%;
    margin-bottom: 24px;
}
.eq-our-process__box span{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-bottom: 10px;
}
.eq-our-process__box h3{
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 35px;
    line-height: 1.1;
    color: var(--color-light);
    margin-bottom: 14px;
}
.eq-our-process__box .text-desc{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.5);
}
.eq-our-process__button {
    width: 100%;
    gap: 38px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 38px;
}
.eq-our-process__button-link {
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    color: rgba(255, 255, 255, 0.8);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.eq-our-process__button-link:hover{
    color: var(--color-light);
}
.eq-our-process__button-link svg, .eq-our-process__button-link img {
    max-width: 19px;
    width: 100%;
    margin-right: 13px;
}
.eq-our-process__button-link svg g path {
    transition: var(--transition-primary);
}
.eq-our-process__button-link:hover svg g path {
    fill: var(--color-light);
}
@media only screen and (max-width: 1740px) and (min-width: 992px) {
    .eq-our-process{
        padding: 7.471vw 0 6.092vw;
        margin: -1.724vw 0;
    }
    .eq-our-process__title {
        margin-bottom: 1.724vw;
    }
    .eq-our-process__title span{
        font-size: 1.034vw;
        margin-bottom: 0.690vw;
    }
    .eq-our-process__title h2{
        font-size: 3.391vw;
    }
    .eq-our-process__content{
        gap: 1.379vw;
    }
    .eq-our-process__box{
        max-width: calc(50% - 0.690vw);
        padding: 1.839vw 2.069vw 2.069vw;
        border-radius: 1.724vw;
    }
    .eq-our-process__box figure{
        max-width: 2.184vw;
        margin-bottom: 1.379vw;
    }
    .eq-our-process__box span{
        font-size: 0.920vw;
        margin-bottom: 0.575vw;
    }
    .eq-our-process__box h3{
        font-size: 2.011vw;
        margin-bottom: 0.805vw;
    }
    .eq-our-process__box .text-desc{
        font-size: 1.034vw;
    }
    .eq-our-process__button {
        gap: 2.184vw;
        margin-top: 2.184vw;
    }
    .eq-our-process__button-link {
        font-size: 1.034vw;
    }
    .eq-our-process__button-link svg, .eq-our-process__button-link img {
        max-width: 1.092vw;
        margin-right: 0.747vw;
    }
}
@media only screen and (max-width: 991px){
    .eq-our-process__title h2{
        font-size: 48px;
    }
    .eq-our-process__box h3{
        font-size: 30px;
    }
}
@media only screen and (max-width: 767px){
    .eq-our-process__content{
        flex-wrap: wrap;
        gap: 0;
    }
    .eq-our-process__box{
        margin-top: 15px;
    }
    .eq-our-process__box:first-child{
        margin-top: 0;
    }
    .eq-our-process__title {
        margin-bottom: 22px;
    }
    .eq-our-process__box{
        max-width: 100%;
        padding: 36px 24px;
    }
    .eq-our-process__title h2 {
        font-size: 59px;
    }
    .eq-our-process {
        padding: 90px 0 70px;
    }
    .eq-our-process__box h3 {
        font-size: 35px;
    }
    .eq-our-process__button {
        gap: 0;
        flex-direction: column;
        margin-top: 31px;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .eq-our-process__button a{
        margin-top: 16px;
    }
    .eq-our-process__button a:first-child{
        margin-top: 0;
    }
    .eq-our-process__button-link{
        display: none;
    }
    .eq-our-process__button .btn-light{
        color: var(--color-primary);
    }
    .eq-our-process__button .btn-light:hover{
        background-color: var(--color-primary);
        color: var(--color-light);
        border-color: var(--color-primary);
    }
    .eq-our-process__button .btn-light svg path{
        transition: var(--transition-primary);
    }
    .eq-our-process__button .btn-light:hover svg path{
        fill: var(--color-light);
    }
}
@media only screen and (max-width: 400px){
    .eq-our-process__button .btn-light {
        font-size: 18px;
    }
    .eq-home-banner__button-mobile .btn{
        font-size: 18px;
    }
}
/* eq-our-process css end here */

/* eq-why-choose css start here */
.eq-why-choose{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 131px 0 144px;
    background-color: var(--color-light-500);
    border-radius: 30px;
    overflow: hidden;
    z-index: 11;
    position: relative;
}
.eq-why-choose__title{
    width: 100%;
    padding-top: 36px;
    border-top: 1px solid var(--color-secondary);
    margin-bottom: 30px;
}
.eq-why-choose__title h3{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-primary-100);
    margin-bottom: 8px;
}
.eq-why-choose__title h2{
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 59px;
    line-height: 1;
    color: var(--color-primary);
}
.eq-why-choose__content{
    width: 100%;
}
.eq-why-choose__slider{
    width: 100%;
    height: 407px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.eq-why-choose__slider.slick-initialized{
    height: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.eq-why-choose__slider .slick-list{
    overflow: visible;
}
.eq-why-choose__slider .slick-track{
    display: flex;
}
.eq-why-choose__slider .slide{
    height: unset;
}
.eq-why-choose__box{
    width: 100%;
    background-color: var(--color-light);
    border-radius: 30px;
    overflow: hidden;
    padding: 30px 35px 25px;
    height: 100%;
}
.eq-why-choose__box-logo{
    max-width: 51px;
    width: 100%;
    margin-bottom: 85px;
}
.eq-why-choose__box h3{
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 35px;
    line-height: 1.1;
    color: var(--color-primary);
    margin-bottom: 36px;
}
.eq-why-choose__box .text-desc{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-primary);
}
.eq-why-choose__action {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 26px;
}
.eq-why-choose__action-slider {
    max-width: 981px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.eq-why-choose__action-slider .slick-arrow{    
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    max-width: 39px;
    width: 100%;
}
.eq-why-choose__action-slider .slick-arrow.slick-disabled {
    opacity: 0.5;
    cursor: auto;
}
.eq-why-choose__action-slider .slick-arrow span{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 20px;    
    line-height: 1;
    color: var(--color-primary);
    display: none;
}
.eq-why-choose__action-slider .progress {
    position: relative;
    flex: 1;
    height: 2px;    
    border-radius: 50px;
    max-width: 860px;
    width: 100%;
    margin: 0 auto;
    z-index: 1;
}
.eq-why-choose__action-slider .progress::after{
    content: '';
    width: 100%;
    background-color: var(--color-secondary);
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    z-index: -1;
}

/* Progress fill */
.eq-why-choose__action-slider .progress-bar {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 11px;
    display: block;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--color-secondary);
    transition: var(--transition-primary);
}
.eq-why-choose__action-btn{
    max-width: 234px;
    width: 100%;
}
@media only screen and (max-width: 1740px) and (min-width: 992px) {
    .eq-why-choose{
        padding: 7.529vw 0 8.276vw;
        border-radius: 1.724vw;
    }
    .eq-why-choose__title{
        padding-top: 2.069vw;
        border-top: 0.057vw solid var(--color-secondary);
        margin-bottom: 1.724vw;
    }
    .eq-why-choose__title h3{
        font-size: 1.034vw;
        margin-bottom: 0.460vw;
    }
    .eq-why-choose__title h2{
        font-size: 3.391vw;
    }
    .eq-why-choose__box{
        border-radius: 1.724vw;
        padding: 1.724vw 2.011vw 1.437vw;
    }
    .eq-why-choose__box-logo{
        max-width: 2.931vw;
        margin-bottom: 4.885vw;
    }
    .eq-why-choose__box h3{
        font-size: 2.011vw;
        margin-bottom: 2.069vw;
    }
    .eq-why-choose__box .text-desc{
        font-size: 1.034vw;
    }
    .eq-why-choose__action {
        gap: 1.437vw;
        margin-top: 1.494vw;
    }
    .eq-why-choose__action-slider {
        max-width: 56.379vw;
        gap: 0.862vw;
    }
    .eq-why-choose__action-slider .slick-arrow{    
        gap: 1.034vw;
        max-width: 2.241vw;
    }
    .eq-why-choose__action-slider .slick-arrow span{
        font-size: 1.149vw;    
    }
    .eq-why-choose__action-slider .progress {
        height: 0.115vw;    
        border-radius: 2.874vw;
        max-width: 49.425vw;
    }
    .eq-why-choose__action-slider .progress::after{
        height: 0.115vw;
    }
    /* Progress fill */
    .eq-why-choose__action-slider .progress-bar {
        height: 0.632vw;
        border-radius: 0.575vw;
    }
    .eq-why-choose__action-btn{
        max-width: 13.448vw;
    }
}
@media only screen and (max-width: 991px){
    .eq-why-choose__title h2 {
        font-size: 48px;
    }
    .eq-why-choose__action-btn {
        max-width: 100%;
    }
    .eq-why-choose{
        padding: 80px 0;
    }
}
@media only screen and (max-width: 767px){
    .eq-why-choose{
        border-radius: 30px;
        padding: 47px 0 74px;
        background-color: var(--color-light-500);
    }
    .eq-why-choose__button{
        margin-top: 28px;
    }
    .eq-why-choose__button .btn-primary{
        background-color: var(--color-primary-200);
        border-color: var(--color-primary-200);
    }
    .eq-why-choose__button .btn-primary:hover{
        background-color: var(--color-light);
        border-color:  var(--color-light);
    }
    .eq-why-choose__title h3{
        font-size: 20px;
        margin-bottom: 14px;
    }
    .eq-why-choose__title{
        padding-top: 0;
        border: 0;
        margin-bottom: 20px;
    }
    .eq-why-choose__title h2 {
        font-size: 64px;
    }
    .eq-why-choose__action-slider .progress{
        display: none;
    }
    .eq-why-choose__action-slider .slick-arrow{
        max-width: max-content;
        gap: 0;
    }
    .eq-why-choose__action-slider .slick-arrow.prev-arrow img{
        margin-right: 15px;
    }
    .eq-why-choose__action-slider .slick-arrow.next-arrow img{
        margin-left: 15px;
    }
    .eq-why-choose__action-slider .slick-arrow span{
        display: block;
    }
    .eq-why-choose__box {
        padding: 38px 28px;
    }
    .eq-why-choose__action{
        margin-top: 30px;
    }
    .eq-why-choose__box-logo {
        max-width: 44px;
        margin-bottom: 86px;
    }
    .eq-why-choose__box h3 {
        margin-bottom: 36px;
    }
}
/* eq-why-choose css end here */

/* eq-every-smile-story css start here */
.eq-every-smile-story{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 131px 0 144px;
    background-color: var(--color-light-500);
    overflow: hidden;
    position: relative;
    margin: -30px 0;
}
.eq-every-smile-story__bg{
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.eq-every-smile-story__bg::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(3.36deg, rgba(130, 78, 55, 0.75) 2.69%, rgba(192, 175, 151, 0.75) 90.1%);
}
.eq-every-smile-story__bg img,
.eq-every-smile-story__bg video,
.eq-every-smile-story__bg iframe{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.eq-every-smile-story .cus-container{
    position: relative;
    z-index: 11;
}
.eq-every-smile-story__title{
    width: 100%;
    padding-top: 36px;
    border-top: 1px solid #EDE0CD;
    margin-bottom: 30px;
}
.eq-every-smile-story__title h3{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(243, 227, 206, 0.6);
    margin-bottom: 8px;
}
.eq-every-smile-story__title h2{
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 59px;
    line-height: 1;
    color: rgba(243, 227, 206, 1);
}
.eq-every-smile-story__content{
    width: 100%;
}
.eq-every-smile-story__slider{
    width: 100%;
    height: 460px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.eq-every-smile-story__slider.slick-initialized{
    height: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.eq-every-smile-story__slider .slick-list{
    overflow: visible;
}
.eq-every-smile-story__slider .slick-track{
    display: flex;
}
.eq-every-smile-story__slider .slide{
    height: unset;
}
.eq-every-smile-story__box{
    width: 100%;
    background-color: var(--color-light);
    border-radius: 30px;
    overflow: hidden;
    padding: 30px 35px 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 66px;
}
.eq-every-smile-story__box span{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: var(--color-primary);
}
.eq-every-smile-story__box-content{
    width: 100%;
}
.eq-every-smile-story__box-logo{
    max-width: 31px;
    width: 100%;
    margin-bottom: 28px;
}
.eq-every-smile-story__box-content h4{
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 35px;
    line-height: 1.1;
    color: var(--color-primary);
}
.eq-every-smile-story__box-content .text-desc{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-primary);
    margin-top: 38px;
}
.eq-every-smile-story__box-content .review-logo {    
    width: 100%;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
}
.eq-every-smile-story__box-content .review-logo img{
    max-width: 17px;
    width: 100%;
}
.eq-every-smile-story__action {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 22px;
}
.eq-every-smile-story__action-slider {
    max-width: 981px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.eq-every-smile-story__action-slider .slick-arrow{    
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    max-width: 39px;
    width: 100%;
}
.eq-every-smile-story__action-slider .slick-arrow.slick-disabled {
    opacity: 0.5;
    cursor: auto;
}
.eq-every-smile-story__action-slider .slick-arrow span{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 20px;    
    line-height: 1;
    color: var(--color-light);
    display: none;
}
.eq-every-smile-story__action-slider .progress {
    position: relative;
    flex: 1;
    height: 2px;    
    border-radius: 50px;
    max-width: 860px;
    width: 100%;
    margin: 0 auto;
    z-index: 1;
}
.eq-every-smile-story__action-slider .progress::after{
    content: '';
    width: 100%;
    background-color: var(--color-secondary);
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    z-index: -1;
}

/* Progress fill */
.eq-every-smile-story__action-slider .progress-bar {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 11px;
    display: block;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--color-secondary);
    transition: var(--transition-primary);
}
.eq-every-smile-story__action-btn{
    max-width: 234px;
    width: 100%;
}
.eq-every-smile-story__action-btn .link-text{
    color: #F7ECDD;
}
.eq-every-smile-story__faq-contect-wrap {
    width: 100%;
    padding: 67px 0 0;
    display: flex;
    /* align-items: flex-start; */
    justify-content: space-between;
    gap: 27px;
}
.eq-every-smile-story__faq{
    width: 100%;
    background-color: #E4D5C3;
    border-radius: 30px;
    overflow: hidden;
    padding: 40px 44px;
    max-width: 594px;
}
.eq-every-smile-story__faq h2{
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 40px;
    line-height: 100%;
    color: var(--color-primary);
}
.eq-every-smile-story__faq-content{
    width: 100%;
    margin-top: 30px;
}
.eq-every-smile-story__faq-btn {
    width: 100%;
    margin-top: 30px;
    position: relative;
    z-index: 1;
    bottom: -30px;
}
.eq-every-smile-story__faq-btn::after{
    content: '';
    background: linear-gradient(180deg, rgba(228, 213, 195, 0) 40.38%, #E4D5C3 86.06%);
    height: 622px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    pointer-events: none;
}
.eq-every-smile-story__contact-form{
    width: 100%;
    max-width: 698px;
    /* background-color: var(--color-light-100); */
    border-radius: 30px;
    overflow: hidden;
    /* padding: 57px 30px 42px; */
}
.eq-every-smile-story__contact-form h2{
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 59px;
    line-height: 1;
    color: var(--color-primary);
    margin-bottom: 12px;
}
.eq-every-smile-story__contact-form .text-desc{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: rgba(82, 62, 45, 0.5);
    margin-bottom: 25px;
}
.eq-every-smile-story__contact-form form{
    width: 100%;
}
.eq-every-smile-story__form-wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0 -5px;
}
.eq-every-smile-story__form-wrap .c-form-group{
    width: 100%;
    padding: 0 5px;
    margin-bottom: 14px;
}
.eq-every-smile-story__form-wrap .c-form-group br {
    display: none;
}
.eq-every-smile-story__form-wrap .c-form-group .wpcf7-spinner {
    display: none;
}
.eq-every-smile-story__form-wrap .c-form-group.half{
    max-width: 50%;
    width: 100%;
}
.eq-every-smile-story__form-wrap .c-form-label{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: rgba(82, 62, 45, 0.5);
    display: block;
    margin-bottom: 12px;
}
.eq-every-smile-story__form-wrap textarea.c-form-control{
    min-height: 188px;
    resize: none;
}
.eq-every-smile-story__form-wrap select.c-form-control{
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-progress-appearance: none;
    background-image: url('<?php echo get_template_directory_uri(); ?>/assets/images/select-down-arrow.svg');
    background-repeat: no-repeat;
    background-position: center right 23px;
    background-size: 20px;
    object-fit: cover;
    cursor: pointer;
}
.eq-every-smile-story__form-wrap .c-form-control{
    width: 100%;
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: var(--color-primary);
    background-color: rgba(255, 250, 243, 0.8);
    border-radius: 10px;
    border: 0;
    outline: none;
    box-shadow: none;
    padding: 18px 18px;
}
.eq-every-smile-story__form-wrap .wpcf7-not-valid-tip{
    margin-top: 6px;
    font-size: 18px;
    font-family: var(--font-theme);
    color: var(--color-tertiary);
}
.eq-every-smile-story__form-wrap .c-form-control::placeholder{
    color: rgba(82, 62, 45, 0.15);
}
.eq-every-smile-story__form-wrap .form-policy-text > .wpcf7-form-control-wrap > .wpcf7-form-control > .wpcf7-list-item{
    margin: 0;
    padding-left: 40px;
    position: relative;
    cursor: pointer;
}
.eq-every-smile-story__form-wrap .form-policy-text > .wpcf7-form-control-wrap > .wpcf7-form-control > .wpcf7-list-item input{
    opacity: 0;
    visibility: hidden;
    position: absolute;
    width: 0;
    height: 0;
}
.eq-every-smile-story__form-wrap .form-policy-text > .wpcf7-form-control-wrap > .wpcf7-form-control > .wpcf7-list-item > .wpcf7-list-item-label{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: rgba(82, 62, 45, 0.5);
}
.eq-every-smile-story__form-wrap .form-policy-text > .wpcf7-form-control-wrap > .wpcf7-form-control > .wpcf7-list-item > .wpcf7-list-item-label::after{
    content: '';
    border: 1px solid #523E2D;
    width: 27px;
    height: 24px;
    border-radius: 10px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.eq-every-smile-story__form-wrap .form-policy-text > .wpcf7-form-control-wrap > .wpcf7-form-control > .wpcf7-list-item > .wpcf7-list-item-label::before{
    content: '';
    background-color: #523E2D;
    width: 19px;
    height: 16px;
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 10px;
    opacity: 0;
    transition: var(--transition-primary);
}
.eq-every-smile-story__form-wrap .form-policy-text > .wpcf7-form-control-wrap > .wpcf7-form-control > .wpcf7-list-item input:checked ~ .wpcf7-list-item-label::before{
    opacity: 1;
}
.eq-every-smile-story__form-wrap .btn-submit-enquiry{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    text-align: center;
    color: var(--color-primary);
    padding: 14px 48px;
    border: 1px solid #9B7B61;
    border-radius: 30px;
    background-color: rgba(255, 248, 237, 0.5);
    transition: var(--transition-primary);
    cursor: pointer;
}
.eq-every-smile-story__form-wrap .btn-submit-enquiry:hover{
    background-color: #9B7B61;
    color: var(--color-light);
}

@media only screen and (max-width: 1740px) and (min-width: 992px) {
    .eq-every-smile-story{
        padding: 7.529vw 0 8.276vw;
        margin: -1.724vw 0;
    }
    .eq-every-smile-story__title{
        padding-top: 2.069vw;
        border-top: 0.057vw solid #EDE0CD;
        margin-bottom: 1.724vw;
    }
    .eq-every-smile-story__title h3{
        font-size: 1.034vw;
        margin-bottom: 0.460vw;
    }
    .eq-every-smile-story__title h2{
        font-size: 3.391vw;
    }
    .eq-every-smile-story__box{
        border-radius: 1.724vw;
        padding: 1.724vw 2.011vw 1.437vw;
        gap: 3.793vw;
    }
    .eq-every-smile-story__box span{
        font-size: 0.920vw;
    }
    .eq-every-smile-story__box-logo{
        max-width: 1.782vw;
        margin-bottom: 1.609vw;
    }
    .eq-every-smile-story__box-content h4{
        font-size: 2.011vw;
    }
    .eq-every-smile-story__box-content .text-desc{
        font-size: 1.034vw;
        margin-top: 2.184vw;
    }
    .eq-every-smile-story__box-content .review-logo {    
        margin-top: 1.437vw;
        gap: 0.230vw;
    }
    .eq-every-smile-story__box-content .review-logo img{
        max-width: 0.977vw;
    }
    .eq-every-smile-story__action {
        gap: 1.437vw;
        margin-top: 1.264vw;
    }
    .eq-every-smile-story__action-slider {
        max-width: 56.379vw;
        gap: 0.862vw;
    }
    .eq-every-smile-story__action-slider .slick-arrow{    
        gap: 1.034vw;
        max-width: 2.241vw;
    }
    .eq-every-smile-story__action-slider .slick-arrow span{
        font-size: 1.149vw;    
    }
    .eq-every-smile-story__action-slider .progress {
        height: 0.115vw;    
        border-radius: 2.874vw;
        max-width: 49.425vw;
    }
    .eq-every-smile-story__action-slider .progress::after{
        height: 0.115vw;
    }
    .eq-every-smile-story__action-slider .progress-bar {
        height: 0.632vw;
        border-radius: 0.575vw;
    }
    .eq-every-smile-story__action-btn{
        max-width: 13.448vw;
    }
    .eq-every-smile-story__faq-contect-wrap {
        padding: 3.851vw 0 0;
        gap: 1.552vw;
    }
    .eq-every-smile-story__faq{
        border-radius: 1.724vw;
        padding: 2.299vw 2.529vw;
        max-width: 34.138vw;
    }
    .eq-every-smile-story__faq h2{
        font-size: 2.299vw;
    }
    .eq-every-smile-story__faq-content{
        margin-top: 1.724vw;
    }
    .eq-every-smile-story__faq-btn {
        margin-top: 1.724vw;
        bottom: -2.299vw;
    }
    .eq-every-smile-story__faq-btn::after{
        height: 35.747vw;
    }
    .eq-every-smile-story__contact-form{
        max-width: 40.115vw;
        border-radius: 1.724vw;
        /* padding: 3.276vw 1.724vw 2.414vw; */
    }
    .eq-every-smile-story__contact-form h2{
        font-size: 3.391vw;
        margin-bottom: 0.690vw;
    }
    .eq-every-smile-story__contact-form .text-desc{
        font-size: 1.034vw;
        margin-bottom: 1.437vw;
    }
    .eq-every-smile-story__form-wrap{
        margin: 0 -0.287vw;
    }
    .eq-every-smile-story__form-wrap .c-form-group{
        padding: 0 0.287vw;
        margin-bottom: 0.805vw;
    }
    .eq-every-smile-story__form-wrap .c-form-label{
        font-size: 1.034vw;
        margin-bottom: 0.690vw;
    }
    .eq-every-smile-story__form-wrap textarea.c-form-control{
        min-height: 10.805vw;
    }
    .eq-every-smile-story__form-wrap select.c-form-control{
        background-position: center right 1.322vw;
        background-size: 1.149vw;
    }
    .eq-every-smile-story__form-wrap .c-form-control{
        font-size: 1.034vw;
        border-radius: 0.575vw;
        padding: 1.034vw 1.034vw;
    }
    .eq-every-smile-story__form-wrap .form-policy-text > .wpcf7-form-control-wrap > .wpcf7-form-control > .wpcf7-list-item{
        padding-left: 2.299vw;
    }
    .eq-every-smile-story__form-wrap .form-policy-text > .wpcf7-form-control-wrap > .wpcf7-form-control > .wpcf7-list-item > .wpcf7-list-item-label{
        font-size: 1.034vw;
    }
    .eq-every-smile-story__form-wrap .form-policy-text > .wpcf7-form-control-wrap > .wpcf7-form-control > .wpcf7-list-item > .wpcf7-list-item-label::after{
        border: 0.057vw solid #523E2D;
        width: 1.552vw;
        height: 1.379vw;
        border-radius: 0.575vw;
    }
    .eq-every-smile-story__form-wrap .form-policy-text > .wpcf7-form-control-wrap > .wpcf7-form-control > .wpcf7-list-item > .wpcf7-list-item-label::before{
        width: 1.092vw;
        height: 0.920vw;
        left: 0.230vw;
        border-radius: 0.575vw;
    }
    .eq-every-smile-story__form-wrap .btn-submit-enquiry{
        font-size: 1.149vw;
        padding: 0.805vw 2.759vw;
        border: 0.057vw solid #9B7B61;
        border-radius: 1.724vw;
    }
}
@media only screen and (max-width: 991px){
    .eq-every-smile-story__faq-contect-wrap{
        flex-wrap: wrap;
    }
    .eq-every-smile-story__faq,
    .eq-every-smile-story__contact-form{
        max-width: 100%;
    }
    .eq-every-smile-story__title h2 {
        font-size: 48px;
    }
    .eq-every-smile-story__box-content h4 {
        font-size: 32px;
    }
    .eq-every-smile-story__action-btn {
        max-width: 100%;
    }
    .eq-every-smile-story{
        padding: 80px 0;
    }
}
@media only screen and (max-width: 767px){
    .eq-every-smile-story{
        padding: 70px 0;
        background-color: var(--color-light-100);
    }
    .eq-every-smile-story__content {
        display: flex;
        flex-direction: column-reverse;
    }
    .eq-every-smile-story__button{
        margin-top: 28px;
    }
    .eq-every-smile-story__button .btn-primary{
        background-color: var(--color-primary-200);
        border-color: var(--color-primary-200);
    }
    .eq-every-smile-story__button .btn-primary:hover{
        background-color: var(--color-light);
        border-color:  var(--color-light);
    }
    .eq-every-smile-story__title h3{
        font-size: 20px;
        margin-bottom: 14px;
        color: var(--color-light);
    }
    .eq-every-smile-story__title{
        padding-top: 0;
        border: 0;
        margin-bottom: 32px;
    }
    .eq-every-smile-story__title h2 {
        font-size: 64px;
        color: var(--color-light);
    }
    .eq-every-smile-story__action-slider .progress{
        display: none;
    }
    .eq-every-smile-story__action-slider .slick-arrow{
        max-width: max-content;
        gap: 0;
    }
    .eq-every-smile-story__action-slider .slick-arrow.prev-arrow img {
        margin-right: 15px;
    }
    .eq-every-smile-story__action-slider .slick-arrow.next-arrow img {
        margin-left: 15px;
    }
    .eq-every-smile-story__action-slider .slick-arrow span{
        display: block;
    }
    .eq-every-smile-story__action-slider{
        margin-bottom: 20px;
    }
    .eq-every-smile-story__box {
        padding: 30px 32px 25px;
        border: 1px solid rgba(0, 0, 0, 0.5);
        gap: 60px;
    }
    .eq-every-smile-story__box span{
        font-size: 20px;
    }
    .eq-every-smile-story__box-content h4 {
        font-size: 35px;
    }
    .eq-every-smile-story__box-content .text-desc{
        font-size: 20px;
        margin-top: 20px;
    }
    .eq-every-smile-story__box-logo{
        display: none;
    }
    .eq-every-smile-story__action{
        margin-top: 0;
    }
    .eq-every-smile-story__faq-contect-wrap{
        padding-top: 50px;
        gap: 50px;
    }
    .eq-every-smile-story__faq h2 {
        font-size: 16px;
    }
    .eq-every-smile-story__faq {
        padding: 43px 30px 40px;
        max-width: 100%;
    }
    .cus-accordian__title h5 {
        font-size: 16px;
        font-weight: 700;
    }
    .cus-accordian__panel .desc{
        font-size: 16px;
    }
    .cus-accordian__title {
        gap: 0;
    }
    .cus-accordian__title .icon-plus-minus {
        max-width: 10px;
        height: 10px;
        margin-top: 6px;
        margin-right: 12px;
    }
    .cus-accordian__title .icon-plus-minus::before {
        width: 10px;
    }
    .cus-accordian__title .icon-plus-minus::after {
        height: 10px;
    }
    .cus-accordian__panel {
        margin-top: 34px;
        padding-left: 20px;
    }
    .cus-accordian__card {
        padding: 24px 0px;
    }
    .eq-every-smile-story__faq-content {
        margin-top: 48px;
    }
    .eq-every-smile-story__contact-form {
        max-width: 100%;
        /* padding: 48px 30px 20px; */
    }
    .eq-every-smile-story__form-wrap .c-form-group.half {
        max-width: 100%;
    }
    .eq-every-smile-story__contact-form h2{
        margin-bottom: 20px;
    }
    .eq-every-smile-story__contact-form .text-desc {
        margin-bottom: 40px;
    }
    .eq-every-smile-story__form-wrap .btn-submit-enquiry {
        padding: 13px 27px;
    }
    .eq-every-smile-story__form-wrap textarea.c-form-control {
        min-height: 183px;
    }
    .form-policy-text > .wpcf7-form-control-wrap {
        display: inline-block;
    }
}
/* eq-every-smile-story css end here */

/* eq-blog css start here */
.eq-blog{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 64px 0 129px;
}
.eq-blog__badge{
    width: 100%;
    margin-bottom: 30px;
}
.eq-blog__badge-wrap{
    font-family: var(--font-theme);
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    color: var(--color-light);
    padding: 15px 23px;
    background-color: var(--color-primary);
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.eq-blog__badge select{
    background-color: var(--color-primary);
    border: 0;
    color: var(--color-light);
    outline: none;
    box-shadow: none;
    font-family: var(--font-theme);
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    cursor: pointer;
}
.eq-blog__latest{
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: rgba(255, 250, 243, 0.6);
    gap: 50px;
    border-radius: 30px;
    overflow: hidden;
}
.eq-blog__latest-media{
    max-width: 617px;
    width: 100%;
    position: relative;
    padding-bottom: 42.9%;
    border-radius: 30px;
    overflow: hidden;
}
.eq-blog__latest-media img,
.eq-blog__latest-media video,
.eq-blog__latest-media iframe{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.eq-blog__latest-content {
    max-width: 623px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 58px 58px 22px 0;
}
.eq-blog__latest-content .top-content{
    width: 100%;
}
.eq-blog__latest-content .top-content h2,
.eq-blog__latest-content .top-content h2 a{
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 35px;
    line-height: 1.1;
    color: var(--color-primary);
}
.eq-blog__latest-content .top-content span{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    text-transform: uppercase;
    color: var(--color-secondary);
    display: block;
    margin-top: 5px;
}
.eq-blog__latest-content .bottom-content{
    width: 100%;
}
.eq-blog__latest-content .bottom-content .text-desc{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 24px;
    line-height: 1.7;
    color: var(--color-primary);
    margin-bottom: 26px;
    max-width: 471px;
    width: 100%;
}
.eq-blog__latest-content .bottom-content .btn-read-article{
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: var(--color-secondary);
}
.eq-blog__latest-content .bottom-content .btn-read-article svg,
.eq-blog__latest-content .bottom-content .btn-read-article img{
    max-width: 21px;
    width: 100%;
    margin-right: 15px;
}
.eq-blog__latest-content .bottom-content .btn-read-article:hover{
    color: var(--color-primary);
}
.eq-blog__latest-content .bottom-content .btn-read-article svg circle,
.eq-blog__latest-content .bottom-content .btn-read-article svg path{
    transition: var(--transition-primary);
}
.eq-blog__latest-content .bottom-content .btn-read-article:hover svg circle,
.eq-blog__latest-content .bottom-content .btn-read-article:hover svg path{
    stroke: var(--color-primary);
}
.eq-blog__list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
    align-items: flex-start;
    justify-content: flex-start;
    row-gap: 40px;
    column-gap: 20px;
}
.eq-blog__box{
    max-width: calc(33.33% - 13.5px);
    width: 100%;
}
.eq-blog__box figure{
    width: 100%;
    position: relative;
    padding-bottom: 86.8%;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 40px;
}
.eq-blog__box figure img,
.eq-blog__box figure video,
.eq-blog__box figure iframe{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.eq-blog__box-content{
    width: 100%;
    padding-right: 20px;
}
.eq-blog__box-content h3,
.eq-blog__box-content h3 a{
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 35px;
    line-height: 1.1;
    color: var(--color-primary);
}
.eq-blog__box-content span{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    text-transform: uppercase;
    color: var(--color-secondary);
    display: block;
    margin-top: 4px;
}
.eq-blog__box-content .text-desc{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-primary);
    margin-top: 8px;
    margin-bottom: 22px;
}
.eq-blog__box-content .btn-read-article{
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: var(--color-secondary);
}
.eq-blog__box-content .btn-read-article svg,
.eq-blog__box-content .btn-read-article img{
    max-width: 21px;
    width: 100%;
    margin-right: 15px;
}
.eq-blog__box-content .btn-read-article:hover{
    color: var(--color-primary);
}
.eq-blog__box-content .btn-read-article svg circle,
.eq-blog__box-content .btn-read-article svg path{
    transition: var(--transition-primary);
}
.eq-blog__box-content .btn-read-article:hover svg circle,
.eq-blog__box-content .btn-read-article:hover svg path{
    stroke: var(--color-primary);
}
.eq-blog__button {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

@media only screen and (max-width: 1740px) and (min-width: 992px) {
    .eq-blog{
        padding: 3.678vw 0 7.414vw;
    }
    .eq-blog__badge{
        margin-bottom: 1.724vw;
    }
    .eq-blog__badge-wrap{
        font-size: 1.149vw;
        padding: 0.862vw 1.322vw;
        border-radius: 5.747vw;
        gap: 0.575vw;
    }
    .eq-blog__badge select{
        font-size: 1.149vw;
    }
    .eq-blog__latest{
        gap: 2.874vw;
        border-radius: 1.724vw;
    }
    .eq-blog__latest-media{
        max-width: 35.460vw;
        border-radius: 1.724vw;
    }
    .eq-blog__latest-content {
        max-width: 35.805vw;
        padding: 3.333vw 3.333vw 1.264vw 0;
    }
    .eq-blog__latest-content .top-content h2,
    .eq-blog__latest-content .top-content h2 a{
        font-size: 2.011vw;
    }
    .eq-blog__latest-content .top-content span{
        font-size: 1.034vw;
        margin-top: 0.287vw;
    }
    .eq-blog__latest-content .bottom-content .text-desc{
        max-width: 27.069vw;
        font-size: 1.379vw;
        margin-bottom: 1.494vw;
    }
    .eq-blog__latest-content .bottom-content .btn-read-article{
        font-size: 0.920vw;
    }
    .eq-blog__latest-content .bottom-content .btn-read-article svg,
    .eq-blog__latest-content .bottom-content .btn-read-article img{
        max-width: 1.207vw;
        margin-right: 0.862vw;
    }
    .eq-blog__list {
        margin-top: 2.299vw;
        row-gap: 2.299vw;
        column-gap: 1.149vw;
    }
    .eq-blog__box{
        max-width: calc(33.33% - 0.776vw);
    }
    .eq-blog__box figure{
        border-radius: 1.724vw;
        margin-bottom: 2.299vw;
    }
    .eq-blog__box-content{
        padding-right: 1.149vw;
    }
    .eq-blog__box-content h3,
    .eq-blog__box-content h3 a{
        font-size: 2.011vw;
    }
    .eq-blog__box-content span{
        font-size: 1.034vw;
        margin-top: 0.230vw;
    }
    .eq-blog__box-content .text-desc{
        font-size: 1.034vw;
        margin-top: 0.460vw;
        margin-bottom: 1.264vw;
    }
    .eq-blog__box-content .btn-read-article{
        font-size: 0.920vw;
    }
    .eq-blog__box-content .btn-read-article svg,
    .eq-blog__box-content .btn-read-article img{
        max-width: 1.207vw;
        margin-right: 0.862vw;
    }
}
@media only screen and (max-width: 991px){
    .eq-blog__box {
        max-width: calc(50% - 10px);
    }
    .eq-blog__latest-content .bottom-content .text-desc {
        font-size: 18px;
        line-height: 1.4;
        max-width: 100%;
    }
}
@media only screen and (max-width: 767px){
    .eq-blog {
        padding: 57px 0;
    }
    .eq-blog__latest{
        flex-wrap: wrap;
        background-color: transparent;
        gap: 40px;
        border-radius: 0;
    }
    .eq-blog__badge {
        margin-bottom: 57px;
    }
    .eq-blog__latest-media{
        max-width: 100%;
        padding-bottom: 86.5%;
    }
    .eq-blog__latest-content{
        max-width: 100%;
        padding: 0 20px 0 0;
    }

    .eq-blog__box {
        max-width: 100%;
    }
    .eq-blog__latest-content .bottom-content .text-desc {
        font-size: 18px;
        line-height: 1.4;
    }
    .eq-blog__latest-content .top-content {
        margin-bottom: 10px;
    }
    .eq-blog__box figure {
        padding-bottom: 86.5%;
    }
    .eq-blog__box-content .text-desc {
        margin-bottom: 20px;
    }
}
/* eq-blog css end here */

/* eq-faq css start here */
.eq-faq{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 217px 0 183px;
    position: relative;
    z-index: 1;
}
.eq-faq__bg{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.eq-faq__bg::after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(130, 78, 55, 0.3) 0%, rgba(192, 175, 151, 0.3) 100%);
}
.eq-faq__bg img,
.eq-faq__bg video,
.eq-faq__bg iframe{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.eq-faq > .cus-container{
    position: relative;
    z-index: 11;
}
.eq-faq__wrap{
    width: 100%;
}
.eq-faq__wrap h1{
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 96px;
    line-height: 1;
    color: var(--color-light);
}
.eq-faq__wrap h1 span{
    display: block;
}
.eq-faq__wrap .text-desc{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: var(--color-light);
    margin-top: 22px;
}
.eq-faq__wrap .text-desc p a{
    color: var(--color-light);
    text-decoration: underline;
}
.eq-faq__content{
    width: 100%;
    background-color: #E4D5C3;
    border-radius: 30px;
    overflow: hidden;
    margin-top: 40px;
    padding: 34px 39px 47px;
}
.eq-faq__content .cus-accordian__title h5 {
    color: #523E2D;
}
.eq-faq__content .cus-accordian__panel .desc {
    color: rgba(82, 62, 45, 0.6);
    padding-right: 0;
}
.eq-faq__content .cus-accordian__panel{
    margin-top: 14px;
    padding-left: 22px;
}
.eq-faq__content .cus-accordian__title .icon-plus-minus::before{
    width: 12px;
}
.eq-faq__content .cus-accordian__title .icon-plus-minus::after{
    height: 12px;
}
.eq-faq__content .cus-accordian__title{
    gap: 10px;
}
.eq-faq__content .cus-accordian__title .icon-plus-minus{
    max-width: 12px;
    height: 12px;
    margin-top: 11px;
}
.eq-faq__content .cus-accordian__card{
    padding: 19px 0;
    border-color: var(--color-dark);
}
.eq-faq__button{
    width: 100%;
    position: relative;
    z-index: 1;
    margin-top: 50px;
}
.eq-faq__button::after{
    content: '';
    /* background: linear-gradient(177.06deg, rgba(228, 213, 195, 0) -63.01%, #E4D5C3 63.59%); */
    background: linear-gradient(177.06deg, rgba(228, 213, 195, 0) -10%, #E4D5C3 63.59%);
    height: 434px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    pointer-events: none;
}
@media only screen and (max-width: 1740px) and (min-width: 992px) {
    .eq-faq{
        padding: 12.471vw 0 10.517vw;
    }
    .eq-faq__wrap h1{
        font-size: 5.517vw;
    }
    .eq-faq__wrap .text-desc{
        font-size: 1.034vw;
        margin-top: 1.264vw;
    }
    .eq-faq__content{
        border-radius: 1.724vw;
        margin-top: 2.299vw;
        padding: 1.954vw 2.241vw 2.701vw;
    }
    .eq-faq__content .cus-accordian__panel{
        margin-top: 0.805vw;
        padding-left: 1.264vw;
    }
    .eq-faq__content .cus-accordian__title .icon-plus-minus::before{
        width: 0.690vw;
    }
    .eq-faq__content .cus-accordian__title .icon-plus-minus::after{
        height: 0.690vw;
    }
    .eq-faq__content .cus-accordian__title{
        gap: 0.575vw;
    }
    .eq-faq__content .cus-accordian__title .icon-plus-minus{
        max-width: 0.690vw;
        height: 0.690vw;
        margin-top: 0.632vw;
    }
    .eq-faq__content .cus-accordian__card{
        padding: 1.092vw 0;
    }
    .eq-faq__button{
        margin-top: 2.874vw;
    }
    .eq-faq__button::after{
        height: 24.943vw;
    }
}
@media only screen and (max-width: 991px){
    .eq-faq__wrap h1 {
        font-size: 76px;
    }
    .eq-faq {
        padding: 164px 0 120px;
    }
}
@media only screen and (max-width: 767px){
    .eq-faq {
        padding: 165px 0 76px;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
        z-index: 11;
        overflow: hidden;
    }
    .eq-faq__wrap h1 {
        font-size: 64px;
    }
    .eq-faq__content .cus-accordian__title .icon-plus-minus {
        max-width: 12px;
        height: 12px;
        margin-top: 4px;
    }
    .eq-faq__wrap .text-desc{
        margin-top: 60px;
    }
    .eq-faq__content {
        padding: 25px 30px 35px;
    }
    .eq-faq__content .cus-accordian__card {
        border-color: var(--color-secondary);
    }
    .eq-faq__content .cus-accordian__title h5 {
        color: rgba(82, 62, 45, 0.5);
    }
    .eq-faq__button::after{
        display: none;
    }
    .eq-faq__button{
        margin-top: 25px;
    }
}
/* eq-faq css end here */

/* eq-our-team css start here */
.eq-our-team{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 130px 0;
    background-image: linear-gradient( 0deg, rgb(185,144,112) 0%, rgb(194,149,116) 56%, rgb(206,161,130) 100%);
    margin: -30px 0;
    overflow: hidden;
}
.eq-our-team__content{
    width: 100%;
}
.eq-our-team__slider{
    width: 100%;
    height: 408px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.eq-our-team__slider.slick-initialized{
    height: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.eq-our-team__slider .slick-list{
    margin: 0 -10px;
    overflow: visible;
}
.eq-our-team__slider .slide{
    padding: 0 10px;
}
.eq-our-team__box{
    width: 100%;
    position: relative;
}
.eq-our-team__media-wrap{
    width: 100%;
    position: relative;
    padding-bottom: 114.24%;
    border-radius: 10px;
    overflow: hidden;
}
.eq-our-team__media-wrap img,
.eq-our-team__media-wrap video,
.eq-our-team__media-wrap iframe{
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.eq-our-team__media-wrap::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(82, 62, 45, 0) 0%, rgba(82, 62, 45, 0.5) 100%);
}
.eq-our-team__box h4{
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    color: var(--color-light);
    margin-top: 26px;
}
.eq-our-team__box p{
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    color: var(--color-light);
    margin-top: 5px;
}
.eq-our-team__action {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 44px;
}
.eq-our-team__action-slider {
    max-width: 981px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.eq-our-team__action-slider .slick-arrow{    
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    max-width: 39px;
    width: 100%;
}
.eq-our-team__action-slider .slick-arrow.slick-disabled{
    opacity: 0.5;
    cursor: auto;
}
.eq-our-team__action-slider .slick-arrow span{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 20px;    
    line-height: 1;
    color: var(--color-light);
    display: none;
}
.eq-our-team__action-slider .progress {
    position: relative;
    flex: 1;
    height: 2px;    
    border-radius: 50px;
    max-width: 860px;
    width: 100%;
    margin: 0 auto;
    z-index: 1;
}
.eq-our-team__action-slider .progress::after{
    content: '';
    width: 100%;
    background-color: var(--color-secondary);
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    z-index: -1;
}

/* Progress fill */
.eq-our-team__action-slider .progress-bar {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 11px;
    display: block;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--color-secondary);
    transition: var(--transition-primary);
}
.eq-our-team__action-btn{
    max-width: 234px;
    width: 100%;
}
.eq-our-team__action-btn .link-text{
    color: #F3ECE2;
    pointer-events: none;
}
.eq-our-team__action-btn .link-text:hover{
    color: var(--color-light);
}


@media only screen and (max-width: 1740px) and (min-width: 992px) {
    .eq-our-team{
        padding: 7.471vw 0;
        margin: -1.724vw 0;
    }
    .eq-our-team__slider .slick-list{
        margin: 0 -0.575vw;
    }
    .eq-our-team__slider .slide{
        padding: 0 0.575vw;
    }
    .eq-our-team__media-wrap{
        border-radius: 0.575vw;
    }
    .eq-our-team__box h4{
        font-size: 1.149vw;
        margin-top: 1.494vw;
    }
    .eq-our-team__box p{
        font-size: 1.149vw;
        margin-top: 0.287vw;
    }
    .eq-our-team__action {
        gap: 1.437vw;
        margin-top: 2.529vw;
    }
    .eq-our-team__action-slider {
        max-width: 56.379vw;
        gap: 0.862vw;
    }
    .eq-our-team__action-slider .slick-arrow{    
        gap: 1.034vw;
        max-width: 2.241vw;
    }
    .eq-our-team__action-slider .slick-arrow span{
        font-size: 1.149vw;    
    }
    .eq-our-team__action-slider .progress {
        height: 0.115vw;    
        border-radius: 2.874vw;
        max-width: 49.425vw;
    }
    .eq-our-team__action-slider .progress::after{
        height: 0.115vw;
    }
    /* Progress fill */
    .eq-our-team__action-slider .progress-bar {
        height: 0.632vw;
        border-radius: 0.575vw;
    }
    .eq-our-team__action-btn{
        max-width: 13.448vw;
    }
}
@media only screen and (max-width: 991px){
    .eq-our-team__action-btn{
        max-width: 100%;
    }
    .eq-our-team{
        padding: 80px 0;
    }
}
@media only screen and (max-width: 767px){
    .eq-our-team{
        margin: -30px 0;
        padding: 70px 0;
    }
    .eq-our-team__action-btn{
        display: none;
    }
    .eq-our-team__button {
        margin-top: 28px;
    }
    .eq-our-team__button .btn{
        padding: 14px 32px;
    }
    .eq-our-team__action-slider .progress{
        display: none;
    }
    .eq-our-team__action-slider .slick-arrow span{
        display: block;
    }
    .eq-our-team__action-slider .slick-arrow {
        max-width: max-content;
        gap: 0;
    }
    .eq-our-team__action-slider .slick-arrow.prev-arrow img{
        margin-right: 15px;
    }
    .eq-our-team__action-slider .slick-arrow.next-arrow img{
        margin-left: 15px;
    }
    .eq-our-team__media-wrap{
        padding-bottom: 114.5%;
    }
    body.page-template-meet-the-team .eq-home-banner{
        border-radius: 0 0 32px 32px;
    }
    .eq-our-team__box h4{
        margin-top: 34px;
    }
}
/* eq-our-team css end here */
/* eq-founder-quote css start here */
.eq-founder-quote{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 86px 0 114px;
    background-color: var(--color-light-100);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    z-index: 11;
}
.eq-founder-quote__wrap{
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 19px;
}
.eq-founder-quote__box{
    max-width: calc(50% - 10px);
    width: 100%;
    background-color: rgba(191, 148, 116, 0.6);
    border-radius: 30px;
    overflow: hidden;
    padding: 34px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.eq-founder-quote__box-top{
    width: 100%;
}
.eq-founder-quote__box-top > span{
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 2.4px;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-bottom: 36px;
}
.eq-founder-quote__box-top .founder-profile{
    max-width: 126px;
    width: 100%;
    height: 126px;
    overflow: hidden;
    border-radius: 50%;
    position: relative;
    margin-bottom: 28px;
}
.eq-founder-quote__box-top .founder-profile::after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(180deg, rgba(82, 62, 45, 0) 0%, rgba(82, 62, 45, 0.5) 100%);
}
.eq-founder-quote__box-top .founder-profile img{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.eq-founder-quote__box-top h2{
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 64px;
    line-height: 1;
    color: var(--color-light);
}
.eq-founder-quote__box-top h2 span{
    display: block !important;
}
.eq-founder-quote__box .text-desc{
    font-family: var(--font-theme);
    font-weight: 300;
    font-size: 20px;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.75);
    max-width: 448px;
    width: 100%;
}
.eq-founder-quote__media{
    max-width: calc(50% - 10px);
    width: 100%;
}
.eq-founder-quote__media figure{
    position: relative;
    padding-bottom: 97.705%;
    overflow: hidden;
    border-radius: 30px;
}
.eq-founder-quote__media figure img{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media only screen and (max-width: 1740px) and (min-width: 992px) {
    .eq-founder-quote{
        padding: 4.943vw 0 6.552vw;
        border-radius: 1.724vw;
    }
    .eq-founder-quote__wrap{
        gap: 1.092vw;
    }
    .eq-founder-quote__box{
        max-width: calc(50% - 0.575vw);
        border-radius: 1.724vw;
        padding: 1.954vw 1.839vw;
    }
    .eq-founder-quote__box-top > span{
        font-size: 0.920vw;
        letter-spacing: 0.138vw;
        margin-bottom: 2.069vw;
    }
    .eq-founder-quote__box-top .founder-profile{
        max-width: 7.241vw;
        height: 7.241vw;
        margin-bottom: 1.609vw;
    }
    .eq-founder-quote__box-top h2{
        font-size: 3.678vw;
    }
    .eq-founder-quote__box .text-desc{
        font-size: 1.149vw;
        max-width: 25.747vw;
    }
    .eq-founder-quote__media{
        max-width: calc(50% - 0.575vw);
    }
    .eq-founder-quote__media figure{
        border-radius: 1.724vw;
    }   
}
@media only screen and (max-width: 991px){
    .eq-founder-quote__wrap{
        flex-wrap: wrap;
        gap: 0;
    }
    .eq-founder-quote__media{
        margin-top: 30px;
    }
    .eq-founder-quote__box{
        max-width: 100%;
        gap: 45px;
    }
    .eq-founder-quote__media{
        max-width: 100%;
    }
}
@media only screen and (max-width: 767px){
    .eq-founder-quote{
        padding: 40px 0;
    }
    .eq-founder-quote__media figure {
        padding-bottom: 96.5%;
    }
    .eq-founder-quote__box{
        padding: 34px 20px;
    }
    .eq-founder-quote__box-top > span{
        margin-bottom: 48px;
    }
    .eq-founder-quote__box-top .founder-profile {
        margin-bottom: 16px;
        margin-left: 12px;
    }
}
/* eq-founder-quote css end here */

/* eq-contact css start herec */
.eq-contact{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 207px 0 120px;
    margin-bottom: -30px;
    position: relative;
}
.eq-contact__bg{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
/* .eq-contact__bg::after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(130, 78, 55, 0.3) 0%, rgba(192, 175, 151, 0.3) 100%);
} */
.eq-contact__bg img,
.eq-contact__bg video,
.eq-contact__bg iframe{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.eq-contact > .cus-container{
    position: relative;
    z-index: 1;
}
.eq-contact__wrap{
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 38px;
}
.eq-contact__details{
    max-width: 476px;
    width: 100%;
}
.eq-contact__details h1{
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 100px;
    line-height: 1;
    color: var(--color-light);
    margin-bottom: 16px;
}
.eq-contact__details h6{
    font-family: var(--font-theme);
    font-weight: 300;
    font-size: 24px;
    line-height: 1.4;
    color: var(--color-light);
}
.eq-contact__details .text-desc{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: var(--color-light);
    margin-top: 26px;
}
.eq-contact__details .text-desc p{
    margin-top: 16px;
}
.eq-contact__details .text-desc p:first-child{
    margin-top: 0;
}
.eq-contact__address{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
    row-gap: 40px;
    column-gap: 10px;
}
.eq-contact__address-list{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.eq-contact__address-list.call-us{
    max-width: calc(44% - 10px);
    width: 100%;
}
.eq-contact__address-list.email-us{
    max-width: calc(56% - 10px);
    width: 100%;
}
.eq-contact__address-list span{
    font-family: var(--font-themes);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5;
    color: var(--color-light);
    display: block;
    width: 100%;
    margin-bottom: 12px;
}
.eq-contact__address-list.connect-with-us span{
    margin-bottom: 16px;
}
.eq-contact__address-list address{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 24px;
    line-height: 1.5;
    color: var(--color-light);
    font-style: normal;
    margin: 0;
}
.eq-contact__address-list > a{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 24px;
    line-height: 1.5;
    color: var(--color-light);
    font-style: normal;
}
.eq-contact__address-map {
    position: relative;
    padding-bottom: 44.54%;
    width: 100%;
    overflow: hidden;
    border-radius: 30px;
    margin-top: 30px;
}
.eq-contact__address-map iframe{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.eq-contact__social{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}
.eq-contact__form{
    max-width: 698px;
    width: 100%;
}
/* .eq-contact__form .eq-every-smile-story__contact-form{
    padding: 57px 50px 42px;
} */
.eq-contact__social li a {
    max-width: 35px;
    width: 100%;
    display: block;
}
@media only screen and (max-width: 1740px) and (min-width: 992px) {
    .eq-contact{
        padding: 11.897vw 0 6.897vw;
        margin-bottom: -1.724vw;
    }
    .eq-contact__wrap{
        gap: 2.184vw;
    }
    .eq-contact__details{
        max-width: 27.356vw;
    }
    .eq-contact__details h1{
        font-size: 5.747vw;
        margin-bottom: 0.920vw;
    }
    .eq-contact__details h6{
        font-size: 1.379vw;
    }
    .eq-contact__details .text-desc{
        font-size: 1.034vw;
        margin-top: 1.494vw;
    }
    .eq-contact__details .text-desc p{
        margin-top: 0.920vw;
    }
    .eq-contact__address{
        margin-top: 2.874vw;
        row-gap: 2.299vw;
        column-gap: 0.575vw;
    }
    .eq-contact__address-list.call-us{
        max-width: calc(44% - 0.575vw);
    }
    .eq-contact__address-list.email-us{
        max-width: calc(56% - 0.575vw);
    }
    .eq-contact__address-list span{
        font-size: 1.034vw;
        margin-bottom: 0.690vw;
    }
    .eq-contact__address-list.connect-with-us span{
        margin-bottom: 0.920vw;
    }
    .eq-contact__address-list address{
        font-size: 1.379vw;
    }
    .eq-contact__address-list > a{
        font-size: 1.379vw;
    }
    .eq-contact__address-map {
        border-radius: 1.724vw;
        margin-top: 1.724vw;
    }
    .eq-contact__social{
        gap: 0.920vw;
    }
    .eq-contact__form{
        max-width: 40.115vw;
    }
    /* .eq-contact__form .eq-every-smile-story__contact-form{
        padding: 3.276vw 2.874vw 2.414vw;
    } */
    .eq-contact__social li a {
        max-width: 2.011vw;
    }
}
@media only screen and (max-width: 991px){
    .eq-contact__wrap{
        flex-wrap: wrap;
        gap: 0;
    }
    .eq-contact__details{
        max-width: 100%;
        margin-bottom: 85px;
    }
    .eq-contact__form{
        max-width: 100%;
    }
}
@media only screen and (max-width: 767px){
    .eq-contact {
        padding: 160px 0 80px;
    }
    .eq-contact__details h1 {
        font-size: 64px;
        margin-bottom: 32px;
    }
    .eq-contact__address-list.call-us,
    .eq-contact__address-list.email-us{
        max-width: 100%;
    }
    .eq-contact__details .text-desc {
        margin-top: 24px;
    }
    .eq-contact__details .text-desc p {
        margin-top: 32px;
    }
    .eq-contact__address {
        margin-top: 47px;
        row-gap: 40px;
    }
    .eq-contact__address-map {
        margin-top: 50px;
    }
    .eq-contact__address-list span{
        margin-bottom: 14px;
    }
    /* .eq-contact__form .eq-every-smile-story__contact-form {
        padding: 48px 30px 22px;
    } */
    .eq-contact__social{
        gap: 0;
    }
    .eq-contact__social li{
        margin-right: 16px;
    }
    .eq-contact__social li:last-child{
        margin-right: 0;
    }
}
/* eq-contact css end herec */


/* Blog Inner Banner css start here */
.eq-blog-inner-banner{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 213px 0 70px;
    position: relative;
    border-radius: 0 0 32px 32px;
    overflow: hidden;
    z-index: 11;
}
.eq-blog-inner-banner__bg::after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(130, 78, 55, 0.3) 0%, rgba(192, 175, 151, 0.3) 100%);
}
.eq-blog-inner-banner__bg{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.eq-blog-inner-banner__bg img,
.eq-blog-inner-banner__bg video,
.eq-blog-inner-banner__bg iframe{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.eq-blog-inner-banner > .cus-container{
    position: relative;
}

.eq-blog-inner-banner__content {
    max-width: 740px;
    width: 100%;
}
.eq-blog-inner-banner__content h1{
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 96px;
    line-height: 1;
    color: var(--color-light);
}
.eq-blog-inner-banner__wrap{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 50px;
    margin-top: 22px;
}
.eq-blog-inner-banner__content .post-date{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    text-transform: uppercase;
    color: var(--color-light);
}
.eq-blog-inner-banner__content .post-author{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    text-transform: uppercase;
    color: var(--color-light);
}
.eq-blog-inner-banner__content .post-author span{
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 0%;
    text-decoration-skip-ink: auto;
}

@media only screen and (max-width: 1740px) and (min-width: 992px) {
    .eq-blog-inner-banner{
        padding: 12.241vw 0 4.023vw;
        border-radius: 0 0 1.839vw 1.839vw;
    }
    .eq-blog-inner-banner__content {
        max-width: 42.529vw;
    }
    .eq-blog-inner-banner__content h1{
        font-size: 5.517vw;
    }
    .eq-blog-inner-banner__wrap{
        gap: 2.874vw;
        margin-top: 1.264vw;
    }
    .eq-blog-inner-banner__content .post-date{
        font-size: 1.034vw;
    }
    .eq-blog-inner-banner__content .post-author{
        font-size: 1.034vw;
    }
}
@media only screen and (max-width: 991px){
    .eq-blog-inner-banner__content h1{
        font-size: 84px;
    }
}
@media only screen and (max-width: 767px){
    .eq-blog-inner-banner {
        padding: 164px 0 50px;
    }
    .eq-blog-inner-banner__content h1 {
        font-size: 64px;
    }
    .eq-blog-inner-banner__content .post-author{
        line-height: 1.2;
    }
    .eq-blog-inner-banner__content .post-date{
        text-transform: none;
    }
    .eq-blog-inner-banner__wrap{
        gap: 10px;
        flex-direction: column;
        margin-top: 26px;
        justify-content: flex-start;
        align-items: flex-start;
    }
}
/* Blog Inner Banner css end here */

/* blog-inner css start here */
.blog-inner{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 90px 0 104px;
}
.blog-inner__wrap{
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 116px;
}
.blog-inner__left{
    max-width: 723px;
    width: 100%;
    margin-top: 90px;
}
.blog-inner__content{
    width: 100%;
}
.blog-inner__content p {
    width: 100%;
}
.blog-inner__content img{
    border-radius: 30px;
    width: 100%;
}
.blog-inner__content h5{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 24px;
    line-height: 1.7;
    color: var(--color-primary);
}
.blog-inner__content p{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-primary);
}
.eq-social-share {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}
.eq-social-share h3{
    font-family: var(--font-theme);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.7;
    color: #8b8b8b;
}
.eq-social-share__list{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.eq-social-share__list li {
    margin-right: 6px;
}
.eq-social-share__list li:last-child{
    margin-right: 0;
}
.eq-social-share__list li a{
    display: inline-block;
    max-width: 30px;
    width: 100%;
}
.blog-inner__right{
    max-width: 401px;
    width: 100%;
    position: sticky;
    top: 30px;
}
.eq-related-posts{
    width: 100%;
    margin-top: 42px;
}
.eq-related-posts__title{
    font-family: var(--font-theme);
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    color: var(--color-secondary);
}
.eq-related-posts__list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 40px;
}
.eq-related-posts__box{
    width: 100%;
}
.eq-related-posts__box figure{
    width: 100%;
    position: relative;
    padding-bottom: 86.286%;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 40px;
}
.eq-related-posts__box figure img,
.eq-related-posts__box figure video,
.eq-related-posts__box figure iframe{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.eq-related-posts__box-content{
    width: 100%;
    padding-right: 20px;
}
.eq-related-posts__box-content h3,
.eq-related-posts__box-content h3 a{
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 35px;
    line-height: 1.1;
    color: var(--color-primary);
}
.eq-related-posts__box-content span{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    text-transform: uppercase;
    color: var(--color-secondary);
    display: block;
    margin-top: 4px;
}
.eq-related-posts__box-content .text-desc{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-primary);
    margin-top: 8px;
    margin-bottom: 22px;
}
.eq-related-posts__box-content .btn-read-article{
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: var(--color-secondary);
}
.eq-related-posts__box-content .btn-read-article svg,
.eq-related-posts__box-content .btn-read-article img{
    max-width: 21px;
    width: 100%;
    margin-right: 15px;
}
.eq-related-posts__box-content .btn-read-article:hover{
    color: var(--color-primary);
}
.eq-related-posts__box-content .btn-read-article svg circle,
.eq-related-posts__box-content .btn-read-article svg path{
    transition: var(--transition-primary);
}
.eq-related-posts__box-content .btn-read-article:hover svg circle,
.eq-related-posts__box-content .btn-read-article:hover svg path{
    stroke: var(--color-primary);
}
@media only screen and (max-width: 1740px) and (min-width: 992px) {
    .blog-inner{
        padding: 5.172vw 0 5.977vw;
    }
    .blog-inner__wrap{
        gap: 6.667vw;
    }
    .blog-inner__left{
        max-width: 41.552vw;
        margin-top: 5.172vw;
    }
    .blog-inner__content img{
        border-radius: 1.724vw;
    }
    .blog-inner__content h5{
        font-size: 1.379vw;
    }
    .blog-inner__content p{
        font-size: 1.034vw;
    }
    .eq-social-share {
        gap: 0.690vw;
    }
    .eq-social-share h3{
        font-size: 1.034vw;
    }
    .eq-social-share__list li {
        margin-right: 0.345vw;
    }
    .eq-social-share__list li a{
        max-width: 1.724vw;
    }
    .blog-inner__right{
        max-width: 23.046vw;
        top: 1.724vw;
    }
    .eq-related-posts{
        margin-top: 2.414vw;
    }
    .eq-related-posts__title{
        font-size: 1.034vw;
    }
    .eq-related-posts__list {
        margin-top: 1.149vw;
        gap: 2.299vw;
    }
    .eq-related-posts__box figure{
        border-radius: 1.724vw;
        margin-bottom: 2.299vw;
    }
    .eq-related-posts__box-content{
        padding-right: 1.149vw;
    }
    .eq-related-posts__box-content h3,
    .eq-related-posts__box-content h3 a{
        font-size: 2.011vw;
    }
    .eq-related-posts__box-content span{
        font-size: 1.034vw;
        margin-top: 0.230vw;
    }
    .eq-related-posts__box-content .text-desc{
        font-size: 1.034vw;
        margin-top: 0.460vw;
        margin-bottom: 1.264vw;
    }
    .eq-related-posts__box-content .btn-read-article{
        font-size: 0.920vw;
    }
    .eq-related-posts__box-content .btn-read-article svg,
    .eq-related-posts__box-content .btn-read-article img{
        max-width: 1.207vw;
        margin-right: 0.862vw;
    }
}
@media only screen and (max-width: 991px){
    .blog-inner__wrap{
        gap: 30px;
        flex-wrap: wrap;
    }
    .blog-inner__left{
        max-width: calc(50% - 15px);
    }
    .blog-inner__right {
        max-width: calc(50% - 15px);
    }
    .blog-inner__content h5 {
        font-size: 20px;
    }
}
@media only screen and (max-width: 767px){    
    .blog-inner__left{
        max-width: 100%;
        margin-top: 0;
    }
    .blog-inner__right {
        max-width: 100%;
    }
    .blog-inner {
        padding: 44px 0 70px;
    }
    .blog-inner__content h5 {
        font-size: 16px;
    }
    .blog-inner__content p {
        font-size: 16px;
    }
    .blog-inner__right{
        display: none;
    }
}
/* blog-inner css end here */

/* Footer css start here */
.eq-footer{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 125px 0 86px;
    background-color: var(--color-light-100);
    position: relative;
    z-index: 1;
    border-radius: 30px 30px 0 0;
    overflow: hidden;
}
.eq-footer__bg{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.eq-footer__bg img,
.eq-footer__bg video,
.eq-footer__bg iframe{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.eq-footer__top {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 106px;
}
.eq-footer__top-left{
    max-width: 542px;
    width: 100%;
}
.eq-footer__main-logo{
    max-width: 263px;
    width: 100%;
    margin-bottom: 42px;
}
.eq-footer__form{
    max-width: 493px;
    width: 100%;
    margin-bottom: 36px;
}
.eq-footer__form-wrap{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    background: var(--color-light);
    border-radius: 100px;
}
.eq-footer__form .c-form-group .wpcf7-response-output{
    margin-top: 42px;
    padding: 0;
    border: 0;
    color: var(--color-primary);
    font-size: 18px;
}
.eq-footer__form .c-form-group{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}
.eq-footer__form .c-form-control {
    margin: 0;
    outline: none;
    box-shadow: none;
    border-radius: 100px;
    border: 0;
    font-family: var(--font-theme);
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    color: var(--color-primary);
    width: 100%;
    max-width: 357px;
    padding: 22px 25px;
}
.eq-footer__form .c-form-control ~ span{
    position: absolute;
    left: 10px;
    margin-top: 6px;
    font-size: 18px;
    font-family: var(--font-theme);
    color: var(--color-tertiary);
}
.eq-footer__form .c-form-button{
    margin: 0;
    outline: none;
    box-shadow: none;
    font-family: var(--font-theme);
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    color: var(--color-primary);
    padding: 22px 16px;
    background-color: var(--color-secondary);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 136px;
    width: 100%;
}
.eq-footer__form .c-form-button svg,
.eq-footer__form .c-form-button img{
    max-width: 19px;
    width: 100%;
}
.eq-footer__social-review-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 22px;
}
.eq-footer__social-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;    
}
.eq-footer__social-wrap li{
    margin-right: 18px;
}
.eq-footer__social-wrap li:last-child{
    margin-right: 0;
}
.eq-footer__review-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 25px;
}
.eq-footer__social-wrap li a{
    max-width: 42px;
    width: 100%;
    display: block;
}
.eq-footer__social-wrap li a:hover{
    opacity: 0.5;
}
.eq-footer__trustpilot {
    max-width: 213px;
    width: 100%;
}
.eq-footer__google-review {
    max-width: 170px;
    width: 100%;
}
.eq-footer__top-right{
    max-width: 798px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-top: 60px;
}
.eq-footer__nav{
    max-width: 230px;
    width: 100%;
}
.eq-footer__nav h4{
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 34px;
    line-height: 1;
    color: var(--color-primary-200);
    text-transform: capitalize;
}
.eq-footer__nav h4 a{
    color: var(--color-primary-200);
}
.eq-footer__nav h4 a:hover{
    color: var(--color-primary);
}
.eq-footer__nav-list{
    width: 100%;
    margin-top: 28px;
}
.eq-footer__nav-list li{
    margin-bottom: 14px;
    display: flex;
}
.eq-footer__nav-list li:last-child{
    margin-bottom: 0;
}
.eq-footer__nav-list li a{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: var(--color-primary-200);
    text-transform: capitalize;
}
.eq-footer__nav-list li a:hover{
    color: var(--color-primary);
}
.eq-footer__bottom{
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 60px;
    margin-top: 40px;
}
.eq-footer__bottom-left{
    max-width: 305px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.eq-footer__bottom-left .brick-street__button {
    position: relative;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.eq-footer__bottom-left .brick-street__button.learn-more img {
    max-width: 53px;
    width: 100%;
}
.eq-footer__bottom-left .brick-street__button.view-our-case-studies img {
    max-width: 87px;
    width: 100%;
}
.eq-footer__bottom-left .brick-street__button .animation-text{
    fill: var(--color-secondary);
}
.eq-footer__bottom-right {
    max-width: 1090px;
    width: 100%;
    border-top: 1px solid var(--color-secondary);
    padding-top: 22px;
    margin-top: 32px;
}
.eq-footer__bottom-right p{
    font-family: var(--font-theme);
    font-weight: 300;
    font-size: 14px;
    line-height: 1.2;
    color: rgba(147, 114, 97, 0.99);
}
.eq-footer__bottom-right p a{
    color: rgba(147, 114, 97, 0.99);
}
.eq-footer__bottom-right p a:hover{
    color: var(--color-primary);
    text-decoration: underline;
}
@media only screen and (max-width: 1740px) and (min-width: 992px) {
    .eq-footer{
        padding: 7.184vw 0 4.943vw;
        border-radius: 1.724vw 1.724vw 0 0;
    }
    .eq-footer__top {
        gap: 6.092vw;
    }
    .eq-footer__top-left{
        max-width: 31.149vw;
    }
    .eq-footer__main-logo{
        max-width: 15.115vw;
        margin-bottom: 2.414vw;
    }
    .eq-footer__form{
        max-width: 28.333vw;
        margin-bottom: 2.069vw;
    }
    .eq-footer__form-wrap{
        border-radius: 5.747vw;
    }
    .eq-footer__form .c-form-group .wpcf7-response-output{
        margin-top: 2.414vw;
        font-size: 1.034vw;
    }
    .eq-footer__form .c-form-control {
        border-radius: 5.747vw;
        font-size: 1.034vw;
        padding: 1.264vw 1.437vw;
        max-width: 20.517vw;
    }
    .eq-footer__form .c-form-control ~ span{
        margin-top: 0.345vw;
        font-size: 1.034vw;
        left: 0.575vw;
    }
    .eq-footer__form .c-form-button{
        font-size: 1.034vw;
        padding: 1.264vw 0.920vw;
        border-radius: 5.747vw;
        gap: 0.402vw;
        min-width: 7.816vw;
    }
    .eq-footer__form .c-form-button svg,
    .eq-footer__form .c-form-button img{
        max-width: 1.092vw;
    }
    .eq-footer__social-review-logo {
        gap: 1.264vw;
    }
    .eq-footer__social-wrap li{
        margin-right: 1.034vw;
    }
    .eq-footer__review-logo {
        gap: 1.437vw;
    }
    .eq-footer__social-wrap li a{
        max-width: 2.414vw;
    }
    .eq-footer__trustpilot {
        max-width: 12.241vw;
    }
    .eq-footer__google-review {
        max-width: 9.770vw;
    }
    .eq-footer__top-right{
        max-width: 45.862vw;
        gap: 2.299vw;
        margin-top: 3.448vw;
    }
    .eq-footer__nav{
        max-width: 13.218vw;
    }
    .eq-footer__nav h4{
        font-size: 1.954vw;
    }
    .eq-footer__nav-list{
        margin-top: 1.609vw;
    }
    .eq-footer__nav-list li{
        margin-bottom: 0.805vw;
    }
    .eq-footer__nav-list li a{
        font-size: 1.034vw;
    }
    .eq-footer__bottom{
        gap: 3.448vw;
        margin-top: 2.299vw;
    }
    .eq-footer__bottom-left{
        max-width: 17.529vw;
        gap: 0.575vw;
    }
    .eq-footer__bottom-left .brick-street__button {
        width: 7.471vw;
        height: 7.471vw;
    }
    .eq-footer__bottom-left .brick-street__button.learn-more img {
        max-width: 3.046vw;
    }
    .eq-footer__bottom-left .brick-street__button.view-our-case-studies img {
        max-width: 5.000vw;
    }
    .eq-footer__bottom-right {
        max-width: 62.644vw;
        border-top: 0.057vw solid var(--color-secondary);
        padding-top: 1.264vw;
        margin-top: 1.839vw;
    }
    .eq-footer__bottom-right p{
        font-size: 0.805vw;
    }
}
@media only screen and (max-width: 991px){
    .eq-footer{
        padding: 80px 0;
    }
    .eq-footer__top{
        flex-wrap: wrap;
        gap: 60px;
    }
    .eq-footer__top-left {
        max-width: 100%;
    }
    .eq-footer__top-right{
        margin-top: 0;
        max-width: 100%;
        gap: 30px;
    }
    .eq-footer__bottom {
        gap: 40px;
        margin-top: 60px;
    }
}
@media only screen and (max-width: 767px){
    .eq-footer__bottom-left{
        display: none;
    }
    .eq-footer__top-right{
        flex-wrap: wrap;
        gap: 0;
        padding-top: 55px;
        border-top: 1px solid var(--color-secondary);
        margin-top: 45px;
    }
    .eq-footer__nav{
        max-width: 100%;
        margin-top: 55px;
    }
    .eq-footer__nav:first-child{
        margin-top: 0;
    }
    .eq-footer__nav-list {
        margin-top: 34px;
    }
    .eq-footer__bottom{
        margin-top: 0;
        gap: 0;
    }
    .eq-footer__bottom-right{
        border: none;
        padding: 0;
        margin-top: 56px;
    }
    .eq-footer__social-review-logo{
        display: none;
    }
    .eq-footer {
        padding: 54px 0 80px;
    }
    .eq-footer__top{
        gap: 0;
    }
    .eq-footer__address-wrap{
        width: 100%;
        padding-top: 55px;
        border-top: 1px solid var(--color-secondary);
        margin-top: 45px;
    }
    .eq-footer__address-wrap h4{
        font-family: var(--font-primary);
        font-weight: 400;
        font-size: 48px;
        line-height: 1;
        color: var(--color-primary);
    }
    .eq-footer__address{
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        font-family: var(--font-theme);
        font-weight: 400;
        font-size: 20px;
        line-height: 1.7;
        color: var(--color-primary);
        margin-top: 32px;
    }
    .eq-footer__address address{
        font-style: normal;
        margin-bottom: 32px;
    }
    .eq-footer__address address > p{
        margin: 0;
    }
    .eq-footer__address p{
        margin-top: 32px;
    }
    .eq-footer__address a{
        color: var(--color-primary);
    }
    .eq-footer__address a.link-mail{
        text-decoration: underline;
    }
    .eq-footer__address span{
        color: var(--color-secondary);
    }
    .eq-footer__form{
        margin-bottom: 15px;
        max-width: 100%;
    }
    .eq-footer__form .c-form-label{
        font-family: var(--font-theme);
        font-weight: 400;
        font-size: 20px;
        line-height: 1;
        color: var(--color-primary);
        margin-bottom: 20px;
    }
    .eq-footer__form .c-form-control {
        padding: 16px 14px 16px 32px;
        height: 54px;
    }
    .eq-footer__form .c-form-button {
        padding: 12px 16px;
        gap: 0;
        height: 54px;
    }
    .eq-footer__form .c-form-button svg,
    .eq-footer__form .c-form-button img{
        margin-left: 6px;
    }
    .eq-footer__main-logo {
        margin-bottom: 74px;
    }
    .eq-footer__nav-list li{
        margin-bottom: 12px;
    }
    .eq-footer__bg img, 
    .eq-footer__bg video, 
    .eq-footer__bg iframe{
        display: none;
    }
}
/* Footer css end here */

/* testimonial css start here */
body.page-template-testimonial .eq-home-banner{
    padding: 280px 0 70px;
}
.eq-testimonial{
    width: 100%;
    padding: 210px 0 164px;
    margin: -30px 0;
    background-color: rgba(255, 250, 243, 0.8);
}
.eq-testimonial__wrap{
    max-width: 1234px;
    width: 100%;
    margin: 0 auto;    
}
.eq-testimonial__content{
    margin: 0 -25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.eq-testimonial__box-wrap{
    padding: 0 25px;
    max-width: 50%;
    width: 100%;
}
.eq-testimonial__box-wrap:nth-child(n + 3){
    margin-top: 47px;
}
.eq-testimonial__box{    
    width: 100%;
    background-color: var(--color-light);
    border-radius: 30px;
    overflow: hidden;
    padding: 30px 40px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 58px;
}
.eq-testimonial__box span{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: var(--color-primary);
}
.eq-testimonial__box-content{
    width: 100%;
}
.eq-testimonial__box-logo{
    max-width: 31px;
    width: 100%;
    margin-bottom: 28px;
}
.eq-testimonial__box-content h4{
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 35px;
    line-height: 1.1;
    color: var(--color-primary);
}
.eq-testimonial__box-content .text-desc{
    font-family: var(--font-theme);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-primary);
    margin-top: 38px;
}
.eq-testimonial__box-content .review-logo {    
    width: 100%;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
}
.eq-testimonial__box-content .review-logo img{
    max-width: 17px;
    width: 100%;
}
@media only screen and (max-width: 1740px) and (min-width: 992px) {
    body.page-template-testimonial .eq-home-banner{
        padding: 16.092vw 0 4.023vw;
    }
    .eq-testimonial{
        padding: 12.069vw 0 9.425vw;
        margin: -1.724vw 0;
    }
    .eq-testimonial__wrap{
        max-width: 70.920vw;
    }
    .eq-testimonial__content{
        margin: 0 -1.437vw;
    }
    .eq-testimonial__box-wrap{
        padding: 0 1.437vw;
    }
    .eq-testimonial__box-wrap:nth-child(n + 3){
        margin-top: 2.701vw;
    }
    .eq-testimonial__box{    
        border-radius: 1.724vw;
        padding: 1.724vw 2.299vw 1.379vw;
        gap: 3.333vw;
    }
    .eq-testimonial__box span{
        font-size: 0.920vw;
    }
    .eq-testimonial__box-logo{
        max-width: 1.782vw;
        margin-bottom: 1.609vw;
    }
    .eq-testimonial__box-content h4{
        font-size: 2.011vw;
    }
    .eq-testimonial__box-content .text-desc{
        font-size: 1.034vw;
        margin-top: 2.184vw;
    }
    .eq-testimonial__box-content .review-logo {    
        margin-top: 1.437vw;
        gap: 0.230vw;
    }
    .eq-testimonial__box-content .review-logo img{
        max-width: 0.977vw;
    }
}
@media only screen and (max-width: 991px){
    .eq-testimonial__box {
        padding: 30px 20px 20px;
    }
    .eq-testimonial__box-content h4 {
        font-size: 32px;
    }
    .eq-testimonial__box-wrap {
        padding: 0 10px;
    }
    .eq-testimonial__content {
        margin: 0 -10px;
    }
}
@media only screen and (max-width: 767px){
    .eq-testimonial__box {
        padding: 30px 32px 25px;
    }
    .eq-testimonial__box span{
        font-size: 20px;
    }
    .eq-testimonial__box-content h4 {
        font-size: 35px;
    }
    .eq-testimonial__box-content .text-desc{
        font-size: 20px;
        margin-top: 20px;
    }
    .eq-testimonial__box-logo{
        display: none;
    }
    .eq-testimonial__box-wrap {
        max-width: 100%;
    }
    .eq-testimonial__box-wrap:nth-child(n + 2) {
        margin-top: 40px;
    }
    .eq-testimonial {
        padding: 100px 0;
    }
    body.page-template-testimonial .eq-home-banner {
        padding: 200px 0 77px;
        border-radius: 0 0 32px 32px;
    }
}
/* testimonial css end here */

/* Case Study css start here */
body.post-type-archive-case-study .eq-home-banner__wrap-content {
    max-width: 530px;
    width: 100%;
}
body.page-template-thank-you .eq-real-stories{
    margin-top: -30px;
    border-radius: 0 0 30px 30px;
}
body.page-template-thank-you .eq-home-banner {
    z-index: 111;
}
.eq-real-stories__main-bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    object-fit: contain;
}
.eq-real-stories__main-bg img{
    width: 100%;
}
@media only screen and (max-width: 767px){
    .eq-real-stories__main-bg {
        display: none;
    }
}
/* Case Study css end here */