@charset "UTF-8";
@import url("menu.css");
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@100;200;300;400;500;600;700;800&family=Work+Sans:wght@100;200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
:root {
    --red: #bb0000;
    --gray: #f3f3f3;
    --green: #028F92;
    --yellow: #EBDC84;
    --pink: #FD9B92;
    --kiwico: #dbff00;
}
body{
	width: 100%;
    height: 100%;
    position: relative;
    /*font-family: 'Work Sans', sans-serif;*/
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    color: #000;
    transition: 0.3s ease-in-out !important;
    font-weight: 500;
}
a, button {
    color: inherit;
    outline: none;
    border: none;
    background: transparent;
}
p{
	font-weight: 500;	
}
strong{
    font-weight: 600;
}
.rounded {
    border-radius: 0.5rem!important;
}
h1, h2, h3{
    font-weight: 500;
}
a{
	text-decoration: none;
	color: var(--bs-black);
}
a:hover {
	text-decoration: none;
    color: var(--green);
}
ul{
	list-style-type: none;
}
input:hover, input:focus,
select:hover, select:focus,
button:hover, button:focus, button:active{
	box-shadow: none !important;
	outline: none !important;
}
/* #Colors
================================================== */
.color-white {
    color: var(--bs-white);
}
.color-red{
	color: var(--red) !important;
}
.color-green{
    color: var(--green) !important;
}
.color-gold{
    color: var(--gold) !important;
}
.color-aqua{
    color: var(--aqua) !important;
}
.bg-white {
    background-color: var(--bs-white) !important;
}
.bg-gray {
    background-color: var(--gray) !important;
}
.hero::before {    
    content: "";
    background-image: url('https://kiwico.com.mx/wp-content/uploads/2022/04/bg-gray.jpg');
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    opacity: 0.5;
}

/* #Titles
================================================== */
.section{
    padding: 6rem 0 5rem;
}
.title_section {
    margin-bottom: 3rem;
}
.title_section .before_title {
    margin-bottom: 1.25rem;
}
.title_section .before_title span {
    color: #0b2238;
    font-size: 1rem;
    font-weight: 500;
}
.title_section .before_title span:last-child {
    color: var(--cyan);
}
.title_section h2 {
    font-size: 1.875rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #000;
}
.title_section p {
    color: #6c7a87;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0;
}
@media (max-width: 991px) {
    .title_section {
    }
}
.section-title-one {
    position: relative;
    padding-bottom: 0px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 22px;
    margin-bottom: 3.2rem;
}
.section-title-one::after {
    position: absolute;
    content: "";
    left: 50%;
    bottom: -1rem;
    background-color: var(--green);
    height: 3px;
    width: 70px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

/* #Home
================================================== */
.header-home{
    height: 600px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('https://kiwico.com.mx/wp-content/uploads/2023/07/header-home-kiwico.jpg');
}
.header-home img{
    position: absolute;
    bottom: 0;
    left: 10%;
    max-width: 580px;
    filter: brightness(1.1) contrast(1.1);
}
.header-home:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bs-black);
    opacity: 0.8;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 10%, #000000 70%);
}
.header-home h2{
    color: var(--kiwico);
    font-size: 4.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}
.header-home p{
    color: #fff;
    font-weight: 400;
    font-size: 1.5rem;
    margin: 0;
}
.header-home .btn-black{
    border: 2px var(--bs-white) solid;
}    

/* #Home
================================================== */
.header{
    height: calc(100vh - 150px);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover !important;
    background-position: right !important;
    background-repeat: no-repeat !important;
    background-image: url('https://kiwico.com.mx/wp-content/uploads/2022/04/bg-kiwico3.jpg');
}
.header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bs-black);
    opacity: 0.8;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 10%, #000000 70%);
}
.header img{
    position: absolute;
    bottom: 0;
    right: 13rem;
    width: 28rem;
}
.header h2{
    color: var(--kiwico);
    font-size: 4.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}
.header p{
    color: #fff;
    font-weight: 400;
    font-size: 1.5rem;
    margin: 0;
}
.header .btn-black{
    border: 2px var(--bs-white) solid;
}    

/*-----------------------------
  HEADER SM
-----------------------------*/
.header-sm{
    height: 35vh;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    background-color: #282828;
    background-image: url('https://kiwico.com.mx/wp-content/uploads/2024/03/KIWICO01.jpg');
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}
.header-sm:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0f114e;
    opacity: 0.7;
}
.header-sm .header-content{
    position: relative;
}
.header-sm h1{
    color: #ffffff;
    color: var(--kiwico);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}
