/*!
Theme Name: Safety
Theme URI: https://www.safety.it/
Author: Alok S.
Author URI: https://alok.dev/
Description: A starter & standard theme for WordPress built for multipurpose.
Version: 1.0.0
Tested up to: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: safety-it
*/


@charset "utf-8";

* {
    font-family: 'Poppins';
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*----------- CSS Document -----------*/

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.text-center {
    text-align: center;
}

.mb0 {
    margin-bottom: 0px;
}

.mb10 {
    margin-bottom: 10px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb30 {
    margin-bottom: 30px;
}

.mb40 {
    margin-bottom: 40px;
}

.mb50 {
    margin-bottom: 50px;
}

.mb60 {
    margin-bottom: 60px;
}

.mb70 {
    margin-bottom: 70px;
}

.mb80 {
    margin-bottom: 80px;
}

.mb90 {
    margin-bottom: 90px;
}

.mb100 {
    margin-bottom: 100px;
}

.mt10 {
    margin-top: 10px;
}

.mt20 {
    margin-top: 20px;
}

.mt30 {
    margin-top: 30px;
}

.mt40 {
    margin-top: 40px;
}

.mt50 {
    margin-top: 50px;
}

.mt60 {
    margin-top: 60px;
}

.mt70 {
    margin-top: 70px;
}

.mt80 {
    margin-top: 80px;
}

.mt90 {
    margin-top: 90px;
}

.mt100 {
    margin-top: 100px;
}

.p0 {
    padding: 0;
}

.pb10 {
    padding-bottom: 10px;
}

.pb20 {
    padding-bottom: 20px;
}

.pb30 {
    padding-bottom: 30px;
}

.pb40 {
    padding-bottom: 40px;
}

.pb50 {
    padding-bottom: 50px;
}

.pb60 {
    padding-bottom: 60px;
}

.pb70 {
    padding-bottom: 70px;
}

.pb80 {
    padding-bottom: 80px;
}

.pb90 {
    padding-bottom: 90px;
}

.pb100 {
    padding-bottom: 100px;
}

.pb150 {
    padding-bottom: 150px;
}

.pt10 {
    padding-top: 10px;
}

.pt20 {
    padding-top: 20px;
}

.pt30 {
    padding-top: 30px;
}

.pt40 {
    padding-top: 40px;
}

.pt50 {
    padding-top: 50px;
}

.pt60 {
    padding-top: 60px;
}

.pt70 {
    padding-top: 70px;
}

.pt80 {
    padding-top: 80px;
}

.pt90 {
    padding-top: 90px;
}

.pt100 {
    padding-top: 100px;
}

/*------------------------------------------------------------------------------*/
/*--------------------------------- Global CSS ---------------------------------*/
/*------------------------------------------------------------------------------*/


/*------------------------------------------------------------------------------*/
/*---------------------------------- HEADER CSS --------------------------------*/
/*------------------------------------------------------------------------------*/
#header-main {
    position: relative;
    background-color: #ffffff;
    width: 100%;
    transition: 0.3s all;
    z-index: 999;
}

.brand {
    float: left;
    display: flex;
    align-items: center;
    height: 100%;
}

.main-menu {
    float: right;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.desktop-navigation {
    position: relative;
    padding: 0 15px;
    z-index: 1000;
}

.desktop-navigation ul li {
    position: relative;
    display: inline-block;
}

.main-menu ul li.prontex {
    background: url("./img/prontex.png") center left no-repeat;
    padding: 0 0 0 40px !important;
    margin-left: 10px;
}

.main-menu ul li.prontex::after {
    background: #01a5ef;
}

.desktop-navigation>ul>li {
    float: left;
}

.desktop-navigation ul li a {
    display: inline-block;
    padding: 32px 10px;
    transition: .2s ease-out;
    font-size: 15px;
    font-family: "Poppins";
    color: #494949;
    font-weight: 500;
    text-transform: uppercase;
}

.desktop-navigation>ul li::after {
    position: absolute;
    left: 0;
    right: 0;
    width: 0%;
    height: 6px;
    content: '';
    background: #d30606;
    bottom: 0;
    transition: all .2s linear;
}

.desktop-navigation ul li ul.sub-menu li::after {
    display: none;
}

.desktop-navigation ul li:hover::after,
.desktop-navigation ul li.current-menu-item::after {
    width: 100%;
}

.desktop-navigation ul li a i {
    margin-left: 2px;
}

.desktop-navigation ul li:not(.sub-menu li) {
    padding: 0 10px;
}

.desktop-navigation a:hover,
li.current-menu-item {
    background: transparent;
}

ul.sub-menu {
    box-sizing: border-box;
    position: absolute;
    top: 100%;
    min-width: 250px;
    border-top: 4px solid rgba(234, 50, 22);
    left: 0;

    transition: 0.45s ease all 0.1s;
    z-index: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
    transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) all 0.1s;
}

.desktop-navigation ul ul.sub-menu {
    opacity: 0;
    visibility: hidden;
}

.desktop-navigation ul li:hover>ul.sub-menu {

    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
    transition-delay: 0.15s;
    visibility: visible;
}

ul.sub-menu li {
    width: 100%;
    background: #fff;
}

.desktop-navigation ul.sub-menu li a {
    width: 100%;
    padding: 10px 10px;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: #231f20;
    text-transform: capitalize;
}

.desktop-navigation ul.sub-menu li a span {
    float: right;
}

.desktop-navigation ul li a:hover,
.desktop-navigation ul li.current-menu-item>a {
    color: #000;
}

.desktop-navigation ul.sub-menu li a:hover,
.desktop-navigation ul.sub-menu li.current-menu-item>a {
    padding-left: 1.1rem;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1) inset;
}

ul.sub-menu ul.sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
}

@media screen and (max-width: 1024px) {
    .desktop-navigation {
        display: none;
    }
}

/*---------------------------------- SEARCH -----------------------------------*/
.search {
    position: relative;
    transition: 0.3s all;
}

.search .search-open {
    cursor: pointer;
}

.search-box {
    z-index: 1050;
    margin-top: -50px;
    background: #d20303;
    transition: all .2s ease-in-out;
    position: relative;
}

.search-box.search-on {
    margin-top: 0;
}

.dgwt-wcas-search-input {
    border: 0 none !important;
}

.dgwt-wcas-search-wrapp {
    padding: 5px 15px;
    width: 100% !important;
    max-width: 100% !important;
}

.dgwt-wcas-search-submit {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.com/svgjs' width='23' height='23' x='0' y='0' viewBox='0 0 512 512' style='enable-background:new 0 0 512 512' xml:space='preserve' class=''%3E%3Cg%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Cpath d='M225.474,0C101.151,0,0,101.151,0,225.474c0,124.33,101.151,225.474,225.474,225.474 c124.33,0,225.474-101.144,225.474-225.474C450.948,101.151,349.804,0,225.474,0z M225.474,409.323 c-101.373,0-183.848-82.475-183.848-183.848S124.101,41.626,225.474,41.626s183.848,82.475,183.848,183.848 S326.847,409.323,225.474,409.323z' fill='%23cb0021' data-original='%23cb0021'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Cpath d='M505.902,476.472L386.574,357.144c-8.131-8.131-21.299-8.131-29.43,0c-8.131,8.124-8.131,21.306,0,29.43l119.328,119.328 c4.065,4.065,9.387,6.098,14.715,6.098c5.321,0,10.649-2.033,14.715-6.098C514.033,497.778,514.033,484.596,505.902,476.472z' fill='%23cb0021' data-original='%23cb0021'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3C/g%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-size: 24px !important;
    background-position: center center !important;
}

.dgwt-wcas-search-submit::before,
.dgwt-wcas-search-submit::after {
    display: none !important;
}

.dgwt-wcas-search-submit svg {
    display: none;
}

/*------------------------------------------------------------------------------*/
/*------------------------------ Mobile Menu CSS -------------------------------*/
/*------------------------------------------------------------------------------*/
.mobile-navigation {
    display: none;
}

.menu-icon.is-active img:nth-of-type(1) {
    display: none;
    transition: 0.3s;
}

.responsive-navigation {
    margin-left: 30px;
}

.menu-icon img:nth-of-type(2) {
    display: none;
    width: 60px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    height: 60px;
    border-radius: 50px;
}

.menu-icon.is-active img:nth-of-type(2) {
    display: block;
    transition: 0.3s;
}

.menu-icon {
    padding: 0;
}

