@font-face {
    font-family: 'Montserrat';
    src: url('font/Montserrat-Regular.eot');
    src: url('font/Montserrat-Regular.eot?#iefix') format('embedded-opentype'), url('font/Montserrat-Regular.woff2') format('woff2'), url('font/Montserrat-Regular.woff') format('woff'), url('font/Montserrat-Regular.ttf') format('truetype'), url('font/Montserrat-Regular.svg#Montserrat-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('font/Roboto-Regular.eot');
    src: url('font/Roboto-Regular.eot?#iefix') format('embedded-opentype'), url('font/Roboto-Regular.woff2') format('woff2'), url('font/Roboto-Regular.woff') format('woff'), url('font/Roboto-Regular.ttf') format('truetype'), url('font/Roboto-Regular.svg#Roboto-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cantarell';
    src: url('font/Cantarell-Regular.eot');
    src: url('font/Cantarell-Regular.eot?#iefix') format('embedded-opentype'), url('font/Cantarell-Regular.woff2') format('woff2'), url('font/Cantarell-Regular.woff') format('woff'), url('font/Cantarell-Regular.ttf') format('truetype'), url('font/Cantarell-Regular.svg#Cantarell-Regular') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/*---------------------------- # General --------------------------------*/
:root {
    scroll-behavior: smooth;
}

body {
    color: #343a40;
    font-family: 'Montserrat', Sans-serif;
}

a {
    color: #212529;
    text-decoration: none;
}

    a:hover {
        color: #15171a;
        text-decoration: none;
    }

#main {
    margin-top: 75px;
}

section {
    overflow: hidden;
}

.btn-primary {
    padding: 10px 30px;
    background-color: #4CB9EA;
    background-image: none;
    border: #4CB9EA solid 1px;
    border-radius: 0px;
    font-size: 14px;
    font-weight: normal;
    line-height: 16px;
    color: #fff;
    text-transform: uppercase;
}

    .btn-primary:hover, .btn-primary:focus {
        background-color: #4CB9EA;
        background-image: none;
        border: #4CB9EA solid 1px;
    }

p {
    font-family: 'Roboto', Sans-serif;
}

/*---------------------------- # Scroll top button --------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: #212529;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

    .scroll-top i {
        font-size: 24px;
        color: #fff;
        line-height: 0;
    }

    .scroll-top:hover {
        background: #000;
        color: #fff;
    }

    .scroll-top.active {
        visibility: visible;
        opacity: 1;
    }

/*---------------------------- # Header --------------------------------*/
.header {
    min-height: 75px;
    transition: all 0.5s;
    z-index: 997;
    background: #003C4C;
}

    .header.sticked {
        height: 70px;
    }

@media (min-width:1366px) {
    .container.subcontainer {
        max-width: 1140px;
    }
}
/*--------------------------------------------------------------
# Desktop Navigation 
--------------------------------------------------------------*/
@media (min-width:1280px) {
    .navbar {
        padding: 0;
    }

        .navbar ul {
            margin: 0;
            padding: 0;
            display: flex;
            list-style: none;
            align-items: center;
        }

        .navbar li {
            position: relative;
            padding: 10px 0 10px 40px;
        }

        .navbar a, .navbar a:focus {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 12px;
            font-weight: bold;
            color: #fff;
            text-transform: uppercase;
            white-space: nowrap;
            transition: 0.3s;
            font-family: 'Cantarell', Sans-serif;
        }

    .js-search-open span {
        color: #fff;
    }

    .navbar a i, .navbar a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
    }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 14px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
        border-radius: 4px;
    }

    .navbar a {
        border-bottom: transparent solid 3px;
        padding-bottom: 3px;
    }

        .navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
            border-bottom: #fff solid 3px;
        }

    .navbar .dropdown ul li {
        min-width: 200px;
    }

    .navbar .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        font-weight: 400;
    }

        .navbar .dropdown ul a i {
            font-size: 12px;
        }

        .navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
            color: #212529;
        }

    .navbar .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }

    .navbar .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }
}

@media (min-width:1280px) and (max-width:1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

.mobile-nav-toggle {
    display: none;
}

/*---------------------------- # Mobile Navigation --------------------------------*/
@media (max-width:1279px) {
    .navbar {
        padding: 0;
        z-index: 9997;
    }

        .navbar ul {
            display: none;
            position: absolute;
            inset: 55px 15px 15px 15px;
            padding: 10px 0;
            margin: 0;
            border-radius: 10px;
            background-color: #fff;
            overflow-y: auto;
            transition: 0.3s;
            z-index: 9998;
        }

        .navbar a, .navbar a:focus {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 20px;
            font-size: 15px;
            font-weight: 600;
            color: #212529;
            white-space: nowrap;
            transition: 0.3s;
        }

            .navbar a i, .navbar a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
            }

            .navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
                color: #212529;
            }

        .navbar .dropdown ul, .navbar .dropdown .dropdown ul {
            position: static;
            display: none;
            z-index: 99;
            padding: 10px 0;
            margin: 10px 20px;
            background: #fff;
            transition: all 0.5s ease-in-out;
        }

        .navbar .dropdown > .dropdown-active, .navbar .dropdown .dropdown > .dropdown-active {
            display: block;
        }

    .mobile-nav-toggle {
        display: inline-block;
        color: #596d80;
        font-size: 28px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
    }

        .mobile-nav-toggle.bi-x {
            color: #000;
        }

    .mobile-nav-active {
        overflow: hidden;
    }

        .mobile-nav-active .mobile-nav-toggle {
            position: fixed;
            top: 15px;
            right: 15px;
            z-index: 9999;
            color: #fff;
        }

        .mobile-nav-active .navbar {
            position: fixed;
            overflow: hidden;
            inset: 0;
            background: #000;
            transition: 0.3s;
        }

            .mobile-nav-active .navbar > ul {
                display: block;
            }
}