.header-sm p{
    font-size: 2rem;
    color: #fff;
    font-weight: 600;
    margin: 0;
}

/*-----------------------------
  HEADER SHOP
-----------------------------*/
.header-shop{
    height: 55vh;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    background-image: url('http://dianamedina.mx/wp-content/uploads/2022/02/bg-2.jpg');
    /*margin-top: 60px;*/
    background-size: 60% !important;
    background-position: right 80% !important;
    background-repeat: no-repeat !important;
}
.header-shop:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    background: -moz-linear-gradient(270deg, rgba(0, 0, 0, 0) 40%, #000000 60%);
    background: -webkit-linear-gradient(270deg, rgba(0, 0, 0, 0) 40%, #000000 60%);
    background: linear-gradient(270deg, rgba(0, 0, 0, 0) 40%, #000000 60%);
    background: linear-gradient(270deg, rgba(0, 0, 0, 0) 40%, #000000 60%);
}
.header-shop img{
    position: absolute;
    width: 29rem;
    left: 10rem;
    bottom: -15rem;
}
.header-shop .header-content{
    position: relative;
}
.header-shop h1{
    color: #e50000;
    font-size: 2.5rem;
    font-weight: 800;
}
.header-shop p{
    color: #fff;
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0;
}

/* #About
================================================== */
.about-section P{
    font-weight: 400;
    color: #878787;
    font-size: 1.1rem;
}
.about-section P strong{
    font-weight: 500;
    color: #5c5c5c;
}

/*-----------------------------
  INSTAGRAM
-----------------------------*/
.insta-section .title_section a{
    background-color: #000000;
    border-radius: 0.4rem;
    padding: 0.1rem 0.5rem 0.3rem;
}

/* #BTN
================================================== */
.btn{
    color: #fff;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: auto;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: .04em;
    text-decoration: none;
    border-radius: 0.25rem;
    outline: 0;
    transition: color .3s ease-out,background-color .3s ease-out,border-color .3s ease-out;
    padding: 0.9rem 1.5rem
}
.btn:hover{
    color: #fff;
    opacity: 0.8 !important;
}
.btn:active,
.btn:focus{
    outline: none;
	box-shadow: none;
}
.btn i{
    font-size: 1.1rem;
}
.btn-blog{
    background-color: transparent;
    border-radius: 0;
    border-bottom: 2px #585858 solid;
    color: #585858;
    padding: 0 10px;
    height: 35px;
}
.btn-blog:active,
.btn-blog:focus,
.btn-blog:hover{
	border-bottom: 2px #000 solid;
}
.btn-black{
    color: var(--bs-white);
    background-color: var(--bs-black) !important;
}
.btn-black-outline{
    color: var(--bs-black);
    background-color: transparent;
    border: 2px solid var(--bs-black);
}
.btn-green{
    color: var(--bs-white);
    background-color: var(--bs-black) !important;
    border: 2px solid var(--green);
}
.btn-white{
    color: var(--bs-black);
    background-color: var(--bs-white);
}
.btn-white-outline{
    color: var(--bs-white);
    background-color: transparent;
    border: 2px solid var(--bs-white);
}
.btn-white-text {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: .04em;
    transition: color .3s ease-out,background-color .3s ease-out,border-color .3s ease-out;
    background-color: transparent;
    border: none;
    color: var(--bs-white);
}
.btn-white-text span{
    position: relative;
}
.btn-white-text span:before {
    display: block;
    line-height: inherit;
    transform-origin: 0 0;
    transform: scaleX(0);
    transition: transform .5s cubic-bezier(.33,1,.68,1);
}
.btn-white-text span:after {
    transform-origin: 100% 0;
    transition: transform .5s cubic-bezier(.33,1,.68,1) .4s;
}
.btn-white-text span:after, 
.btn-white-text span:before{
    content: '';
    display: block;
    position: absolute;
    left: -1px;
    bottom: 0;
    width: calc(100% + 2px);
    height: 1px;
    background-color: var(--bs-white);
}
.btn-white-text:hover span:before{
    transform: scaleX(1);
    transform-origin: 0 0;
    transition: transform .5s cubic-bezier(.33,1,.68,1) .4s;
}
.btn-white-text:hover span:after{
    transform: scaleX(0);
    transform-origin: 100% 0;
    transition: transform .5s cubic-bezier(.33,1,.68,1);
}
.btn-black-text {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: .04em;
    transition: color .3s ease-out,background-color .3s ease-out,border-color .3s ease-out;
    background-color: transparent;
    border: none;
    color: var(--bs-black);
}
.btn-black-text span{
    position: relative;
}
.btn-black-text span:before {
    display: block;
    line-height: inherit;
    transform-origin: 0 0;
    transform: scaleX(0);
    transition: transform .5s cubic-bezier(.33,1,.68,1);
}
.btn-black-text span:after {
    transform-origin: 100% 0;
    transition: transform .5s cubic-bezier(.33,1,.68,1) .4s;
}
.btn-black-text span:after, 
.btn-black-text span:before{
    content: '';
    display: block;
    position: absolute;
    left: -1px;
    bottom: 0;
    width: calc(100% + 2px);
    height: 1px;
    background-color: var(--bs-black);
}
.btn-black-text:hover span:before{
    transform: scaleX(1);
    transform-origin: 0 0;
    transition: transform .5s cubic-bezier(.33,1,.68,1) .4s;
}
.btn-black-text:hover span:after{
    transform: scaleX(0);
    transform-origin: 100% 0;
    transition: transform .5s cubic-bezier(.33,1,.68,1);
}

/*-----------------------------
  CONTACT
-----------------------------*/
.form-group {
    margin-bottom: 1rem;
}
.form-group label {
    font-size: 14px;
    font-weight: 400;
    color: #0b2238;
}
.form-control {
    height: 48px;
    color: #0b2238;
    background-color: #fff;
    font-size: 0.9rem;
    border-radius: 5px;
    font-weight: 400;
    border-color: #ffffff;
    transition: 0.3s !important;
}
textarea.form-control {
    height: 120px;
    padding-top: 15px;
}
.form-control:focus,
.form-control:active{
    outline: none;
    box-shadow: none !important;
    border: 1px var(--gold) solid;
}
.form-border{
    border: 2px var(--bs-black) solid;
    border-radius: 30px;
    padding: 10px 35px 10px 20px;
}
.form-border:focus,
.form-border:active{
    border: 2px var(--green) solid;
}
.wpcf7-spinner{
    display: none;
}
.wpcf7-not-valid-tip {
    color: #a70000;
    font-size: 13px;
}
.wpcf7 form .wpcf7-response-output {
    margin: 0;
    font-size: 13px;
}

/*-----------------------------
  REVIEWS
-----------------------------*/
.wp-gr .wp-google-stars .wp-star svg path{
    fill: var(--green);
}
.wp-gr .wp-google-rating {
    color: #000000!important;
}
.wp-gr .wp-google-wr {
    display: none;
}

/*-----------------------------
  BLOG ITEM
-----------------------------*/
.blog-item .blog-item-content h2{
    color: #000;
    font-size: 1.3rem;
}
.blog-item .blog-item-content p{
    color: #737373;
    font-size: 0.9rem;
    font-weight: 500;
}
.btn-blog {
    color: var(--bs-black);
    border-radius: 0;
    padding: 2px 5px;
    border-bottom: 2px var(--bs-black) solid;
}
.blog-custom-button {
    background-color: #000;
    width: 109px;
    height: 109px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-custom-button i{
    color: var(--green);
    font-size: 1.5rem;
}
.blog-single {
    padding: 4rem 0 5rem;
}
.blog-single .single-content p{
    font-weight: 400;
    color: #4c4c4c;
    font-size: 1.1rem;
}
.blog-single h1{
    font-size: 2rem;
}
.blog-single h2{
    font-size: 1.5rem;
}
.blog-single h3{
    font-size: 1.4rem;
}
.blog-single h4{
    font-size: 1.3rem;
}
.blog-single h5{
    font-size: 1.2rem;
}

/*-----------------------------
  SIDEBAR
-----------------------------*/
.categories,
.instagram,
.shopsidebar{
    background: #f2f2f2;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}
.categories h3,
.instagram h3,
.shopsidebar h3{
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 300;
}
.shopsidebar p{
    color: #fff;
    font-size: 1rem;
}
.shopsidebar .img-logo{
    position: absolute;
    right: -130px;
    bottom: 130px;
    width: 650px;
    opacity: 0.4;
}
.categories ul {
    list-style-type: disclosure-closed;
}
.categories ul li::marker{
    color: var(--pink);
}
.categories ul li a{
    color: var(--bs-black);
    font-size: 16px;
    font-weight: 300;  
}
.categories ul li a:hover{
    color: var(--pink);
}
.categories ul li a i{
    color: var(--bs-black);
    font-size: 14px;
    margin-right: 10px;
}

/*------------------------------------
    FEATURE
------------------------------------*/
.feature{
    text-align: center;
}
.feature .feature-icon{
    width: 100px;
    margin: 0 auto;
    margin-bottom: 1rem;
}
.feature .feature-icon i{
    display: flex;
    border-radius: 50%;
    border: 2px #a8a8a8 solid;
    font-size: 2rem;
    width: 80px;
    height: 80px;
    color: var(--kiwico);
    align-items: center;
    justify-content: center;
}
.feature .feature-content h4{
    font-size: 1.1rem;
    margin: 0;
    letter-spacing: 1px;
}
.feature .feature-content p{
    font-size: 1rem;
    color: #afafaf;
    margin: 0;
}

.home-category-item{
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 0 1.5rem;

}
.home-category-item .home-category-item-image{
    overflow: hidden;
    border-radius: 2rem;
    margin-bottom: 0.5rem;
}
.home-category-item .home-category-item-image img {
    -webkit-transition: all 0.75s cubic-bezier(0, 0, 0.2, 1);
    transition: all 0.75s cubic-bezier(0, 0, 0.2, 1);
}
.home-category-item:hover .home-category-item-image img {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
    width: 100%;
    -webkit-transition: all 0.75s cubic-bezier(0, 0, 0.2, 1);
    transition: all 0.75s cubic-bezier(0, 0, 0.2, 1);
}
.home-category-item .home-category-item-content h3{
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0;
}
.home-category-item .home-category-item-content p{
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 0;
    color: #bdbdbd;
}
.section-title h2{
    margin: 0;
    font-size: 1.5rem;
    font-weight: 500;
}
hr{
    background-color: #a7a7a7;
}

/*------------------------------------
    FOOTER
------------------------------------*/
/*----------------------------------------*/
footer{
    clear: both;
    background-color: var(--bs-black);
}
footer .footer__top {
    padding: 70px 0;
}
footer .footer-widget.footer-col-1 {
    padding-right: 20px;
}
footer .footer-widget.footer-col-2 {
    padding-left: 60px;
}
footer .footer-widget.footer-col-3 {
    padding-left: 40px;
}
footer .footer-widget.footer-col-4 {
    padding-left: 65px;
}
footer .footer-widget.footer-col-5 {
    padding-left: 65px;
}
footer .footer-widget .footer-info{

}
footer .footer-widget .footer-info p{
    text-align: center;
    color: var(--bs-white);
}
footer .footer-widget .footer-widget-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--pink);
    text-transform: capitalize;
    margin-bottom: 27px;
}
footer .footer-widget.footer-widget-border {
    position: relative;
}
footer .footer-widget.footer-widget-border::after {
    position: absolute;
    content: "";
    right: -40px;
    top: 0;
    width: 1px;
    height: 235px;
    background-color: #3a3a3a;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .footer-widget-border::after {
        display: none;
    }
}


footer .footer-widget .footer-widget-content .footer-contact h3{
    font-size: 1.3rem;
    font-weight: 600;
}
footer .footer-widget .footer-widget-content .footer-contact h3 a{
    color: #ffffff;
}
footer .footer-widget .footer-widget-content .footer-contact p {
    font-size: 0.9rem;
    font-weight: 400;
    color: #ffffff;
}
footer .footer-widget .footer-widget-content .footer-contact a:hover{
    color: var(--kiwico);
}
footer .footer-widget .footer-widget-content .footer-contact .footer-opening p {
    color: #999999;
    margin-bottom: 0;
}
footer .footer-widget .footer-widget-content .footer-social ul{
    padding: 0;
}
footer .footer-widget .footer-widget-content .footer-social ul li {
    display: inline-block;
    margin-right: 15px;
}
footer .footer-widget .footer-widget-content .footer-social ul li a {
    font-size: 1.3rem;
    display: inline-block;
    color: var(--bs-white);
}
footer .footer-widget .footer-widget-content .footer-social ul li a:hover {
    color: var(--kiwico);
}
footer .footer-widget .footer-widget-content .footer-links ul{
    padding: 0;
}
footer .footer-widget .footer-widget-content .footer-links ul li {
    line-height: 1;
    margin-bottom: 15px;
}
footer .footer-widget .footer-widget-content .footer-links ul li a {
    font-size: 1rem;
    color: #ffffff;
    position: relative;
}
footer .footer-widget .footer-widget-content .footer-links ul li a::after {
    position: absolute;
    content: "";
    left: auto;
    right: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #ffffff;
}
footer .footer-widget .footer-widget-content .footer-links ul li a:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}

footer .footer-offer {
    padding: 0.7rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
footer .footer-offer p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: #f3f3f3;
}
footer .footer-offer p a {
    font-weight: 500;
    position: relative;
}
footer .footer-offer p a:hover{
    color: var(--kiwico);
}
footer .footer-offer p a::after {
    position: absolute;
    content: "";
    right: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background-color: #f3f3f3;
}

footer .footer-bottom .footer-bottom-wrapper {
    padding-top: 35px;
    padding-bottom: 35px;
}
footer .footer-bottom .footer-bottom-wrapper .footer-bottom-links ul{
    padding: 0;
    margin: 0;
}
footer .footer-bottom .footer-bottom-wrapper .footer-bottom-links ul li {
    display: inline-block;
    margin-right: 15px;
}
footer .footer-bottom .footer-bottom-wrapper .footer-bottom-links ul li a {
    font-size: 13px;
    color: #999999;
}
footer .footer-bottom .footer-bottom-wrapper .footer-bottom-links ul li a:hover {
    color: #ffffff;
}
footer .footer-bottom .footer-bottom-wrapper .footer-copyright p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: #999999;
}
footer .footer-bottom .footer-bottom-wrapper .footer-copyright p a:hover {
    color: #ffffff;
}