.menu-icon:not(.is-active) {
    width: 60px;
    height: 60px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 50px;
}

@media screen and (max-width: 1024px) {
    .mobile-navigation {
        display: block;
    }

    .main-menu {
        justify-content: flex-end;
    }

    .menu-icon {
        padding: 0;
        z-index: 9999;
    }

    #header-main {
        padding: 8px 0;
    }
}



.mobile-navigation {
    position: relative;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

.mobile-navigation .nav-toggle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.45em 0.6em;
    color: #fff;
    z-index: 100;
    cursor: pointer;
    transition: backgroun-color 0.2s;
    display: none;
}

.mobile-navigation .nav-toggle.back-visible {
    display: block;
}

.mobile-navigation .nav-toggle.back-visible .nav-back {
    opacity: 1;
}

.mobile-navigation .nav-toggle.back-visible .nav-title {
    transform: translateX(40px);
    display: block;
}

.mobile-navigation .nav-title {
    position: absolute;
    left: 0;
    top: 0.8em;
    padding-left: 0.7em;
    transition: transform 0.3s;
    color: #3b5337;
    display: none;
}

.mobile-navigation .nav-back {
    display: inline-block;
    position: relative;
    width: 30px;
    height: 30px;
    vertical-align: middle;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.2s;
    color: #3b5337;
}

.mobile-navigation .nav-back:before,
.mobile-navigation .nav-back:after {
    content: "";
    position: absolute;
    top: 50%;
}

.mobile-navigation .nav-back:before {
    left: 50%;
    width: 9px;
    height: 9px;
    border: 2px solid currentcolor;
    border-right-color: transparent;
    border-bottom-color: transparent;
    transform: translate(-50%, -50%) rotateZ(-45deg);
}

.mobile-navigation .nav-back:after {
    left: 28%;
    width: 15px;
    height: 2px;
    background-color: currentcolor;
    margin-top: -1px;
}

.mobile-navigation a {
    display: block;
    position: relative;
    padding: 0.7em;
    border-bottom: 1px solid #eee;
    color: #999;
    text-decoration: none;
    transition: color 0.15s, background-color 0.15s;
}

.mobile-navigation li:last-child a {
    border-bottom: none;
}

.mobile-navigation a:hover {
    color: #3b5337;
    background-color: #efefef;
}

.mobile-navigation ul {
    list-style: none;
    padding: 45px 0 0;
    transition: transform 0.3s;
    position: absolute;
    left: 0;
    top: 0;
    height: 80vh;
    width: 100%;
}

.mobile-navigation ul ul {
    display: none;
    left: 100%;
}

.mobile-navigation li.has-dropdown>a {
    padding-right: 2.5em;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.mobile-navigation li.has-dropdown>a:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1em;
    width: 9px;
    height: 9px;
    border: 1px solid currentcolor;
    border-left-color: transparent;
    border-top-color: transparent;
    transform: translateY(-90%) rotateZ(-45deg);
    transition: transform 0.3s;
    transform-origin: 100%;
}

.mobile-navigation li.nav-dropdown-open ul {
    display: block;
}

/*------------------------------------------------------------------------------*/
/*------------------------------ Form CSS ------------------------------*/
/*------------------------------------------------------------------------------*/
textarea,
textarea:focus,
input,
input:focus,
button,
button:focus {
    outline: none;
    resize: inherit;
}

/* ---------------------------------------------------------------- */
/* 04.Buttons                                                   
/* ---------------------------------------------------------------- */
.default-button {
    border-radius: 5px;
    display: inline-block;
    background-color: #343dbb;
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 18px 36px;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    color: #fff;
}

.default-button:after {
    display: none;
    content: "";
    position: absolute;
    border-radius: 50%;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    background-color: rgba(0, 0, 0, 0.247);
    width: 100px;
    height: 100px;
    margin-top: -50px;
    margin-left: -50px;
    top: 50%;
    left: 50%;
    -webkit-animation: ripple 1s;
    animation: ripple 1s;
    opacity: 0;
}

.default-button:focus:not(:active)::after {
    display: block;
}

@-webkit-keyframes ripple {
    from {
        opacity: 1;
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    to {
        opacity: 0;
        -webkit-transform: scale(10);
        transform: scale(10);
    }
}

@keyframes ripple {
    from {
        opacity: 1;
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    to {
        opacity: 0;
        -webkit-transform: scale(10);
        transform: scale(10);
    }
}

/* ---------------------------------------------------------------- */
/* 05.Contact Form                                                   
/* ---------------------------------------------------------------- */

#contactFile {
    padding-top: 20px;
    padding-left: 75px;
}

.contact-form-wrap .contact-form-group {
    position: relative;
    margin-bottom: 30px;
}

.contact-form-wrap .contact-form-group .form-control {
    height: 60px;
    color: #9f9f9f;
    font-weight: 500;
    outline: none;
    padding: 20px 30px;
    line-height: 2.115;
    font-size: 26px;
    border-radius: 14px;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    border-width: 0.5px;
    border-color: rgb(89, 89, 89);
    border-style: solid;
    background-color: rgba(239, 239, 239, 0.5);
}

.contact-form-wrap .contact-form-group .form-control::placeholder,
.contact-form-wrap .contact-form-group .form-control::-moz-placeholder,
.contact-form-wrap .contact-form-group .form-control::-webkit-input-placeholder {
    color: #9f9f9f;
}

@media screen and (max-width: 576px) {
    .contact-form-wrap .contact-form-group .form-control {
        font-size: 14px;
    }
}


.contact-form-wrap .contact-form-group .form-control:focus {
    color: #9f9f9f;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.contact-form-wrap .contact-form-group #txtInput {
    padding-left: 90px;
}

.contact-form-wrap .contact-form-group #txtCaptchaSpan {
    position: absolute;
    top: 50%;
    height: 60px;
    padding-left: 14px;
    padding-right: 14px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #343dbb;
    color: #fff;
    border-radius: 5px 0 0 5px;
}

.contact-form-wrap .contact-form-group textarea.form-control {
    height: auto;
    padding-top: 20px;
}

.contact-form-wrap .empty-form span,
.contact-form-wrap .email-invalid span,
.contact-form-wrap .phone-invalid span,
.contact-form-wrap .terms-alert span,
.contact-form-wrap .subject-alert span,
.contact-form-wrap .security-alert span {
    display: block;
    padding: 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    color: #721c24;
    background: rgba(242, 116, 116, 0.2);
}

.custom-select-wrapper {
    position: relative;
}

.custom-select-wrapper select,
.custom-select-wrapper .select-hide {
    display: none;
}

.custom-select-wrapper .select-selected {
    border-radius: 5px;
    outline: none;
    padding: 18px 60px;
    font-size: 15px;
    border: none;
    cursor: pointer;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    background-color: #fff;
    color: #343dbb !important;
    -webkit-box-shadow: 0px 5px 20px 0px rgba(61, 82, 96, 0.15);
    box-shadow: 0px 5px 20px 0px rgba(61, 82, 96, 0.15);
}

.custom-select-wrapper .select-selected:focus {
    outline: none;
    border: none;
    -webkit-box-shadow: 0px 23px 49px 0px rgba(61, 82, 96, 0.15);
    box-shadow: 0px 23px 49px 0px rgba(61, 82, 96, 0.15);
}

.custom-select-wrapper .select-selected:after {
    right: 14px;
    top: 14px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    content: "\f078";
    position: absolute;
    pointer-events: none;
    display: inline-block;
    color: #343dbb;
    background: rgba(20, 55, 95, 0.2);
    font-size: 14px;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
}

.custom-select-wrapper .select-selected.select-arrow-active:after {
    content: "\f077";
}

.custom-select-wrapper .select-items {
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    margin-top: 10px;
    position: absolute;
    background-color: #fff;
    -webkit-box-shadow: 0px 23px 49px 0px rgba(61, 82, 96, 0.15);
    box-shadow: 0px 23px 49px 0px rgba(61, 82, 96, 0.15);
}

.custom-select-wrapper .select-items .same-as-selected {
    background-color: #343dbb;
    border-bottom-color: #343dbb;
    color: #fff !important;
}