.img-bg {
    height: 600px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    background-position: center center;
}

@media (max-width:768px) {
    .img-bg {
        height: 400px;
    }
}

.img-bg:before {
    position: absolute;
    content: "";
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.5;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    top: 0;
}

.img-bg .img-bg-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    position: relative;
    padding-left: 150px;
    padding-right: 100px;
    margin-bottom: 200px;
}

@media (max-width:768px) {
    .img-bg .img-bg-inner {
        padding-left: 30px;
        padding-right: 30px;
        margin-bottom: 50px;
    }
}

@media (max-width:500px) {
    .img-bg .img-bg-inner p {
        display: none;
    }
}

.custom-swiper-button-next, .custom-swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    background: #fff;
    width: 60px;
    height: 60px;
    text-align: center;
    padding: 15px;
}

@media (max-width:768px) {
    .custom-swiper-button-next, .custom-swiper-button-prev {
        display: none;
    }
}

.custom-swiper-button-next span, .custom-swiper-button-prev span {
    font-size: 20px;
    color: #606060;
    transition: 0.3s all ease;
    font-weight: bold;
}

.custom-swiper-button-next:hover span, .custom-swiper-button-next:focus span, .custom-swiper-button-prev:hover span, .custom-swiper-button-prev:focus span {
    color: #606060;
}

.custom-swiper-button-next {
    right: 0;
}

.custom-swiper-button-prev {
    left: 0;
}

.swiper-pagination .swiper-pagination-bullet {
    background-color: #fff;
}

.swiper-pagination .swiper-pagination-bullet-active {
    background-color: #606060;
}

.img-bg-inner h5 {
    text-align: left;
    color: #000000;
    font-size: 14px;
    line-height: 16px;
    margin: 0px 0px 0px 0px;
}

.img-bg-inner h2 {
    text-align: left;
    color: #000000;
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 71px;
    margin: 0px 0px 45px 0px;
}

.img-bg-inner button {
    background-color: #4CB9EA;
    color: #FFFFFF;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #4CB9EA;
    border-radius: 0px 0px 0px 0px;
    padding: 15px 30px;
    font-size: 14px;
}

    .img-bg-inner button:hover, .img-bg-inner button:focus, .img-bg-inner button:active {
        background-color: #4CB9EA;
        color: #FFFFFF;
        border-style: solid;
        border-width: 1px 1px 1px 1px;
        border-color: #4CB9EA;
        border-radius: 0px 0px 0px 0px;
    }


/*---------------------------- # Home Page --------------------------------*/
.heading-title {
    margin-top: 30px;
}

    .heading-title h2 {
        padding: 10px;
        color: #000;
        font-weight: 600;
        text-transform: uppercase;
        margin: 0;
        letter-spacing: 5px;
        font-family: 'Roboto', Sans-serif;
    }

    .heading-title h1 {
        color: #000000;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 5px;
        padding: 0;
        margin: 0;
        line-height: 1;
    }

    .heading-title p {
        text-align: center;
        color: #000000;
        font-size: 23px;
        font-weight: 300;
        padding: 2px 10px 20px;
        margin: 0;
        font-family: 'Roboto', Sans-serif;
    }

.category {
    text-align: center;
    max-width: 1140px;
    margin: 20px auto 35px;
}

    .category .col-lg-3 {
        position: relative;
    }

    .category .raven {
        position: absolute;
        left: 12px;
        right: 12px;
        bottom: 0;
        top: 0;
        text-align: left;
        background-color: rgb(0 0 0 / 5%);
        z-index: 9;
    }

        .category .raven:hover {
            background-color: rgb(0 0 0 / 20%);
        }

        .category .raven h2 {
            color: #262123;
            line-height: 38px;
            text-transform: uppercase;
            font-size: 26px;
            margin: 40px 0 0 40px;
            font-family: 'Roboto', Sans-serif;
        }

        .category .raven p {
            font-size: 16px;
            color: #262123;
            line-height: 19px;
            margin: 30px 0 0 40px;
            font-family: 'Roboto', Sans-serif;
        }

.collection {
    height: 268px;
    position: relative;
    overflow: hidden;
}

    .collection img {
        position: absolute;
        left: -97px;
        right: 0;
        top: 0;
        bottom: 0;
        width: auto !important;
        height: auto;
    }

.category img {
    width: 100%;
}

.newproduct {
    margin-top: 55px;
    margin-bottom: 74px;
    display: inline-block;
    width: 100%;
}

.boxview {
    background: #003C4C;
    margin: 50px -50px 50px 75px;
    padding: 35px 40px 40px;
    text-align: left;
    color: #fff;
    width: 388px;
    float: left;
    position: absolute;
}

    .boxview strong {
        font-size: 48px;
        margin-bottom: 20px;
        display: block;
        font-family: 'Roboto', Sans-serif;
        text-transform: uppercase;
    }

    .boxview p {
        margin: 10px 0px 56px 0;
        font-size: 21px;
        line-height: 1.3em;
        font-family: 'Roboto', Sans-serif;
    }

    .boxview .raven-button {
        width: 120px;
        height: 50px;
        background-color: #4CB9EA;
        background-image: none;
        border-color: #4CB9EA;
        border-style: solid;
        border-width: 1px 1px 1px 1px;
        border-radius: 0px 0px 0px 0px;
        font-size: 14px;
        font-weight: normal;
        line-height: 36px;
        color: #FFFFFF;
    }

.boxviewimg {
    width: 63.75%;
    float: right;
    height: 432px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-right: 75px;
}

.productimg {
    margin-bottom: -15px;
}

    .productimg img {
        width: 100%;
    }

.newproduct.Kitchen {
    margin-bottom: 20px;
}

