@font-face {
    font-family: 'Actay Wide';
    src: url('../fonts/ActayWide-Bold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Readex Pro';
    src: url('../fonts/ReadexPro-VariableFont_HEXP,wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

img {
    width: 100%;
}

.lato-thin {
    font-family: "Lato", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.lato-light {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.lato-regular {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.lato-bold {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.lato-black {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.lato-thin-italic {
    font-family: "Lato", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.lato-light-italic {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.lato-regular-italic {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.lato-bold-italic {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.lato-black-italic {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: italic;
}



:root {
    /* ================================
       FONT
    ================================ */
    --ext-font-family-lato: 'Lato', sans-serif;
    --ext-font-family-actay: 'Actay Wide', sans-serif;
    --ext-font-family-Readex: 'Readex Pro' , sans-serif;
}


body {
    font-family: var(--ext-font-family-lato);
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    scroll-behavior: smooth;
    background: #F1F1F1;
}


.ext-title-font{
    font-family: var(--ext-font-family-Readex);
}
input,
textarea,
button,
select {
    outline: none;
}
.hidden {
    display: none;
}
.ext-w-100 {
    width: 100%;
}

.ext-max-width {
    max-width: 1920px;
    margin: 0 auto;
}

.ext-container{
    max-width: 1519px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

.ext-d-flex {
    display: flex;
}

.ext-d-block {
    display: block;
}

.ext-d-inline-block {
    display: inline-block;
}

.ext-d-none {
    display: none;
}

.ext-d-grid {
    display: grid;
}

.ext-a-i-center {
    align-items: center;
}

.ext-a-i-f-start {
    align-items: flex-start;
}

.ext-a-i-start {
    align-items: start;
}

.ext-a-i-f-end {
    align-items: flex-end;
}

.ext-f-d-column {
    flex-direction: column;
}

.ext-f-d-row {
    flex-direction: row;
}

.ext-a-i-end {
    align-items: end;
}

.ext-a-s-stretch {
    align-self: stretch;
}

.ext-j-c-flex-end {
    justify-content: flex-end;
}

.ext-j-c-flex-start {
    justify-content: flex-start;
}

.ext-j-c-end {
    justify-content: end;
}

.ext-j-c-start {
    justify-content: start;
}

.ext-j-c-center {
    justify-content: center;
}

.ext-j-c-space-between {
    justify-content: space-between;
}

.ext-f-wrap {
    flex-wrap: wrap;
}
.ext-body-hidden{
    overflow: hidden;
}
/*gap*/
.ext-gap-4 {
    gap: 4px;
}

.ext-gap-6 {
    gap: 6px;
}

.ext-gap-8 {
    gap: 8px;
}
.ext-gap-10 {
    gap: 10px;
}
.ext-gap-12 {
    gap: 12px;
}

.ext-gap-16 {
    gap: 16px;
}

.ext-gap-20 {
    gap: 20px;
}

.ext-gap-24 {
    gap: 24px;
}

.ext-gap-28 {
    gap: 28px;
}

.ext-gap-32 {
    gap: 32px;
}
.ext-gap-30 {
    gap: 30px;
}

.ext-gap-36 {
    gap: 36px;
}

.ext-gap-40 {
    gap: 40px;
}

.ext-gap-44 {
    gap: 44px;
}

.ext-gap-48 {
    gap: 48px;
}

.ext-gap-57 {
    gap: 57px;
}
.ext-gap-60 {
    gap: 60px;
}
.ext-gap-64 {
    gap: 64px;
}
.ext-gap-72 {
    gap: 72px;
}
.ext-gap-98 {
    gap: 98px;
}
.ext-gap-80 {
    gap: 80px;
}
.ext-gap-122{
    gap: 122px;
}
.ext-gap-125{
    gap: 125px;
}
.ext-gap-200 {
    gap: 200px;
}

/*padding*/

.ext-p-60 {
    padding: 60px;
}

@media (max-width: 768px ) {
    .ext-f-d-column-mob {
        flex-direction: column;
    }
    .ext-a-i-center-mob {
        align-items: center;
    }
    .ext-j-c-center-mob {
        justify-content: center;
    }
    .ext-w-100-mob {
        width: 100%;
    }
    .ext-d-none-mob{
        display: none;
    }
}

/*header start*/
.ext-header-inner{
    background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.00) 99.52%);
    backdrop-filter: blur(0.5px);
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:58px 0;
    z-index:10;
    transition: all 0.3s ease;
}
.ext-site-header,
.ext-mobile-header{
    position: relative;
}
.ext-header__logo,
.ext-mobile-logo{
    position: absolute;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    max-width: 235px;
    min-width: 115px;
    margin: 0 auto;
}


.ext-header__logo a{
    color:#fff;
    text-decoration:none;
    font-size:42px;
    font-weight:300;
    letter-spacing:2px;
}

.ext-header__right {
    display: flex;
    gap: 59px;
}

.ext-menu{
    display:flex;
    gap:59px;
    list-style:none;
    margin:0;
    padding:0;
    align-items: center;
}

.ext-menu li a{
    color:#fff;
    text-decoration:none;
    letter-spacing:1px;
    position:relative;
    text-align: right;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    align-items: center;
    transition:  0.4s ease;;
}

.menu-item-has-children:hover > a::after{
    transform: rotate(180deg);
}

.ext-menu li a:hover,
.ext-header-inner.ext-fixed-menu .ext-menu li a:hover{
    color: #8E8E93;
    text-decoration: underline;
}

.ext-header-inner.ext-fixed-menu .ext-header__logo a:hover svg path,
.ext-header__logo a:hover svg path,
.ext-mobile-logo a:hover svg path {
    fill: #757575;
}
.ext-header-inner.ext-fixed-menu .ext-header__logo a:hover svg,
.ext-header__logo a:hover svg,
.ext-mobile-logo a:hover svg {
    scale: 1.03;
}

.ext-menu li {
    position: relative;
}

.ext-menu li ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: transparent;
    padding: 20px 0;
    min-width: 200px;
    display: none;
    flex-direction: column;
    gap: 15px;
    list-style: none;
    border-right: 8px;
}

.ext-menu li ul li a {
    color: #757575;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.ext-menu li:hover > ul {
    display: flex;
}
.menu-item-has-children > a::after {
    content: url("../../assets/images/menu-arrow.svg");
    font-size: 15px;
    margin-left: 7px;
}


/*header new */

.ext-header-inner.ext-fixed-menu {
    background: #F1F1F1;
    backdrop-filter: blur(0.5px);
}
.ext-header-inner.ext-fixed-menu .ext-header__logo svg path {
    fill: #000;
}
.ext-header-inner.ext-fixed-menu .ext-menu li a{
    color: #000;
}
.ext-header-inner.ext-fixed-menu .ext-menu li ul li  a{
    color: #757575;
}
.ext-header-inner.ext-fixed-menu .ext-menu li ul li  a:hover{
    color: #8E8E93;
    text-decoration: underline;
}
.ext-header-inner .trp-language-item:hover .trp-language-item-name{
    color: #8E8E93;
    text-decoration: underline;
}
.ext-header-inner .trp-language-item:hover{
    background-color: transparent;
}
.ext-header-inner.ext-fixed-menu .trp-language-item-name{
    color: #000;
}
.ext-header-inner .trp-current-language-item__wrapper:hover .trp-language-item-name{
    color: #8E8E93;
    text-decoration: underline;

}
.ext-header-inner .trp-current-language-item__wrapper svg path{
    stroke: #AEAEB2;
    font-size: 15px;

}
.ext-header-inner .trp-shortcode-overlay{
    cursor: pointer;

}
.ext-header-inner .trp-language-switcher.trp-shortcode-anchor {
    display: flex;
}

/*mobile header start*/

/* Hide mobile on desktop */
.ext-mobile-header{
    display:none;
}

/* MOBILE */

@media (max-width:998px){
    .ext-menu,
    .ext-header__right{
        gap: 20px;
    }
    .ext-header__logo{
        max-width: 170px;
    }
    .ext-header__logo svg{
        width: 100%;
    }
    .ext-menu li a{
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    .trp-current-language-item__wrapper .trp-flag-image,
    .trp-switcher-dropdown-list .trp-flag-image {
        display: none !important;
    }
    /* hide original text */
    .trp-switcher-dropdown-list .trp-language-item-name {
        display: none;
    }
    /* custom short codes */
    .trp-language-item[title="English"]::after {
        content: "EN";
    }
    .trp-language-item[title="Spanish"]::after {
        content: "ES";
    }
    /* style */
    .trp-language-item::after {
        font-size: 14px;
        color: #fff;
    }


    .ext-header-inner {
        padding: 34px 18.5px 35px 18.5px;
    }
    .ext-mobile-logo span svg {
        max-width: 115px;
        width: 100%;
        height: 34px;
    }
    .ext-site-header{
        display:none; /* hide desktop */
    }

    .ext-mobile-header{
        display:flex;
        justify-content:space-between;
        align-items:flex-end;
        width:100%;
    }

    .ext-mobile-header a,
    .ext-mobile-header span{
        color:#fff;
        text-decoration:none;
        font-size:17px;
         font-weight: 400;
    }
    .ext-header-inner.ext-fixed-menu .trp-language-item-name{
        color: #fff;
    }
    ul#menu-mobile-right.ext-mobile-menu-list li a {
        font-family: 'Lato', sans-serif;
        font-size: 17px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 1px;
        text-transform: none;
    }

}
.ext-mobile-header .ext-mobile-right span,
.ext-mobile-header .ext-mobile-left a{
    color: #8E8E93;
    text-decoration: underline;
}

.ext-header-inner.ext-fixed-menu .ext-mobile-header a,
.ext-header-inner.ext-fixed-menu .ext-mobile-header span{
    color:#000;
}
.ext-header-inner.ext-fixed-menu .ext-mobile-logo svg path {
    fill: #000;
}
/* OVERLAY */
.ext-mobile-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    background:#151515;
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    transform:translateY(-100%);
    transition: 0.4s ease;
    z-index:999;
}

.ext-mobile-overlay.active{
    transform:translateY(0);
}

.ext-mobile-overlay__top{
    position:absolute;
    top:20px;
    left:30px;
    right:30px;
    display:flex;
    justify-content:space-between;
    font-size:14px;
    align-items: center;
}
.ext-mobile-overlay__top .ext-mobile-right a{
    color: #FFF;
    font-size: 17px;
    font-weight: 400;
    line-height: normal;
}

.ext-mobile-overlay__menu{
    display:flex;
    flex-direction:column;
    gap:50px;
    text-align:center;
}

.ext-mobile-overlay__menu a{
    color:#fff;
    text-decoration:none;
    letter-spacing:2px;
    font-size:18px;
}

.ext-mobile-overlay__menu a:hover{
    opacity:0.7;
}

.ext-mobile-menu-list{
    list-style:none;
    padding:0;
    margin:0;
    display:flex;
    flex-direction:column;
    gap:50px;
    text-align:center;
}

.ext-mobile-menu-list li a{
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-family: 'Readex Pro' , sans-serif;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 5.4px;
    text-transform: uppercase;
}
.ext-mobile-close {
    width: 37px;
    height: 37px;
    display: flex;
    position: absolute;
    bottom: 68px;
}
/* remove desktop dropdown style */

/*.ext-mobile-menu-list li ul{*/
/*    display:none;*/
/*}*/


/*header end*/


/*section hero 1 start*/
.ext-hero{
    position: relative;
    height: 100vh;
    text-align:center;
    color:#fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.ext-hero__overlay{
    position:absolute;
    inset:0;
    /*background: linear-gradient(180deg, #070707, transparent);*/
    background: linear-gradient(0deg, rgba(80, 80, 80, 0) 0%, #070707 100%);
}
.ext-hero__content{
    position:relative;
    z-index:2;
}
.ext-hero__subtitle{
    color: #FFF;
    text-align: center;
    /*font-family: "Actay Wide", sans-serif;*/
    font-size: 21.047px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 4.209px;
    max-width: 650px;
    width: 100%;
}
.ext-hero__bottom{
    margin-top: 123px;
    color: #FFF;
    font-size: 21.047px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 4.209px;
}

.ext-hero__bottom svg {
    margin-right: 40px;
}
.ext-hero__bottom svg path {
    stroke: #fff;
}

/*popup start*/

.ext-newsletter-popup{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height: 100vh;
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

.ext-newsletter-popup.active{
    display:flex;
}
.ext-newsletter-popup.active .ext-form .ff-default form .ext-checkbox .ff-el-form-check.ff-el-form-check-.ff_item_selected label.ff-el-form-check-label:after{
    top: 8px;
}
.ext-popup-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
}
.ext-popup-content{
    position:relative;
    background:#fff;
    max-width:1466px;
    width: 100%;
    z-index:2;
    padding: 47px 56px 47px 91px;
    margin: 0 20px;
}
.ext-popup-content .ext-contact-us{
    margin: 0;
    text-align: left;
}
.ext-popup-content .ext-contact-img-title p{
    font-style: italic;
}
.ext-popup-content .ext-contact-us h2.ext-title-font{
    letter-spacing: 7px;
}
.ext-popup-content .ext-contact-us .ext-form__group label {
    height: 40px;
}
.ext-popup-close{
    border:none;
    background:none;
    cursor:pointer;
}

@media (max-width: 1200px) {
    .ext-popup-content{
        padding: 20px;
        margin: 100px 15px;
    }
}
@media (max-width: 998px) {
    .ext-popup-content .ext-contact-us .ext-form__group label {
        height: auto;
    }
    .ext-popup-content{
        padding: 3px 3px 13px 0 ;
        margin: 100px 15px;
        height: max-content;
    }
}
@media (max-width: 768px) {
    .ext-popup-content .ext-contact-us h2.ext-title-font {
        text-align: left;
        letter-spacing: 5.4px;
    }
    .ext-popup-content .ext-contact-img-title{
        gap: 15px;
    }
    .ext-contact-img-title img{
        max-height: 150px;
    }
    .ext-popup-content .ext-contact{
        gap: 13px;
    }
    .ext-popup-content .ext-form__group{
        margin-bottom: 11px;
    }
    .ext-popup-content .ext-form input{
        padding: 0;
    }
    .ext-popup-content .ext-radio__box {
        width: 12px;
        height: 12px;
    }
    .ext-popup-content .ext-radio input:checked + .ext-radio__box::after{
        width: 7px;
        height: 7px;
    }
    .ext-popup-content  .ext-checkbox__box{
        width: 10px;
        height: 10px;
    }
    .ext-popup-content  .ext-checkbox input:checked + .ext-checkbox__box::after {
        top: 1px;
        left: 1px;
        width: 5px;
        height: 5px;
}
    .ext-popup-content  .ext-checkbox__text{
        font-size: 10px;
        gap: 16px;
    }
    .ext-popup-content  .ext-form__checkbox{
        margin: 0 0 20px;
    }
    .ext-popup-content  .ext-btn{
        width: 170px;
    }
    .ext-popup-close svg{
        width: 26px;
    }
    .ext-newsletter-popup.active .ext-popup-content .ext-form .ff-default form label span a {
        font-size: 10px;
    }
    .ext-popup-content .ext-form .ff-default form .ext-checkbox .ff-el-input--content .ff-el-form-check.ff-el-form-check- label.ff-el-form-check-label {
        gap: 16px;
    }
    .ext-popup-content .ext-form .ff-default form .ext-checkbox .ff-el-form-check.ff-el-form-check- label.ff-el-form-check-label:before {
        max-width: 10px;
        height: 10px;
        margin-top: 0;
        width: 100%;
    }
    .ext-newsletter-popup.active .ext-popup-content .ext-form .ff-default form .ext-checkbox .ff-el-form-check.ff-el-form-check-.ff_item_selected label.ff-el-form-check-label:after {
        width: 6px;
        height: 6px;
        top: 2.6px;
        left: 2.6px;
    }
    .ext-popup-content .ext-form .ff-default form .ext-checkbox .ff-el-input--content .ff-el-form-check.ff-el-form-check- label.ff-el-form-check-label{
        align-items: start;
    }
    .ext-popup-content  .ff-el-input--content{
        width: 100%;
    }
    .ext-newsletter-popup.active .ext-popup-content .ext-form .ff-default form .ff-el-group.ff-el-form-left.ext-form__language.ff_list_2col label.ff-el-form-check-label:before {
        width: 12px;
        height: 12px;
    }
    .ext-newsletter-popup.active .ext-popup-content .ext-form .ff-default form .ff-el-form-check.ff-el-form-check-.ff_item_selected label.ff-el-form-check-label:after {
        width: 7px;
        height: 7px;
        top: 7px;
        left: 3.2px;
    }
    .ext-newsletter-popup.active .ext-popup-content {
        padding: 0;
    }
    .ext-newsletter-popup.active .ext-popup-content button.ext-popup-close{
        align-items: center;
    }
}
/*popup end*/

@media (max-width: 768px){
    h1.ext-hero__subtitle {
        font-size: 13.692px;
        letter-spacing: 2.738px;
        max-width: 250px;
        margin: 0 auto;
    }

    .ext-hero__bottom {
        margin-top: 64px;
        font-size: 13.692px;
        letter-spacing: 2.738px;
        gap: 40px;
    }

    .ext-hero__bottom svg {
        max-width: 40px;
    }
    button.ext-popup-close {
        display: flex;
        height: 23px;
    }
    .ext-popup-content .ext-contact-img-title img {
        max-height: 150px;
    }
    .ext-popup-content .ext-form .ff-default form label,
    .ext-popup-content .ext-form .ff-default form label span a {
        font-size: 14px;
    }
    .ext-popup-content .fluentform .ff-el-group {
        margin-bottom: 13px;
    }
    .ext-popup-content .ext-form .ff-default form input,
    .ext-popup-content .ext-form .ff-default form textarea{
        padding: 3px 0;
    }
    .ext-popup-content .ext-btn{
        margin: 20px 0;
    }
}
/*section hero 1 end*/

/*section hero 2 start*/
.ext-signature {
    padding: 120px 0;
    text-align: center;
}

.ext-container-inner{
    max-width: 1671px;
    position: relative;
    margin:  0 auto;
}
.ext-signature__title {
    margin-bottom: 55px;
    color: #000;
    text-align: center;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 7.5px;
}

.ext-product {
    text-align: center;
}
.swiper.ext-swiper {
    border-bottom: 1px solid #000;
    padding-bottom: 68px;
}
.ext-product__image img {
    min-height: 442px;
    max-height: 442px;
    object-fit: contain;
    margin-bottom: 40px;
    transition: 0.2s ease;
}
.ext-product:hover img{
    transform: scale(1.05);
}
.ext-product:hover .ext-product__name ,
.ext-product:hover .ext-product__price{
    padding: 0;
    color: #757575;
}

.ext-product__info {
    color: #1E1E1E;
    font-size: 22.5px;
    font-style: normal;
    font-weight: 400;
}
.ext-product__name {
    margin: 0;
    line-height: 140%;
    text-align: left;
}
.ext-product__price {
    margin-right: 40px;
    line-height: 140%;
}
.ext-product__brand {
    margin-top: 6px;
    text-align: left;
    color: #757575;
    font-size: 16px;
    line-height: 140%;
    text-transform: uppercase;
}
.ext-swiper-next ,
.ext-swiper-prev{
    right: 0;
    position: absolute;
    top: 40%;
    width: 11px;
    height: 22px;
    cursor: pointer;
    margin: 0 15px;
}
.ext-swiper-next svg,
.ext-swiper-prev svg{
    width: 100%;
}
.ext-swiper-prev {
    left: 0;
    right: unset;
}
@media(max-width: 768px){
    .ext-signature {
        padding: 110px 0 52px;
    }
    .ext-signature__title{
        margin-bottom: 20px;
    }
    .swiper.ext-swiper{
        padding: 10px 10px 40px;
    }
    .ext-signature .ext-container {
        padding: 0;
    }
    h2.ext-signature__title {
        color: #000;
        font-size: 18px;
        letter-spacing: 5.4px;
        max-width: 200px;
        margin: 0  auto;
    }
    .ext-product__info {
        font-size: 14.191px;
        line-height: 140%;
        gap: 3px;
    }

    .ext-product__price {
        font-size: 14.191px;
        font-weight: 600;
        line-height: 140%;
    }

    p.ext-product__brand {
        font-size: 8.917px;
        font-weight: 400;
    }

    .ext-product__info > div {
        flex: 1 0 0;
    }

    .ext-swiper-next, .ext-swiper-prev {
        display: none;
    }
    .ext-product__image img {
        min-height: 293px;
        max-height: 293px;
    }
}

/*section hero 2 end*/

/*section 3 start*/

.ext-destination {
    margin: 27px auto 147px;
}

.ext-destination-text h3 {
    color: #000;
    text-align: center;
    font-size: 25px;
    font-style: italic;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.25px;
    margin-bottom: 103px;
}

.ext-destination-text p {
    color: #000;
    text-align: justify;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.17px;
    max-width: 736px;
    margin: 0 auto 94px;
    width: 100%;
}

.ext-destination-text .ext-dest-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 90px;
}

.ext-destination-text img {
    width: 100%;
}
.ext-destination-text .ext-dest-img {
    display: flex;
    justify-content: center;
    max-width: 600px;
    width: 100%;
    margin: 0 auto 0 38%;
}

@media (max-width: 988px) {
    .ext-destination-text .ext-dest-img{
        margin: 0 0 0 auto;
    }
}
@media (max-width: 768px) {
    .ext-destination-text img {
        object-fit: cover;
        min-width: 571px;
    }
    .ext-destination-text .ext-dest-img {
        justify-content: left;
        min-height: 492px;
        overflow: hidden;
    }
    .ext-destination{
        padding: 0;
        margin-bottom: 71px;
    }
    .ext-destination-text h3 {
        font-size: 18px;
        letter-spacing: 0.18px;
        margin-bottom: 72px;
    }
    .ext-destination-text p {
        font-size: 14px;
        line-height: 18px;
        letter-spacing: 0.14px;
        margin-bottom: 66px;
        padding: 0 10px;
    }
    .ext-destination-text .ext-dest-icon {
        margin-bottom: 60px;
    }

    .ext-destination-text .ext-dest-icon svg {
        width: 33px;
        height: 54px;
    }
}
@media (max-width: 500px) {
    .ext-destination-text .ext-dest-img{
        margin: 0;
    }
}


/*section 3 end*/
/*section 4 start*/
.ext-brands {
    margin-bottom: 100px;
}
.ext-brand-info{
    max-width: 908px;
    width: 100%;
    margin: 0 auto;
}
.ext-brand-info h2{
    color: #000;
    text-align: center;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 7.5px;
}
.ext-brand-info p{
    color: #000;
    text-align: justify;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.17px;
}
.ext-brand-info a.ext-btn{
    border-radius: 3px;
    border: 1px solid #000;
    max-width: 201px;
    width: 100%;
    padding: 10px 40px;
    color:#1E1E1E;
    text-align: center;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.17px;
}
.ext-brand-info a.ext-btn:hover{
    color:#fff;
    background-color: #757575;
    border: 1px solid #757575;
}
.ext-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 368px;
    max-width: 320px;
    width: 100%;
    transition: 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.ext-brand img {
    max-height: 250px;
    object-fit: contain;
    height: auto;
    width: auto;
}
.ext-brand-hover {
    position: absolute;
    min-height: 368px;
    max-width: 320px;
    width: 100%;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.ext-brand-img-ab {
    min-height: 368px;
    max-width: 320px;
    width: 100%;
    position: relative;
}
.ext-brand-img-ab img {
    height: 100%;
    min-height: 368px;
    max-width: 320px;
    width: 100%;
    object-fit: cover;
}
.ext-brand-link {
    position: absolute;
    top: 30px;
    width: 100%;
    padding: 0 15px;
}
.ext-brand-img-ab{
    display: block;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.ext-brand-img-ab a{
    color: #000;
    font-size: 17px;
    font-weight: 400;
    line-height: normal;
    transition: 0.3s ease;
}
.ext-brand-img-ab a:hover{
    color: #757575;
    text-underline: #757575;
    text-decoration: underline;
}
/* hover */
.ext-brand:hover .ext-brand-hover {
    opacity: 1;
}

.ext-brand:hover .ext-brand-img-ab {
    opacity: 1;
    transform: translateY(0);
}
.ext-brand img.brand-logo {
    transition: opacity 0.3s ease;
}
.ext-brand:hover img.brand-logo {
    opacity: 0;
}
.ext-brand-slider {
    position: relative;
}
.ext-brands-next ,
.ext-brands-prev{
    right: 0;
    position: absolute;
    top: 40%;
    width: 11px;
    height: 22px;
    cursor: pointer;
    margin: 0 15px;
}
.ext-brands-next svg,
.ext-brands-prev svg{
    width: 100%;
}
.ext-brands-prev {
    left: 0;
    right: unset;
}

@media (max-width: 768px) {
    .ext-brand-info  {
        gap: 0;
    }
    .ext-brand-info h2 {
        font-size: 18px;
        letter-spacing: 5.4px;
        margin-bottom: 63px;
    }
    .ext-brand-info a.ext-btn {
        margin: 24px 0;
    }
    .ext-brand-info .ext-f-d-column-mob {
        gap: 29px;
    }
    .ext-brands-next, .ext-brands-prev{
        display: none;
    }
    .ext-brand {
        min-height: 305px;
        max-width: 340px;
    }
    /*.ext-brand img {*/
    /*    max-height: 83px;*/
    /*}*/
    .ext-brand-hover {
        min-height: 305px;
        max-width: 255px;
        margin: 0 auto;
    }
    .ext-brand-info p {
        font-size: 14px;
        line-height: 18px;
        letter-spacing: 0.14px;
    }
}

/*section 4 end*/
/*section 5 start*/

.ext-section-info{
    margin:  100px 0;
}
.ext-section-info-img{
    gap: 121px;
}
.ext-images-text{
    max-width: 414px;
    width: 100%;
}
.ext-image-info{
    max-width: 881px;
    width: 100%;
}
.ext-banner-images{
    margin: 170px 0 70px;
}
.ext-mobile-active{
    display: none;
}
@media (max-width: 768px) {
    .ext-section-info-img {
        gap: 53px;
        padding: 0 0 0 10px;
    }

    .ext-images-text {
        order: 2;
        max-width: 255px;
        width: 100%;
        margin: 0 auto;
    }
    .ext-images-text img {
        order: 2;
    }
    .ext-images-text .ext-info-text {
        order: 1;
        font-size: 14px;
        line-height: 18px;
        letter-spacing: 0.14px;
        text-align: justify;
    }
    .ext-image-info {
        order: 1;
    }
    .ext-mobile-active{
        display: block;

    }
    .ext-mobile-active ul li a{
        text-transform: uppercase;

    }
    .ext-desktop-active{
        display: none;
    }
}


/*section 5 end*/
/*section 6 start*/
.ext-find-us{
    padding-bottom: 140px;
    margin-bottom: 94px;
    border-bottom: 1px solid #000;
}
.ext-find-us-gap{
    gap: 108px;
}
.ext-find-us-gap{
    gap: 108px;
}
.ext-find-us-gap p{
    color: #000;
    text-align: justify;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.17px;
    max-width: 358px;
    width: 100%;
}
.ext-find-us-img-info{
    gap: 141px;
}
.ext-find-us-img-info p.lato-regular-italic{
    color: #000;
    font-size: 17px;
    font-style: italic;
    font-weight: 400;
    line-height: 26px;
    max-width: 221px;
    width: 100%;
}
.ext-find-us-title{
    gap: 111px;
    max-width: 393px;
    width: 100%;
}
.ext-find-us-title h2{
    color: #000;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 7.5px;
    max-width: 210px;
    width: 100%;
}
.ext-find-us-info{
    gap: 143px;
    max-width: 360px;
    width: 100%;
}
@media (max-width: 988px) {
    .ext-find-us-gap {
        gap: 30px;
    }
    .ext-find-us-img-info {
        gap: 30px;
    }
    .ext-find-us-title {
        gap: 50px;
        max-width: 230px;
    }
    .ext-find-us-info {
        gap: 50px;
    }
}
@media (max-width: 768px) {
    .ext-find-us-gap {
        gap: 60px;
    }
    .ext-find-us {
        padding: 0 24px 140px;
    }
    .ext-find-us-title {
        gap: 63px;
    }
    .ext-find-us-title h2 {
        text-align: center;
        font-size: 18px;
        line-height: 22px;
        letter-spacing: 5.4px;
        max-width: 155px;
        margin: 0 auto;
    }
    .ext-find-us-gap p {
        margin: 0 auto;
        font-size: 14px;
        line-height: 18px;
        letter-spacing: 0.14px;
    }
    .ext-find-us-img-info {
        gap: 60px;
        align-items: flex-start;
    }
    .ext-find-us-info {
        gap: 54px;
    }
    .ext-find-us-img-info p.lato-regular-italic {
        font-size: 18px;
        line-height: 22px;
        letter-spacing: 0.18px;
        text-align: left;
        margin: 0;
    }
}

/*section 6 end*/
/*section 7 contact  start*/
.ext-contact-us{
    margin: 100px auto 145px;
}
.ext-contact{
    max-width: 1295px;
    width: 100%;
    margin: 0 auto;
    gap: 20px;
}
.ext-contact-img-title{
    max-width: 563px;
    width: 100%;
}
.ext-contact-img-title h2{
    color: #141414;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 7.5px;
}
.ext-contact-img-title p{
    color: #141414;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.17px;
    max-width: 408px;
    width: 100%;
}
.ext-contact-form{
    max-width: 530px;
    width: 100%;
}

.ext-form__group {
    margin-bottom: 23px;
    display: flex;
    flex-direction: column;
}
.ext-form label {
    color:  #939393;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.17px;
}

.ext-form input,
.ext-form textarea {
    border: none;
    border-bottom: 1px solid #000;
    padding: 8.5px 0;
    background: transparent;
    outline: none;
    color:  #141414;
    font-size: 17px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.17px;
}

.ext-form textarea {
    resize: none;
}


.ext-form .ff-default form label,
.ext-form .ff-default form label span a{
    color:  #939393;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.17px;
    position: relative;
}
.ext-form .ff-default form label span a {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.14px;
}
.ext-form .ff-default form input,
.ext-form .ff-default form textarea {
    border: none;
    border-bottom: 1px solid #000;
    padding: 8.5px 0;
    background: transparent;
    outline: none;
    color:  #141414;
    font-size: 17px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.17px;
    border-radius: 0;
    transition: none;
}

.ext-form .ff-default form textarea {
    resize: none;
}
.ext-form .fluentform .ff-el-input--label.ff-el-is-required.asterisk-right label:after{
    color: #484848;
    margin: 0;
}
.ext-form .ff-default .ff-el-form-control:focus{
    background-color: transparent;
    border-color: unset;
    color: unset;
}
.ext-form .ff-default form  .ff-el-group.ff-el-form-left.ext-form__language.ff_list_2col   label input {
    display: none;
}
.ext-form .ff-default form  .ff-el-group.ff-el-form-left.ext-form__language.ff_list_2col   label.ff-el-form-check-label:before {
    width: 18px;
    content: "";
    height: 18px;
    border: 1px solid #939393;
    display: inline-block;
    position: relative;
}
.ext-form .ff-default form .ff-el-form-check.ff-el-form-check-.ff_item_selected label.ff-el-form-check-label:after {
    content: "";
    position: absolute;
    top: 5px;
    left: 4px;
    width: 12px;
    height: 12px;
    background: #484848;
    z-index: 99;
}
.ext-form .ff-default form .ext-form__language .ff-el-input--content {
    margin: 0;
    display: flex;
    width: 100%;
    gap: 26px;
}
.ext-form .ff-default form .ext-form__language .ff-el-input--content .ff-el-form-check.ff-el-form-check- {
    width: max-content;
    padding: 0;
    display: flex;
    align-items: center;
}
.ext-form .ff-default form .ext-form__language {
    display: flex;
    align-items: center;
    gap: 0;
}
.ext-form .ff-default form .ext-form__language .ff-el-input--label{
    max-width: 115px;
    width: 100%;
    padding: 0 26px 0 0;
}

.ext-form .ff-default form .ext-form__language .ff-el-form-check.ff-el-form-check- label.ff-el-form-check-label {
    display: flex;
    gap: 26px;
    align-items: center;
    margin: 0;
}


.ext-form__language .ext-radio {
    display: flex;
    gap: 26px;
    align-items: center;
    cursor: pointer;
}

.ext-form__checkbox {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 19px 0 37px;

}

/* Hide default input */
.ext-radio input {
    display: none;
}



.ext-radio__box {
    width: 18px;
    height: 18px;
    border: 1px solid #000;
    display: inline-block;
    position: relative;
}
.ext-radio__text {
    color:  #141414;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.17px;
}
.ext-radio input:checked + .ext-radio__box::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    background: #000;
}


/* Hide default input */
.ext-radio input {
    display: none;
}

.ext-radio__box {
    width: 20px;
    height: 20px;
    border: 1px solid #939393;
    display: inline-block;
    position: relative;
}

.ext-radio input:checked + .ext-radio__box::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 12px;
    height: 12px;
    background: #484848;
}

.ext-radio-group {
    display: flex;
    gap: 26px;
}

/* new*/

.ext-checkbox {
    display: flex;
    align-items: center;
    gap: 28px;
    cursor: pointer;
}
.ext-form .ff-default form .ext-checkbox{
    gap: 0;
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0;
}
.ext-form .ff-default form .ext-checkbox .ff-el-input--content .ff-el-form-check.ff-el-form-check- label.ff-el-form-check-label {
    display: flex;
    align-items: center;
    gap: 26px;
    position: relative;
}
.ext-checkbox input {
    display: none;
}

.ext-form__language {
    display: flex;
    align-items: center;
    gap: 26px;
}
.ext-form .ff-default form .ext-checkbox  .ff-el-form-check.ff-el-form-check-  label input {
    display: none;
}

.ext-form .ff-default form  .ext-checkbox .ff-el-form-check.ff-el-form-check-  label.ff-el-form-check-label:before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 1px solid #939393;
    position: relative;
    margin-top: 3px;
}
.ext-form .ff-default form .ext-checkbox .ff-el-form-check.ff-el-form-check-.ff_item_selected label.ff-el-form-check-label:after {
    z-index: 99;
    content: "";
    position: absolute;
    top: 9px;
    left: 4px;
    width: 8px;
    height: 8px;
    /*border: solid #939393;*/
    background: #484848;
    /*border-width: 0 2px 2px 0;*/
    /*transform: rotate(45deg);*/
}

.ext-checkbox__box {
    width: 16px;
    height: 16px;
    border: 1px solid #939393;
    position: relative;
    margin-top: 3px;
}

.ext-checkbox input:checked + .ext-checkbox__box::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 8px;
    height: 8px;
    /*border: solid #939393;*/
    background: #484848;
    /*border-width: 0 2px 2px 0;*/
    /*transform: rotate(45deg);*/
}

.ext-checkbox__text {
    color:  #939393;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.14px;
}

.ext-btn {
    padding: 10px 40px;
    border: 1px solid #000;
    background: transparent;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 3px;
    max-width: 200px ;
    width: 100%;
    margin: 37px 0;
}

.ext-btn:hover {
    background: #757575;
    color: #fff;
    border: 1px solid #757575;
}

@media (max-width: 768px) {
    .ext-contact-img-title h2 {
        text-align: center;
        font-size: 18px;
        line-height: normal;
        letter-spacing: 5.4px;
    }

    .ext-contact-img-title p {
        text-align: justify;
        font-size: 14px;
        line-height: 18px;
        letter-spacing: 0.14px;
        margin: 0 auto;
    }
    .ext-contact-img-title img {
        max-height: 200px;
        object-fit: cover;
    }
    .ext-contact {
        gap: 20px;
        align-items: center;
    }
    .ext-form label {
        font-size: 14px;
    }
    .ext-form input, .ext-form textarea {
        font-size: 14px;
    }
    .ext-form__checkbox {
        margin: 20px 0;
    }
}

/*section 7 contact  end*/
/*footer start*/
.ext-footer{
    padding: 93px 16px;
    border-top: 1px solid #AEAEB2;
}

.ext-footer-info{
    max-width: 737px;
    width: 100%;
}
.ext-footer-loc{
    max-width: 400px;
    width: 100%;
}
.ext-footer-logo{
    max-width: 460px;
    width: 100%;
    margin-right: 10px;
}
.ext-footer-info {
    gap: 10px;
}
.ext-footer-info h4{
    color: #000;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 20px;
}
.ext-footer-info ul{
    list-style: none;
}
.ext-footer-loc p,
.ext-footer-info ul li a{
    color: #000;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}
.ext-footer-bottom {
    margin-bottom: 85px;
}
.ext-footer-bottom a,
.ext-footer-bottom p,
.ext-footer-bottom ul li a{
    color: #757575;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.ext-footer-loc div{
    max-width: 170px;
    width: 100%;
}

.ext-footer-loc ul li{
    max-width: 170px;
    width: 100%;
}
.ext-footer-logo span svg {
    width: 68px;
    height: 111px;
}

@media (max-width: 1024px) {
    .ext-footer-logo a {
        gap: 20px;
    }
}
@media (max-width: 998px) {
    .ext-footer-logo {
        max-width: 260px;
    }
    .ext-footer-logo a span svg {
        width: 60px;
    }

}
@media (max-width: 768px) {
    .ext-footer {
        padding: 70px 20px 46px;
    }
    .ext-footer-logo {
        max-width: 460px;
    }
    .ext-footer-logo span svg {
        width: 51px;
    }
    .ext-footer-logo a {
        gap: 50px;
    }
    .ext-footer-logo {
        margin-bottom: 60px;
    }
    .ext-footer-bottom{
        display: none;
    }
    .ext-footer-info {
        gap: 48px;
    }
    .ext-footer-loc {
        order: 1;
        max-width: 100%;
        justify-content: space-between;
    }
    .ext-footer-contact {
        order: 2;
        justify-content: space-between;
    }
    .ext-footer-info{
        max-width: 500px;
    }
    .ext-footer-info h4 {
        font-size: 14px;
    }
    .ext-footer-loc p, .ext-footer-info ul li a {
        font-size: 14px;
        line-height: 18px;
        letter-spacing: 0.14px;
    }
    .ext-footer-contact div{
        max-width: 170px;
        width: 100%;
    }
}
/*footer end*/




/*Curated Collection section hero start*/

.ext-curated-collection .ext-hero__content {
    max-width: 234px;
    width: 100%;
}
.ext-curated-collection .ext-hero__content h1.ext-hero__subtitle {
    font-size: 25px;
    font-style: italic;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0.25px;
}

@media (max-width: 768px) {
    .ext-curated-collection .ext-hero__content h1.ext-hero__subtitle {
        font-size: 18px;
        max-width: 169px;
        line-height: 22px;
        letter-spacing: 0.18px;
    }

}


/*Curated Collection section hero end*/
/*Curated Collection section Olfactory start*/
.ext-curated-collection-olfactory {
    margin: 200px 0;
}

.ext-olfactory-block-one,
.ext-olfactory-block-two,
.ext-olfactory-block-three,
.ext-olfactory-block-four,
.ext-olfactory-block-five,
.ext-olfactory-block-six,
.ext-olfactory-block-seven{
    padding-bottom: 72px;
    border-bottom: 1px solid #AEAEB2;
}
.ext-olfactory-block-one .ext-olfactory-block-images img{
    width: 50%;
}
.ext-olfactory-block-one .ext-brand-info h2{
   margin-bottom: 43px;
}
.ext-curated-collection-olfactory .ext-brand-info{
    max-width: 1098px;
}
.ext-curated-collection-olfactory .ext-title-font {
    text-transform: uppercase;
}
.ext-curated-collection-olfactory p{
    width: 100%;
    color: #000;
    text-align: justify;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 129.412% */
    letter-spacing: 0.17px;
}
.ext-olfactory-block-one .ext-brand-info a.ext-btn{
    max-width: 256px;
}
.ext-curated-collection-olfactory .ext-brand-info a.ext-btn{
    padding: 10px 26px;
}
.ext-olfactory-block-two{
    max-width: 1422px;
    width: 100%;
}
.ext-olfactory-block-two .ext-olfactory-block-images,
.ext-olfactory-block-six .ext-olfactory-block-images{
    order: 1;
}
.ext-olfactory-block-two .ext-brand-info,
.ext-olfactory-block-six .ext-brand-info{
    order: 2;
    max-width: 560px;
    width: 100%;
}
.ext-olfactory-block-four .ext-brand-info{
    max-width: 560px;
    width: 100%;
}
@media (max-width: 768px) {
    .ext-curated-collection-olfactory {
        margin: 130px 0 52px;
    }
    .ext-olfactory-block-one, .ext-olfactory-block-two, .ext-olfactory-block-three, .ext-olfactory-block-four, .ext-olfactory-block-five, .ext-olfactory-block-six, .ext-olfactory-block-seven {
        gap: 50px;
        padding-bottom: 0;
        border-bottom: unset;
    }

    .ext-olfactory-block-one .ext-brand-info h2 {
        margin-bottom: 50px;
    }
    .ext-curated-collection-olfactory .ext-brand-info a.ext-btn {
        margin: 50px 0 0;
        max-width: 188px;
        font-size: 15.9px;
        line-height: 20.577px;
        letter-spacing: 0.159px;
        padding: 10px;
    }
    .ext-curated-collection-olfactory .ext-d-flex.ext-gap-30.ext-j-c-center.ext-f-d-column-mob {
        gap: 14px;
    }
    .ext-curated-collection-olfactory p {
        font-size: 14px;
        line-height: 18px;
        letter-spacing: 0.14px;
    }
    .ext-curated-collection-olfactory .ext-container {
        padding: 0;
    }
    .ext-curated-collection-olfactory .ext-brand-info {
        padding: 0 20px;
        align-items: center;
    }
    .ext-olfactory-block-images {
        position: relative;
        min-height: 575px;
        width: 100%;
        height: 100%;
    }
    .ext-olfactory-block-images img{
        object-fit: cover;
    }
    .ext-olfactory-block-one .ext-olfactory-block-images  img.ext-block-img-one {
        position: absolute;
        transform: translate(50%, 80%);
        z-index: 9;
    }
    .ext-olfactory-block-one .ext-olfactory-block-images img.ext-block-img-two {
        width: 100%;
        position: relative;
    }
    .ext-olfactory-block-one .ext-olfactory-block-images img{
        object-fit: cover;
    }
    .ext-olfactory-block-two .ext-olfactory-block-images,
    .ext-olfactory-block-six .ext-olfactory-block-images{
        order: 2;
    }
    .page-template-curated-collection .ext-brands {
        margin-bottom: 0;
    }
}
/*Curated Collection section Olfactory end*/

/*brands page section dest start*/
.ext-destination.ext-brands-destination {
    margin: 128px auto 117px;
}

.ext-destination.ext-brands-destination h2.ext-signature__title {
    margin-bottom: 63px;
}

.ext-destination.ext-brands-destination .ext-destination-text p {
    margin: 0 auto 128px;
}

.ext-destination.ext-brands-destination  .ext-dest-img {
    margin: 0 auto;
    max-width: 1032px;
}


/*brands page section dest end*/
/*brands page section eauParfum start*/
.ext-destination.ext-brands-eauParfum {
    margin: 0 auto 150px;
}

.ext-destination.ext-brands-eauParfum h2.ext-signature__title {
    margin-bottom: 69px;
}

.ext-destination.ext-brands-eauParfum .ext-destination-text p {
    margin: 0 auto 86px;
    text-align: center;
    max-width: 580px;
    color: #1E1E1E;
}

.ext-destination.ext-brands-eauParfum .ext-dest-img {
    margin: 0 auto;
    max-width: 1687px;
    padding-bottom: 86px;
    border-bottom: 1px solid #AEAEB2;
}

/*brands page section dest end*/
/*brands page section elixir start*/
.ext-destination.ext-brands-elixir {
    margin: 0 auto 20px;
}
.ext-destination.ext-brands-elixir h2.ext-signature__title {
    margin-bottom: 50px;
}
.ext-destination.ext-brands-elixir .ext-destination-text h3 {
    margin-bottom: 85px;
}
.ext-destination.ext-brands-elixir .ext-destination-text p {
    margin: 0 auto;
    text-align: center;
    max-width: 580px;
    color: #1E1E1E;
}
.ext-destination.ext-brands-elixir .ext-dest-img {
    margin: 0 auto;
    max-width: 1856px;
}

/*slider related*/

.ext-signature.ext-max-width.ext-related-products .swiper.ext-swiper {
    border-bottom: none;
}
@media (max-width: 768px){
    .ext-destination.ext-brands-destination {
        margin: 80px auto 127px;
    }
    .ext-destination.ext-brands-destination .ext-destination-text h3 {
        margin-bottom: 50px;
    }
    .ext-destination.ext-brands-eauParfum .ext-destination-text p {
        margin: 0 auto 35px;
        text-align: justify;
    }
    .ext-destination.ext-brands-eauParfum h2.ext-signature__title {
        max-width: 100%;
        margin-bottom: 63px;
    }
    .ext-destination.ext-brands-eauParfum .ext-dest-img {
        padding-bottom: 18px;
        overflow-x: auto;
        margin: 0;
    }
    .ext-destination.ext-brands-eauParfum {
        margin: 0 auto 120px;
    }
    .ext-destination.ext-brands-elixir .ext-dest-img{
        overflow: auto;
    }
    .ext-destination.ext-brands-elixir .ext-destination-text p{
        text-align: justify;
    }
    .ext-dest-img img {
        height: auto;
        width: 1600px;
        max-width: none;
    }
    .ext-brands-paralax-img.ext-max-width img {
        min-height: 608px;
        object-fit: cover;
    }
    .ext-signature.ext-max-width.ext-related-products h2.ext-signature__title {
        max-width: 100%;
    }
}
/*brands page section elixir end*/

/*nicke brands page start*/
.ext-brands.ext-brand-page {
    margin-top: 150px;
}
.ext-brands.ext-brand-page .ext-brand-info{
    max-width: 1114px;
    margin-bottom: 50px;
}
@media (max-width: 768px){

}
/*nicke brands page end*/

/* about page start*/

.ext-container.ext-destination.ext-discover {
    margin: 195px auto 150px;
}
.ext-container.ext-destination.ext-discover .ext-destination-text{
    max-width: 1114px;
    margin: 0 auto;
}
.ext-container.ext-destination.ext-discover .ext-destination-text .ext-dest-icon{
    margin-bottom: 131px;
}
.ext-container.ext-destination.ext-discover .ext-signature__title{
    margin-bottom: 103px;
}
.ext-about-olfactory p.lato-regular-itali c {
    font-style: italic;
    max-width: 221px;
    width: 100%;
}
@media (max-width: 768px) {
    .page-template-about .ext-hero {
        background-position: 34% center;
    }
    .page-template-about .ext-hero {
        background-position: 34% center;
    }
    .ext-container.ext-destination.ext-discover {
        margin: 80px auto 53px;
    }
    .page-template-about .ext-container.ext-destination.ext-discover .ext-signature__title {
        margin-bottom: 63px;
        max-width: 100%;
    }
    .page-template-about .ext-container.ext-destination.ext-discover .ext-destination-text .ext-dest-icon {
        margin-bottom: 63px;
    }
    .page-template-about .ext-destination-text .ext-d-flex.ext-gap-30 p {
        margin-bottom: 30px;
    }
    .ext-brands-paralax-img.ext-max-width img {
        min-height: 406px;
        object-fit: cover;
    }
    .ext-curated-collection-olfactory.ext-about-olfactory h2.ext-title-font {
        margin-bottom: 50px;
    }
    .ext-curated-collection-olfactory.ext-about-olfactory .ext-brand-info {
        align-items: flex-start;
    }
}
/* about page end*/



/*shop page start*/

.ext-site-bar {
    max-width: 310px;
    width: 100%;
    position: sticky;
    top: 169px;
    height: 60vh;
}

.ext-product-list ul.products {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.ext-shop-custom {
    margin-top: 169px;
}
.woocommerce .ext-product-list .products li.product {
    max-width: 250px;
    width: 100%;
    min-height: 442px;
    margin: 0;
}
.woocommerce .ext-product-list li.product .ext-product__brand{
    font-size: 16px;
}
.woocommerce .ext-product-list li.product .ext-product__name,
.woocommerce .ext-product-list li.product .ext-product__price{
    padding: 0;
    margin: 0;
    font-size: 20px;
}
.woocommerce .ext-product-list li.product .ext-product__price .price{
    margin-right: 26px;
    line-height: 140%;
    color: #1E1E1E;
    font-size: 24px;
    font-weight: 600;
}
.ext-product-list li.product:hover img{
    transform: scale(1.05);
}
.woocommerce li.product:hover img{
    transform: scale(1.05);
}
.ext-product-list li.product:hover .ext-product__name,
.ext-product-list li.product:hover .ext-product__price .price{
    padding: 0;
    color: #757575;
}

.ext-site-bar .inspired {
    border-top: 1px solid #757575;
    padding-top: 44px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}
.ext-site-bar ul#inspired-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ext-site-bar .term-menu li a {
    color: #757575;
    font-size: 17px;
    font-weight: 400;
    line-height: normal;
}
.ext-site-bar .inspired p {
    color: #000;
    font-size: 17px;
    font-weight: 400;
    line-height: normal;
}
.ext-site-bar   p.subtitle {
    color: #2C2C2C;
    font-size: 10px;
    font-weight: 700;
    line-height: normal;
}
.ext-site-bar div#chip-container p.subtitle {
    margin: 40px  0 12px;
}
div#chip-container span.ext-keyword{
    display: inline-flex;
    padding: 8px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    background: #F5F5F5;
    color: #1E1E1E;
    line-height: 100%;
}
nav.woocommerce-pagination {
    margin: 72px 0 200px;
}
.ext-site-bar input#keyword-input {
    border-radius: 12748.724px;
    border: 1.275px solid #D9D9D9;
    background: #ffffff;
    max-width: 263px;
    width: 100%;
    height: 33px;
    padding: 7px 20px;
    font-size: 20.4px;
    position: relative;
}
/*input#keyword-input:before{*/
/*    content: url("../images/Search.png");*/
/*}*/
.ext-site-bar button#keyword-submit {
    position: absolute;
    right: 20%;
    background: transparent;
    outline: none;
    border: none;
    top: 5px;
    width: 20px;
    height: 20px;
    display: flex;
    cursor: pointer;
}
.ext-site-bar form#keyword-form {
    position: relative;
    margin-top: 29px;
}

div#chip-container span.ext-keyword button.chip-remove {
    width: 16px;
    height: 16px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.custom-filter-bar {
    display: flex;
    gap: 62px;
}

.ext-product-filters a.filter-pill {
    border-radius: 66px;
    border: 1px solid #1E1E1E;
    display: flex;
    max-width: 72px;
    justify-content: center;
    align-items: center;
    height: 24px;
    width: 100%;
    color: #000;
    font-size: 17px;
}
.ext-product-filters {
    padding: 29px  0 49px;
    position: sticky;
    top: 169px;
    z-index: 999;
    background: #F1F1F1;
}

.dropdown-content input[type="checkbox"] {
    display: none;
}

.price-filter input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 16px;
    height: 16px;
    border: 1px solid #757575;
    border-radius: 2px;
    position: relative;
}
.checkmark::after {
    content: "";
    position: absolute;
    display: none;
}

.dropdown-content input:checked + .checkmark {
    background-color: transparent;
}
.dropdown-content  input:checked + .checkmark::after {
    display: block;
}
.price-filter  input:checked + .checkmark::after {
    display: block;
}
.checkmark::after {
    left: 4px;
    top: 0;
    width: 6px;
    height: 9px;
    border: solid #1E1E1E;
    border-width: 0 1.6px 1.6px 0;
    transform: rotate(45deg);
}
.dropdown {
    position: relative;
    width: max-content;
}

.dropdown-btn {
    width: 100%;
    text-align: left;
    cursor: pointer;
    border: none;
    font-size: 17px;
    color: #000;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: transparent;
    border: none;
    width: max-content;
    max-height: 200px;
    overflow-y: auto;
    z-index: 99;
}

.dropdown:hover .dropdown-content {
    display: block;
}
.dropdown:hover span.arrow {
    transform: rotate(180deg);
    display: inline-block;
}

.dropdown-content label {
    display: flex;
    margin: 8px 0;
    gap: 15px;
    color: #757575;
    font-size: 17px;
    align-items: center;
}




.price-filter {
    position: relative;
    width: max-content;
}
.price-filter:hover .price-menu{
    display: block;
}

.price-filter:hover span.arrow {
    transform: rotate(180deg);
    display: inline-block;
}
.price-toggle {
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 17px;
}
.price-menu {
    display: none;
    position: absolute;
    width: max-content;
    background: transparent;
    border:none;
    z-index: 9999;
}
.price-menu label {
    display: flex;
    cursor: pointer;
    margin: 8px 0;
    gap: 15px;
    color: #757575;
    font-size: 17px;
    align-items: center;
}
.price-menu input {
    margin-right: 8px;
}
.price-filter.active .price-menu {
    display: block;
}
/*pagination*/
.woocommerce .ext-product-list  nav.woocommerce-pagination ul{
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.woocommerce .ext-product-list nav.woocommerce-pagination ul li{
    border-right: none;
}
.woocommerce .ext-product-list nav.woocommerce-pagination ul li a:focus,
.woocommerce .ext-product-list nav.woocommerce-pagination ul li a:hover,
.woocommerce .ext-product-list nav.woocommerce-pagination ul li span.current{
    background: transparent;
    color: #1E1E1E;
    font-size: 16.316px;
    font-style: normal;
    font-weight: 700;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-underline-offset: auto;
    padding: 0;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span{
    font-size: 16.316px;
    color: #B3B3B3;
    font-style: normal;
    font-weight: 400;
    padding: 0;
}
.ext-product-list  a.prev.page-numbers {
    content: url("../images/prev_icon.png");
    height: 12px;
    min-width: 6px;
}
.ext-product-list  a.next.page-numbers {
    content: url("../images/next_icon.png");
    height: 12px;
    min-width: 6px;
}

.ext-product-list span.arrow {
    transition: all 0.3s ease;
}

.ext-product-list {
    width: 100%;
    max-width: 1113px;
}

@media(max-width: 1200px){
    .ext-shop-custom{
        gap: 20px;
    }
    .ext-site-bar{
        max-width: 250px;
    }
    .ext-site-bar button#keyword-submit{
        right: 5%;
    }

}
@media(max-width: 1100px){
    .custom-filter-bar{
        gap: 30px;
    }
    .ext-product-list ul.products{
        gap: 20px;
    }

}
@media(max-width: 998px){
    .ext-site-bar {
        max-width: 200px;
    }
    .custom-filter-bar {
        gap: 20px;
    }

}
@media(max-width: 820px){
    .custom-filter-bar {
        gap: 10px;
    }

}
@media(max-width: 768px){
    .custom-filter-bar {
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 28px;
    }
    .ext-shop-custom {
        margin-top: 55px;
        flex-direction: column;
    }
    .ext-site-bar{
        margin:  0 auto;
    }
    .ext-site-bar,
    .ext-product-filters{
        max-width: 402px;
        padding: 0;
        position: unset;
        height: auto;
        z-index: 1;
    }
    .ext-product-filters.ext-d-none {
        display: block;
    }
    .ext-product-filters.ext-d-none-mob{
        display: none;
    }
    .ext-site-bar input#keyword-input{
        max-width: 402px;
    }
    .ext-site-bar .inspired{
        max-width: 165px;
        width: 100%;
        border: none;
        padding: 0;
    }
    .dropdown-content,
    .price-menu{
        position: unset;
    }
    .price-filter:hover span.arrow,
    .dropdown:hover span.arrow{
        transform: unset;
    }
    .dropdown:hover .dropdown-content{
        display: none;
    }

    .dropdown-content {
        display: none;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown .arrow {
        transition: transform 0.3s ease;
    }

    .dropdown.active span.arrow {
        transform: rotate(180deg);
    }

    .price-filter:hover .price-menu{
        display: none;
    }

    .price-menu {
        display: none;
    }

    .price-filter.active .price-menu {
        display: block;
    }

    .price-filter .arrow {
        transition: transform 0.3s ease;
    }

    .price-filter.active span.arrow {
        transform: rotate(180deg);
    }
    .woocommerce .ext-product-list ul.products[class*=columns-] li.product,
    .woocommerce-page .ext-product-list ul.products[class*=columns-] li.product{
        width: 90%;
    }
    .ext-filter-mob-btn.ext-d-none{
        width: 117px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border: none;
        color: #000;
        font-size: 17px;
    }

    .ext-site-bar-mob.active .ext-site-bar {
        display: flex;
    }

    .ext-site-bar-mob .arrow {
        transition: transform 0.3s ease;
        display: inline-block;
    }

    .ext-site-bar-mob.active .ext-filter-mob-btn.ext-d-none span.arrow {
        transform: rotate(180deg);
    }
    .ext-site-bar-mob {
        max-width: 450px;
        margin: 0 auto;
        width: 100%;
    }

}
/*shop page end*/
/*single page start*/

/*nav.woocommerce-breadcrumb {*/
/*    display: none;*/
/*}*/
.content-area{
    margin-top: 169px;
}
 .woocommerce .content-area div.product{
     display: flex;
     flex-direction: column;
 }
.ext-product-img-and-desk {
    display: flex;
    justify-content: space-between;
    gap: 114px;
}
.woocommerce div.product .ext-product-img-and-desk div.images {
    max-width: 1045px;
    width: 100%;
    margin-bottom: 60px;
}
.woocommerce div.product .ext-product-img-and-desk div.summary {
    position: sticky;
    top: 200px;
    height: calc(100vh - 200px);
    max-width: 561px;
    width: 100%;
    margin: 0 auto 0 0;
}
.woocommerce-product-gallery__wrapper.ext-product-gallery {
    display: flex;
    flex-direction: column;
    position: relative;
}
.woocommerce-product-gallery__wrapper.ext-product-gallery .ext-single-product-prev {
    position: absolute;
    top: 51px;
    left: 74px;
}
.woocommerce div.product div.images .ext-product-gallery .woocommerce-product-gallery__image:nth-child(n+2){
    width: 100%;
}
.ext-single-related-products {
    width: 100%;
}

.ext-single-related-products section.related.products {
    max-width: 1519px;
    width: 100%;
    margin: 0 auto;
    padding: 30px 16px;
}

.ext-single-related-products section.related.products h2 {
    max-width: 1492px;
    width: 100%;
    margin: 0 auto 55px;
    color: #000;
    font-family: 'Readex Pro' , sans-serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 7.5px;
}
.woocommerce .ext-single-related-products ul.products li.product h3 {
    color: #1E1E1E;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    padding: 0;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) .ext-single-related-products ul.products li.product .price {
    color: #1E1E1E;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
}
.woocommerce ul.products li.product .button {
    border-radius: 3px;
    border: 1px solid #000;
    max-width: 201px;
    width: 100%;
    padding: 10px 40px;
    color: #1E1E1E;
    text-align: center;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.17px;
    background: transparent;
}
.woocommerce ul.products li.product .button:hover {
    color: #fff;
    background-color: #757575;
    border: 1px solid #757575;
}

/*product left*/

.ext-product-desk-summary .product_meta {
    margin: 0 0 10px;
}
.ext-product-desk-summary h1.product_title.entry-title {
    color: #1E1E1E;
    font-family: 'Readex Pro' , sans-serif;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 7.5px;
}

.ext-product-desk-summary .ext-product-title {
    color: #1E1E1E;
    font-family: 'Readex Pro' , sans-serif;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 7.5px;
}
.ext-product-desk-summary .ext-product-subtitle {
    color: #757575;
    margin: 16px 0 53px;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 0.15px;
    display: flex;
    flex-direction: column;
}
.ext-product-desk-summary p.ext-product-subtitle span {
    font-weight: 400;
}


.ext-product-desk-summary .ext-product-price-cart {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-bottom: 62px;
}

.ext-product-desk-summary .ext-price {
    color: #000;
    font-family: 'Readex Pro' , sans-serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 7.5px;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product .ext-product-desk-summary p.price,
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product .ext-product-desk-summary span.price{
    color: #000;
    font-family: 'Readex Pro' , sans-serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 7.5px;
    display: inline-block;
    margin: 53px 0;
}
.ext-product-desk-summary .ext-add-to-cart,
.ext-product-desk-summary .add_to_cart_button.ajax_add_to_cart,
.ext-product-desk-summary .ext-product-learn-more{
    background: transparent;
    cursor: pointer;
    display: flex;
    max-width: 201px;
    width: 100%;
    padding: 10px 30px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 3px;
    border: 1px solid #000;
    color: #1E1E1E;
    text-align: center;
    font-size: 17px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.17px;
}

.woocommerce div.product .ext-product-desk-summary form.cart .button{
    background: transparent;
    cursor: pointer;
    display: flex;
    max-width: 201px;
    width: 100%;
    padding: 10px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 3px;
    border: 1px solid #000;
    color: #1E1E1E;
    text-align: center;
    font-size: 17px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.17px;
}
.woocommerce div.product .ext-product-desk-summary form.cart{
    display: inline-block;
    margin: 0;
}
.ext-product-desk-summary .ext-add-to-cart:hover,
.ext-product-desk-summary .add_to_cart_button.ajax_add_to_cart:hover,
.ext-product-desk-summary .ext-product-learn-more:hover {
    color: #fff;
    background-color: #757575;
    border: 1px solid #757575;
}

.ext-product-desk-summary div.ext-product-description {
    border-top: 1px solid #AEAEB2;
    padding: 26px 0;
    color: #1E1E1E;
    text-align: justify;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.17px;
}
.ext-product-desk-summary p.ext-product-description span {
    font-weight: 700;
}


.ext-product-desk-summary .ext-accordion-title {
    display: flex;
    justify-content: space-between;
    padding: 22px 0;
    border-top: 1px solid #AEAEB2;
    cursor: pointer;
    color: #1E1E1E;
    font-family: 'Readex Pro' , sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 4.5px;

}
.ext-accordion-content h3.ext-accordion-title {
    border: none;
}
.ext-product-desk-summary .ext-product-learn-more {
    margin-top: 15px;
    padding: 10px 20px;
    border: 1px solid #000;
    background: transparent;
}
a.added_to_cart.wc-forward {
    display: none;
}
.ext-product-desk-summary .ext-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}
.ext-product-desk-summary .ext-accordion-content p {
    color: #1E1E1E;
    text-align: justify;
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.15px;
    margin-bottom: 20px;
}
.ext-product-desk-summary .ext-accordion-content p span{
    font-weight: 700;
}
.ext-product-desk-summary .ext-accordion-item.active .ext-accordion-content {
    max-height: 250px;
}

.ext-product-desk-summary .ext-accordion-item.active span {
   transform: rotate(45deg);
}
.mobile-gallery{
    display: none;
}

@media (max-width: 768px) {
    .ext-product-img-and-desk{
        flex-direction: column;
        gap: 50px;
    }
    .woocommerce div.product .ext-product-img-and-desk div.summary {
        position: unset;
        height: auto;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        padding: 0 16px;
    }
    .content-area {
        margin-top: 50px;
    }
    .mobile-gallery{
        display: block;
    }
    .desctop-gallery{
        display: none;
    }
    .woocommerce-product-gallery__wrapper.ext-product-gallery .ext-single-product-prev{
        top: 30px;
        left: 30px;
    }
    .ext-single-related-products {
        margin-top: 50px;
    }
}
@media (max-width: 500px) {
    .ext-product-desk-summary h1.product_title.entry-title{
        font-size: 20.324px;
        line-height: 17.885px;
        letter-spacing: 6.097px;
    }
    .woocommerce div.product .ext-product-img-and-desk div.images{
        margin-bottom: 0;
    }
    .ext-product-desk-summary .ext-product-price-cart {
        justify-content: space-between;
        margin-bottom: 50px;
    }
    .woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product .ext-product-desk-summary p.price,
    .woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product .ext-product-desk-summary span.price {
        margin: 0;
    }
    .ext-product-desk-summary div.ext-product-description{
        padding: 18px 0;
        font-size: 13px;
    }
    .ext-product-desk-summary .ext-accordion-item.active .ext-accordion-content {
        text-align: justify;
    }
    .woocommerce:where(body:not(.woocommerce-uses-block-theme)) .ext-single-related-products ul.products li.product .price,
    .woocommerce .ext-single-related-products ul.products li.product h3{
        font-size: 16px;
    }
    .woocommerce .ext-single-related-products ul.products li.product .button{
        padding: 6px 20px;
    }
    .ext-single-related-products ul.products.swiper-wrapper.columns-4 {
        gap: 10px;
    }

    .ext-single-related-products .ext-product__price{
        margin-right: 0;
    }

}
/*single page end*/



/* mini cart */
#cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 9998;
}

#side-cart {
    position: fixed;
    top: 0;
    right: -590px;
    max-width: 590px;
    width: 100%;
    height: 100%;
    background: #EDEDED;
    z-index: 9999;
}

/* header */
div#side-cart .cart-header {
    display: flex;
    justify-content: space-between;
    border: none;
    padding: 40px 72px   0 0;
}

