/** Shopify CDN: Minification failed

Line 1707:13 Expected ":"

**/
/*================ HEADER ===============*/
.header__search-form {
    height: 48px;
    display: flex;
    position: relative;
    border: 0;
    background: transparent;
    min-width: 690px;
    border-radius: 60px;
}

.bwp-header.header_2 .header__search-form {
    min-width: 332px;
    margin-right: 24px;
}

@media (max-width: 1330px) {
    .bwp-header.header_2 .header__search-form {
        min-width: auto;
    }

    .bwp-header.header_2 .header-desktop .header-logo {
        margin: 0 60px 0 0 !important;
    }
}

.bwp-header.header_2 .header__search-form .field {
    flex-direction: row;
    padding: 0 20px 0 20px;
}

.header__search-form .search-modal {
    width: 100%;
}

.modal-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    z-index: 3;
}

.header__search-form .search {
    position: relative;

}

.header__search-form .field {
    display: flex;
    overflow: hidden;
    background: transparent;
    flex-direction: row-reverse;
    position: relative;
}

.header__search-form .field .search__input {
    height: 43px;
    line-height: 43px;
    border: 0;
    width: 100%;
    background: transparent;
    padding: 0 15px;
    border-top: 1px solid #d2d2d2;
    border-left: 1px solid #d2d2d2;
    border-bottom: 1px solid #d2d2d2;
}

.bwp-header.header_3 .header__search-form .field:before,
.bwp-header.header_3 .header__search-form .field:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-style: solid;
    pointer-events: none
}

.bwp-header.header_3 .header__search-form .field:before {
    right: 67px;
    border-width: 22px;
    border-color: #fff transparent transparent #fff;
    z-index: 2;
}

.bwp-header.header_3 .header__search-form .field:after {
    right: 65px;
    border-width: 22.5px;
    border-color: #d2d2d2 transparent transparent #d2d2d2;
}

.header__search-form .field .search__input::placeholder {
    color: #777777;
    font-size: var(--font-size-base);
    font-weight: 400;
}

.header__search-form .field .search__button {
    color: #000;
    display: inline-block;
    margin-left: 10px;
    font-size: 0;
    padding: 0 30px 0 40px;
    position: relative;
    background: #00ffb0;
    clip-path: polygon(44% 0, 100% 0, 100% 100%, 0 100%);
    height: 44px;
    border-radius: 0;
    border: none;
}

.bwp-header.header_3 .header__search-form .field .search__button .icon-search {
    padding-left: 10px
}

.header__search-form .field .search__button:hover {
    color: var(--white) !important;
    transition: all .3s ease;
    background: #00cc8d;
}

.header__search-form .field .search__button .icon-search:before {
    content: "\e9c1";
    font-family: 'feather';
    font-size: 18px;
}

.bwp-header.header_2 .header__search-form .field .search__button .icon-search:before {
    content: "\e906";
    font-family: 'icomoon';
    font-size: 16px;
}

.bwp-header.header_2 .header__search-form .field .search__button {
    padding-right: 15px;
}