/*-----------------------------
  ASIDE CART
-----------------------------*/
.woofc-area.woofc-style-01 .woofc-area-mid .woofc-item .woofc-item-inner {
    border-radius: 0.25rem;
}
.woofc-action-left a,
.woofc-action-right a{
    border-radius: 0.25rem !important;
}
.woofc-action-right a{
    border-color: var(--kiwico) !important;
    background-color: var(--kiwico) !important;
    color: var(--bs-black) !important;
}


@media (min-width: 990px) {
    .header {
        /*background-size: 100% !important;*/
    }
}

@media (min-width: 1080px) {
    .filters-responsive{
        display: none !important;
    }
}
@media (max-width: 1080px) {
    .navbar-brand {
        height: 60px;
        padding: 5px 0;
    }
    .nav-link {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
    .header__middle .main-menu-border {
        display: none;
    }
    .header {
        height: auto;
        padding: 10rem 0;
        /*margin-top: 60px;*/
        background-size: cover !important;
        background-position: bottom !important;
    }
    .header:before {
        background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0) 40%, #000000 50%);
        background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0) 40%, #000000 50%);
        background: linear-gradient(0deg, rgba(0, 0, 0, 0) 40%, #000000 50%);
        background: linear-gradient(0deg, rgba(0, 0, 0, 0) 40%, #000000 50%);
        background: #000;
        opacity: 0.7;
    }
    .header-sm{
        height: auto;
        padding: 2.5rem 0;
        /*margin-top: 60px;*/
    }
    .header-sm h1{
        font-size: 2rem;
    }
    .header h2 {
        font-size: 3rem;
    }
    .header img{
        display: none;
    }
    .section {
        padding: 3.5rem 0 2rem;
    }
    .home-category-item {
        padding: 0;
    }
    .home-category-item .home-category-item-content h3 {
        font-size: 0.85rem;
    }
    .home-category-item .home-category-item-content p {
        font-size: 0.75rem;
    }
    .filters{
        display: none !important;
    }
    footer .footer__top {
        padding: 70px 0 0;
    }
    footer .footer-widget.footer-col-1 {
        padding: 0 1rem;
    }
    footer .footer-widget.footer-col-2,
    footer .footer-widget.footer-col-3,
    footer .footer-widget.footer-col-4,
    footer .footer-widget.footer-col-5 {
        padding-left: 0;
    }
    footer .footer-offer {
        padding: 0.7rem;
        border-top: 1px solid #ffffff6e;
        border-bottom: 1px solid #ffffff6e;
    }
    footer .footer-bottom {
        padding-bottom: 2rem;
    }
}

.grecaptcha-badge {
    visibility: collapse !important;
}
#cfw-side-cart {
    z-index: 99999999 !important;
}