.cart-content {
    padding: 15px;
    overflow-y: auto;
    height: calc(100% - 240px);
    position: relative;
}
.cart-content p.woocommerce-mini-cart__buttons.buttons {
    display: flex;
    gap: 20px;
    width: 100%;
    margin-top: 100px;
}

div#side-cart  button.close-cart {
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.cart-df-title {
    display: flex;
    justify-content: space-between;
    margin: 112px 57px 28px 35px;
    list-style: none;
    color: #141414;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.14px;
}

.widget_shopping_cart_content {
    margin: 0 57px 28px 35px;
    display: flex;
    flex-direction: column;
}
ul.woocommerce-mini-cart.cart_list.product_list_widget {
    margin: 0 0 0 20px;
    display: flex;
    flex-direction: column;
}
.cart-content ul.cart_list li.woocommerce-mini-cart-item.mini_cart_item {
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
    border-bottom: 1px solid #484848;
}
.cart-content ul.cart_list li.woocommerce-mini-cart-item.mini_cart_item:last-child {
    border: none;
}
p.woocommerce-mini-cart__total.total {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    color: #141414;
    text-align: right;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 5.4px;
    width: 50%;
    margin: 0 0 0 auto;
    border-top: 1px solid #484848;
    padding-top: 30px;
}

p.woocommerce-mini-cart__total.total strong {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.14px;
}