.custom-select-wrapper .select-items .same-as-selected:after {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.custom-select-wrapper .select-items div {
    color: #000;
    outline: none;
    width: 100%;
    display: block;
    padding: 18px 60px;
    font-size: 15px;
    border: none;
    cursor: pointer;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

@media screen and (max-width: 576px) {
    .custom-select-wrapper .select-items div {
        font-size: 14px;
    }
}

.custom-select-wrapper .select-items div:focus {
    outline: none;
    border: none;
    -webkit-box-shadow: 0 23px 49px 0 rgba(61, 82, 96, 0.15);
    box-shadow: 0 23px 49px 0 rgba(61, 82, 96, 0.15);
}

.custom-select-wrapper .select-items div:last-child {
    border-bottom: 0;
}

.custom-select-wrapper .select-items div:after {
    content: "\f036";
    left: 14px;
    top: 14px;
    width: 32px;
    height: 32px;
    z-index: 14;
    position: absolute;
    text-align: center;
    line-height: 32px;
    border-radius: 50%;
    display: inline-block;
    color: #343dbb;
    background: rgba(20, 55, 95, 0.2);
    font-size: 12px;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
}

.custom-select-wrapper .select-items div:hover {
    background-color: #343dbb;
    border-bottom-color: #343dbb;
    color: #fff;
}

.custom-select-wrapper .select-items div:hover:after {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.form-control::file-selector-button {
    padding: 15px 45px;
    border: none !important;
    background: transparent;
    margin: 4px 15px 4px 0;
}

label {
    color: #fff;
    font-size: 20px;
}

/*------------------------------------------------------------------------------*/
/*------------------------------ Landing Page CSS ------------------------------*/
/*------------------------------------------------------------------------------*/
.home-banner {
    position: relative;
}

.banner-slide-inner {
    display: flex;
    align-items: center;
    background: #d20303;
}

.banner-slide-inner .widget-text {
    width: 40%;
    position: relative;
}

.banner-slide-inner .widget-text .text-block,
.banner-slide-inner .widget-text .text-sm {
    max-width: 50%;
    margin: 0 5rem 0 auto;
}

.banner-slide-inner .widget-text .text-block {
    min-height: 200px;
}

.banner-slide-inner .widget-text .text-block h3 {
    font-size: 35px;
    font-family: "Poppins";
    color: rgb(255, 255, 255);
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 0;
    line-height: 1;
}

.swiper-slide-active .banner-slide-inner .widget-text .text-block h3 .title-b {
    overflow: hidden;
}

.swiper-slide-active .banner-slide-inner .widget-text .text-block h3 .title-b span {
    display: block;
    overflow: hidden;
    transform: translateY(150px);
    animation: headtextanim 1s;
    animation-fill-mode: forwards;
    transition: all 3s cubic-bezier(1.19, 1, .22, 1);
}

@keyframes headtextanim {
    0% {
        transform: translateY(150px);
    }

    100% {
        transform: translateY(0px);
    }
}

.swiper-slide-active .banner-slide-inner .widget-text .text-sm {
    overflow: hidden;
}

.swiper-slide-active .banner-slide-inner .widget-text .text-sm h5,
.swiper-slide-active .banner-slide-inner .widget-text .text-sm h5 span {
    overflow: hidden;
}

.banner-slide-inner .widget-text .text-sm h5 {
    position: absolute;
    bottom: -100px;
    width: 50%;
}

.swiper-slide-active .banner-slide-inner .widget-text .text-sm h5 span p {
    display: block;
    overflow: hidden;
    transform: translateY(150px);
    animation: headtextanim 1s;
    animation-fill-mode: forwards;
    transition: all 3s cubic-bezier(1.19, 1, .22, 1);
    margin-bottom: 0;
}

.banner-slide-inner .widget-text .text-sm h5 span p {
    font-size: 25px;
    font-family: "Gotham";
    color: rgb(255, 255, 255);
    line-height: 1;
}

.banner-slide-inner .widget-img {
    width: 60%;
}

.widget-img {
    position: relative;
}

.widget-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Home Tab Section */
.home-tabs-section {
    overflow: hidden;
}

.responsive-tabs .nav-tabs {
    display: none;
    border: none !important;
    width: 80%;
    margin: 0 auto;
}

.tabs-accordion {
    position: relative;
}

.tabs-accordion::before {
    content: '';
    width: 100vw;
    height: 100%;
    background: #f1f1f1;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
}

.card-body {
    padding: 50px 0;
    margin-left: 10%;
}

@media (min-width: 992px) {
    .responsive-tabs .nav-tabs {
        display: flex;
    }

    .responsive-tabs .card {
        border: none;
    }

    .responsive-tabs .card .card-header {
        display: none;
    }

    .responsive-tabs .card .collapse {
        display: block;
    }
}

@media (max-width: 992px) {
    .responsive-tabs .tab-pane {
        display: block !important;
        opacity: 1;
    }
}

.r-icon-box {
    display: flex;
    align-items: center;
}

.r-icon-box img {
    margin-right: 15px;
    width: 50px;
}

.r-icon-box p {
    margin-bottom: 0;
    color: rgb(64, 64, 64);
    font-size: 17px;
}

.home-categories {
    background-color: #f1f1f1;
}

.tab-link .icon-box {
    height: 100%;
    text-align: center;
    padding: 30px 35px;
    transition: 0.3s ease;
    display: flex;
    position: relative;
    flex-direction: column;
    gap: 10px;
    padding-top: 45px;
}

.tab-link * {
    transition: 0.3s ease;
}

li:nth-child(2n) .tab-link .icon-box::before,
li:nth-child(2n):not(:last-child) .tab-link .icon-box::after {
    content: "";
    background: #bbbbbb;
    height: 68%;
    width: 1px;
    position: absolute;
    z-index: 0;
}

.tab-link .icon-box:hover::before,
.tab-link .icon-box:hover::after,
.tab-link.active .icon-box::before,
.tab-link.active .icon-box::after {
    background: #3c3c3c !important;
}

.tab-link .icon-box::before {
    left: 0;
}

.tab-link .icon-box::after {
    right: 0;
}

.tab-link .icon-box:hover,
.tab-link.active .icon-box {
    width: 100%;
    height: 100%;
    background: #3c3c3c;
}

.tab-link .icon-box img {
    filter: none;
}

.tab-link .icon-box:hover img,
.tab-link.active .icon-box img {
    filter: brightness(500%);
}

.tab-link .icon-box:hover p,
.tab-link.active .icon-box p {
    color: #fff;
}

.tab-link .icon-box .img-box {
    margin-bottom: 5px;
    position: relative;
    z-index: 9;
    min-height: 80px;
}

.tab-link .icon-box p {
    font-family: "Gotham";
    font-size: 15px;
    color: rgb(64, 64, 64);
    margin-bottom: 0px;
    position: relative;
    text-align: left;
    z-index: 9;
    line-height: 1;
}

.tab-link .icon-box p .count {
    display: none;
}

.home-sec-one {
    padding: 100px 0;
}

.data-box {
    text-align: left;
    margin-right: 5rem;
}

.data-box .title-about {
    font-family: "Poppins";
    color: rgb(13, 83, 145);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.data-box .text-about {
    font-family: "Poppins";
    color: rgb(0, 0, 0);
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 40px;
}

.data-box .text-about span {
    font-weight: 600;
}

.title-btn-group {
    padding: 20px 0 30px;
    border-top: 1px solid rgb(17, 62, 120);
    border-bottom: 1px solid rgb(17, 62, 120);
}

.title-btn-group h3 {
    font-size: 20px;
    font-family: "Poppins";
    color: rgb(17, 62, 120);
    font-weight: 600;
    text-transform: uppercase;
    /*margin-bottom: 15px;*/
     margin: 30px 0px;
}

a.button-cta {
    font-size: 17px;
    text-decoration: none;
    font-weight: 600;
    border: 6px solid #c1defc;
    border-radius: 45px;
    padding: 10px 50px;
    display: inline-block;
    color: #0c5391;
    transition: all .2s linear;
    background: #fff;

}
.data-box a.button-cta {

    margin-bottom: 23px;
}

a.button-cta:hover {
    background: #c1defcab;
    color: #fff;
}

.home-sec-two {
    background: #d20303;
    padding: 150px 0 50px;
    position: relative;
}

.partnership {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-30%, 50%);
    font-family: "Poppins";
    font-size: 100px;
    color: rgba(255, 255, 255, 0.30);
    font-weight: bold;
    z-index: 5;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.partnership span {
    font-size: 57px;
    font-weight: normal;
    text-align: right;
    line-height: 1;
    margin-right: 70px;
    margin-top: -5px;
}

.home-sec-two .data-img,
.home-sec-two .partnership-text {
    position: relative;
    z-index: 2;
}

.home-sec-two .data-img {
    max-width: 80%;
    margin: 0 auto;
}

.partnership-text {
    margin-bottom: 50px;
    max-width: 80%;
}

.partnership-text p {
    font-size: 32px;
    font-family: "Poppins";
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    margin-bottom: 0;
    font-weight: normal;
    line-height: 1.2;
}

.home-sec-three {
    background: url(./img/bg-1.jpg);
    background-repeat: repeat;
    background-size: cover;
    background-position: center center;
}

.home-sec-three .full-block {
    background-color: rgba(255, 255, 255, 0.851);
    width: 100%;
    height: 100vh;
    padding: 100px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.home-sec-three .full-block .btn-group {
    width: 100%;
}

.spacer-top {
    min-height: 100px;
}

.spacer-bottom {
    margin-top: 100px;
}

.home-sec-three .full-block h2 {
    font-family: "Poppins";
    font-size: 32px;
    font-weight: 600;
    color: rgb(210, 3, 3);
    margin-bottom: 20px;
}

.home-sec-three .full-block p {
    font-family: "Poppins";
    font-size: 16px;
    line-height: 1.4;
    font-weight: normal;
    color: rgb(0, 0, 0);
    margin-bottom: 0px;
}

a.button-cta-style-one {
    font-family: "Poppins";
    font-size: 15px;
    text-decoration: none;
    font-weight: 600;
    border: 4px solid #d1d1d1;
    border-radius: 50px;
    padding: 10px 30px;
    display: inline-block;
    color: #d20303;
    transition: all .2s linear;
    background: #fff;
    white-space: nowrap;
}

a.button-cta-style-one:hover {
    background: #d20303;
    color: #fff;
}

.home-sec-four {
    padding: 100px 0;
}

.main-title {
    margin-bottom: 40px;
}

.main-title h3 {
    font-family: "Poppins";
    font-size: 32px;
    font-weight: 600;
    color: rgb(210, 3, 3);
    line-height: 1;
}

.main-title p {
    font-family: "Poppins";
    font-size: 23px;
    font-weight: 600;
    color: #565656;
    line-height: 1;
}

.headquarters-block {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.headquarters-block::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 90%;
    height: 100%;
    background-color: #e6e6e6;
    z-index: 0;
}

.headquarters-slider {
    width: 100%;
    height: 100%;
}

.headquarters-block .headquarters-slide {
    width: 80%;
}

.headquarters-block .headquarters-slide:nth-child(2n) {
    width: 35%;
}

.headquarters-block .headquarters-slide img {
    display: block;
    width: 100%;
    height: 800px;
    object-fit: cover;
}

.widget-headquarters {
    position: relative;
    z-index: 1;
    padding: 10rem 0 100px;
    max-width: 25%;
    margin: 0 auto;
    text-align: center;
}

.headquarters-text p {
    font-family: "Poppins";
    font-size: 16px;
    color: rgb(0, 0, 0);
    line-height: 1.375;
}

.headquarters-text p:not(:last-child) {
    margin-bottom: 20px;
}

.headquarters-text h3 {
    font-family: "Poppins";
    font-size: 22px;
    color: rgb(0, 0, 0);
    line-height: 22px;
}

.home-sec-five {
    padding: 100px 0;
}

.health-guide {
    max-width: 80%;
    margin-left: auto;
}

.health-guide-text {
    max-width: 55%;
    margin-right: auto;
}

.health-guide-text h3 {
    font-family: "Poppins";
    font-size: 32px;
    color: rgb(210, 3, 3);
    margin-bottom: 20px;
}

.health-guide-text p {
    font-family: "Poppins";
    font-size: 16px;
    color: rgb(0, 0, 0);
    margin-bottom: 40px;
}

.hg-text-b {
    padding: 20px 0 30px;
    border-top: 1px solid rgb(17, 62, 120);
    border-bottom: 1px solid rgb(17, 62, 120);
}

.hg-text-b h3 {
    font-family: "Poppins";
    color: rgb(64, 64, 64);
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.home-sec-six {
    padding: 100px 0;
    background: #404040;
}

.home-sec-six div div div div {
    width: 50%;
    margin: 0 auto;
}


.home-sec-highlight {
    padding: 60px 0 80px;
}

.main-title-style-two {
    margin-bottom: 40px;
}

.main-title-style-two h3 {
    font-family: "Poppins";
    font-size: 45px;
    font-weight: 600;
    color: rgb(210, 3, 3);
    line-height: 1.2;
    margin-bottom: 10px;
}

.main-title-style-two p {
    font-family: "Poppins";
    font-size: 25px;
    font-weight: normal;
    color: #333333;
    line-height: 1;
}

.highlight-boxes {
    margin-bottom: 40px;
}

.highlight-boxes img {
    margin-bottom: 30px;
}

.highlight-boxes h4 {
    margin-bottom: 30px;
}

.highlight-boxes h4 a {
    font-family: "Poppins";
    font-size: 18px;
    color: rgb(68, 68, 68);
    font-weight: 600;
}

.highlight-boxes p {
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 16px;
    color: rgb(68, 68, 68);
    margin-bottom: 0px;
    line-height: 1.2;
}

.home-sec-highlight .btn-group {
    display: flex;
    justify-content: center;
}

.home-sec-highlight .btn-group a.button-cta-style-one {
    padding: 10px 60px;
    white-space: nowrap;
}

/*------------------------------------------------------------------------------*/
/*------------------------------ BREADCRUMB ------------------------------------*/
/*------------------------------------------------------------------------------*/
.breadcrumbs {
    background: #d20303;
    padding: 10px 0;
}

.breadcrumbs-inner,
.breadcrumbs-inner span {
    color: #fff;
    text-transform: lowercase;
}

.breadcrumbs-inner span:first-child {
    margin-right: 10px;
}

.breadcrumbs-inner span:not(:first-child) {
    margin: 0 10px;
}

.breadcrumbs-inner span>span {
    font-weight: bold;
}

.woocommerce-products-header {
    text-align: center;
    padding: 80px 0;
}

.woocommerce-products-header .woocommerce-products-header__title.page-title {
    font-size: 118px;
    font-family: "Poppins";
    color: rgba(47, 46, 46, 0.141);
    font-weight: 600;
    line-height: 1.038;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.woocommerce-products-header .term-description p {
    font-size: 22px;
    font-family: "Poppins";
    color: rgb(89, 89, 89);
    line-height: 1.2;
    width: 30%;
    margin: 0 auto;
    margin-bottom: 50px;
}

.woocommerce-products-header .category__sub_titlewrap {
    font-size: 32px;
    font-family: "Poppins";
    color: rgb(211, 6, 6);
    font-weight: 600;
    line-height: 1.2;
    position: relative;
    padding-top: 50px;
}

.woocommerce-products-header .category__sub_titlewrap::before {
    content: '';
    height: 5px;
    width: 160px;
    background: rgb(211, 6, 6);
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*------------------------------------------------------------------------------*/
/*------------------------------ Footer CSS ------------------------------------*/
/*------------------------------------------------------------------------------*/
.footer-top {
    background: #dcdcdc;
    padding: 15px 0;
    margin-bottom: 10px;
}

.footer-top .footer-text {
    width: 55%;
    margin: 0 auto;
    text-align: center;
}

.footer-text p {
    font-family: "Poppins";
    font-size: 14px;
    font-weight: normal;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 0;
}

.footer-text span {
    font-weight: 600;
}

footer {
    background-color: rgb(241, 241, 241);
    padding: 50px 0 80px;
}

.footer-about h3 {
    font-family: "Poppins";
    color: rgb(105, 105, 105);
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 0;
}

.footer-about ul {
    list-style: none;
    padding: 0;
}

.footer-about ul li {
    font-family: "Poppins";
    color: rgb(105, 105, 105);
    font-weight: normal;
    font-size: 16px;
    width: 80%;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.footer-menu .footer-menu-top {
    display: flex;
}

.footer-menu .footer-menu-top .menu-left .f-menu-title {
    font-family: "Poppins";
    color: rgb(105, 105, 105);
    font-weight: bold;
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 15px;
}

.footer-menu .footer-menu-top .menu-left,
.footer-menu .footer-menu-top .menu-right {
    border-left: 1px solid rgb(105, 105, 105);
    padding: 0 50px;
    min-height: 220px;
}

.footer-menu .footer-menu-top .menu-right {
    padding-top: 60px;
}

.footer-menu .footer-menu-top .menu-left ul,
.footer-menu .footer-menu-top .menu-right ul,
.footer-menu-bottom ul,
.social-grp ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu .footer-menu-top .menu-left ul li a,
.footer-menu .footer-menu-top .menu-right ul li a,
.footer-menu-bottom ul li a,
.social-grp ul li a {
    font-family: "Poppins";
    color: rgb(105, 105, 105);
    font-weight: normal;
    font-size: 16px;
    text-decoration: none;
}

.footer-menu-bottom ul {
    display: flex;
}

.footer-menu-bottom ul li:not(:last-child) {
    border-right: 1px solid rgb(105, 105, 105);
}

.footer-menu-bottom ul li:first-child a {
    padding-right: 10px;
    margin-right: 10px;
}

.footer-menu-bottom ul li:not(:first-child) a {
    padding: 0 10px;
    margin: 0 10px;
}

.footer-social .social-title {
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 16px;
    color: #e90000;
    margin-bottom: 10px;
    line-height: 1.2;
}

.footer-social .social-grp {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    height: 100%;
}

.social-grp ul {
    display: flex;
}

.social-grp ul li:not(:last-child) a {
    margin: 0 5px;
}

.social-grp ul li a {
    width: 30px;
    height: 30px;
    font-size: 18px;
    border: 2px solid rgb(105, 105, 105);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.headquarters-navigation {
    position: absolute;
    right: 10%;
    bottom: 8%;
}

.head-swiper-button-next::before {
    content: 'next';
}

.head-swiper-button-next::before {
    font-family: 'Poppins';
    font-size: 20px;
    text-transform: none;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
    color: #fff;
    font-weight: 400;
}

.head-swiper-button-next::after {
    content: '>';
}

.head-swiper-button-next::after {
    font-family: 'Poppins';
    font-size: 70px;
    text-transform: none;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
    color: #fff;
    font-weight: 200;
    margin-left: 8px;
}

.home-category-icone-section {
    text-align: center;
    margin-bottom: 60px;
}

.home-category-icone-section.product-page {
    margin: 6rem 0;
}

.home-category-icone-section .main-title {
    font-size: 32px;
    color: #d30606;
    margin-bottom: 30px;
}

.home-category-icone-section .description_ {
    width: 50%;
    margin: 0 auto;
}

.home-category-icone-section .description_ p {
    font-family: "Poppins";
    font-size: 18px;
}

.home-category-icone-section .description_ p strong {
    font-weight: 600;
}

.categories-cards-grid {
    height: 100%;
    padding: 15px;
}

.categories-cards-grid .fulflaxwrappar {
    display: flex;
    align-items: end;
    height: 80px;
}

.categories-cards-grid .fulflaxwrappar .img-box {
    margin-right: 20px;
}

.categories-cards-grid .fulflaxwrappar .img-box img {
    filter: brightness(500%);
}

.categories-cards-grid .fulflaxwrappar .name-box {
    margin-bottom: 10px;
    color: #fff;
    font-family: "Poppins";
    font-weight: bold;
    text-transform: uppercase;
    text-align: left;
    font-size: 20px;
    width: 50%;
}

.description-box {
    background: #fff;
    min-height: 200px;
    margin-top: 20px;
    display: flex;
    align-items: flex-end;
    padding: 0 40px 20px;
    text-align: left;
    transition: all .5s ease;
}

.categories-cards-grid:hover .description-box {
    background: inherit;
}

.categories-cards-grid .description-box p {
    margin-bottom: 0px;
    color: #000000;
}

.categories-cards-grid:hover .description-box p {
    color: #fff;
}

.woocommerce-loop-category__title {
    text-align: center;
    font-size: 18px;
    color: #3f3f3f;
    font-weight: 600;
    margin: 20px 0;
}

.woocommerce-loop-category__title .count {
    display: none;
}

.products a .woocommerce-loop-category__title {
    transition: all .5s ease;
}

.products a:hover .woocommerce-loop-category__title {
    color: #d30606;
}

.products>div>div>div {
    margin-bottom: 50px;
}

.products a {
    width: 100%;
    height: 100%;
    display: block;
    text-align: center;
}

.product.product-type-simple {
    border-bottom: 1px solid #2a393a;
    padding-top: 30px;
    padding-bottom: 30px;
}

.btn-product-grp {
    display: flex;
}

.btn-product-grp a.button-cta-style-one {
    width: max-content;
    color: #3d3d3d;
    border-width: 2px;
}

.btn-product-grp a.button-cta-style-one:first-child {
    margin-right: 20px;
}

.btn-product-grp a.button-cta-style-one:hover {
    border-color: #d1d1d1;
    color: #fff;
}

.informationwrappar h3 {
    color: #595959;
    font-weight: 600;
    font-family: "Poppins";
    font-size: 22px;
    margin-bottom: 20px;
}

.informationwrappar .datainformation.interno,
.informationwrappar .datainformation.Paraf {
    color: #595959;
    font-weight: 400;
    font-family: "Poppins";
    font-size: 16px;
}

.informationwrappar .datainformation.interno {
    margin-bottom: 20px;
}

.desc-top {
    margin-bottom: 20px;
}

.informationwrappar .descwrappar {
    color: #595959;
    font-weight: normal;
    font-family: "Poppins";
    font-size: 16px;
}

.informationwrappar .descwrappar h4 {
    color: #d30606;
    font-weight: bold;
    font-family: "Poppins";
    font-size: 18px;
    margin-bottom: 0;
}

.datainformation.cod_class_iso {
    color: #595959;
    font-weight: 600;
    font-family: "Poppins";
    font-size: 16px;
    margin-top: 20px;
}

.product-inquiry-form .product-form-group .form-control:not([type="checkbox"]):not([type="submit"]) {
    padding: 15px;
    border-radius: 15px;
    width: calc(100% - 20px);
    margin-bottom: 15px;
    border-color: #d30606 !important;
    outline: none !important;
}

.product-inquiry-form .product-form-group .form-control:focus {
    box-shadow: none;
}

.product-inquiry-form .product-form-group .form-control::placeholder,
.product-inquiry-form .product-form-group .form-control::-moz-placeholder,
.product-inquiry-form .product-form-group .form-control::-webkit-input-placeholder {
    color: #666;
}

input.button-cta-style-one {
    font-family: "Poppins";
    font-size: 15px;
    text-decoration: none;
    font-weight: 600;
    border: 4px solid #d1d1d1;
    border-radius: 50px;
    padding: 10px 30px;
    display: inline-block;
    color: #d20303;
    transition: all .2s linear;
    background: #fff;
}

.btn-product-grp .button-cta-style-one {
    width: max-content;
    color: #3d3d3d;
    border-width: 2px;
}

.btn-product-grp .button-cta-style-one:first-child {
    margin-right: 20px;
}

.btn-product-grp .button-cta-style-one:hover {
    border-color: #d1d1d1;
    background: #d20303;
    color: #fff;
}

/*==============================================================================*/
/*================================= ABOUT PAGE =================================*/
/*==============================================================================*/
.about-text-bg-section {
    background: #f1f1f1;
    padding: 50px;
}

.about-text-bg-section h2 {
    font-family: "Poppins";
    font-size: 30px;
    color: #474747;
    text-align: center;
    font-weight: normal;
    margin: 0 auto;
    line-height: inherit;
    width: 35%;
}

.about-text-bg-section h2 strong {
    font-family: "Poppins";
    font-size: 35px;
    font-weight: 600;
}

.about-img-text-section {
    margin-bottom: 30px;
}

.about-img-text-section .data-img-text {
    position: relative;
}

.about-img-text-section .img-text {
    font-family: "Poppins";
    font-size: 30px;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    line-height: 1.2;
    width: 40%;
    position: absolute;
    left: 10%;
    bottom: 10%;
}

.about-dual-content {
    position: relative;
    background-color: #474747;
    padding: 170px 0;
    background-position: 90% 92%;
    background-size: 600px;
    background-repeat: no-repeat;
}

.about-dual-content .about-dual-content-block {
    display: flex;
    align-items: flex-end;
    width: 90%;
    margin: 0 auto;
}

.about-dual-content .about-dual-content-block .dual-content-title {
    font-family: "Poppins";
    font-size: 30px;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.25;
    width: 30%;
}

.about-dual-content .about-dual-content-block .dual-content-text {
    font-family: "Poppins";
    font-size: 18px;
    color: rgb(255, 255, 255);
    line-height: 1.5;
    width: 46%;
}

.about-dual-grid-boxes {
    padding: 100px 0;
}

.about-dual-grid-boxes .dual-grid-boxes {
    min-height: 100vh;
    background-position: center center;
/*    background-size: cover;*/
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
  background-size: 100% 100%;
  transition: background-size .4s ease-in
}

.about-dual-grid-boxes .dual-grid-boxes .dual-grid-boxe-left,
.about-dual-grid-boxes .dual-grid-boxes .dual-grid-boxe-right {
    text-align: center;
    width: 60%;
    margin: 0 auto;
    margin-bottom: 50px;
}

.about-dual-grid-boxes .dual-grid-boxes .dual-grid-boxe-left h4 {
    font-family: "Poppins";
    color: rgb(71, 71, 71);
    font-weight: 600;
    line-height: 0.9;
    font-size: 40px;
    margin-bottom: 40px;
}

.about-dual-grid-boxes .dual-grid-boxes .dual-grid-boxe-left p {
    font-size: 16px;
    font-family: "Poppins";
    color: rgb(71, 71, 71);
    font-weight: normal;
    line-height: 1.333;
}

.about-dual-grid-boxes .dual-grid-boxes .dual-grid-boxe-right h4 {
    font-family: "Poppins";
    color: #fff;
    font-weight: 600;
    line-height: 0.9;
    font-size: 40px;
    margin-bottom: 40px;
}

.about-dual-grid-boxes .dual-grid-boxes .dual-grid-boxe-right p {
    font-size: 16px;
    font-family: "Poppins";
    color: #fff;
    font-weight: normal;
    line-height: 1.333;
}

.about-dual-grid-boxes .dual-grid-boxes .dual-grid-boxe-left p strong,
.about-dual-grid-boxes .dual-grid-boxes .dual-grid-boxe-right p strong {
    font-weight: bold;
}

.la-storia-title {
    width: 30%;
    margin-right: 5rem;
    margin-left: auto;
}

.la-storia-title h2 {
    font-family: "Poppins";
    font-size: 80px;
    color: rgb(170, 0, 0);
    font-weight: 600;
    line-height: 0.7;
    margin-bottom: 0;
}

.about-story-block {
    background: #474747;
    position: relative;
}

.story-block-text {
    width: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.story-block-text .about-story-text h2 {
    font-size: 75px;
    font-family: "Poppins";
    color: rgb(255, 255, 255);
    line-height: 1;
    margin-bottom: 20px;
}

.story-block-text .about-story-text h6 {
    font-size: 22px;
    font-family: "Poppins";
    color: rgb(255, 255, 255);
    line-height: 1.2;
    font-weight: bold;
    margin-bottom: 40px;
}

.story-block-text .about-story-text p {
    font-size: 16px;
    font-family: "Poppins";
    color: rgb(255, 255, 255);
    line-height: inherit;
}

.story-navigation {
    position: absolute;
    right: 15%;
    bottom: 25%;
}

.story-swiper-button-prev::after {
    content: '';
    width: 42px;
    height: 42px;
    display: block;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.com/svgjs' width='512' height='512' x='0' y='0' viewBox='0 0 512 512' style='enable-background:new 0 0 512 512' xml:space='preserve' class=''%3E%3Cg transform='matrix(1,0,0,1,-1.1368683772161603e-13,-1.1368683772161603e-13)'%3E%3Cswitch xmlns='http://www.w3.org/2000/svg'%3E%3CforeignObject height='1' requiredExtensions='http://ns.adobe.com/AdobeIllustrator/10.0/' width='1'%3E%3C/foreignObject%3E%3Cg%3E%3Cg%3E%3Cg%3E%3Cpath d='m405.333 268h-298.666c-6.627 0-12-5.373-12-12s5.373-12 12-12h298.667c6.627 0 12 5.373 12 12s-5.373 12-12.001 12z' fill='%23FFFFFF' data-original='%23FFFFFF' class=''%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m206.202 348.291c-2.645 0-5.308-.87-7.526-2.66l-99.543-80.29c-2.824-2.278-4.466-5.712-4.466-9.34s1.642-7.062 4.466-9.34l99.543-80.29c5.159-4.16 12.713-3.352 16.874 1.807 4.161 5.158 3.352 12.713-1.807 16.874l-87.963 70.948 87.963 70.95c5.159 4.161 5.967 11.716 1.807 16.874-2.371 2.939-5.844 4.467-9.348 4.467z' fill='%23FFFFFF' data-original='%23FFFFFF' class=''%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/switch%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.story-swiper-button-next::after {
    content: '';
    width: 42px;
    height: 42px;
    display: block;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.com/svgjs' width='512' height='512' x='0' y='0' viewBox='0 0 512 512' style='enable-background:new 0 0 512 512' xml:space='preserve' class=''%3E%3Cg transform='matrix(-1,1.2246467991473532e-16,-1.2246467991473532e-16,-1,512.0010070800781,512.0022430419921)'%3E%3Cswitch xmlns='http://www.w3.org/2000/svg'%3E%3CforeignObject height='1' requiredExtensions='http://ns.adobe.com/AdobeIllustrator/10.0/' width='1'%3E%3C/foreignObject%3E%3Cg%3E%3Cg%3E%3Cg%3E%3Cpath d='m405.333 268h-298.666c-6.627 0-12-5.373-12-12s5.373-12 12-12h298.667c6.627 0 12 5.373 12 12s-5.373 12-12.001 12z' fill='%23FFFFFF' data-original='%23FFFFFF' class=''%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Cpath d='m206.202 348.291c-2.645 0-5.308-.87-7.526-2.66l-99.543-80.29c-2.824-2.278-4.466-5.712-4.466-9.34s1.642-7.062 4.466-9.34l99.543-80.29c5.159-4.16 12.713-3.352 16.874 1.807 4.161 5.158 3.352 12.713-1.807 16.874l-87.963 70.948 87.963 70.95c5.159 4.161 5.967 11.716 1.807 16.874-2.371 2.939-5.844 4.467-9.348 4.467z' fill='%23FFFFFF' data-original='%23FFFFFF' class=''%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/switch%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.story-swiper-button-next {
    right: auto;
    left: 50px;
}

.story-swiper-button-prev {
    left: auto;
    right: auto;
}

.story-swiper-button-prev,
.story-swiper-button-next {
    width: calc(var(--swiper-navigation-size) / 55 * 40);
}

.multiple-img-grid-section {
    padding-top: 100px;
}

.multiple-img-grid-section .title-sm {
    width: 50%;
    margin: 0 auto;
}

.multiple-img-grid-section .title-sm h6 {
    font-size: 30px;
    font-family: "Poppins";
    color: #2f2e2e;
    font-weight: normal;
}

.multiple-img-grid-section .title-sm h6 strong {
    color: rgb(211, 6, 6);
    font-weight: 600;
}

.multiple-img-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}

.multiple-img-grid .img-grid-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.multiple-img-grid .img-grid-box:nth-of-type(1) {
    grid-area: 1 / 1 / 3 / 3;
}

.multiple-img-grid .img-grid-box:nth-of-type(2) {
    grid-area: 1 / 3 / 2 / 4;
}

.multiple-img-grid .img-grid-box:nth-of-type(3) {
    grid-area: 1 / 4 / 2 / 5;
}

.multiple-img-grid .img-grid-box:nth-of-type(4) {
    grid-area: 2 / 3 / 3 / 5;
}


/*==============================================================================*/
/*=============================== RESPONSIVE CSS ===============================*/
/*==============================================================================*/
@media screen and (min-width: 1600px) {}

@media (min-width: 1400px) and (max-width: 1599px) {
    .brand .logo-default {
        width: 300px;
    }

    .banner-slide-inner .widget-text .text-block,
    .banner-slide-inner .widget-text .text-sm {
        max-width: 60%;
        margin: 0 5rem 0 auto;
    }

    .banner-slide-inner .widget-text .text-sm h5 {
        bottom: -60px;
        width: 60%;
    }

    .responsive-tabs .nav-tabs {
        width: 90%;
    }

    .partnership {
        font-size: 80px;
    }

    .partnership span {
        font-size: 37px;
    }

    .partnership-text p {
        font-size: 26px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .brand .logo-default {
        width: 300px;
    }

    .banner-slide-inner .widget-text .text-block,
    .banner-slide-inner .widget-text .text-sm {
        max-width: 60%;
        margin: 0 5rem 0 auto;
    }

    .banner-slide-inner .widget-text .text-sm h5 {
        bottom: -60px;
        width: 60%;
    }

    .responsive-tabs .nav-tabs {
        width: 90%;
    }

    .partnership {
        font-size: 80px;
    }

    .partnership span {
        font-size: 37px;
    }

    .partnership-text {
        margin-bottom: 30px;
    }

    .partnership-text p {
        font-size: 24px;
    }
.banner-slide-inner .widget-text .text-block h3 {
	font-size: 25px;
}
.banner-slide-inner .widget-text .text-sm h5 span p {
	font-size: 20px;
}
}


@media (min-width: 1025px) and (max-width: 1199px) {
    .desktop-navigation ul li a {
        padding: 32px 0px;
    }

    .brand .logo-default {
        width: 300px;
    }

    .banner-slide-inner .widget-img {
        height: 400px;
    }

    .banner-slide-inner .widget-text {
        width: 50%;
    }

    .banner-slide-inner .widget-text .text-block,
    .banner-slide-inner .widget-text .text-sm {
        max-width: 60%;
        margin: 0 5rem 0 auto;
    }

    .banner-slide-inner .widget-text .text-sm h5 {
        bottom: -60px;
        width: 60%;
    }

    .responsive-tabs .nav-tabs {
        width: 90%;
    }

    .partnership {
        font-size: 70px;
    }

    .partnership span {
        font-size: 27px;
    }

    .partnership-text {
        margin-bottom: 0px;
        max-width: 90%;
    }

    .partnership-text p {
        font-size: 24px;
    }

    .headquarters-block .headquarters-slide:nth-child(2n) {
        width: 40%;
    }

    .headquarters-block .headquarters-slide img {
        height: 600px;
    }

    .widget-headquarters {
        padding: 4rem 0 0px 30px;
        max-width: 40%;
    }
.banner-slide-inner .widget-text .text-block h3 {
	font-size: 23px;
}
.banner-slide-inner .widget-text .text-sm h5 span p {
	font-size: 18px;
}
}


@media (min-width: 992px) and (max-width: 1024px) {
    .brand .logo-default {
        width: 300px;
    }

    .banner-slide-inner .widget-img {
        height: 400px;
    }

    .banner-slide-inner .widget-text {
        width: 50%;
    }

    .banner-slide-inner .widget-text .text-block,
    .banner-slide-inner .widget-text .text-sm {
        max-width: 80%;
        margin: 0 auto;
    }

    .banner-slide-inner .widget-text .text-sm h5 {
        bottom: -60px;
        width: 60%;
    }

    .responsive-tabs .nav-tabs {
        width: 100%;
    }

    .data-img {
        margin-top: 40px;
    }

    .partnership {
        transform: translate(-50%, 50%);
        font-size: 80px;
    }

    .partnership-text {
        max-width: 80%;
        margin: 50px auto 0;
    }

    .headquarters-block .headquarters-slide:nth-child(2n) {
        width: 40%;
    }

    .headquarters-block .headquarters-slide img {
        height: 500px;
    }

    .widget-headquarters {
        padding: 4rem 0 0px 30px;
        max-width: 65%;
    }

    .footer-menu {
        align-items: baseline;
        margin-top: 30px;
        width: 100%;
    }

    .footer-menu .footer-menu-top .menu-left,
    .footer-menu .footer-menu-top .menu-right {
        padding: 0 30px;
        min-height: 220px;
        margin-bottom: 40px;
    }

    .footer-menu .footer-menu-top .menu-right {
        padding-top: 0;
    }

    .footer-social {
        margin-top: 20px;
    }

    .footer-social .widget_custom_html {
        margin-bottom: 40px;
    }
.banner-slide-inner .widget-text .text-block h3 {
	font-size: 23px;
}
.banner-slide-inner .widget-text .text-sm h5 span p {
	font-size: 18px;
}
}


@media (min-width: 768px) and (max-width: 991px) {
    .banner-slide-inner {
        display: block;
    }

    .banner-slide-inner .widget-text {
        width: 100%;
        padding: 30px 0;
    }

    .banner-slide-inner .widget-text .text-block,
    .banner-slide-inner .widget-text .text-sm {
        max-width: 70%;
        margin: 0 auto;
    }

    .banner-slide-inner .widget-text .text-block {
        min-height: 120px;
    }

    .banner-slide-inner .widget-text .text-sm h5 {
        position: relative;
        top: 0;
        width: auto;
    }

    .banner-slide-inner .widget-img {
        width: 100%;
        height: 400px;
    }

    .responsive-tabs {
        padding: 20px 0;
    }

    .card-body {
        padding: 40px;
        width: 100%;
        margin-left: 0;
    }

    .data-box {
        margin-right: 0;
    }

    .data-img {
        margin-top: 40px;
    }

    .partnership {
        transform: translate(-50%, 50%);
        font-size: 80px;
    }

    .partnership-text {
        max-width: 80%;
        margin: 50px auto 0;
    }

    .headquarters-block .headquarters-slide:nth-child(2n) {
        width: 40%;
    }

    .headquarters-block .headquarters-slide img {
        height: 500px;
    }

    .widget-headquarters {
        padding: 4rem 0 0px 30px;
        max-width: 65%;
    }

    .home-sec-five {
        padding: 50px 0;
    }

    .health-guide {
        max-width: 100%;
        margin-left: 0;
    }

    .home-sec-six {
        padding: 70px 0;
    }

    .home-sec-six div div div div {
        width: 90%;
    }

    .footer-top .footer-text {
        width: 85%;
    }

    .footer-menu {
        align-items: baseline;
        margin-top: 30px;
        width: 100%;
    }

    .footer-menu .footer-menu-top .menu-left,
    .footer-menu .footer-menu-top .menu-right {
        padding: 0 30px;
        min-height: 220px;
        margin-bottom: 40px;
    }

    .footer-menu .footer-menu-top .menu-right {
        padding-top: 0;
    }

    .footer-social {
        margin-top: 20px;
    }

    .footer-social .widget_custom_html {
        margin-bottom: 40px;
    }

    .home-category-icone-section .description_ {
        width: 80%;
    }
	.banner-slide-inner .widget-text .text-block h3 {
	font-size: 23px;
}
.banner-slide-inner .widget-text .text-sm h5 span p {
	font-size: 18px;
}
}


@media (min-width: 632px) and (max-width: 849px) {
    .single-product-bundles .col-sm-12 {
        width: 100%;
    }
	
.r_product_gallery {
	text-align: center;
}
	.banner-slide-inner .widget-text .text-block h3 {
	font-size: 23px;
}
.banner-slide-inner .widget-text .text-sm h5 span p {
	font-size: 18px;
}
}

@media (min-width: 632px) and (max-width: 767px) {
    .banner-slide-inner {
        display: block;
    }

    .banner-slide-inner .widget-text {
        width: 100%;
        padding: 30px 0;
    }

    .banner-slide-inner .widget-text .text-block,
    .banner-slide-inner .widget-text .text-sm {
        max-width: 70%;
        margin: 0 auto;
    }

    .banner-slide-inner .widget-text .text-block {
        min-height: 120px;
    }

    .banner-slide-inner .widget-text .text-sm h5 {
        position: relative;
        top: 0;
        width: auto;
    }

    .banner-slide-inner .widget-img {
        width: 100%;
        height: 400px;
    }

    .responsive-tabs {
        padding: 20px 0;
    }

    .card-body {
        padding: 40px;
        width: 100%;
        margin-left: 0;
    }

    .data-box {
        margin-right: 0;
    }

    .data-img {
        margin-top: 40px;
    }

    .partnership {
        transform: translate(-50%, 50%);
        font-size: 80px;
    }

    .partnership-text {
        max-width: 80%;
        margin: 50px auto 0;
    }

    .headquarters-block .headquarters-slide:nth-child(2n) {
        width: 50%;
    }

    .headquarters-block .headquarters-slide img {
        height: 400px;
    }

    .widget-headquarters {
        padding: 4rem 0 00px 30px;
        max-width: 65%;
    }

    .home-sec-five {
        padding: 50px 0;
    }

    .health-guide {
        max-width: 100%;
        margin-left: 0;
    }

    .home-sec-six {
        padding: 50px 0;
    }

    .home-sec-six div div div div {
        width: 90%;
    }

    .home-sec-six div p {
        font-size: 26px;
    }

    .footer-top .footer-text {
        width: 85%;
    }

    .footer-menu {
        align-items: baseline;
        margin-top: 30px;
        width: 100%;
    }

    .footer-menu .footer-menu-top .menu-left,
    .footer-menu .footer-menu-top .menu-right {
        padding: 0 30px;
        min-height: 220px;
        margin-bottom: 40px;
    }

    .footer-menu .footer-menu-top .menu-right {
        padding-top: 0;
    }

    .footer-menu-bottom ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .footer-menu-bottom ul li {
        border-right: 0 !important;
        border-left: 1px solid rgb(105, 105, 105);
        margin-bottom: 10px;
    }

    .footer-social {
        margin-top: 20px;
    }

    .footer-social .widget_custom_html {
        margin-bottom: 40px;
    }

    .home-category-icone-section .description_ {
        width: 80%;
    }
	.banner-slide-inner .widget-text .text-block h3 {
	font-size: 23px;
}
.banner-slide-inner .widget-text .text-sm h5 span p {
	font-size: 18px;
}
}


@media (min-width: 481px) and (max-width: 631px) {
    .brand .logo-default {
        width: 250px;
    }

    .banner-slide-inner {
        display: block;
    }

    .banner-slide-inner .widget-text {
        width: 100%;
        padding: 30px 0;
        height: 280px;
    }

    .banner-slide-inner .widget-text .text-block,
    .banner-slide-inner .widget-text .text-sm {
        max-width: 70%;
        margin: 0 auto;
    }

    .banner-slide-inner .widget-text .text-block {
        min-height: 120px;
    }

    .banner-slide-inner .widget-text .text-sm h5 {
        position: relative;
        top: 0;
        width: auto;
    }

    .banner-slide-inner .widget-img {
        width: 100%;
        height: 300px;
    }

    .banner-slide-inner .widget-text .text-block h3 {
        font-size: 28px;
    }

    .banner-slide-inner .widget-text .text-sm h5 span p {
        font-size: 22px;
    }

    .responsive-tabs {
        padding: 20px 0;
    }

    .card-body {
        padding: 30px;
        width: 100%;
        margin-left: 0;
    }

    .data-box {
        margin-right: 0;
    }

    .data-img {
        margin-top: 40px;
    }

    .partnership {
        transform: translate(-50%, 50%);
        font-size: 60px;
    }

    .partnership span {
        font-size: 37px;
    }

    .partnership-text {
        max-width: 80%;
        margin: 50px auto 0;
    }

    .partnership-text p {
        font-size: 25px;
    }

    .home-sec-three .full-block {
        padding: 100px 50px;
    }

    a.button-cta {
        padding: 10px 20px;
    }

    .data-box .title-about {
        font-size: 26px;
    }

    .home-sec-three .full-block h2 {
        font-size: 26px;
    }

    .headquarters-block .headquarters-slide:nth-child(2n) {
        width: 50%;
    }

    .headquarters-block .headquarters-slide img {
        height: 350px;
    }

    .widget-headquarters {
        padding: 4rem 0 40px 30px;
        max-width: 65%;
    }

    .home-sec-five {
        padding: 50px 0;
    }

    .health-guide {
        max-width: 100%;
        margin-left: 0;
    }

    .health-guide-text {
        max-width: 90%;
    }

    .home-sec-six {
        padding: 50px 0;
    }

    .home-sec-six div div div div {
        width: 90%;
    }

    .home-sec-six div p {
        font-size: 26px;
    }

    .footer-top .footer-text {
        width: 85%;
    }

    .footer-menu {
        align-items: baseline;
        margin-top: 30px;
        width: 100%;
    }

    .footer-menu .footer-menu-top {
        display: block;
    }

    .footer-menu .footer-menu-top .menu-left,
    .footer-menu .footer-menu-top .menu-right {
        padding: 0 30px;
        min-height: 220px;
        margin-bottom: 40px;
    }

    .footer-menu .footer-menu-top .menu-right {
        padding-top: 0;
    }

    .footer-menu-bottom ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .footer-menu-bottom ul li {
        border-right: 0 !important;
        border-left: 1px solid rgb(105, 105, 105);
        margin-bottom: 10px;
    }

    .footer-social {
        margin-top: 20px;
    }

    .footer-social .widget_custom_html {
        margin-bottom: 40px;
    }

    .home-category-icone-section .description_ {
        width: 90%;
    }
	
.r_product_gallery {
	text-align: center;
}
	.banner-slide-inner .widget-text .text-block h3 {
	font-size: 23px;
}
.banner-slide-inner .widget-text .text-sm h5 span p {
	font-size: 18px;
}
}


@media (min-width: 300px) and (max-width: 480px) {
    .brand .logo-default {
        width: 200px;
    }

    .banner-slide-inner {
        display: block;
    }

    .banner-slide-inner .widget-text {
        width: 100%;
        padding: 30px 0;
        height: 280px;
    }

    .banner-slide-inner .widget-text .text-block,
    .banner-slide-inner .widget-text .text-sm {
        max-width: 80%;
        margin: 0 auto;
    }

    .banner-slide-inner .widget-text .text-block {
        min-height: 120px;
    }

    .banner-slide-inner .widget-text .text-sm h5 {
        position: relative;
        top: 0;
        width: auto;
    }

    .banner-slide-inner .widget-img {
        width: 100%;
        height: 200px;
    }

    .banner-slide-inner .widget-text .text-block h3 {
        font-size: 28px;
    }

    .banner-slide-inner .widget-text .text-sm h5 span p {
        font-size: 22px;
    }

    .responsive-tabs {
        padding: 20px 0;
    }

    .card-body {
        padding: 30px;
        width: 100%;
        margin-left: 0;
    }

    .data-box {
        margin-right: 0;
    }

    .data-img {
        margin-top: 40px;
    }

    .partnership {
        transform: translate(-50%, 50%);
        font-size: 55px;
    }

    .partnership span {
        font-size: 32px;
    }

    .partnership-text {
        max-width: 80%;
        margin: 50px auto 0;
    }

    .partnership-text p {
        font-size: 25px;
    }

    .home-sec-three .full-block {
        padding: 30px;
    }

    a.button-cta-style-one {
        white-space: inherit;
    }

    a.button-cta {
        padding: 10px 20px;
    }

    .spacer-top {
        min-height: 20px;
    }

    .spacer-bottom {
        margin-top: 0px;
    }

    .data-box .title-about {
        font-size: 26px;
    }

    .home-sec-three .full-block h2 {
        font-size: 26px;
    }

    .headquarters-block {
        padding: 30px 0;
    }

    .headquarters-block .headquarters-slide:nth-child(2n) {
        width: 65%;
    }

    .headquarters-block .headquarters-slide img {
        height: 300px;
    }

    .widget-headquarters {
        padding: 4rem 0 40px 30px;
        max-width: 65%;
    }

    .home-sec-five {
        padding: 50px 0;
    }

    .health-guide {
        max-width: 100%;
        margin-left: 0;
    }

    .health-guide-text {
        max-width: 90%;
    }

    .home-sec-six {
        padding: 50px 0;
    }

    .home-sec-six div div div div {
        width: 90%;
    }

    .home-sec-six div p {
        font-size: 26px;
    }

    .footer-top .footer-text {
        width: 85%;
    }

    .footer-menu {
        align-items: baseline;
        margin-top: 30px;
        width: 100%;
    }

    .footer-menu .footer-menu-top {
        display: block;
    }

    .footer-menu .footer-menu-top .menu-left,
    .footer-menu .footer-menu-top .menu-right {
        padding: 0 30px;
        min-height: 220px;
        margin-bottom: 40px;
    }

    .footer-menu .footer-menu-top .menu-right {
        padding-top: 0;
    }

    .footer-menu-bottom ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .footer-menu-bottom ul li {
        border-right: 0 !important;
        border-left: 1px solid rgb(105, 105, 105);
        margin-bottom: 10px;
    }

    .footer-social {
        margin-top: 20px;
    }

    .footer-social .widget_custom_html {
        margin-bottom: 40px;
    }

    .home-category-icone-section .description_ {
        width: 90%;
    }
    .about-text-bg-section {
        padding: 30px;
    }
    .about-text-bg-section h2 {
        font-size: 22px;
        width: 100%;
    }
    .about-text-bg-section h2 strong {
        font-size: 22px;
    }

.r_product_gallery {
	text-align: center;
}
	.banner-slide-inner .widget-text .text-block h3 {
	font-size: 23px;
}
.banner-slide-inner .widget-text .text-sm h5 span p {
	font-size: 18px;
}
}
.r_product_gallery li {
    display: inline-block;
    padding: 0 30px 30px;
    vertical-align: middle;
}


.summary.entry-summary h1.product_title.entry-title {
    text-align: left !important;
    padding-left: 0 !important;
}