.resources {
    text-align: center;
    padding-top: 25px;
    padding-bottom: 41px;
}

    .resources img {
        min-width: 300px;
    }

    .resources.resourcesImages img {
        min-width: auto !important;
        width: 100% !important;
    }

    .resources h2 {
        margin-top: 20px;
        color: #000000;
        font-size: 16px;
        text-transform: uppercase;
        font-family: 'Roboto', Sans-serif;
    }

        .resources h2 a {
            color: #000;
            font-weight: 600;
        }

.resources-images {
    padding: 41px 0px 0px;
    min-height: 560px;
}

    .resources-images img {
        width: 100%;
    }

    .resources-images .col-lg-2 img {
        object-fit: cover;
        width: 100%;
        height: 100%;
        padding: 20px 0;
    }

.instabtn {
    background: #408bd1;
    display: inline-block;
    vertical-align: top;
    zoom: 1;
    padding: 7px 14px;
    margin: 5px auto 0 auto;
    border: none;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.5;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

ul.breadcrumb {
    padding-top: 30px;
    padding-bottom: 30px;
    margin: 0;
    font-weight: 300;
    font-size: 14px;
}

    ul.breadcrumb a {
        color: #7A7A7A;
    }

    ul.breadcrumb li {
        margin-right: 0.5rem;
        color: #0075a8;
    }

        ul.breadcrumb li:before {
            display: inline-block;
            padding-right: 0.5rem;
            color: #262123;
            content: "/";
        }

        ul.breadcrumb li:first-child:before {
            content: none;
            padding: 0;
        }

.heading-title-img {
    position: relative;
    margin: 24px 0 0;
}

    .heading-title-img img {
        width: 100%;
    }

    .heading-title-img h1 {
        color: #fff;
        position: absolute;
        padding: 0px 0px 0px 30px;
        right: 0;
        margin: 0;
        font-family: 'Roboto', Sans-serif;
        font-size: 44px;
        word-break: break-word;
        top: 50%;
        left: 0%;
        -ms-transform: translate(0%, -50%);
        transform: translate(0%, -50%);
        text-transform: uppercase;
    }

.subtext {
    padding: 10px;
    margin-top: 20px;
    margin-bottom: 30px;
}

    .subtext p {
        font-family: 'Montserrat', Sans-serif;
    }

.resources.resources-images {
    padding: 0;
}

    .resources.resources-images .row {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .resources.resources-images img {
        object-fit: cover;
        height: 260px;
    }

    .resources.resources-images h2 {
        font-size: 1.5rem;
    }

.emptydiv {
    margin: 100px 0;
    display: inline-block;
    width: 100%;
}

.pagescollection img {
    min-width: 100%;
    height: 100%;
}

.pagescollection .resources.resources-images h2 {
    padding: 0.5em 0;
    margin: 0;
    font-size: 1em;
    text-transform: uppercase;
}

.summary {
    margin-bottom: 2em;
}

    .summary h1 {
        font-size: 30px;
        font-weight: 300;
        line-height: 1.2em;
        margin-bottom: 30px;
        color: #212526;
        margin-top: 0;
    }

    .summary span.sku {
        color: #6c757d;
        font-weight: 600;
        font-size: .85em;
        line-height: 2;
        display: block;
        margin-bottom: 30px;
    }

    .summary button.btn.btn-primary {
        padding: 0.8em 1.5rem;
        margin: 0 0 15px 0;
        font-size: 1.1rem;
        line-height: 1.1rem;
        font-weight: 400;
        background-color: #4CB9EA;
        background-image: none;
        border: #4CB9EA solid 1px;
        border-radius: 0px;
        color: #fff;
        text-transform: uppercase;
        display: block;
    }

        .summary button.btn.btn-primary:hover, .summary button.btn.btn-primary:focus, .summary button.btn.btn-primary:active {
            padding: 0.8em 1.5rem;
            margin: 0 0 15px 0;
            font-size: 1.1rem;
            line-height: 1.1rem;
            font-weight: 400;
            background-color: #4CB9EA;
            background-image: none;
            border: #4CB9EA solid 1px;
            border-radius: 0px;
            color: #fff;
            text-transform: uppercase;
        }

    .summary button.btn.btn-outline-secondary {
        border: #7A7A7A solid 2px;
        margin: 20px 0;
        padding: 8px;
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 1.7px;
        border-radius: 0;
    }

    .summary ul {
        padding: 0 0 20px 20px;
    }

    .summary li {
        line-height: 2em;
        font-size: 16px;
        color: #262123;
        font-weight: 400;
    }


.tabing {
    margin-bottom: 5rem;
}

    .tabing ul.nav.nav-tabs {
        border-bottom: none;
    }

        .tabing ul.nav.nav-tabs li:first-child {
            border-right: 0;
        }

        .tabing ul.nav.nav-tabs li {
            margin: 0 0 -1px 0;
            border: 1px solid #d3ced2;
            border-radius: 0;
            padding: .5em 1em;
            background: #fff;
        }

            .tabing ul.nav.nav-tabs li a {
                font-weight: normal;
                color: #6c757d;
            }

            .tabing ul.nav.nav-tabs li.active a {
                font-weight: bold;
            }

            .tabing ul.nav.nav-tabs li.active {
                border-bottom: 0;
            }

    .tabing .tab-pane {
        padding: 1em;
        border: 1px #d3ced2 solid;
    }

.woocommerce-noreviews {
    font-size: 16px;
    color: #262123;
    font-weight: 400;
    line-height: 22px;
    font-family: 'Montserrat', Sans-serif;
}

.comment-reply-title {
    font-size: 1.25rem;
    font-family: 'Montserrat', Sans-serif;
}

.tabing p {
    font-family: 'Montserrat', Sans-serif;
}

.related-products h2 {
    font-size: 1.5rem;
    margin: 0 0 0.8em;
    color: #262123;
    font-weight: 600;
    line-height: 38px;
    padding-bottom: 0.5rem;
}

.woocommerce-related-products {
    text-align: center;
    margin: 0 0 1em;
}

    .woocommerce-related-products .col-lg-3 {
        margin-bottom: 30px;
    }

    .woocommerce-related-products img {
        width: 100%;
    }

    .woocommerce-related-products h6 {
        margin-bottom: -5px;
        font-size: 16px;
        color: #606060;
        font-weight: normal;
        padding: .5em 0;
    }

.products_top_panel {
    overflow: hidden;
    line-height: 32px;
    margin: 5px 0 15px 0;
    position: relative;
    z-index: 99;
    clear: both;
}

.products_top_panel_ul, .products_top_panel_ul ul {
    padding: 0;
    margin: 0;
}

.products_top_panel li {
    float: left;
    margin: 0 15px 0 0;
    list-style: none;
}

    .products_top_panel li .btn-primary {
        height: 38px;
        padding: 10px 30px;
        background-color: #4CB9EA;
        background-image: none;
        border: #4CB9EA solid 1px;
        border-radius: 0px;
        font-size: 14px;
        font-weight: normal;
        line-height: 16px;
        color: #fff;
        text-transform: uppercase;
    }

        .products_top_panel li .btn-primary:hover, .products_top_panel li .btn-primary:focus, .products_top_panel li .btn-primary:active {
            height: 38px;
            padding: 10px 30px;
            background-color: #4CB9EA;
            background-image: none;
            border: #4CB9EA solid 1px;
            border-radius: 0px;
            font-size: 14px;
            font-weight: normal;
            line-height: 16px;
            color: #fff;
            text-transform: uppercase;
        }

.products_top_panel_ul li ul li {
    margin: 0 5px 0 0;
}

.products_top_panel li span {
    padding-right: 16px;
    background: url(../images/delete.png);
    background-size: 12px 12px;
    background-repeat: no-repeat;
    background-position: right;
}

.result-count {
    margin: 0 0 1em;
    font-family: 'Montserrat', Sans-serif;
}

.search-catagory .col-lg-3 {
    margin-bottom: 30px;
    text-align: center;
}

    .search-catagory .col-lg-3 img {
        width: 100%;
    }

.search-catagory h5 {
    margin-bottom: -5px;
    font-size: 16px;
    color: #606060;
    font-weight: normal;
    padding: .5em 0;
}

ul.pagination {
    margin: 0 auto;
    padding: 0 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination .page-item.active a.page-link {
    background-color: #4CB9EA;
    border-color: #4CB9EA;
}

.pagination .page-item a {
    color: #4CB9EA;
}

.pagination .page-item.active a {
    color: #fff;
}

.myAccordion {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 24px;
    margin-top: 15px;
}

    .myAccordion .collapsed span.plus {
        display: block;
    }

    .myAccordion .collapsed span.min {
        display: none;
    }

    .myAccordion span.plus {
        display: none;
    }

    .myAccordion button {
        background: transparent;
        border: none;
        font-size: 22px;
        line-height: 16px;
        font-weight: bold;
    }

.accordion-item {
    border: none;
    padding: 12px 0;
}

    .accordion-item .accordion-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 12px;
    }

.accordion-header button {
    background: transparent;
    border: none;
    font-size: 22px;
    line-height: 16px;
    font-weight: bold;
}

.accordion .collapsed span.plus {
    display: block;
}

.accordion .collapsed span.min {
    display: none;
}
/*.accordion span.min {display:none;}*/
.accordion span.plus {
    display: none;
}

.accordion-header span {
    display: flex;
    align-items: center;
    font-family: 'Montserrat', Sans-serif;
}

.accordion-header input {
    width: 18px;
    height: 18px;
}

.accordion-item button.accordion-button {
    width: auto;
}

.accordion .card-body ul {
    padding: 0;
    margin: 7px 0 -15px 25px;
    list-style: none;
}

    .accordion .card-body ul li {
        margin: 0;
        padding: 12px 0;
        color: #262123;
    }

.accordion .card-body span {
    display: flex;
    align-items: center;
    font-size: 12px;
}

    .accordion .card-body span input {
        width: 18px;
        height: 18px;
    }

.preview {
    display: flex;
    align-items: center;
}

    .preview .preview-thumbnail {
        width: 18.8%;
        margin-right: 10px;
    }

    .preview .preview-pic {
        width: 80%;
    }

@media screen and (max-width:996px) {
    .preview {
        margin-bottom: 20px;
    }
}

.preview-pic {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.preview-thumbnail.nav-tabs {
    border: none;
}

    .preview-thumbnail.nav-tabs li {
        width: 100%;
    }

        .preview-thumbnail.nav-tabs li img {
            max-width: 100%;
            display: block;
            margin: 5px 0;
        }

        .preview-thumbnail.nav-tabs li a {
            padding: 0;
            margin: 0;
        }

        .preview-thumbnail.nav-tabs li:last-of-type {
            margin-right: 0;
        }

.tab-content {
    overflow: hidden;
}
/*.tab-content img {width:100%; -webkit-animation-name:opacity; animation-name:opacity; -webkit-animation-duration:.3s; animation-duration:.3s;}*/

@-webkit-keyframes opacity {
    0% {
        opacity: 0;
        -webkit-transform: scale(3);
        transform: scale(3)
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes opacity {
    0% {
        opacity: 0;
        -webkit-transform: scale(3);
        transform: scale(3);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.img_producto_container {
    width: 100%;
    max-width: 100%;
    height: 500px !important;
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: crosshair;
    margin: auto;
}

.img_producto {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition: transform 0.5s ease-out;
}

.contact h1 {
    text-transform: uppercase;
    color: #000;
    font-size: 32px;
    font-weight: 600;
    margin: 30px 0 24px;
    font-family: 'Roboto', Sans-serif;
}

.contact label {
    color: #7a7a7a;
    font-size: 16px;
    margin-bottom: 8px;
    margin-right: 10px;
    font-family: 'Roboto', Sans-serif;
}

.contact input, .contact textarea {
    color: #7A7A7A;
    border: 1px solid #818a91;
    margin-bottom: 10px;
    border-radius: 3px;
}

.contact .btn {
    background: #61ce70;
    min-height: 47px;
    font-size: 16px;
    padding: 15px 30px;
    border-radius: 4px;
    border-color: #61ce70;
    font-family: 'Roboto', Sans-serif;
    font-weight: 600;
}


/*---------------------------- # Footer --------------------------------*/
.footer {
    overflow: hidden;
    background: #f8f7f7;
    font-size: 16px;
    color: #606060;
}

    .footer .footer-content {
        padding: 50px 0 30px;
    }

    .footer .footer-heading {
        color: #262123;
        margin-bottom: 20px;
        padding-bottom: 10px;
        font-size: 14px;
        line-height: 16px;
        font-weight: 600;
        font-family: 'Cantarell', Sans-serif;
    }

    .footer a.footer-link-more {
        color: #fff;
        display: inline-block;
        position: relative;
    }

.footer-content .col-lg-2:first-child .footer-heading {
    padding-top: 60px;
    padding-bottom: 20px
}

.footer-content .col-lg-2:first-child {
    width: 25%;
}

.footer-content .col-lg-2 {
    width: 18.75%;
    padding: 10px;
}

.footer .footer-links {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', Sans-serif;
}

.footer-links li {
    margin-top: calc(8px/2);
}

.footer .footer-links li a {
    color: #606060;
}

    .footer .footer-links li a:hover, .footer .footer-links li a:focus {
        color: #606060;
    }

.social {
    display: flex;
    align-items: center;
}

    .social span {
        border: #212526 1px solid;
        width: 32px;
        padding: 3px;
        margin-right: 10px;
        display: block;
        text-align: center;
    }

.footer .footer-legal {
    background: #f8f7f7;
    padding: 10px 0 22px;
    color: #606060;
    border-top: #eee solid 1px;
    font-size: 13px;
}

.footer .copyright strong {
    font-weight: 400;
    margin-right: 5px;
}

.footer .copyright a {
    margin: 0 5px;
    color: #606060
}

.footer .credits {
    padding-top: 6px;
    font-size: 13px;
}

.footer .footer-legal .social-links a {
    text-align: center;
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgb(255 255 255 / 9%);
    border-radius: 50%;
    color: #fff;
    line-height: 40px;
}

    .footer .footer-legal .social-links a:hover {
        background-color: rgb(255 255 255 / 2%);
    }

.aboutpage h1 {
    font-size: 32px;
    text-transform: uppercase;
    font-weight: 600;
    color: #000;
}

.aboutpage h2.heading-title {
    color: #000;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 30px;
    margin-top: 0;
    font-family: 'Roboto', Sans-serif;
}

.aboutpage p {
    color: #7a7a7a;
}

.contact-details {
    margin-bottom: 20px;
    margin-top: 10px;
}

    .contact-details:first-child {
        margin-top: 30px;
    }

    .contact-details span {
        color: #262123;
        padding: 0px 0px 5px 0px;
        font-size: 16px;
        font-weight: 600;
        font-family: 'Roboto', Sans-serif;
    }

    .contact-details p {
        font-size: 16px;
        font-weight: normal;
    }

.warrantytable td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
    font-family: 'Montserrat', Sans-serif;
}

.warranty p {
    color: #7a7a7a;
}

.literature .elementor-heading-title {
    color: #000;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 25px;
    font-family: 'Roboto', Sans-serif;
}

.literature p {
    color: #7a7a7a;
}

.literature .raven-button {
    width: 175px;
    height: 50px;
    background-color: rgba(0,0,0,0);
    border: #212526 solid 1px;
    display: inline-block;
    padding: 12px 24px;
    text-align: center;
    font-size: 14px;
    font-weight: normal;
    line-height: 24px;
    color: #212526;
}

    .literature .raven-button:hover {
        background-color: #4CB9EA;
        background-image: none;
        border: #4CB9EA solid 1px;
        color: #fff;
    }

.literature .col-20 {
    flex: 0 0 auto;
    width: 20%;
    font-size: 14px;
    color: #7a7a7a;
}

    .literature .col-20 img, .literature .col-lg-3 img {
        margin-bottom: 30px;
    }

.literature span.bi-file-pdf {
    fill: #0075A8;
    color: #0075A8;
    border-color: #0075A8;
    font-size: 20px;
}

.literature ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .literature ul li {
        margin-bottom: 30px;
        font-family: 'Roboto', Sans-serif;
        font-size: 14px;
    }

        .literature ul li a {
            color: #7a7a7a;
        }

.facility-survey .gray-box {
    background: #333;
    padding: 75px 0px 250px 0px;
    text-align: center;
    position: relative;
}

    .facility-survey .gray-box h1 {
        font-size: 59px;
        color: #fff;
        font-family: 'Cantarell', Sans-serif;
    }

    .facility-survey .gray-box p {
        color: #fff;
        font-size: 19px;
        font-family: 'Montserrat', Sans-serif;
        font-weight: 300;
    }

    .facility-survey .gray-box a.survey {
        margin: 30px 0;
    }

.facility-survey .survey {
    width: 80%;
    margin: -250px auto 75px;
    position: relative;
    z-index: 9;
}

.facility-survey .yellow-box {
    background: #FDE600;
    padding: 10px;
    margin-bottom: 30px;
}

    .facility-survey .yellow-box .heading-title {
        font-size: 24px;
        font-weight: 600;
        margin: 0;
        text-align: center;
        font-family: 'Cantarell', Sans-serif;
    }

.facility-survey .benefits img {
    margin-bottom: 20px;
}

.facility-survey .benefits h3 {
    font-size: 16px;
    font-weight: 600;
    color: #354456;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 20px;
    font-family: 'Cantarell', Sans-serif;
}

.facility-survey a.survey {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2.3px;
    fill: #333;
    color: #333;
    background-color: #FDE600;
    border-radius: 0px;
    display: inline-block;
    padding: 12px 24px;
    margin: 50px 0;
    font-family: 'Montserrat', Sans-serif;
}

.facility-survey .section-boxed .row {
    margin-bottom: 75px;
    margin-top: 30px;
}

    .facility-survey .section-boxed .row h2 {
        color: #354456;
        font-size: 20px;
        font-weight: 600;
        text-transform: uppercase;
        text-decoration: none;
        letter-spacing: -1px;
        font-family: 'Cantarell', Sans-serif;
    }

.facility-survey .shadow-view {
    position: relative;
}

    .facility-survey .shadow-view span {
        background: #333333;
        height: 100%;
        display: flex;
        margin-right: 30px;
        min-height: 270px;
    }

    .facility-survey .shadow-view img {
        position: absolute;
        bottom: 42px;
        left: 50px;
        width: 90%;
    }

.facility-survey .section-boxed strong span {
    font-family: 'Roboto', Sans-serif;
}

.facility-survey .alert-info {
    color: #31708f;
    background-color: #d9edf7;
    padding: 15px;
    border-left: 5px solid #bcdff1;
    position: relative;
    text-align: left;
    margin: 20px 0;
}

.facility-survey .alert-title {
    color: #31708f;
    font-weight: 600;
    display: block;
    font-family: 'Roboto', Sans-serif;
}

.facility-survey .alert-description {
    font-size: 13px;
    font-family: 'Roboto', Sans-serif;
}

.facility-survey button.survey-btn {
    background-color: #0075A8;
    color: #fff;
    min-height: 40px;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 3px;
}

.MultiCarousel {
    float: left;
    overflow: hidden;
    padding: 15px;
    width: 100%;
    position: relative;
}

    .MultiCarousel .MultiCarousel-inner {
        transition: 1s ease all;
        float: left;
        display: flex;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }

        .MultiCarousel .MultiCarousel-inner .item {
            float: left;
            position: relative;
            margin-bottom: 30px;
        }

            .MultiCarousel .MultiCarousel-inner .item .timeline {
                padding: 30px 25px;
                margin: 15px 16px 0;
                background: #f8f8f8;
                color: #666;
            }

.timeline-arrow {
    position: absolute;
    width: 20px;
    height: 20px;
    border-width: 1px;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-left-color: transparent !important;
    border-top-color: transparent !important;
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    -webkit-transition: inherit;
    -o-transition: inherit;
    transition: inherit;
}

.MultiCarousel .MultiCarousel-inner .item .timeline h5 {
    font-size: 20px;
    font-weight: 500;
    color: #262123;
    margin: 0 0 10px;
}

.MultiCarousel .MultiCarousel-inner .item .timeline p {
    font-size: 16px;
    font-weight: 400;
    color: #262123;
    margin: 0;
    font-family: 'Montserrat', Sans-serif;
}

.timeline-arrow:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: #f8f8f8;
    -webkit-transition: inherit;
    -o-transition: inherit;
    transition: inherit;
}

.MultiCarousel .leftLst, .MultiCarousel .rightLst {
    position: absolute;
    border-radius: 50%;
    top: calc(50% - 10px);
    background: #0075A8;
    height: 36px;
    font-size: 16px;
    border-color: #0075A8;
    width: 36px;
    padding: 0;
}

.MultiCarousel .leftLst {
    left: 15px;
}

.MultiCarousel .rightLst {
    right: 15px;
}

    .MultiCarousel .leftLst.over, .MultiCarousel .rightLst.over {
        pointer-events: none;
        background: #0075A8;
        opacity: 0.5;
    }

.MultiCarousel .btn i {
    font-size: 20px;
    font-weight: bold;
}

.MultiCarousel .timeline-point {
    display: block;
    text-align: center;
    margin: 30px auto 0;
    border-bottom: #EFEFF1 solid 2px;
    height: 9px;
}

    .MultiCarousel .timeline-point span {
        background: #0075A8;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        margin: 0 auto;
        display: block;
    }

.MultiCarousel .item:first-child .timeline-point {
    width: 50%;
    float: right;
}

    .MultiCarousel .item:first-child .timeline-point span {
        margin: initial;
    }

.shapebox .space {
    padding: 0 5% 0 0;
}

    .shapebox .space i {
        opacity: 0.8;
    }

.shapebox h1.heading-title {
    color: #fff;
    font-size: 2.9em;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1.2em;
}

.shapebox p {
    font-size: 1.2em;
    font-weight: 300;
    line-height: 1.6em;
    padding: 1em 1em 1.5em 1em;
    color: #fff;
    opacity: 0.8;
    font-family: 'Montserrat', Sans-serif;
}

.shapebox .elementor-button-link {
    font-size: 1em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #044c94;
    background-color: #fff;
    border-radius: 3px;
    padding: 20px 40px;
    display: inline-block;
}

    .shapebox .elementor-button-link:hover, .shapebox .elementor-button-link:focus {
        color: #fff;
        background-color: #0075A8;
        border-color: #fff;
    }

.shapebox .rating {
    color: #fff;
    font-size: 13px;
    font-weight: 300;
    text-align: center;
}

.rating i {
    margin-right: 9px;
    font-size: 29px;
}

.bgshadow {
    background: url(../images/lowes/bgshadow.png) no-repeat;
    background-position: center;
    background-size: cover;
    margin: 85px 0;
    padding: 0 15px;
}

    .bgshadow .holder {
        margin: 0 -6px;
    }

    .bgshadow .container.subcontainer {
        width: 880px;
    }

    .bgshadow .slides {
        display: none;
    }

        .bgshadow .slides img {
            width: 100%;
        }

.holder::-webkit-scrollbar {
    display: none;
}

.bgshadow .prevContainer, .bgshadow .nextContainer {
    position: absolute;
    top: 50%;
    cursor: pointer;
    transform: translate(0, -100%);
}

.prevContainer {
    margin-left: 0;
    left: 0;
}

.bgshadow .prev {
    position: relative;
    top: 50%;
    float: left;
    margin-left: 12px;
    color: #fff;
    font-size: 20px;
}

    .bgshadow .prev svg, .bgshadow .next svg {
        fill: white;
    }

.bgshadow .nextContainer {
    margin-right: 0;
    right: 0;
}

.bgshadow .next {
    position: relative;
    top: 50%;
    float: right;
    margin-right: 12px;
    color: #fff;
    font-size: 20px;
}

.bgshadow .caption-container {
    text-align: left;
    background-color: #222;
    padding: 2px 16px;
    color: white;
}

.bgshadow .row:after {
    content: "";
    display: table;
    clear: both;
}

.bgshadow .column {
    float: left;
    width: 20%;
    padding: 8px 5px 0;
}

.bgshadow .slide-thumbnail {
    width: 100%;
    opacity: 0.6;
    cursor: pointer;
}

    .bgshadow .active, .bgshadow .slide-thumbnail:hover {
        opacity: 1;
    }

@media only screen and (max-width:600px) {
    .bgshadow .prevContainer, .bgshadow .nextContainer {
        display: none;
        visibility: hidden;
    }
}

.shapebox .elementor-section {
    background-color: transparent;
    background-image: linear-gradient(180deg, #003C4C 0%, #044c94 100%);
}

.shapebox .elementor-top-section {
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 20px 0 0 0;
}

.shapebox .elementor-section-boxed {
    position: relative;
    height: 675px;
}

.shapebox .elementor-shape-bottom {
    z-index: 2;
    pointer-events: none;
    bottom: -1px;
}

.shapebox .elementor-shape[data-negative=false].elementor-shape-bottom, .shapebox .elementor-shape[data-negative=true].elementor-shape-top {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.shapebox .elementor-shape {
    overflow: hidden;
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 0;
    direction: ltr;
}

.shapebox .elementor-shape-bottom svg {
    width: calc(150% + 1.3px);
    height: 158px;
    transform: translateX(-50%) rotateY(180deg);
}

.shapebox .elementor-shape-bottom:not([data-negative=true]) svg {
    z-index: -1;
}

.shapebox .elementor-shape svg {
    position: relative;
    left: 50%;
    display: block;
    overflow: hidden;
}

.shapebox .elementor-shape-bottom .elementor-shape-fill {
    fill: #fff;
}

.lowerpage .title {
    text-align: right;
    color: #044c90;
    font-size: 1.9em;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1.2em;
    margin: 30px 25px 1rem 0;
}

.lowerpage h3.heading-title {
    color: #222;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.25em;
    margin: 0 0 20px;
}

.lowerpage p {
    font-size: 1em;
    font-weight: 300;
    line-height: 1.6em;
    color: #222;
    font-family: 'Montserrat', Sans-serif;
}

.lowerpage .elementor-button-link {
    font-size: 1em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    fill: #fff;
    color: #fff;
    background-color: #044c94;
    border-radius: 3px;
    padding: 15px 30px;
    margin-top: 30px;
    display: table;
    margin-left: -0.5rem;
}

    .lowerpage .elementor-button-link:hover, .lowerpage .elementor-button-link:focus {
        color: #fff;
        background-color: #0075A8;
        border-color: #fff;
    }

.lowerpage .spacing {
    margin: 60px 0;
}

.lowerpage .items {
    max-width: 1000px;
    margin: 0 auto;
}

    .lowerpage .items .elementor-button-link {
        margin-left: 0;
    }

.lowerpage .Speakman {
    margin: 100px 0;
}

    .lowerpage .Speakman p {
        font-size: 12px;
        font-weight: 400;
        color: #7a7a7a;
        font-family: 'Roboto', Sans-serif;
    }

.login h2 {
    font-size: 1.5rem;
    padding-bottom: 0.5rem;
    color: #262123;
    font-weight: 600;
}

.loginform {
    background-color: #f8f7f7;
    padding: 20px;
    margin: 2em 0 3em;
    text-align: left;
    border-radius: 5px;
}

    .loginform label {
        display: block;
        line-height: 2;
        font-family: 'Montserrat', Sans-serif;
    }

    .loginform input {
        font-size: 16px;
        color: #606060;
        padding-top: 11px;
        padding-bottom: 11px;
        padding-left: 15px;
        border: 1px solid #ced4da;
        width: 100%;
    }

    .loginform .required {
        color: red;
        font-weight: 700;
        border: 0 !important;
        text-decoration: none;
    }

    .loginform .form-row input {
        width: auto;
    }

    .loginform button.woocommerce-button {
        display: inline-block;
        padding: 0.375rem 0.75rem;
        font-size: 1rem;
        line-height: 1.5;
        font-weight: normal;
        text-align: center;
        vertical-align: middle;
        user-select: none;
        color: #fff;
        background-color: #007bff;
        border: 1px solid #007bff;
        transition: all .15s ease-in-out;
    }

    .loginform label.woocommerce-form__label {
        display: inline-block;
        line-height: 2;
        margin-left: 10px;
    }

.lost_password a {
    color: #7a7a7a;
    font-family: 'Montserrat', Sans-serif;
}

.product-care p, .return-policy p, .imap strong, .imap p {
    color: #7a7a7a;
}

@media (max-width:1024px) {
    .category .col-lg-3 {
        width: 50%;
        margin: 10px 0;
    }

    .productimg .col-lg-2 {
        width: 50%;
    }

    .lowerpage .items {
        max-width: 100%;
        padding: 0 15px;
    }

    .lowerpage .videofrane {
        position: relative;
        overflow: hidden;
        width: 100%;
        padding-top: 56.25%;
    }

    .lowerpage iframe {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
    }
}

@media (max-width:991px) {
    .container, .container.subcontainer {
        max-width: 100%;
    }

    .footer-content .col-lg-2:first-child {
        width: 100%;
        text-align: center
    }

    .social {
        justify-content: center;
    }

    .footer-content .col-lg-2 {
        width: 25%;
    }

    .pagescollection .resources.resources-images h2 {
        margin: 20px 0;
    }

    .heading-title-img {
        height: 219px;
    }

        .heading-title-img img {
            object-fit: cover;
            height: 100%;
        }

    .boxview {
        margin: 38px -50px 35px 75px;
    }

    .newproduct.Kitchen .boxview {
        margin: 65px -50px 25px 75px;
    }

    .resources img {
        min-width: 100%;
        width: 100%;
    }

    .category img {
        width: 100%;
        height: 100%;
    }

    .facility-survey .shadow-view img {
        position: relative;
        bottom: auto;
        left: auto;
        width: 100%;
    }

    .facility-survey .shadow-view span {
        display: none;
    }

    .shapebox .elementor-section-boxed {
        padding: 50px 25px 50px 25px;
        height: 100%;
        min-height: 670px;
    }

    .shapebox p {
        padding-left: 0;
        padding-right: 0;
    }

    .shapebox .elementor-button-link {
        text-align: center;
    }
}

@media (min-width:768px) {
    .panel {
        border: none;
        box-shadow: none;
    }

    .panel-collapse {
        height: auto;
    }

        .panel-collapse.collapse {
            display: block;
        }
}

@media (max-width:767px) {
    .panel-title a {
        display: block;
    }

    .panel {
        margin: 0;
        box-shadow: none;
        border-radius: 0;
        margin-top: -2px;
    }

    .tab-pane:first-child .panel {
        border-radius: 5px 5px 0 0;
    }

    .tab-pane:last-child .panel {
        border-radius: 0 0 5px 5px;
    }

    .preview-thumbnail.nav-tabs {
        display: block;
    }

    .resources.resources-images .row {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .pagescollection .resources.resources-images h2 {
        margin: 10px 0 20px 0;
    }

    .resources.resources-images img {
        height: auto;
    }

    .boxview {
        position: relative;
        margin: 0 0 20px;
        width: 100%;
    }

    .newproduct.Kitchen .boxview {
        margin: 0 0 20px;
    }

    .boxviewimg {
        width: 100%;
        height: 100%;
        padding-right: 0;
    }

    .footer-content .col-lg-2:first-child {
        width: 100%;
    }

    .footer-content .col-lg-2 {
        width: 100%;
    }

    .footer-legal, .footer-content {
        text-align: center;
    }

    .searching .col-lg-3 {
        max-width: 50%;
    }

    .contact-details {
        text-align: center;
    }

    .literature .col-20, .literature .col-lg-3 {
        margin: 0 auto;
        text-align: center;
        width: 100%;
    }

        .literature .col-20 img, .literature .col-lg-3 img {
            width: auto !important;
        }

    .literature ul li a span {
        display: block;
    }

    .facility-survey .gray-box h1 {
        font-size: 34px;
    }

    .section-boxed img, .facility-survey .shadow-view img {
        width: 80% !important;
        margin: 20px auto;
        display: block;
    }

    .twopart img {
        margin-top: 15px;
    }

    .twopart .col-md-6.p-2 {
        padding: 0 !important;
    }

    .shapebox .elementor-button-link, .lowerpage .elementor-button-link, .twopart .elementor-button-link {
        margin-left: 0 !important;
        width: 100%;
        text-align: center;
    }

    .shapebox .space {
        padding: 0 15px !important;
    }

    .shapebox .rating {
        margin-top: 20px;
    }

    .shapebox .col-lg-6:last-child img {
        width: 60% !important;
        margin: 30px auto 70px;
        text-align: center;
        display: block;
    }

    .shapebox .space img {
        width: auto !important;
    }
}

@media (max-width:650px) {
    .facility-survey .gray-box {
        padding-top: 25px;
    }

    .facility-survey .survey {
        margin-top: -200px;
    }

    .sold, .sold .title {
        display: block !important;
        text-align: left !important;
    }
}

@media (max-width:575px) {
    .facility-survey .gray-box {
        padding-bottom: 160px;
    }

    .facility-survey .survey {
        margin-top: -150px;
    }
}

@media (max-width:479px) {
    .heading-title-img h1 {
        font-size: 38px;
    }

    .category .col-lg-3 {
        width: 100%;
    }

    .preview-pic .img_producto_container {
        height: 400px !important;
    }

    .preview {
        display: block;
    }

    .preview-thumbnail.nav-tabs li {
        width: 25%;
        float: left;
    }

    .preview .preview-pic {
        width: 100%;
    }

    .preview .preview-thumbnail {
        width: 100%;
    }

    .literature .col-20 img, .literature .col-lg-3 img {
        width: 100% !important;
    }

    .facility-survey .gray-box {
        padding-bottom: 100px;
    }

    .facility-survey .survey {
        margin-top: -80px;
    }
}