.cart-content  ul.cart_list li::after,
.cart-content  ul.cart_list li::before,
.cart-content  ul.product_list_widget li::after,
.cart-content  ul.product_list_widget li::before {
    content: none;
}
.cart-content ul.cart_list li a,
.cart-content ul.product_list_widget li a {
    color:  #141414;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.17px;
    max-width: 148px;
    width: 100%;
}
ul.cart-df-title li:first-child {
    max-width: 126px;
    width: 100%;
}

.mini-cart-price {
    display: flex;
    gap: 13px;
}
.mini-cart-wrap input {
    border: none;
    outline: none;
    width: 30px;
    background: transparent;
    color: #141414;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.17px;
}
 .cart-content a.remove:hover {
    background: transparent;
    cursor: pointer;
}
.cart-content p.woocommerce-mini-cart__buttons.buttons .button:first-child {
    color:  #141414;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.17px;
    background: transparent;
    width: 135px;
    height: 60px;
    display: flex;
    gap: 15px;
}
.cart-content p.woocommerce-mini-cart__buttons.buttons .button:last-child {
    display: flex;
    max-width: 201px;
    width: 100%;
    padding: 10px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #1E1E1E;
    text-align: center;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.17px;
    border-radius: 3px;
    border: 1px solid #000;
    background: transparent;
}
.cart-content p.woocommerce-mini-cart__buttons.buttons .button:last-child:hover {
    color: #fff;
    background-color: #757575;
    border: 1px solid #757575;
}
.cart-content p.woocommerce-mini-cart__buttons.buttons .button:first-child:before {
    content: url("../images/prev-shop-icon.png");
}