.header__search-form .predictive-search-content {
    position: absolute;
    width: 100%;
    top: calc(100% + 5px);
    background: var(--white);
    z-index: 12;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.header__search-form .predictive-search-content .search-top {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ebebeb;
    padding: 15px 20px;
}

.header__search-form .predictive-search-content .count-search {
    color: var(--text-color);
}

.header__search-form .predictive-search-content .predictive-search__list-item.no_results {
    font-size: calc(var(--font-size-base) - 1px);
}

.header__search-form .predictive-search-content .predictive-search__item-link {
    font-size: var(--font-size-base);
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.header__search-form .predictive-search-content .predictive-search__item-link:before {
    content: "";
    width: 0;
    height: 100%;
    transition: all 0.2s ease;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.header__search-form .predictive-search-content .predictive-search__item-link:after {
    content: "";
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--theme-color);
    transform: scaleX(1);
    transform-origin: 0 50%;
    transition: transform 0.48s cubic-bezier(0.77, 0, 0.175, 1);
}

.header__search-form .predictive-search-content .predictive-search__item-link i {
    margin-left: 5px;
    position: relative;
    top: 1px;
}

.header__search-form .predictive-search-content .predictive-search__item-link:hover {
    color: var(--theme-color);
}

.header__search-form .predictive-search-content .predictive-search__item-link:hover:before {
    width: 100%;
    left: 0;
}

.header__search-form .predictive-search-content .predictive-search__item-link:hover:after {
    transform-origin: 100% 50%;
    transform: scaleX(0);
    animation: k 0.96s 0.36s forwards cubic-bezier(0.77, 0, 0.175, 1);
}

.header__search-form .predictive-search-content .predictive-search__results-list {
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    margin: 0;
    padding: 10px 0;
}

.header__search-form .predictive-search-content .predictive-search__results-list::-webkit-scrollbar-track {
    background-color: #ececec;
}

.header__search-form .predictive-search-content .predictive-search__results-list::-webkit-scrollbar {
    width: 2px;
    background-color: #ececec;
}

.header__search-form .predictive-search-content .predictive-search__results-list::-webkit-scrollbar-thumb {
    background-color: var(--gray-dark);
}

.header__search-form .predictive-search-content .predictive-search__results-list li {
    padding: 10px 20px;
}

.header__search-form .predictive-search-content .predictive-search__results-list li a {
    display: flex;
}

.header__search-form .predictive-search-content .predictive-search__results-list li a img {
    max-width: 80px;
    flex: 0 0 80px;
}

.header__search-form .predictive-search-content .predictive-search__results-list li a:hover .predictive-search__item-heading {
    color: var(--theme-color);
}

.header__search-form .predictive-search-content .predictive-search__results-list li .predictive-search__item-content {
    padding-left: 15px;
}

.header__search-form .predictive-search-content .predictive-search__results-list li .predictive-search__item-content .product-group-price .product-price {
    margin: 0;
    color: red;
}

.header__search-form .predictive-search-content .predictive-search__results-list li .predictive-search__item-content .product-group-price {
    align-items: flex-start;
    display: flex;
}

.header__search-form .predictive-search-content .predictive-search__results-list li .predictive-search__item-content .product-group-price .product-price--regular {
    margin-left: 0px;
    color: var(--text-color);
    margin-right: 6px;
}

.header__search-form .predictive-search-content .predictive-search__results-list li .predictive-search__item-heading {
    font-size: calc(var(--font-size-base) + 1px);
    text-transform: uppercase;
    font-weight: 700;
}

.header__search-form .predictive-search-content .predictive-search__results-list li .product-card__price {

}

.bwp-header .header-desktop {
    position: relative;
    color: var(--menu-color);
    background-color: var(--header-bg-color);
}

.bwp-header .header-top-mobile {
    position: relative;
    color: var(--menu-color);
    background-color: var(--header-bg-color);
}

.bwp-header .header-center__inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.header-page-link .search-toggle .icon-search:before {
    content: "\e9c1";
    font-family: 'feather';
}

.bwp-header .header-desktop .header-center__inner {
    padding: 21px 0 23px 0;
}

.bwp-header.header_6 .header-desktop .header-center__inner {
    padding: 30px 0 32px;
}

.bwp-header.header_3 .header-desktop .header-center__inner {
    padding: 15px 0 0 0;
}

.bwp-header.header_2 .header-desktop .header-center__inner {
    padding: 31px 0;
}

.bwp-header.header_1 .header-left .main-menu__nav {
    justify-content: center;
}


.bwp-header.header_1 .header-left,
.bwp-header.header_3 .header-logo,
.bwp-header.header_4 .header-left,
.bwp-header.header_7 .header-left,
.bwp-header.header_8 .header-logo,
.bwp-header.header_8 .header-right {
    flex: 1;
}

.bwp-header.header_3 .header-right,
.bwp-header.header_4 .header-right,
.bwp-header.header_5 .header-right {
    flex: 1;
}

.bwp-header.header_2 .header-left,
.bwp-header.header_2 .header-right {
    flex: 1;
}

.bwp-header.header_2 .header-mobile .header-logo {
    flex: unset;
}

.bwp-header.header_2 .header-right .header-page-link,
.bwp-header.header_3 .header-right .header-page-link,
.bwp-header.header_5 .header-right .header-page-link {
    padding-right: 15px;
}

.bwp-header.header_1 .content-search-form,
.bwp-header.header_3 .content-search-form,
.bwp-header.header_5 .content-search-form {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    z-index: 2;
    justify-content: center;
}

.bwp-header.header_7 .header-logo {
    margin-right: 65px;
}

.bwp-header.header_8 .header-desktop {
    background: var(--gray-dark);
    color: var(--white);
}

.bwp-header.header_8 .main-menu__nav-item > a {
    color: var(--white);
}

.bwp-header.header_8 .header-page-link {
    color: var(--white);
}

.bwp-header.header_8 .header-page-link .header-account .login-account {
    color: var(--white);
}

.bwp-header.header_8 .header-page-link .wishlist {
    color: var(--white);
}

.bwp-header.header_8 .header-page-link .header-cart__link {
    color: var(--white);
}

.bwp-header.header_8 .header-desktop {
    background: var(--gray-dark);
    color: var(--white);
}

.bwp-header.header_8 .main-menu__nav-item > a {
    color: var(--white);
}

.bwp-header.header_8.sticky .header-page-link {
    color: var(--gray-dark);
}

.bwp-header.header_8.sticky .header-page-link .header-account .login-account {
    color: var(--gray-dark);
}

.bwp-header.header_8.sticky .header-page-link .wishlist {
    color: var(--gray-dark);
}

.bwp-header.header_8.sticky .header-page-link .header-cart__link {
    color: var(--gray-dark);
}

.bwp-header.header_1 .header-bottom-cate,
.bwp-header.header_5 .header-bottom-cate {
    position: absolute;
    z-index: 1;
    right: 240px;
}

.bwp-header.header_3 .header-bottom-cate {
    position: absolute;
    z-index: 1;
    right: 40px;
}

@media (max-width: 1441px) {
    .bwp-header.header_1 .header-bottom-cate {
        right: 200px;
    }
}

.bwp-header.header_1 .vertical-menu,
.bwp-header.header_3 .vertical-menu,
.bwp-header.header_5 .vertical-menu {
    width: 185px;
}

.select_category {
    position: relative;
    cursor: pointer;
}

.select_category ul li .image-cate-header {
    margin: 0;
    width: 100%;
    text-transform: capitalize;
    position: relative;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    color: #646464;
    border-bottom: 1px solid hsla(0, 0%, 91%, .7);
    padding: 10px 20px;
}

.select_category ul li .image-cate-header:hover {
    color: var(--theme-color);
}

.bwp-header .vertical-menu {
    z-index: 2;
    display: none;
    left: 20px;
    position: absolute;
    top: 100%;
    max-height: initial;
    list-style: none;
    background: var(--white);
    padding: 0;
    overflow: hidden;
    width: 100%;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 0 10px 1px #0000000d;
}

.bwp-header .vertical-menu .more-wrap {
    padding: 10px 20px;
    font-weight: 500;
}

.bwp-header.header_1 .select_category,
.bwp-header.header_3 .select_category,
.bwp-header.header_5 .select_category {
    min-width: unset;
}

.bwp-header.header_1 .select_category .select_category__title,
.bwp-header.header_3 .select_category .select_category__title,
.bwp-header.header_5 .select_category .select_category__title {
    text-wrap: nowrap;
    padding: 0 25px;
    line-height: 48px;
    margin: 0;
}

.bwp-header .select_category .select_category__title {
    line-height: 55px;
    font-size: calc(var(--font-size-base) + 1px);
    font-family: var(--font-family-base);
    font-weight: var(--body-font-weight-medium);
    color: var(--gray-dark);
    margin: 0;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    padding: 0 30px;
    border-radius: 6px 6px 0 0;
}

.bwp-header .select_category .select_category__title i {
    background: #fff;
    width: 13px;
    height: 2px;
    position: relative;
    margin-right: 35px;
}

.bwp-header .select_category .select_category__title i::before {
    content: "";
    position: absolute;
    background: #fff;
    width: 22px;
    height: 2px;
    top: -6px;
}

.bwp-header .select_category .select_category__title i::after {
    content: "";
    position: absolute;
    background: #fff;
    width: 29px;
    height: 2px;
    bottom: -6px;
}

.bwp-header .select_category .select_category__title::after {
    content: "\e92e";
    font-family: feather;
    font-size: 13px;
    margin: 0 5px;
    transition: all .3s ease;
}

.bwp-header .select_category.show .select_category__title::after {
    transform: rotate(-180deg);
}

.bwp-header.header_1 .select_category .select_category__title:before {
    font-weight: var(--body-font-weight-default);
    font-size: 24px;
}

.bwp-header.header_1 .select_category .select_category__title::after {
    color: var(--gray-dark);
}

.bwp-header.header_1 .header-bottom__content > div {
    flex: 1;
}

.bwp-header.header_1 .header-bottom__content .header-bottom__right {
    padding: 0;
    display: flex;
    justify-content: flex-end;
}

.bwp-header.header_3 .header-left {
    display: flex;
    align-items: center;
    font-size: calc(var(--font-size-base) - 1px);
}

.bwp-header.header_3 .header-left .pin {
    margin-right: 15px;
}

.bwp-header.header_3 .header-left .pin i {
    font-size: var(--font-size-base);
    margin-right: 10px;
}

.bwp-header.header_3 .header-left .search-toggle {
    margin: 0;
    top: -3px;
}

.bwp-header.header_3 .header-left .search-toggle i {
    font-size: var(--font-size-base);
}

.bwp-header.header_3 .header-left .search-toggle span {
    font-size: calc(var(--font-size-base) - 1px);
}

.bwp-header.header_3 .header-bottom .header-bottom-center {
    padding: 23px 0 28px;
}

.bwp-header.header_4 .header-right .header-page-link {
    padding-right: 15px;
}

.bwp-header.header_5 .main-menu__nav {
    display: flex;
    justify-content: center;
}

.bwp-header.header_3 .main-menu__nav {
    display: flex;
    justify-content: start;
}

.bwp-header.header_5 .main-menu__nav span.menu-item-text:hover {
    color: var(--menu-hover-color);
}

.bwp-header.header_5 .main-menu__nav span.menu-item-text:hover:after {
    color: var(--menu-hover-color);
}

.menu-dropdown > a:hover:after {
    color: var(--menu-dropdown-hover-color);
}

.bwp-header.header_4 .menu-dropdown > a:hover:after {
    color: var(--menu-dropdown-hover-color);
}

.bwp-header.header_4.sticky .menu-dropdown > a:hover:after {
    color: var(--menu-dropdown-hover-color);
}

.bwp-header.header_8.sticky .main-menu__nav-item > a {
    color: var(--gray-dark);
}

.bwp-header.header_8.sticky .header-page-link {
    color: var(--gray-dark);
}

.bwp-header.header_5 .header-left {
    display: flex;
    align-items: center;
    font-size: calc(var(--font-size-base) - 2px);
}

.bwp-header.header_5 .header-left .text a {
    position: relative;
    padding-left: 25px;
}

.bwp-header.header_5 .header-left .text a:first-child {
    padding-left: 0;
}

.bwp-header.header_5 .header-left .text a:first-child:before {
    width: 0;
}

.bwp-header.header_5 .header-left .text a:before {
    position: absolute;
    content: "";
    left: 11px;
    background: rgba(0, 0, 0, .07);
    width: 1px;
    height: 16px;
    top: calc(50% - 7px);
}

.bwp-header.header_5 .header-left .social-icons li {
    font-size: var(--icon-size, 14px);
    line-height: var(--icon-size, 14px);
    width: 33px;
    height: 33px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, .04);
    align-items: center;
    display: flex;
    justify-content: center;
}

.bwp-header.header_5 .header-left .social-icons li:hover {
    background: var(--theme-color);
}

.bwp-header.header_5 .header-left .social-icons li:hover a {
    background: var(--theme-color);
    color: var(--white);
    fill: var(--white);
}

.bwp-header.header_5 .header-left .social-icons li a:hover {
    color: var(--white);
    fill: var(--white);
}

.bwp-header.header_6 .main-menu__nav {
    display: flex;
    justify-content: center;
}

.bwp-header.header_6 .main-menu__nav-item.active > a:after {
    color: var(--white);
}

.bwp-header.header_6.sticky .main-menu__nav-item.active > a:after {
    color: var(--gray-dark);
}

.bwp-header.header_6 .header-left {
    display: flex;
    align-items: center;
    font-size: calc(var(--font-size-base) - 2px);
}

.bwp-header.header_6 .header-left .text a {
    position: relative;
    padding-left: 25px;
}

.bwp-header.header_6 .header-left .text a:first-child {
    padding-left: 0;
}

.bwp-header.header_6 .header-left .text a:first-child:before {
    width: 0;
}

.bwp-header.header_6 .header-left .text a:before {
    position: absolute;
    content: "";
    left: 11px;
    background: rgba(0, 0, 0, .07);
    width: 1px;
    height: 16px;
    top: calc(50% - 7px);
}

.bwp-header.header_6 .header-left .social-icons li {
    font-size: var(--icon-size, 14px);
    line-height: var(--icon-size, 14px);
    width: 33px;
    height: 33px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, .04);
    align-items: center;
    display: flex;
    justify-content: center;
}

.bwp-header.header_6 .header-left .social-icons li:hover {
    background: var(--theme-color);
}

.bwp-header.header_6 .header-left .social-icons li:hover a {
    background: var(--theme-color);
    color: var(--white);
    fill: var(--white);
}

.bwp-header.header_6 .header-left .social-icons li a:hover {
    color: var(--white);
    fill: var(--white);
}

.bwp-header.header_6 .header-left {
    display: flex;
    align-items: center;
    font-size: calc(var(--font-size-base) - 2px);
    justify-content: center;
}

.bwp-header.header_6 .header-right .header-page-link {
    padding-right: 15px;
}

.bwp-header.header_6 .header-left {
    flex: 1;
}

.bwp-header.header_5 .header-left {
    flex: 1;
}

.bwp-header.header_5 .header-right {
    flex: 1;
}

