

/* === bookappointment_block === */

.bookappointment_block {
  padding: 60px 0px;
  background-color: #f3f3f3;
  --padding: 40px;
}

@media (max-width: 575.98px) {
  .bookappointment_block {
    --padding: 20px 30px;
  }
}

.bookappointment_block .form-col {
  background-color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: var(--padding);
}

.bookappointment_block form .col-12 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--bs-gutter-x));
}

.bookappointment_block form .form-control {
  background-color: #efefef;
  border-color: #efefef;
  min-height: 58px;
  border-radius: 0;
}

.bookappointment_block form select.form-control {
  background-image: url(/images/default/dropdown-icon.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) 50%;
}

.bookappointment_block form .checkbox + label::before {
  border-radius: 0;
}

.bookappointment_block form .tickbox .col-form-label {
  padding-top: 0;
}

.bookappointment_block button[type="submit"] {
  display: block;
  width: auto;
  border: 2px solid #fff;
  margin-top: 15px;
  background-color: var(--darkbtn);
  border-color: var(--darkbtn);
}

.bookappointment_block .form-group.tickbox {
  grid-column: 1/3;
}

.bookappointment_block .bottom-box {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bookappointment_block .required {
  padding-top: 10px;
  display: block;
  font-size: 12px;
  color: #f00;
}

.bookappointment_block
  :is(
    .daterangepicker td.active,
    .daterangepicker td.active:hover
  ) {
  background-color: var(--darkbtn);
  border-radius: 0;
}

.bookappointment_block .daterangepicker .drp-buttons .btn {
  background-color: var(--darkbtn);
  border-color: var(--darkbtn);
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  line-height: 24px;
  padding: 10px 20px;
  border-radius: 0px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 767px) {
  .bookappointment_block form .col-12 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .bookappointment_block h2 {
    font-size: 26px;
    text-align: center;
  }

  .bookappointment_block .form-text {
    text-align: center;
  }

  .bookappointment_block form .col-12 {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}

/* === bookappointment_block === */



/* === our-stores === */

.our-stores {
    padding: 65px 0px;
    position: relative;
    overflow: hidden;
}


.twof_onec + .our-stores,
.cwcarousel + .our-stores {
    padding-top: 0;
}

    .twof_onec + .our-stores:before,
    .cwcarousel + .our-stores:before {
        content: "";
        background-color: #f3f3f3;
        height: 80px;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: -1;
    }

.our-stores .title-block {
    position: relative;
    margin-bottom: 70px;
}

.our-stores .block-title {
    margin-bottom: 0;
}

.our-stores .nav {
    position: absolute;
    right: calc(var(--bs-gutter-x) * .5);
    top: 50%;
    transform: translateY(-50%);
    gap: 12px;
}

    .our-stores .nav button {
        border: none;
        outline: none;
        background: none;
        font-size: 32px;
        padding: 0px;
    }

.our-stores .slick-list {
    overflow: visible;
}

.our-stores .slick-track {
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.our-stores .store-item {
    font-size: 16px;
}

    .our-stores .store-item .title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .our-stores .store-item .address {
        margin-bottom: 10px;
    }

        .our-stores .store-item .address p {
            line-height: 22px;
            margin-bottom: 0;
        }

    .our-stores .store-item a {
        color: inherit;
    }

    .our-stores .store-item .text {
    }

        .our-stores .store-item .text p:last-child {
            color: #747474;
            line-height: 20px;
        }

    .our-stores .store-item .show-direction {
        display: flex;
        flex-direction: row;
        align-items: center;
        border: 0;
        outline: none;
        background: none;
        padding: 0;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

        .our-stores .store-item .show-direction img {
            margin-right: 10px;
        }

.our-stores .our-stores-map {
    height: 470px;
    margin-top: 35px;
}


.our-stores .leaflet-pane.leaflet-tile-pane {
    filter: grayscale(1);
}


.our-stores .leaflet-marker-icon {
    transition: 0.4s all;
}

.our-stores .our-stores-map.mouseover .leaflet-marker-icon:not(.active) {
    opacity: 0.2;
}


@media(max-width: 767px) {
    /* the slides */
    .our-stores .slick-slide {
        margin: 0 16px;
    }

    /* the parent */
    .our-stores .slick-list {
        margin: 0 -16px;
    }
}

@media(max-width: 575px) {
    .our-stores .block-title {
        text-align: center;
    }

    .our-stores .nav button {
        display: none !important;
    }

    .twof_onec + .our-stores::before, .cwcarousel + .our-stores::before {
        height: 65px;
        border-bottom: 1px solid #e6e6e6;
    }

    .our-stores .title-block {
        margin-bottom: 18px;
    }

    .our-stores .store-item .title {
        display: none;
    }

    .our-stores .mobile-dropdown {
        position: relative;
    }

        .our-stores .mobile-dropdown::before {
            content: "\2b";
            font-family: 'Font Awesome 6 Pro';
            font-weight: 300;
            font-size: 32px;
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
        }

        .our-stores .mobile-dropdown:after {
            content: "";
            background-color: #e6e6e6;
            position: absolute;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            height: 1px;
            width: 100vw;
        }

        .our-stores .mobile-dropdown select {
            font-size: 24px;
            text-align: center;
            background: none;
            outline: none;
            border: none;
            padding: 14px 0px;
            width: 100%;
            /* for Firefox */
            -moz-appearance: none;
            /* for Safari, Chrome, Opera */
            -webkit-appearance: none;
            appearance: none;
        }

    .our-stores .store-item {
        padding-top: 25px;
        text-align: center;
    }

        .our-stores .store-item .direction {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
        }
}

/* === our-stores === */



/* === category-w-products === */

.cwproducts {
    padding: 35px 0px;
    background-color: #f3f3f3;
    position: relative;
}


.our-stores + .cwproducts {
    padding-top: 20px;
}

    .our-stores + .cwproducts:before {
        content: "";
        background-color: #f3f3f3;
        height: 120px;
        width: 100%;
        position: absolute;
        top: -120px;
        left: 0;
        pointer-events: none;
        z-index: -1;
    }

.cwproducts .category-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-auto-flow: row dense;
}

    .cwproducts .category-grid .item {
        width: 100%;
        height: auto;
        aspect-ratio: 1/0.72;
        position: relative;
        overflow: hidden;
        --paddingx: 40px;
        --paddingy: 38px;
    }

        .cwproducts .category-grid .item::before {
            content: "";
            background: linear-gradient(0deg, rgba(0,0,0,0.6978992280505952) 0%, rgba(0,0,0,0.29733900396095936) 26%, rgba(0,0,0,0) 75%);
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .cwproducts .category-grid .item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

.cwproducts .content {
    position: absolute;
    left: var(--paddingx);
    bottom: var(--paddingy);
    width: calc(100% - calc(var(--paddingx) * 2));
    height: auto;
    max-height: calc(100% - calc(var(--paddingy) * 2));
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
}


    .cwproducts .content .text {
        color: #fff;
    }

    .cwproducts .content h3 {
        font-size: 24px;
    }

        .cwproducts .content h3 b, .cwproducts .content h3 strong {
            font-size: 36px;
            font-weight: 400;
            text-transform: uppercase;
        }

.cwproducts .category-grid .item.products {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

    .cwproducts .category-grid .item.products:before {
        display: none;
    }

.cwproducts .proditem {
    padding: 30px 30px 30px 30px;
    background-color: #fff;
}

.cwproducts .products-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    height: 100%;
}

    .cwproducts .products-item a {
        text-decoration: none;
    }

    .cwproducts .products-item .products-02-image,
    .cwproducts .products-item img {
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
        object-fit: cover;
        object-position: center;
    }

    .cwproducts .products-item .product-brand {
        color: #808080;
        font-size: 12px;
        text-transform: uppercase;
        margin-bottom: 5px;
    }

        .cwproducts .products-item .product-brand.d-empty {
            line-height: 18px;
            visibility: hidden;
        }

    .cwproducts .products-item .product-name {
        color: var(--darkbtn);
        font-size: 16px;
        font-weight: 500;
    }

    .cwproducts .products-item .product-price {
        color: var(--darkbtn);
        font-size: 20px;
        font-weight: 900;
        margin-top: 10px;
    }

@media(max-width: 1199px) {
    .cwproducts .content {
        flex-direction: column;
        align-items: flex-start;
        justify-content: normal;
    }

        .cwproducts .content .text {
            padding-bottom: 20px;
        }
}

@media(max-width: 991px) {
    .cwproducts .proditem + .proditem {
        display: none;
    }

    .cwproducts .category-grid .item {
        aspect-ratio: 1/1.25;
    }
}

@media(max-width: 767px) {
    .cwproducts .category-grid {
        grid-template-columns: 1fr;
    }

        .cwproducts .category-grid .item {
            aspect-ratio: 1/1;
        }

            .cwproducts .category-grid .item.products {
                display: none;
            }
}

@media(max-width: 575px) {
    .cwproducts .category-grid .item {
        aspect-ratio: 1/1.25;
    }

    .cwproducts .content {
        text-align: center;
    }

    .cwproducts .btn {
        width: 100%;
    }
}

/* === category-w-products === */



/* === latest_blog === */

.latest_blog {
  padding: 35px 0px 65px;
  background-color: #f3f3f3;
  position: relative;
}

.latest_blog .row {
  --bs-gutter-x: 10px;
  --bs-gutter-y: var(--bs-gutter-x);
}

.latest_blog .block-title {
  margin-bottom: 30px;
}

.latest_blog .blog-item {
  text-decoration: none;
  color: var(--body-color);
}

.latest_blog img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/0.58;
  object-fit: cover;
  object-position: center;
}

.latest_blog .blog-title {
  font-size: 16px;
  margin-top: 10px;
}

.latest_blog hr {
  border-color: #cfcfcf;
  margin: 20px 0px 10px;
}

.latest_blog .btn {
  color: var(--body-color);
  padding: 0;
  border: 0;
}

@media (max-width: 1199px) {
  .latest_blog img {
    aspect-ratio: 1/0.8;
  }
}

@media (max-width: 991px) {
  .blog-wrapper:nth-child(4) {
    display: none;
  }
}

@media (max-width: 767px) {
  .blog-wrapper:nth-child(3) {
    display: none;
  }
}

/* === latest_blog === */



/* === instagram-feed01 === */

.instagram-feed01 {
    margin: 60px 0px 0px;
    --b-radius: 10px;
    overflow: hidden;
    position: relative;
}

    .instagram-feed01 .block-title {
        margin-bottom: 30px;
        font-weight: 600;
    }

    .instagram-feed01 .instagram-carouse .slick-list {
        overflow: visible;
    }

    .instagram-feed01 .instagram-carouse .slick-slide {
        transition: 0.4s opacity;
    }


    .instagram-feed01 img {
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: center;
        aspect-ratio: 1/1;
        border-radius: 0;
        position: relative;
        z-index: 2;
    }

    .instagram-feed01 .instagram-carouse {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: auto;
    }

    .instagram-feed01 .inta_item {
        --overflowpadding: 60px;
        overflow: visible;
        transition: 0.3s border;
        position: relative;
        padding-bottom: var(--overflowpadding);
    }

        .instagram-feed01 .inta_item:hover img {
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
        }

    .instagram-feed01 .caption {
        position: absolute;
        bottom: var(--overflowpadding);
        left: 0;
        z-index: 11;
        color: #fff;
        padding: 40px;
        background-color: rgba(0,0,0,0.4);
        height: calc(100% - var(--overflowpadding));
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        font-size: 15px;
        text-align: center;
        transition: 0.3s all;
        opacity: 0;
        pointer-events: none;
    }

    .instagram-feed01 .hover-text {
        background: #000;
        color: #fff;
        text-align: center;
        padding: 15px 0px;
        border-bottom-left-radius: var(--b-radius);
        border-bottom-right-radius: var(--b-radius);
        position: absolute;
        width: 100%;
        top: calc(100% - var(--overflowpadding));
        left: 0;
        z-index: 1;
        transform: translateY(-100%);
        transition: 0.3s all;
        opacity: 0;
        pointer-events: none;
    }

    .instagram-feed01 .insta-btn {
        color: var(--body-color);
        padding: 0;
        border: none;
        outline: none;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

@media(min-width:1200px) {
    .instagram-feed01 .inta_item:hover .caption {
        opacity: 1;
    }

    .instagram-feed01 .inta_item:hover .hover-text {
        transform: translateY(0%);
        opacity: 1;
    }
}

@media(max-width: 991px) {

    .instagram-feed01 .instagram-carouse {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width: 767px) {

    .instagram-feed01 .inta_item {
        padding-bottom: 0;
    }

    .instagram-feed01 .instagram-carouse {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
}


@media(max-width: 575px) {
    .instagram-feed01 .block-title {
        margin-bottom: 5px;
        text-align: center;
    }

    .instagram-feed01 .insta-btn {
        position: static;
        transform: none;
        display: block;
        text-align: center;
        margin-bottom: 20px;
    }
}

/* === instagram-feed01 === */



/* === newsletter_01 === */

.newsletter_01 {
    padding: 65px 0px;
    background-color: #f3f3f3;
}

    .newsletter_01 .title {
        margin-bottom: 0;
    }

    .newsletter_01 form button[type=submit] {
        border-radius: 0px;
        color: #fff;
        border-color: var(--body-color);
        background-color: var(--body-color);
    }

    .newsletter_01 form .help-block.form-error {
        color: rgb(185, 74, 72);
    }

    .newsletter_01 #news_email {
        min-height: 58px;
        border-color: #fff;
        border-radius: 0;
    }

    .newsletter_01 form .has-error div.error {
        position: absolute;
        left: calc(var(--bs-gutter-x) * .5);
        top: calc(100% + 5px);
    }
    /*.newsletter_01 form .checkbox{
        position: absolute;
        opacity: 0;
        width: 1px;
    }

    .newsletter_01 form .checkbox + label {
        position: relative;
        padding-left: 23px !important;
        cursor: pointer;
    }

    .newsletter_01 form input[type="checkbox"] + label::before {
        position: absolute;
        left: 0;
        content: "\f0c8";
        color: rgb(0, 0, 0);
        font-family: 'Font Awesome 5 Free';
        font-size: 20px;
        display: inline-block;
        font-style: normal;
        vertical-align: middle;
        cursor: pointer;
    }

    .newsletter_01 form .tickbox.has-error input[type="checkbox"] + label::before {
        color: rgb(255, 0, 0);
    }

    .newsletter_01 form .checkbox:checked + label::before {
        content: "\f14a";
        color: rgb(0, 0, 0);
    }*/
    .newsletter_01 form .tickbox.has-error div.error {
        display: none !important;
    }

@media(max-width: 767px) {
    .newsletter_01 {
        padding: 35px 0px;
    }

        .newsletter_01 .title,
        .newsletter_01 p {
            text-align: center;
        }
}

@media(max-width: 575px) {
    .newsletter_01 form button[type="submit"] {
        width: 100%;
        margin-top: 10px;
    }

    .newsletter_01 form .has-error div.error {
        top: calc(100% + 70px);
    }
}

/* === newsletter_01 === */



/* === footer-04-ecommerce === */

.footer-04-ecommerce {
    background: #fff;
    padding-bottom: 30px;
    padding-top: 80px;
}

    .footer-04-ecommerce .column-title {
        color: var(--body-color);
        font-size: 16px;
        font-weight: bold;
        text-transform: uppercase;
        margin-bottom: 15px;
        margin-top: 0px;
    }

    .footer-04-ecommerce .link-list .footer-link a {
        color: var(--body-color);
        font-size: 16px;
        display: block;
        width: 100%;
        margin-bottom: 10px;
        text-decoration: none;
    }

    .footer-04-ecommerce .contact-with-us {
        display: flex;
        flex-direction: row;
        margin-top: 25px;
        margin-bottom: 25px;
        align-items: center;
    }

        .footer-04-ecommerce .contact-with-us .title {
            color: #fff;
            font-size: 18px;
            font-weight: bold;
            margin-right: 10px;
        }

        .footer-04-ecommerce .contact-with-us .icons {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
        }

            .footer-04-ecommerce .contact-with-us .icons > a {
                background: #4b4b4b;
                width: 40px;
                height: 40px;
                line-height: 40px;
                margin: 0 5px;
                margin-bottom: 10px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #fff;
                font-size: 24px;
                border-radius: 50%;
                text-decoration: none;
                transition: 0.1s all;
            }

                .footer-04-ecommerce .contact-with-us .icons > a:hover,
                .footer-04-ecommerce .contact-with-us .icons > a:active {
                    background: #fff;
                    color: #4b4b4b;
                }

    .footer-04-ecommerce .last-footer {
        color: var(--body-color);
        font-style: normal;
        font-size: 14px;
    }

        .footer-04-ecommerce .last-footer a {
            color: var(--body-color);
            font-size: 14px;
            width: 100%;
            text-decoration: none;
        }

        .footer-04-ecommerce .last-footer em.separator {
            color: #fff;
            font-style: normal;
            margin-left: 5px;
            margin-right: 5px;
        }

        .footer-04-ecommerce .last-footer .advansys {
            font-family: Arial;
            font-weight: 700;
        }

    .footer-04-ecommerce .copyright-footer-links {
        margin-top: 30px;
        display: flex;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
        gap: 30px;
        margin-bottom: 15px;
    }

        .footer-04-ecommerce .copyright-footer-links a {
            font-size: 14px;
            color: #888888;
            padding: 5px 0px;
            width: auto;
        }

    .footer-04-ecommerce .second-footer {
        border-top: 1px solid #e5e5e5;
        border-bottom: 1px solid #e5e5e5;
        padding: 30px 0px;
        margin-top: 30px;
    }

        .footer-04-ecommerce .second-footer .footer-payments {
            display: flex;
            flex-direction: row;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
            height: 100%;
        }

            .footer-04-ecommerce .second-footer .footer-payments img {
                max-height: 36px;
            }

    .footer-04-ecommerce .social-icons {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
    }

        .footer-04-ecommerce .social-icons a {
            background-color: var(--body-color);
            color: #fff;
            fill: #fff;
            width: 45px;
            height: 45px;
            display: flex;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            font-size: 19px;
            text-decoration: none;
        }

            .footer-04-ecommerce .social-icons a svg,
            .footer-04-ecommerce .social-icons a svg g {
                fill: #fff;
                stroke: #fff;
                width: 19px;
                height: auto;
            }

@media(max-width: 991px) {

    .footer-04-ecommerce {
        overflow: hidden;
        position: relative;
    }

        .footer-04-ecommerce .row {
            gap: 60px 0px;
        }

        /*.additional-links .footer-link {
        width: 33%;
        display: inline-block;
    }

        .additional-links .footer-link a {
        }*/

        .footer-04-ecommerce .contact-with-us {
            justify-content: center;
            align-items: center;
        }

        .footer-04-ecommerce .last-footer {
            text-align: center;
        }

        .footer-04-ecommerce .second-footer {
            border-bottom: 0;
        }

            .footer-04-ecommerce .second-footer .footer-payments {
                gap: 20px;
                justify-content: center;
                position: relative;
            }

                .footer-04-ecommerce .second-footer .footer-payments:after {
                    content: "";
                    background-color: #e5e5e5;
                    height: 1px;
                    width: 100vw;
                    position: absolute;
                    left: 50%;
                    bottom: -30px;
                    transform: translateX(-50%);
                }

        .footer-04-ecommerce .social-icons {
            justify-content: center;
        }

        .footer-04-ecommerce .copyright-footer-links {
            justify-content: center;
            margin-top: 0;
            margin-bottom: 0;
        }

        .footer-04-ecommerce .last-footer .row {
            gap: 0px 0px;
        }
}

@media(max-width: 767px) {
    .footer-04-ecommerce .second-footer .footer-payments {
        flex-wrap: nowrap;
        justify-content: center;
    }

        .footer-04-ecommerce .second-footer .footer-payments div {
            flex-shrink: 1;
        }

        .footer-04-ecommerce .second-footer .footer-payments img {
            width: 100%;
            height: auto;
        }
}

@media(max-width: 575px) {
    .footer-04-ecommerce .column-title {
        position: relative;
        padding: 20px 0px;
        margin: 0;
    }

        .footer-04-ecommerce .column-title .toggle-footer {
            position: absolute;
            top: 50%;
            right: 0;
            transform: translateY(-50%);
            font-size: 18px;
            line-height: 18px;
            cursor: pointer;
        }

    .footer-04-ecommerce .link-list {
        display: none;
    }

        .footer-04-ecommerce .link-list.open {
            display: block;
        }

    .additional-links .footer-link {
        width: 100%;
        display: block;
    }

    .footer-04-ecommerce .contact-with-us {
        flex-direction: column;
    }

        .footer-04-ecommerce .contact-with-us .title {
            margin-bottom: 15px;
        }

    .footer-04-ecommerce {
        padding-bottom: 30px;
        padding-top: 10px;
    }

        .footer-04-ecommerce .row {
            gap: 0px 0px;
        }

        .footer-04-ecommerce .link-list.open {
            margin-bottom: 20px;
        }

    .mobile-flinks > div {
        position: relative;
    }

        .mobile-flinks > div:not(:first-child):before,
        .mobile-flinks > div:last-child:before,
        .mobile-flinks > div:last-child:after {
            content: "";
            background-color: #cfcfcf;
            position: absolute;
            top: 0;
            left: 50%;
            width: 100vw;
            height: 1px;
            transform: translateX(-50%);
        }

        .mobile-flinks > div:last-child:after {
            top: auto;
            bottom: 0;
        }

    .footer-04-ecommerce .second-footer {
        margin-top: 0;
        border-top: 0;
    }

        .footer-04-ecommerce .second-footer .footer-payments {
            padding-bottom: 30px;
            flex-wrap: wrap;
        }

            .footer-04-ecommerce .second-footer .footer-payments::after {
                bottom: 0px;
            }

            .footer-04-ecommerce .second-footer .footer-payments div {
                flex-shrink: unset;
            }

            .footer-04-ecommerce .second-footer .footer-payments img {
                width: auto;
                height: auto;
                max-width: 120px;
            }

    .footer-04-ecommerce .social-icons {
        margin-top: 25px;
    }
}

/* === footer-04-ecommerce === */