/* Chrome, Safari, Edge */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}
.mini-cart-wrap {
    position: relative;
    height: 20px;
}

button.trigger-input.minus {
    position: absolute;
    bottom: 0;
    border: none;
    right: 0;
    background: transparent;
    cursor: pointer;
    display: flex;
    width: 8px;
    height: 5px;
}

button.trigger-input.plus {
    position: absolute;
    top: 0;
    border: none;
    right: 0;
    background: transparent;
    cursor: pointer;
    display: flex;
    width: 8px;
    height: 5px;
}
@media (max-width: 768px) {
    #side-cart {
        top: 90px;
        max-width: 100%;
        right: -768px;
        z-index: 9;
    }
    #cart-overlay{
        position: unset;
    }
    div#side-cart .cart-header {
        padding: 20px 20px 0 0;
    }

    ul.cart-df-title {
        margin: 10px 59px 10px 15px;
        padding: 0 15px;
    }
    ul.woocommerce-mini-cart.cart_list.product_list_widget {
        margin: 0;
    }
    .cart-content{
        padding: 10px 30px;
    }
    .cart-content p.woocommerce-mini-cart__buttons.buttons{
        justify-content: space-between;
    }
}
/*end mini cart */


/*chekout start*/


.wc-block-components-sidebar-layout.wc-block-checkout.is-large {
    max-width: 1519px;
    width: 100%;
    margin: 200px auto 57px;
    padding: 0 16px;
    justify-content: space-between;
}
.wc-block-components-title.wc-block-components-title,
.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title .wc-block-components-checkout-order-summary__title-text{
    font-family: var(--ext-font-family-Readex);
    color: #000;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 5.4px;
    text-transform: uppercase;
}
.wc-block-components-form .wc-block-checkout__billing-fields input,
.wc-block-components-form .wc-block-components-text-input input[type=email],
.wc-block-components-form .wc-block-checkout__billing-fields select{
    border: none!important;
    border-bottom: 1px solid #939393!important;
    border-radius: 0!important;
    background: transparent!important;
    padding: 24px 9px 5px 4px!important;
}
.wc-blocks-components-select .wc-blocks-components-select__container{
    background: transparent;
}
.wc-block-components-form .wc-block-components-text-input label,
.wc-blocks-components-select .wc-blocks-components-select__label,
.wc-block-components-text-input label{
    left: 5px;
}
.wc-block-components-sidebar-layout .wc-block-components-main{
    width: 45%;
}
.wp-block-woocommerce-checkout-order-summary-block{
    border: none;
}
.wc-block-components-order-summary-item{
    border-bottom: 1px solid #939393!important;
    margin-bottom: 10px;
    padding-bottom: 10px!important;

}
.wc-block-components-order-summary-item:last-child{
    border: none!important;
}
h3.wc-block-components-product-name {
    color: #141414;
    font-size: 17px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.17px;
}
.wp-block-woocommerce-checkout-order-summary-totals-block {
    display: none;
}
.wc-block-components-order-summary{
    padding: 0;
}
.wc-block-components-totals-wrapper {
    border: none;
    padding: 0 16px;
}
.wc-block-components-totals-item.wc-block-components-totals-footer-item {
    width: 50%;
    margin: 0 0 0 auto;
    border-top: 1px solid #939393!important;
    padding: 10px 0 0;

}
button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained{
    background: transparent;
    cursor: pointer;
    display: flex;
    max-width: 201px;
    width: 100%;
    padding: 10px 30px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 3px;
    border: 1px solid #000;
    color: #1E1E1E;
    text-align: center;
    font-size: 17px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.17px;
}
button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained:hover{
    color: #fff;
    background-color: #757575;
    border: 1px solid #757575;
}