.bwp-header .header-bottom .main-menu__nav .main-menu__nav-item:hover > a {
    color: var(--menu-hover-color);
}

.bwp-header.header_4 .header-bottom .main-menu__nav .main-menu__nav-item:hover > a {
    color: var(--white) !important;
}

.bwp-header.header_4 .menu-dropdown > a:hover:after {
    color: var(--white) !important;
}

.bwp-header.header_6 .menu-dropdown > a:hover:after {
    color: var(--white) !important;
}

.bwp-header.header_6.sticky .menu-dropdown > a:hover:after {
    color: var(--gray-dark) !important;
}

.bwp-header.header_8 .menu-dropdown > a:hover:after {
    color: var(--white);
}

.bwp-header.header_8.sticky .menu-dropdown > a:hover:after {
    color: var(--gray-dark);
}

.bwp-header.header_2.sticky .menu-dropdown > a:hover:after {
    color: var(--gray-dark);
}

.bwp-header.header_8 .search-toggle:hover {
    color: var(--white);
}

.bwp-header.header_4 .header-bottom .main-menu__nav {
    justify-content: center;
}

.bwp-header.header_4 .header__search-form .field {
    max-width: 460px;
}

.bwp-header.header_4 .header__search-form .field .search__button .icon-search {
    padding-left: 10px
}

.bwp-header.header_4 .header__search-form .field:before,
.bwp-header.header_4 .header__search-form .field:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-style: solid;
    pointer-events: none
}

.bwp-header.header_4 .header__search-form .field:before {
    right: 67px;
    border-width: 22px;
    border-color: #fff transparent transparent #fff;
    z-index: 2;
}

.bwp-header.header_4 .header__search-form .field:after {
    right: 65px;
    border-width: 22.5px;
    border-color: #d2d2d2 transparent transparent #d2d2d2;
}

.bwp-header.sticky .header-desktop {
    position: fixed;
    width: 100%;
    left: 0;
    z-index: 99;
    animation-name: sticky-header;
    animation-duration: 0.5s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
    box-shadow: 0 1px 5px 2px rgba(0, 0, 0, 0.1);
    top: 0;
    background: hsla(0, 0%, 100%, .93);
}

.bwp-header.header_4.sticky .header-desktop {
    background: #fff;
}

.bwp-header.header_3.sticky .header-desktop {
    background: #fff;
}

.bwp-header.sticky .header-mobile .header-center__inner {
    padding: 15px 0;
}

.bwp-header.sticky .header-top-mobile {
    position: fixed;
    width: 100%;
    left: 0;
    z-index: 100;
    animation-name: sticky-header;
    animation-duration: 0.5s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
    box-shadow: 0 1px 10px 5px rgba(0, 0, 0, 0.05);
    top: 0;
}

.header-selector__toggle {
    cursor: pointer;
    display: flex;
    line-height: 20px;
    text-transform: capitalize;
}

.header-selector__toggle::after {
    content: "\e92e";
    pointer-events: none;
    display: inline-block;
    font-family: feather;
    margin: 0;
    margin-left: 3px;
    transition: all 0.3s ease;
    color: var(--text-color);
    font-size: 13px;
}

.header-selector__dropdown {
    margin: 0;
    padding: 0;
    border-radius: 0;
    border: 0;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.12);
}

.header-selector__dropdown .header-selector__item a {
    color: var(--text-color);
    line-height: 25px;
}

.header-selector__dropdown .header-selector__item a:hover {
    color: var(--theme-color);
}

.header-selector__dropdown .locale-selector__item--current a {
    color: var(--theme-color);
}

.header-selector__list {
    margin: 0;
    padding: 10px 0;
    list-style: none;
}

.header-selector__item {
    padding: 0 20px;
}

.header-selector__item a {
    display: block;
    padding: 6px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: calc(var(--font-size-base) - 1px);
    text-transform: capitalize;
    transition: color 0.3s ease;
}

.header-selector__item a:hover {
    text-decoration: none;
}

.header-selector__item:last-child a {
    border-bottom: 0;
}

.header-page-link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 15px;
}

.header-page-link .wishlist {
    font-size: 20px;
    cursor: pointer;
    margin-right: 27px;
    position: relative;
    transition: all 0.3s ease;
    color: var(--menu-color);
    top: 2px;
}

.header-page-link .wishlist .icon-heart:before {
    content: "\e977";
    font-family: 'feather';
    font-size: 20px;
}

.icon-wishlist:before {
    content: "\e977";
    font-family: 'feather';
    font-size: 20px;
}