.wc-block-components-checkbox.wc-block-components-payment-methods__save-card-info {
    margin-top: 20px;
}


/*?*/
/*.wc-block-checkout__billing-fields .wc-block-components-address-form .wc-block-components-select-input,*/
/*.wc-block-checkout__billing-fields .wc-block-components-address-form .wc-block-components-state-input,*/
/*.wc-block-checkout__billing-fields .wc-block-components-address-form .wc-block-components-text-input,*/
/*.wc-block-checkout__shipping-fields .wc-block-components-address-form .wc-block-components-select-input,*/
/*.wc-block-checkout__shipping-fields .wc-block-components-address-form .wc-block-components-state-input,*/
/*.wc-block-checkout__shipping-fields .wc-block-components-address-form .wc-block-components-text-input{*/
/*    flex: 1;*/
/*}*/


@media(max-width: 1200px){
    .wc-block-components-sidebar-layout .wc-block-components-main{
        width: 60%;
    }
}
@media(max-width: 900px){
    .wc-block-components-sidebar-layout.wc-block-checkout.is-large{
        flex-direction: column;
        margin: 130px auto 57px;
    }
    .wc-block-components-sidebar-layout .wc-block-components-main{
        width: 100%;
    }
    .wc-block-components-sidebar{
        width: 100%;
    }
    .wp-block-woocommerce-checkout{
        padding: 24px 20px;
    }
    .wc-block-components-totals-item.wc-block-components-totals-footer-item{
        padding: 10px 0;
    }
}
@media(max-width: 768px) {
    .wc-block-components-sidebar-layout.wc-block-checkout.is-large {
        margin: 60px auto 57px;
    }
}

/*chekout end*/
/*thank you start */

.woocommerce-order {
    width: 100%;
    height: 90vh;
    margin: 200px auto 50px;
    padding: 0 16px;
    max-width: 1519px;
}
/*thank you end*/