.header-page-link .wishlist .count {
    position: absolute;
    top: -6px;
    right: -15px;
    width: 17px;
    height: 17px;
    line-height: 17px;
    text-align: center;
    background: var(--theme-color, #c8605f);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 500;
    color: var(--gray-dark);
}

.header-page-link .wishlist:hover {
    color: var(--theme-color);
    top: -2px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-logo__text__top {
    font-family: 'PPNeueMontrealBold';
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: 11px;
}

.header-logo__text__bottom {
    font-family: 'PPNeueMontrealBook';
    letter-spacing: 10px;
}

.header-logo__link {
    display: block;
}

.header-logo__link--text {
    color: var(--menu-color);
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.header-logo__link--text:hover {
    color: var(--menu-color);
    text-decoration: none;
}

.header-logo__img {
    display: block;
}

.header-logo__img.logo-main {
    display: none;
}

.bwp-header.sticky .header-logo__img.logo-main {
    display: block;
}

.bwp-header.sticky .header-logo__img.logo-home {
    display: none;
}

.header-search-mobile {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
}

.modal-search--open .header-search-mobile {
    z-index: 90;
    opacity: 1;
    visibility: visible;
}

.header-search-mobile .dropdown-toggle {
    color: var(--text-color);
}

.search-mobile .search-toggle .icon-search:before {
    content: "\e9c1";
    font-family: 'feather';
}

.search-toggle {
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    margin-right: 20px;
    position: relative;
    top: 1px;
    transition: all 0.3s ease;
}

.search-toggle:hover {
    color: var(--theme-color);
    top: -1px;
}

body.active_search {
    overflow: hidden;
}

.content-search-toggle {
    position: fixed;
    width: 100vw;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 15px;
}

.content-search-toggle.active {
    opacity: 1;
    visibility: visible;
}

.content-search-toggle.active > .close-search-toggle {
    display: block;
}

.content-search-toggle.show .contents-search {
    transform: translateY(0);
}

.content-search-toggle > .close-search-toggle {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: var(--gray-dark-25);
    display: none;
    top: 0;
    left: 0;
}

.content-search-toggle .content-menu-search {
    display: flex;
    align-items: center;
    padding: 35px 15px;
    display: flex;
    flex-wrap: wrap;
    max-width: 960px;
    margin: auto;
}

.content-search-toggle .content-menu-search .title {
    color: var(--gray-dark);
}

.content-search-toggle .content-menu-search .list-collection {
    padding: 0;
    list-style: none;
    display: flex;
    margin: 0;
    white-space: nowrap;
    overflow: auto;
    padding: 10px 0;
}

.content-search-toggle .content-menu-search .list-collection li {
    margin: 5px 0 5px 10px;
}

.content-search-toggle .content-menu-search .list-collection a {
    display: inline-block;
    line-height: 28px;
    border: 1px solid #e2e2e2;
    min-width: 80px;
    padding: 0 15px;
    text-align: center;
    color: var(--text-color);
}

.content-search-toggle .content-menu-search .list-collection a:hover {
    color: var(--gray-dark);
    border-color: var(--gray-dark);
}

.content-search-toggle .contents-search {
    background: var(--white);
    padding: 70px 90px;
    transition: transform 0.3s linear;
    max-height: calc(100% - 200px);
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 99;
    transform: translateY(-100px);
    margin: 100px auto 0;
    max-width: 1200px;
    position: relative;
}

.content-search-toggle .contents-search .contents-search-top {
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

.content-search-toggle .contents-search .contents-search-top::-webkit-scrollbar-track {
    background-color: #ececec;
}

.content-search-toggle .contents-search .contents-search-top::-webkit-scrollbar {
    width: 2px;
    background-color: #ececec;
}

.content-search-toggle .contents-search .contents-search-top::-webkit-scrollbar-thumb {
    background-color: var(--gray-dark);
}

.content-search-toggle .search-modals__form[results=true] .predictive-search {
    display: block;
}

.content-search-toggle .predictive-search-content {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    padding-top: 50px;
}

.content-search-toggle .predictive-search-content .predictive-search-content-product {
    max-width: 66.66%;
    flex: 0 0 66.66%;
    padding: 0 15px;
}

.content-search-toggle .predictive-search-content .predictive-search-content-product.full {
    max-width: 100%;
    flex: 0 0 100%;
}

.content-search-toggle .predictive-search-content .predictive-search-content-product.full .predictive-search__results-list li {
    width: 25%;
}

.content-search-toggle .predictive-search-content .predictive-search-content-blog {
    max-width: 33.33%;
    flex: 0 0 33.33%;
    padding: 0 15px;
}

.content-search-toggle .predictive-search-content .predictive-search-content-blog .predictive-search__results-list li {
    width: 100%;
    margin-bottom: 8px;
}

.content-search-toggle .predictive-search-content .predictive-search-content-blog .predictive-search__results-list li a {
    color: var(--text-color);
}

.content-search-toggle .predictive-search-content .predictive-search-content-blog .predictive-search__results-list li a:hover {
    color: var(--theme-color);
}

.content-search-toggle .close-search {
    cursor: pointer;
    position: absolute;
    top: 14px;
    right: 15px;
    text-align: center;
    z-index: 1;
    display: inline-block;
    width: 28px;
    height: 28px;
    padding: 6px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

.content-search-toggle .close-search:before, .content-search-toggle .close-search:after {
    content: "";
    position: absolute;
    height: 1px;
    width: 20px;
    top: 50%;
    left: calc(50% - 10px);
    margin-top: -1px;
    background-color: var(--gray-dark);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.content-search-toggle .close-search:before {
    transform-origin: 50% 50%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.content-search-toggle .close-search:after {
    transform-origin: 50% 50%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.content-search-toggle .close-search:hover:before, .content-search-toggle .close-search:hover:after {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.content-search-toggle .search-top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 5px;
    border-bottom: 1px solid #e9e9e9;
    margin-bottom: 40px;
}

.content-search-toggle .search-top .count-search {
    color: var(--gray-dark);
}

.content-search-toggle .search-top .button-view a {
    display: inline-block;
    color: var(--gray-dark);
    display: flex;
    align-items: center;
}

.content-search-toggle .search-top .button-view a i {
    display: inline-block;
    margin-left: 5px;
}

.content-search-toggle .search-top .button-view a:hover {
    color: var(--theme-color);
}

.content-search-toggle .header__search {
    width: 100%;
}

.content-search-toggle .predictive-search {
    position: absolute;
    display: none;
    width: 100vw;
    left: 0;
    padding: 10px 0 40px;
    background: var(--white);
    overflow: auto;
}

.content-search-toggle .search-modal .field {
    display: flex;
    display: flex;
    width: 100%;
    height: 50px;
    line-height: 48px;
    position: relative;
}

.content-search-toggle .search-modal .field i {
    position: absolute;
    left: 10px;
    top: 16px;
    font-size: 18px;
}

.content-search-toggle .search-modal .search__input {
    background: transparent;
    width: 100%;
    font-size: var(--font-size-base);
    padding: 0 20px 0 38px;
    color: var(--gray-dark);
    height: 50px;
    border: 1px solid var(--border-color);
}

.content-search-toggle .search-modal .search__input:focus-visible {
    outline: unset;
}

.content-search-toggle .search-modal .predictive-search__heading {
    text-align: center;
    margin: 0 0 30px;
    font-family: var(--font-family-base);
    font-size: calc(var(--font-size-base) + 4px);
    color: var(--text-color);
}

.content-search-toggle .search-modal .search__button {
    font-size: 0;
    background: transparent;
    border: 0;
    color: var(--gray-dark);
    padding: 0;
    line-height: 1;
}

.content-search-toggle .search-modal .search__button i {
    font-size: 22px;
    line-height: 48px;
}

.content-search-toggle .search-modal .search__button:hover {
    color: var(--theme-color);
}

.content-search-toggle .search-modal .predictive-search__results-list {
    display: flex;
    flex-wrap: wrap;
    z-index: 10;
    position: relative;
    background: var(--white);
    overflow-y: auto;
    padding: 0;
    overflow-x: hidden;
    left: 0;
    list-style: none;
    margin: 0 -7.5px;
}

.content-search-toggle .search-modal .predictive-search__results-list::-webkit-scrollbar-track {
    background-color: #F5F5F5;
}

.content-search-toggle .search-modal .predictive-search__results-list::-webkit-scrollbar {
    width: 5px;
    background-color: #F5F5F5;
}

.content-search-toggle .search-modal .predictive-search__results-list::-webkit-scrollbar-thumb {
    background-color: var(--gray-dark-15);
}

.content-search-toggle .search-modal .predictive-search__results-list li {
    list-style: none;
    padding: 0 7.5px;
    display: inline-block;
    width: 33.33%;
    margin-bottom: 30px;
}

.content-search-toggle .search-modal .predictive-search__results-list li.no_results {
    font-size: var(--font-size-base);
    color: #999999;
}

.content-search-toggle .search-modal .predictive-search__results-list li.no_results b {
    color: var(--gray-dark);
}

.content-search-toggle .search-modal .predictive-search__results-list li .product-card__price .product-price {
    color: red;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.content-search-toggle .search-modal .predictive-search__results-list li .product-card__price .product-price.product-price--regular {
    font-size: var(--font-size-base);
    color: var(--text-color);
    margin-right: 6px;
}

.content-search-toggle .search-modal .predictive-search__results-list li .product-card__price .product-price.product-price--regular span {
    font-size: var(--font-size-base);
}

.content-search-toggle .search-modal .predictive-search__results-list li .product-card__price .product-price span {
    font-size: var(--font-size-base);
}

.content-search-toggle .search-modal .predictive-search__results-list li .predictive-search__item--link:hover .predictive-search__item-heading {
    color: var(--theme-color);
}

.content-search-toggle .search-modal .predictive-search__results-list .predictive-search__item-heading {
    font-size: var(--font-size-base);
    font-weight: var(--body-font-weight-bold);
    font-family: var(--font-family-second);
    margin-bottom: 7px;
    text-transform: uppercase;
}

.content-search-toggle .search-modal .predictive-search__results-list #predictive-search-option-search-keywords {
    width: 100%;
    margin: 0;
}

.content-search-toggle .search-modal .predictive-search__results-list #predictive-search-option-search-keywords button {
    background: transparent;
    border: 0;
    text-transform: uppercase;
    font-size: var(--font-size-base);
    font-weight: var(--body-font-weight-medium);
    line-height: 45px;
    padding: 0 30px;
    background: var(--theme-color);
    color: var(--white);
    font-family: var(--font-family-base);
}

.content-search-toggle .search-modal .predictive-search__results-list #predictive-search-option-search-keywords button:hover {
    background: var(--gray-dark);
}

.content-search-toggle .search-modal .predictive-search__results-list .predictive-search__list-mess {
    width: 100%;
    text-align: center;
    color: var(--gray-dark);
    font-size: var(--font-size-base);
}

.content-search-toggle .search-modal .predictive-search__results-list .predictive-search__item-vendor {
    color: var(--text-color);
    margin-bottom: 5px;
    text-align: center;
}

.content-search-toggle .search-modal .predictive-search__results-list .predictive-search__item-content {
    margin-top: 15px;
}

.header-account {
    position: relative;
    margin-right: 20px;
}

.header-account .login-account {
    font-size: 20px;
    position: relative;
    transition: all 0.3s ease;
    color: var(--menu-color);
    top: 2px;
}

.header-account .login-account .title-login {
    display: none;
}

.header-account .login-account .icon-user:before {
    content: "\e9f1";
    font-family: 'feather';
}

.header-account .login-account:hover {
    color: var(--theme-color);
    top: -2px;
}

.header-account__title {
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 5px 0;
    font-size: calc(var(--font-size-base) + 2px);
    color: var(--menu-color);
}

.header-account__title span {
    display: none;
}

.header-account__title .icon-user:before {
    content: "\e900";
    font-family: icomoon;
    font-size: 20px;
}

.header-account__title:hover {
    color: var(--menu-hover-color);
}

.header-account__title::after {
    display: none;
}

.header-account__content {
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.12);
}

.header-account__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-account__list li {
    border-bottom: 1px solid var(--border-color-50);
}

.header-account__list li:last-child {
    border-bottom: 0;
}

.header-account__list a {
    display: block;
    padding: 12px 20px;
    color: var(--text-color);
    font-size: calc(var(--font-size-base) - 1px);
    transition: color 0.3s ease, border 0.3s ease;
}

.header-account__list a span {
    color: var(--gray-dark);
    font-weight: 700;
}

.header-account__list a:hover {
    color: var(--theme-color);
    text-decoration: none;
}

.header-account__list a:hover span {
    color: var(--theme-color);
}

.header-cart {
    position: relative;
}

body.template-cart .header-cart .header-cart__content {
    display: none;
}

.header-cart__link {
    position: relative;
    display: block;
    color: var(--menu-color);
    font-size: calc(var(--font-size-base) + 4px);
    transition: all 0.3s ease;
    top: 1px;
}

.header-cart__link:before {
    content: "\e9c9";
    font-family: 'feather';
    font-size: 20px;
}

.header-cart__link:hover {
    text-decoration: none;
    color: var(--theme-color);
    top: -2px;
}

.header-cart__count {
    position: absolute;
    top: -4px;
    right: -14px;
    width: 17px;
    height: 17px;
    line-height: 17px;
    color: var(--gray-dark);
    text-align: center;
    background: var(--theme-color, #c8605f);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 500;
}

.header-bottom {
    position: relative;
}

.header-bottom__inner {
    display: flex;
}

.landing-page-tagline {
    font-family: PPNeueMontrealBook;
    color: #000000;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0px;
    text-align: center;
    font-style: italic;
    padding-b
}

.landing-page-hero {
    position: relative;
    overflow: hidden;

    /* Pick one:
       - full screen hero: min-height: 100vh;
       - “nice” hero: clamp(...) */
    /*min-height: 100vh;*/

    height: 80vh;

    display: grid;
    place-items: center;
    text-align: center;
}

.landing-page-hero__bg {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
    object-fit: cover;

    /* This is how you “move it around” */
    object-position: 50% 78%;

    z-index: 0;
}

/* Optional overlay for legibility */
.landing-page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

.landing-page-hero__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 20px;
    box-sizing: border-box;
}

/* Example: scale logo/type nicely */
.landing-page-logo {
    width: clamp(120px, 16vw, 220px);
    height: auto;
    margin-bottom: 20px;
}


/* put all hero content above the bg image */
.landing-page-hero > *:not(.landing-page-hero__bg) {
    /*position: relative;*/
    z-index: 1;
}

.landing-page-hero h2 {
    font-size: 104px;
    color: #FFFFFF;
    margin-top: 16px;
    font-family: PPNeueMontrealBold;
    line-height: 104px;
    letter-spacing: 0px;
    text-align: center;
}

.landing-page-avance {
    color: #FFFFFF;
    font-family: PPNeueMontrealBold;
}

.landing-page-active {
    color: #FFFFFF;
    font-family: PPNeueMontrealBook;
    padding-bottom: 64px;
}

.landing-page-logo {
    /*max-width: 200px; !* adjust *!*/
    /*height: auto;*/
    width: 147px;
    height: 129px;
    margin-bottom: 24px;
    color: #FFFFFF;
}

.landing-page .newsletter-signup {
    margin-top: 120px;
    margin-bottom: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: PPNeueMontrealBook;
}

.landing-page .newsletter-signup h3 {
    font-family: PPNeueMontrealBold;
    font-size: 64px;
    line-height: 72px;
    letter-spacing: 0;
    margin-bottom: 32px;
}

.landing-page .newsletter-signup h4 {
    font-family: PPNeueMontrealBold;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0;
}

.avance-newsletter-signup-title {
    font-family: PPNeueMontrealBook;
    font-size: 24px;
    line-height: 40px;
    margin-top: 24px;
}

.newsletter-signup__form {
    padding: 32px 0;
}

.newsletter-input-group {
    display: flex;
    gap: 0px;
}

.newsletter-input-group input {
    padding-left: 16px;
    font-family: PPNeueMontrealBook;
    font-size: 20px;
    line-height: 32px;
    width: 300px;
    border: 1px solid var(--avance-azure);
}

.newsletter-submit {
    background-color: var(--avance-azure);
    padding: 16px 24px;
    font-family: PPNeueMontrealBold;
    color: var(--white);
    line-height: 32px;
    font-size: 20px;
    border: 1px solid var(--avance-azure);
}

.newsletter-success-message {
    font-family: PPNeueMontrealBold;
    font-size: 24px;
    line-height: 32px;
    color: var(--avance-azure);
    padding-top: 24px;
    text-align: center;
}

.newsletter-terms {
    font-family: PPNeueMontrealBook;
    font-size: 14px;
    line-height: 24px;
}

.brand-models {
    overflow: hidden;
}

.brand-models-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 40px;
    padding-top: 120px;
    padding-bottom: 120px;
}

.brand-model-image {
    /*display: block;*/
    width: 368px;
    aspect-ratio: 1;
    height: auto;
    border-radius: 100%;
    border: 1px solid transparent;
    overflow: hidden;
    flex-shrink: 1;
    min-width: 0;
}

/* Target the img INSIDE the div */
.brand-model-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center; /* default for all three */
}

.brand-model-image-1 img {
    object-fit: cover;
    object-position: left -80px; /* moves left and up */
}

.brand-model-image-2 img {
    object-fit: contain;
    object-position: center center;
}

.brand-model-image-3 img {
    object-position: 0px 0px;
}



.built-for-progress {
    display: flex;
    flex-direction: row;
    justify-content: center;
    /*justify-content: space-between;*/
    gap: 120px;
    padding: 120px;
}

.built-for-progress h3 {
    font-family: PPNeueMontrealBold;
    font-size: 48px;
    line-height: 56px;
    letter-spacing: 0;
    margin-bottom: 24px;
}

.left-column-text {
    font-family: PPNeueMontrealBold;
    font-size: 25px;
    line-height: 32px;
    letter-spacing: 0;
    color: #FFFFFF;
    background: #2D4654;
    display: inline-block;
    padding: 8px 12px;
}

.right-column-text {
    font-family: PPNeueMontrealBook;
    font-size: 24px;
    line-height: 40px;
    max-width: 566px;
    color: #000000;
}

.landing-page-social {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 120px;
}

.landing-page-social-content {
    width: 100%;
    max-width: 1440px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-left: 120px;
    padding-right: 120px;
}

.landing-page-social h3 {
    font-family: PPNeueMontrealBold;
    font-size: 48px;
    line-height: 56px;
    color: white;
}

.landing-page-social-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.landing-page-social-left p {
    font-family: PPNeueMontrealBook;
    font-size: 24px;
    line-height: 40px;
    color: white;
}

.landing-page-social-right {
    display: flex;
    flex-direction: row;
    gap: 40px;
    /*align-items: center;*/
}

.landing-page-social-right img {
    width: 48px;
    height: 48px;
    margin-left: 8px;
}

.landing-page-social-right a {
    color: #FFFFFF;
    font-family: PPNeueMontrealBold;
    font-size: 25px;
    line-height: 32px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.landing-page-footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    background: #000000;
    padding: 80px 120px;
    color: white;
}

.landing-page-footer-right {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.landing-page-footer div p {
    font-family: PPNeueMontrealBook;
    font-size: 16px;
    line-height: 24px;
    color: white;
}

.landing-page-footer-right a {
    font-family: PPNeueMontrealBook;
    font-size: 16px;
    line-height: 24px;
    color: white;
}

.footer-content {
    width: 100%;
    max-width: 1440px;
    /*background: red;*/
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-left: 120px;
    padding-right: 120px;
}


/*================ MENU MOBILE ===================*/
.header-mobile {
    display: none;
}

.header-mobile .button-menu {
    flex: 1;
    display: flex;
}

.bwp-header .header-mobile .header-logo {
    flex: none;
}

.header-mobile .button-menu .menu-mobile__btn {
    border: 0;
    padding: 0;
    background: transparent;
    font-size: 22px;
    line-height: 1;
    position: unset;
    text-align: left;
    width: auto;
    color: var(--menu-color);
}

.header-mobile .button-menu .menu-mobile__btn:hover {
    color: var(--menu-hover-color);
}

.header-mobile .button-menu .search-toggle {
    margin: 0 0 0 10px;
    font-size: 19px;
    top: 1px;
}

.header-mobile .header-right {
    display: flex;
    flex: 1;
    justify-content: flex-end;
}

.header-mobile .header-right .header-cart__link {
    font-size: calc(var(--font-size-base) + 2px);
}

.header-mobile .header-right .wishlist-mobile {
    font-size: 19px;
    cursor: pointer;
    margin-right: 6px;
    position: relative;
    top: 5px;
    right: -10px;
    transition: all 0.3s ease;
    padding-right: 12px;
}

.header-mobile .header-right .header-cart {
    right: -10px;

}

.header-mobile .header-right .wishlist-mobile a {
    color: var(--menu-color);
}

.header-mobile .header-right .wishlist-mobile a:hover {
    color: var(--menu-hover-color);
}

.header-mobile .header-right .wishlist-mobile .count {
    position: absolute;
    top: -6px;
    right: -2px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    display: inline-block;
    color: var(--gray-dark);
    text-align: center;
    background: var(--theme-color, #c8605f);
    border-radius: 50%;
    font-size: 11px;
    font-family: var(--font-family-base);
}

.header-mobile .header-right .header-cart__count {
    position: relative;
    top: -13px;
    right: 10px;
    line-height: 20px;
    width: 20px;
    height: 20px;
    display: inline-block;
    color: var(--gray-dark);
    text-align: center;
    border-radius: 50%;
    font-size: 11px;
    background: var(--theme-color, #c8605f);
    font-family: var(--font-family-base);
}

.header-mobile .header-logo {
    justify-content: center;
}

.header-mobile .header-center__inner {
    padding: 20px 0;
}

.header-mobile .header-bottom-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    display: flex;
    padding: 5px 15px;
    align-items: center;
    box-shadow: 0 1px 10px 5px rgba(0, 0, 0, 0.05);
    z-index: 999;
    line-height: 1;
    height: 50px;
}

.header-mobile .header-bottom-fixed > * {
    flex: 1;
    text-align: center;
}

.header-mobile .header-bottom-fixed > * a {
    color: var(--gray-dark);
}

.header-mobile .header-bottom-fixed > * a:hover {
    color: var(--menu-hover-color);
}

.header-mobile .header-bottom-fixed > * i {
    font-size: 20px;
    top: 0;
}

.header-mobile .header-bottom-fixed > * .search-toggle {
    margin: 0;
    top: -1px;
    color: var(--gray-dark);
}

.header-mobile .header-bottom-fixed > * .search-toggle:hover {
    color: var(--menu-hover-color);
}

.header-mobile .header-bottom-fixed > * span {
    display: block;
    font-size: calc(var(--font-size-base) - 4px);
    font-weight: var(--body-font-weight-medium);
    text-align: center;
    white-space: nowrap;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-mobile .header-bottom-fixed > *.wishlist-mobile {
    position: relative;
}

.header-mobile .header-bottom-fixed > *.wishlist-mobile i {
    position: relative;
}

.header-mobile .header-bottom-fixed > *.wishlist-mobile .count {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--gray-dark);
    line-height: 20px;
    display: inline-block;
    border-radius: 50%;
    color: var(--white);
    text-align: center;
    top: -5px;
    margin: 0;
    right: -15px;
    font-size: 11px;
    font-family: var(--font-family-base);
}

.menu-mobile--open {
    overflow: hidden;
}

.menu-mobile--open .menu-mobile {
    opacity: 1;
    visibility: visible;
}

.menu-mobile--open .menu-mobile__inner {
    transform: translate(0, 0);
}

.menu-mobile--open .js-menu-mobile {
    position: absolute;
    width: 100%;
    padding: 20px 15px;
    text-align: right;
    color: var(--white);
    z-index: 10;
    font-size: 0;
}

.menu-mobile--open .js-menu-mobile > span {
    cursor: pointer;
    position: relative;
    text-align: center;
    z-index: 1;
    display: inline-block;
    width: 30px;
    height: 30px;
    padding: 6px;
    border: 1px solid var(--border-color);
}

.menu-mobile--open .js-menu-mobile > span:before, .menu-mobile--open .js-menu-mobile > span:after {
    content: "";
    position: absolute;
    height: 1px;
    width: 14px;
    top: 50%;
    left: calc(50% - 7px);
    margin-top: -1px;
    background-color: var(--gray-dark);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.menu-mobile--open .js-menu-mobile > span:before {
    transform-origin: 50% 50%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.menu-mobile--open .js-menu-mobile > span:after {
    transform-origin: 50% 50%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.menu-mobile--open .js-menu-mobile > span:hover:before, .menu-mobile--open .js-menu-mobile > span:hover:after {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.menu-mobile {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
}

.menu-mobile__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.4);
}

.menu-mobile__inner {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 320px;
    height: 100%;
    overflow: hidden;
    background-color: var(--white);
    transform: translate(-320px, 0);
    transition: all 0.4s ease;
}

.menu-mobile__header {
    position: relative;
    z-index: 1;
    display: block;
    height: 50px;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--white);
}

.menu-mobile__nav {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 320px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 65px 20px 15px;
}

.menu-mobile__nav-item {
    border-bottom: 1px solid rgba(229, 229, 229, 0.5);
}

.menu-mobile__nav-item.megamenu {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(229, 229, 229, 0.5) !important;
}

.menu-mobile__nav-item.megamenu:last-child {
    margin-bottom: 0;
    border-bottom: 0 !important;
    padding-bottom: 0;
}

.menu-mobile__nav-item a {
    display: block;
    padding: 12px 0;
    color: var(--gray-dark);
    line-height: 20px;
    text-transform: capitalize;
    transition: color .3sease;
    font-size: calc(var(--font-size-base) + 2px);
}

.menu-mobile__nav-item a.mm-nav__prev {
    color: var(--text-color);
}

.menu-mobile__nav-item a:hover {
    color: var(--theme-color);
    text-decoration: none;
}

.menu-mobile__nav-item.active > .mm-nav__links {
    opacity: 1;
    visibility: visible;
    left: 0;
}

.menu-mobile__nav-item.active > .mm-nav__links.active--hidden {
    position: absolute;
}

.menu-mobile__nav-item.active > .mm-nav__links.active--hidden > .mm-nav__links-header {
    opacity: 0;
    pointer-events: none;
}

.menu-mobile__nav-item .menu-list {
    padding: 0;
    list-style: none;
    margin: 0;
}

.menu-mobile__nav-item .menu-list a {
    padding: 5px 0;
    position: relative;
}

.menu-mobile__nav-item .menu-list a span {
    position: absolute;
    line-height: 18px;
    padding: 0 10px;
    color: var(--white);
    font-size: 10px;
    top: -4px;
}

.menu-mobile__nav-item .menu-list a span.hot {
    background: #f11e1e;
}

.menu-mobile__nav-item .menu-list a span.new {
    background: #32d4bf;
}

.menu-mobile__nav-item .footer-menu__item a {
    text-transform: unset;
    font-size: var(--font-size-base);
    color: var(--text-color);
}

.menu-mobile__nav-item .footer-menu__item a:hover {
    color: var(--theme-color);
}

.mm-nav__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mm-nav__wrapper > a {
    width: calc(100% - 40px);
}

.mm-nav__btn {
    display: block;
    width: auto;
    height: 44px;
    padding: 0;
    color: var(--gray-dark-25);
    border: none;
    border-radius: 0;
    font-size: 20px;
    line-height: 44px;
    text-align: center;
    background: var(--white);
}

.mm-nav__btn:hover, .mm-nav__btn:focus {
    outline: 0;
    box-shadow: none;
}

.mm-nav__links {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    margin-top: 65px;
}

.mm-nav__links-header {
    position: relative;
    z-index: 1;
    height: 44px;
    background-color: var(--white);
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
    transition: all 0.4s ease-in-out;
}

.mm-nav__links-header a.mm-nav__prev {
    padding: 12px 20px;
    font-size: calc(var(--font-size-base) + 2px);
    color: var(--gray-dark);
    display: flex;
    justify-content: space-between;
    text-transform: capitalize;
}

.mm-nav__links-header a.mm-nav__prev i {
    font-size: 18px;
}

.mm-nav__prev {
    cursor: pointer;
}

.mm-nav__prev .fa {
    float: left;
    line-height: 20px;
}

.mm-nav__links-wrapper {
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 0;
    bottom: 0;
    left: 0;
    width: 320px;
    height: calc(100% - 52px);
    background-color: var(--white);
    padding: 80px 20px 60px;
    overflow-x: hidden;
    overflow-y: auto;
}

.mm-nav__links-wrapper::-webkit-scrollbar-track {
    background-color: #ececec;
}

.mm-nav__links-wrapper::-webkit-scrollbar {
    width: 2px;
    background-color: #ececec;
}

.mm-nav__links-wrapper::-webkit-scrollbar-thumb {
    background-color: var(--gray-dark);
}

.mm-nav__links-wrapper .menu-mobile__nav-item {
    border: 0;
}

.mm-nav__links-wrapper a {
    text-transform: unset;
    font-size: var(--font-size-base);
    padding: 5px 0;
    color: var(--text-color);
    letter-spacing: 0;
    font-weight: var(--body-font-weight-default);
}

.mm-nav__links-wrapper a:hover {
    color: var(--theme-color);
}

.mm-nav__links-wrapper .megamenu-heading {
    font-size: var(--font-size-base);
}

.mm-nav__links-wrapper .megamenu-products {
    margin-bottom: 50px;
}

.mm-nav__links-wrapper .megamenu-products:last-child {
    margin-bottom: 0;
}

.mm-nav__links-wrapper .button_all {
    text-align: center;
    order: 1;
}

.mm-nav__links-wrapper .button_all a {
    display: inline-block;
    line-height: 45px;
    padding: 0 20px;
    background: var(--theme-color);
    color: var(--white);
}

.mm-nav__links-wrapper .button_all a:hover {
    background: var(--theme-color);
}

/*============ FOOTER =================*/
body:not(.template-page, .template-index) .bwp-footer {
    margin-top: 60px;
}

.bwp-footer .newsletter-form__wrap {
    max-width: 500px;
}

/*============== SECTION ===========*/
.wpbingo-section__empty {
    display: flex;
    justify-content: center;
    padding: 30px 0;
}

.wpbingo-section__empty .rte {
    padding: 15px 30px;
    border: 2px dashed var(--border-color);
}

.newsletter-form .errors {
    margin: 0 0 10px;
    color: inherit;
}

.newsletter-form .alert {
    margin: 0;
}

.newsletter-form .alert--mailchimp {
    margin: 0 0 10px;
}

/*=============== SOCIAL SHARING ==================*/
.social-sharing a {
    display: inline-block;
    color: var(--text-color);
    border-radius: 2px;
    margin: 0 20px 0 0;
    height: 22px;
    line-height: 22px;
    text-decoration: none;
}

.social-sharing span {
    display: inline-block;
    vertical-align: top;
    height: 22px;
    line-height: 22px;
    font-size: calc(var(--font-size-base) - 2px);
}

.social-sharing span.share-title {
    display: none;
}

.social-sharing .fa {
    padding: 0 5px 0 0;
    font-size: var(--font-size-base);
}

.social-sharing .fa:before {
    line-height: 22px;
}

.featured-banner {
    position: relative;
    overflow: hidden;
}

.featured-banner a {
    display: block;
    overflow: hidden;
}

.featured-banner img {
    display: block;
    width: 100%;
    max-width: 100%;
    transition: all 0.5s ease-in-out;
}

/*================= FAQs page ==================*/
.page-faqs .page__inner {
    padding-bottom: 0;
}

.page-faqs .page-header {
    padding: 0;
}

.page-faqs .page-title {
    font-size: 50px;
    margin-top: 0;
    margin-bottom: 50px;
}

.page-faqs .faq-page__item-heading {
    font-size: 25px;
    margin: 0 0 26px 0;
    text-transform: capitalize;
    font-family: var(--font-family-second);
    font-weight: 700;
}

.page-faqs strong {
    font-size: 17px;
    font-weight: var(--body-font-weight-medium);
    color: #656565;
    text-transform: none;
}

.page-faqs .faq-page__item {
    margin-bottom: 70px;
}

.faq-page2 {
    max-width: 660px;
    margin: 50px auto;
}

.faq-page2 h2 {
    font-size: 25px;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-weight: 400;
}

.faq-page2 .card {
    border: 0;
}

.faq-page2 .card-body {
    padding: 30px 0;
    border-bottom: 1px solid #e8e8e8;
}

.faq-page2 .card-body p {
    margin-bottom: 0;
}

.faq-page2 .card-header {
    background: var(--white);
    border: 0;
    padding: 0;
}

.faq-page2 .card-header .card-link {
    position: relative;
    padding: 15px 15px 15px 0;
    border-bottom: 1px solid var(--gray-dark);
    font-size: 14px;
    display: block;
    line-height: 25px;
    font-weight: var(--body-font-weight-bold);
    text-transform: capitalize;
}

.faq-page2 .card-header .card-link:before {
    position: absolute;
    font-family: feather;
    font-size: 16px;
    content: "\e996";
    right: 0;
    transition: all .3s ease;
    font-weight: 400;
}

.faq-page2 .card-header .card-link.collapsed {
    border-color: #e8e8e8;
}

.faq-page2 .card-header .card-link.collapsed:before {
    content: "\e9b1";
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

/*============= VERIFY POPUP =============*/
.verify-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 999999999;
}

.verify-popup.active {
    display: flex;
}

.verify-popup.disabled {
    background: var(--gray-dark);
}

.verify-popup.disabled .content-verify {
    background: transparent;
    max-width: 700px;
}

.verify-popup .close-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
}

.verify-popup .content-verify {
    width: 100%;
    max-width: 450px;
    background: var(--white);
    z-index: 2;
    position: relative;
    padding: 30px;
    max-height: 100%;
    overflow: auto;
}

.verify-popup .content-verify::-webkit-scrollbar-track {
    background-color: #ececec;
}

.verify-popup .content-verify::-webkit-scrollbar {
    width: 2px;
    background-color: #ececec;
}

.verify-popup .content-verify::-webkit-scrollbar-thumb {
    background-color: var(--gray-dark);
}

.verify-popup .alert-verify {
    color: var(--white);
    padding: 50px 0;
    font-size: 30px;
}

.verify-popup .alert-verify i {
    color: #ffaf00;
    margin-right: 10px;
}

.verify-popup .verify-info {
    text-align: center;
}

.verify-popup .title {
    display: inline-block;
    margin: 0;
    font-size: 25px;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.verify-popup .title:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc(50% - 50px);
    height: 1px;
    width: 100px;
    background: var(--gray-dark);
    background: var(--gray-dark);
}

.verify-popup .group-button {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.verify-popup .group-button button {
    background: var(--gray-dark);
    border: 0;
    color: var(--white);
    font-size: calc(var(--font-size-base) - 2px);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: var(--body-font-weight-medium);
    padding: 11px 20px;
    line-height: 18px;
    min-width: 130px;
    margin: 5px;
    border-radius: 30px;
}

.verify-popup .group-button button:hover {
    background: var(--theme-color);
}

/*============= SECCTION AND BLOCK =============*/
.bwp-block-image .image {
    display: block;
}

.bwp-block-image .image.style-2 {
    position: relative;
}

@media (max-width: 1200px) {
    .bwp-block-image .image.style-2 img {
        width: 420px;
    }

    .bwp-block-image .image.style-2:before {
        left: 0 !important;
        width: 420px !important;
        height: 285px !important;
        top: -39px;
    }
}

@media (max-width: 768px) {
    .bwp-block-image .image.style-2:before {
        display: none;
    }
}

.bwp-block-image .image.style-2:before {
    position: absolute;
    content: "";
    top: -39px;
    left: 93px;
    width: 530px;
    height: 360px;
    background: #f2f2f2;
}

.wpbingo-custom-section .section-content, .wpbingo-inner-section .inner-content, .wpbingo-footer-section .section-content {
    display: flex;
    flex-wrap: wrap;
}

.wpbingo-custom-section .section-content.vertical-top, .wpbingo-inner-section .inner-content.vertical-top, .wpbingo-footer-section .inner-content.vertical-top {
    align-items: start;
}

.wpbingo-custom-section .section-content.vertical-middle, .wpbingo-inner-section .inner-content.vertical-middle, .wpbingo-footer-section .inner-content.vertical-middle {
    align-items: center;
}

.wpbingo-custom-section .section-content.vertical-bottom, .wpbingo-inner-section .inner-content.vertical-bottom, .wpbingo-footer-section .inner-content.vertical-bottom {
    align-items: end;
}

.wpbingo-custom-section .section-content.horizontal-left, .wpbingo-inner-section .inner-content.horizontal-left, .wpbingo-footer-section .inner-content.horizontal-left {
    justify-content: left;
}

.wpbingo-custom-section .section-content.horizontal-right, .wpbingo-inner-section .inner-content.horizontal-right, .wpbingo-footer-section .inner-content.horizontal-right {
    justify-content: right;
}

.wpbingo-custom-section .section-content.horizontal-center, .wpbingo-inner-section .inner-content.horizontal-center, .wpbingo-footer-section .inner-content.horizontal-center {
    justify-content: center;
}

.vertical-position-middle {
    top: 50%;
    transform: translateY(0%);
}

.vertical-position-top {
    top: 0;
}

.vertical-position-bottom {
    bottom: 0;
}

.horizontal-position-left {
    justify-content: left;
}

.horizontal-position-right {
    justify-content: right;
}

.horizontal-position-center {
    justify-content: center;
}

.bwp-button {
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: all .2s ease;
}

.wpbingo-button .bwp-button.style-2 {
    writing-mode: vertical-lr;
    animation: c 2s ease-in infinite;
}

.wpbingo-button .bwp-button.style-2 .icon-right:before {
    transform: rotate(90deg);
    display: inline-block;
    font-weight: 700;
}

/*============= END =============*/

@media (min-width: 1200px) {
    .header-search-mobile {
        display: none;
    }
}

@media (max-width: 1199px) {
    .header-page-link .wishlist {
        margin-right: 15px;
    }

    .header-mobile {
        display: block;
    }

    .header-desktop {
        display: none;
    }

    .bwp-footer.have-menu-bottom {
        padding-bottom: 50px;
    }

    .content-search-toggle .predictive-search-content .predictive-search-content-product.full .predictive-search__results-list li {
        width: 33.33%;
    }

    .content-search-toggle .search-modal .predictive-search__results-list {
        margin: 0 -7.5px;
    }

    .content-search-toggle .search-modal .predictive-search__results-list li {
        width: 33.33%;
        padding: 0 7.5px;
    }

    .content-search-toggle .contents-search {
        padding: 50px;
        margin-top: 60px;
        max-height: calc(100% - 120px);
    }

    .content-search-toggle .content-menu-search {
        padding: 30px 15px;
    }

    .content-search-toggle .close-search {
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 991px) {
    .bwp-footer .footer-center__inner > .row > div {
        margin-bottom: 50px;
    }

    .content-search-toggle .predictive-search-content .predictive-search-content-product.full .predictive-search__results-list li {
        width: 50%;
    }

    .content-search-toggle .search-modal .predictive-search__results-list li {
        width: 50%;
    }
}

/* Landing page - tablet */
@media (max-width: 991px) {

  /* HERO */
  .landing-page-hero {
    height: 70vh;
    min-height: 620px;
  }

  .landing-page-hero__content {
    padding: 40px 24px;
  }

  .landing-page-logo {
    width: 124px;
    height: 109px;
    margin-bottom: 24px;
  }

  .landing-page-hero h2 {
    font-size: 72px;
    line-height: 72px;
  }

  /* NEWSLETTER */
  .landing-page .newsletter-signup {
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .landing-page .newsletter-signup h3 {
    font-size: 44px;
    line-height: 52px;
    text-align: center;
  }

  .landing-page .newsletter-signup h4 {
    font-size: 24px;
    line-height: 32px;
    text-align: center;
  }

  .avance-newsletter-signup-title {
    font-size: 20px;
    line-height: 32px;
    margin-top: 40px;
    text-align: center;
  }

  /* BRAND MODELS — column like mobile */
  .brand-models-content {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .brand-model-image {
    width: 320px;
  }

  /* BUILT FOR PROGRESS — column like mobile */
  .built-for-progress {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 80px 48px;
  }

  .built-for-progress h3 {
    font-size: 36px;
    line-height: 44px;
    text-align: center;
  }

  .left-column-text {
    font-size: 22px;
    line-height: 28px;
    text-align: center;
  }

  .right-column-text {
    font-size: 18px;
    line-height: 32px;
    text-align: center;
    max-width: 640px;
  }

  /* SOCIAL — column like mobile */
  .landing-page-social {
    flex-direction: column;
    align-items: center;
    padding: 80px 48px;
  }

  .landing-page-social-content {
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
    gap: 32px;
    max-width: 900px;
  }

  .landing-page-social h3 {
    font-size: 36px;
    line-height: 44px;
    text-align: center;
  }

  .landing-page-social p {
    font-size: 18px;
    line-height: 32px;
    text-align: center;
  }

  .landing-page-social-right {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-top: 24px;
  }

  .landing-page-social-right img {
    width: 32px;
    height: 32px;
  }

  .landing-page-social-right a {
    font-size: 22px;
    line-height: 28px;
  }

  /* FOOTER — column like mobile */
  .landing-page-footer {
    flex-direction: column;
    align-items: center;
    padding: 64px 48px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
  }

  .landing-page-footer div p,
  .landing-page-footer-right a {
    font-size: 14px;
    line-height: 20px;
    text-align: center;
  }
}

/* Small tablet - landing page */
@media (max-width: 767px) {

  /* HERO */
  .landing-page-hero {
    height: 620px;
  }

  .landing-page-hero__content {
    padding: 32px 20px;
  }

  .landing-page-logo {
    width: 110px;
    height: 96px;
  }

  .landing-page-hero h2 {
    font-size: 56px;
    line-height: 56px;
  }

  /* NEWSLETTER */
  .landing-page .newsletter-signup {
    margin-top: 64px;
    margin-bottom: 64px;
  }

  .landing-page .newsletter-signup h3 {
    font-size: 36px;
    line-height: 42px;
  }

  .landing-page .newsletter-signup h4 {
    font-size: 22px;
    line-height: 30px;
  }

  .avance-newsletter-signup-title {
    font-size: 18px;
    margin-top: 32px;
  }

  /* BRAND MODELS */
  .brand-models-content {
    gap: 24px;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .brand-model-image {
    width: 290px;
  }

  /* BUILT FOR PROGRESS */
  .built-for-progress {
    padding: 64px 32px;
    gap: 24px;
  }

  .built-for-progress h3 {
    font-size: 30px;
    line-height: 38px;
  }

  .left-column-text {
    font-size: 21px;
  }

  .right-column-text {
    font-size: 17px;
  }

  /* SOCIAL */
  .landing-page-social {
    padding: 64px 32px;
  }

  .landing-page-social h3 {
    font-size: 30px;
    line-height: 38px;
  }

  .landing-page-social p {
    font-size: 17px;
  }

  .landing-page-social-right img {
    width: 28px;
    height: 28px;
  }

  .landing-page-social-right a {
    font-size: 20px;
  }

  /* FOOTER */
  .landing-page-footer {
    padding: 56px 32px;
  }

  .landing-page-footer div p,
  .landing-page-footer-right a {
    font-size: 13px;
    line-height: 18px;
  }
}


@media (max-width: 767px) {
    .content-search-toggle .predictive-search-content .predictive-search-content-product.full .predictive-search__results-list li {
        width: 50%;
    }

    .content-search-toggle .search-modal .predictive-search__results-list li {
        width: 50%;
    }

    .content-search-toggle .predictive-search-content .predictive-search-content-product {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .content-search-toggle .predictive-search-content .predictive-search-content-blog {
        margin-top: 30px;
        max-width: 100%;
        flex: 0 0 100%;
    }

    .content-search-toggle .content-menu-search {
        padding: 30px 15px;
    }

    .bwp-footer .footer-bottom .aligin_mobi-left {
        text-align: left;
        justify-content: left;
    }

    .bwp-footer .footer-bottom .aligin_mobi-left .footer-menu {
        justify-content: left;
    }

    .bwp-footer .footer-bottom .aligin_mobi-right {
        text-align: right;
        justify-content: right;
    }

    .bwp-footer .footer-bottom .aligin_mobi-right .footer-menu {
        justify-content: right;
    }

    .bwp-footer .footer-bottom .aligin_mobi-center {
        text-align: center;
        justify-content: center;
    }

    .bwp-footer .footer-bottom .aligin_mobi-center .footer-menu {
        justify-content: center;
    }

    .bwp-footer .footer-center.accordion .content-toggle {
        transition: all 0.3s ease;
    }

    .bwp-footer .footer-center.accordion .content-toggle .footer-block {
        display: none;
    }

    .bwp-footer .footer-center.accordion .content-toggle.active .title-footer:before {
        transform: rotate(180deg);
    }

    .bwp-footer .footer-center.accordion .title-footer {
        position: relative;
        transition: all 0.3s ease;
    }

    .bwp-footer .footer-center.accordion .title-footer:before {
        content: "\e92e";
        font-family: feather;
        position: absolute;
        right: 0;
        transition: all 0.3s ease;
        font-size: 18px;
    }

    .bwp-footer .footer-center.accordion .content-toggle:not(:last-child):not(.active) {
        margin-bottom: 30px;
    }

    .bwp-footer .footer-center.accordion .content-toggle:not(:last-child):not(.active) .title-footer {
        margin-bottom: 0;
    }

    .countdown {
        padding: 0;
    }

    .bwp-load-slick-mobile {
        margin: 0 !important;
    }

    .bwp-load-slick-mobile .slick-dots {
        position: static;
    }
}

@media (max-width: 767px) {
    .content-search-toggle .contents-search {
        padding: 50px 30px;
        margin-top: 50px;
        max-height: calc(100% - 100px);
    }
}


@media (max-width: 480px) {
    .verify-popup .title {
        font-size: 20px;
    }

    .bwp_slick-margin-mobile .slick-arrow {
        display: none !important;
    }

    .bwp_slick-margin-mobile .slick-slider {
        margin-right: -15px;
    }

    .bwp_slick-margin-mobile .slick-list {
        padding-right: 33%;
    }

    .bwp_slick-margin-mobile .slick-dots {
        display: none !important;
    }

    .landing-page-hero {
        position: relative;
        overflow: hidden;

        height: 536px;

        display: grid;
        place-items: center;
        text-align: center;
    }

    .landing-page-hero__bg {
        position: absolute;
        inset: 0;

        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: 50% 78%; /* your chosen crop */

        z-index: 0;
    }

    .landing-page-hero__content {
        padding: 24px 16px;
    }

    .landing-page-logo {
        width: 97px;
        height: 85px;
    }

    .landing-page-hero__content h2 {
        font-size: 40px;
        line-height: 40px;
    }

    .landing-page .newsletter-signup {
        margin-top: 48px;
    }

    .landing-page .newsletter-signup h3 {
        font-size: 26px;
        line-height: 32px;
    }

    .landing-page .newsletter-signup h4 {
        font-size: 14px;
        line-height: 16px;
        text-align: center;
    }

    .newsletter-input-group input {
        padding-left: 16px;
        font-family: PPNeueMontrealBook;
        font-size: 20px;
        line-height: 32px;
        width: 236px;
        border: 1px solid var(--avance-azure);
    }

    .newsletter-submit {
        background-color: var(--avance-azure);
        padding: 16px 24px;
        font-family: PPNeueMontrealBold;
        color: var(--white);
        line-height: 16px;
        font-size: 14px;
        border: 1px solid var(--avance-azure);
    }

    .avance-newsletter-signup-title {
        font-family: PPNeueMontrealBook;
        font-size: 16px;
        line-height: 32px;
        text-align: center;
        margin-top: 24px;
        padding: 0 24px;
    }

    .brand-models-content {
        flex-direction: column;
        align-items: center;
    }

    .brand-model-image {
        width: 266px;
    }

    .built-for-progress {
        flex-direction: column;
        align-items: center;
        padding: 48px 24px;
        gap: unset;
    }

    .built-for-progress h3 {
        font-size: 26px;
        line-height: 32px;
        text-align: center;
    }

    .left-column-text {
        font-size: 20px;
        line-height: 24px;
        text-align: center;
    }

    .right-column-text {
        font-size: 16px;
        line-height: 32px;
        text-align: center;
        padding-top: 24px;
    }

    .landing-page-social-content {
        padding-left: unset;
        padding-right: unset;
        flex-direction: column;
        padding: 48px 0px;
    }

    .landing-page-social {
        flex-direction: column;
        align-items: center;
        padding: unset;
    }

    .landing-page-social-right {
        flex-direction: column;
        align-items: center;
        padding-top: 32px;
    }

    .landing-page-social h3 {
        font-size: 26px;
        line-height: 32px;
        text-align: center;
    }

    .landing-page-social p {
        font-size: 16px;
        line-height: 32px;
        text-align: center;
    }

    .landing-page-social-right img {
        height: 24px;
        width: 24px;
    }

    .landing-page-social-right a {
        font-size: 20px;
        line-height: 24px;
    }

    .landing-page-footer {
        flex-direction: column;
        align-items: center;
        padding: 48px 0;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        padding-left: unset;
        padding-right: unset;
    }

    .landing-page-footer div p, .landing-page-footer-right a {
        font-size: 12px;
        line-height: 16px;
        text-align: center;
    }
}
