/*** 3. Basic Default ***/
body {
    font-family: var(--primary-font);
    font-size: 15px;
    line-height: 22px;
    height: 100%;
    color: var(--black-color);
    background: #fff; } 
a, 
button,
.attr-label {
    cursor: pointer;
    transition: 0.3s ease;
    -o-transition: 0.3s ease;
    -webkit-transition: 0.3s ease; }
a:hover,
a:focus {
    text-decoration: none; }
ul {
    margin: 0;
    padding: 0;
    list-style-type: none; }
button:focus,
input:focus,
a:focus {
    outline: 0;
    background: transparent; }
::-webkit-input-placeholder { color: #929496 !important; }
::-moz-placeholder { color: #929496 !important; }
:-ms-input-placeholder { color: #929496 !important; }
input:-moz-placeholder { color: #929496 !important; }
.unvisible { display: none; }
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; }
input[type=number] { -moz-appearance:textfield; }
.compensate-for-scrollbar { margin-right: 15px; }
.alert.no-product{
    text-align: center;
    padding: 30px; }
.form-group.alice{ display: none; }
#inner{ padding: 50px 0 70px 0; }

/* Global buttons */
a.btn-x,
a.btn-g,
button.btn-x,
.seq-wrapper .content li a {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    height: 44px;
    padding: 0 35px;
    color: #fff;
    font-weight: var(--primary-font-medium);
    font-size: 15px;
    border-radius: 25px;
    z-index: 1; }
a.btn-g{ color: var(--black-color); }
button.btn-x { border: none; }
a.btn-g:hover{ color: #fff; }
a.btn-x:before,
a.btn-g:before,
button.btn-x:before,
.seq-wrapper .content li a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: -moz-linear-gradient(-120deg, rgb(246, 146, 30) 0%, rgb(0, 147, 69) 100%);
    background-image: -webkit-linear-gradient(-120deg, rgb(246, 146, 30) 0%, rgb(0, 147, 69) 100%);
    background-image: -ms-linear-gradient(-120deg, rgb(246, 146, 30) 0%, rgb(0, 147, 69) 100%);
    z-index: -1; }
.seq-wrapper .content li a:before {
    background-image: none;
    background-color: var(--primary-color); }
a.btn-g:before {
    background-image: -moz-linear-gradient(-120deg, rgb(226, 228, 230) 0%, rgb(226, 228, 230) 100%);
    background-image: -webkit-linear-gradient(-120deg, rgb(226, 228, 230) 0%, rgb(226, 228, 230) 100%);
    background-image: -ms-linear-gradient(-120deg, rgb(226, 228, 230) 0%, rgb(226, 228, 230) 100%); }
a.btn-x:after,
a.btn-g:after,
button.btn-x:after,
.seq-wrapper .content li a:after {
    content: "";
    position: absolute;
	content: "";
    position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	height: 100%;
	width: 100%;
    background-color: var(--black-color); 
	-webkit-transform: scale(0, 1);
	-ms-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transform-origin: top right;
	-ms-transform-origin: top right;
	transform-origin: top right;
	-webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
	-o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
	-webkit-transition: -webkit-transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
	transition: -webkit-transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
	transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
	transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000), -webkit-transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
	-webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
	-o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
	transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000); }
a.btn-x:hover:after,
a.btn-g:hover:after,
button.btn-x:hover:after,
.seq-wrapper .content li a:hover:after {
    -webkit-transform: scale(1, 1);
	-webkit-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	transform: scale(1, 1);
	-webkit-transform-origin: top left;
	-ms-transform-origin: top left;
	transform-origin: top left; }

.spinner {
    display: block;
    width: 32px;
    height: 32px;
    border: 2px solid var(--second-color);
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner-border .95s linear infinite;
    animation: spinner-border .95s linear infinite }
@-webkit-keyframes spinner-border {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}
@keyframes spinner-border {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}


/* Header */
#customer-service{
    display: none;
    max-width: 740px; }
#customer-service .wrapper{
    display: flex;
    justify-content: space-between; }
#customer-service .widget{
    display: block;
    width: 370px;
    padding: 0 25px; }
#customer-service .widget-html{
    padding: 160px 30px 30px 30px;
    background-color: #edf2e4;
    background-image: url(../img/logo-icon.png);
    background-position: center 30px;
    background-repeat: no-repeat;
    border-radius: 10px; }
#customer-service .widget-html h2{
    margin: 0 0 30px 0;
    font-weight: var(--primary-font-bold);
    font-size: 18px;
    line-height: 24px;
    text-align: center; }
#customer-service .widget-html strong,
#customer-service .widget-html ul.info li.phone,
#customer-service .widget-html ul.info li.mobile{
    font-weight: var(--primary-font-bold); }
#customer-service .widget-html strong{ padding-right: 3px; }
#customer-service .widget-html ul.info li.phone,
#customer-service .widget-html ul.info li.mobile{
    font-size: 18px; }
#customer-service .widget-html ul{ margin-bottom: 25px; }
#customer-service .widget-html ul.address{ margin-bottom: 0; }
#customer-service .widget-html ul.info li{
    position: relative;
    padding-left: 50px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    height: 30px; }
#customer-service .widget-html ul.info li:last-child{ margin-bottom: 0; }
#customer-service .widget-html ul.info li.location{ display: none; }
#customer-service .widget-html ul.info li a,
#customer-service .widget-html ul.address li a{ 
    color: var(--black-color); }
#customer-service .widget-html ul.info li a:hover,
#customer-service .widget-html ul.address li a:hover{ 
    color: var(--primary-color); }
#customer-service .widget-html ul.info li:before,
#customer-service .widget-html ul.opening:before,
#customer-service .widget-html ul.address:before{
    font-family: "FontAwesome5";
    font-weight: 900;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    top: 1px;
    width: 28px;
    height: 28px;
    color: var(--primary-color);
    font-size: 11px;
    border-radius: 50%;
    border: 1px solid var(--primary-color); }
#customer-service .widget-html ul.opening,
#customer-service .widget-html ul.address{
    position: relative;
    padding-left: 50px; }
#customer-service .widget-html ul.opening li,
#customer-service .widget-html ul.address li{
    line-height: 26px; }
#customer-service .widget-html ul.opening li:first-child,
#customer-service .widget-html ul.address li:first-child{
    padding-top: 2px; }
#customer-service .widget-html ul.info li.phone:before { content: "\f879"; }
#customer-service .widget-html ul.info li.mobile:before { 
    content: "\f232";
    font-weight: 300;
    font-size: 14px; }
#customer-service .widget-html ul.info li.mail:before { content: "\f0e0"; }
#customer-service .widget-html ul.opening:before { content: "\f017"; }
#customer-service .widget-html ul.address:before { content: "\f3c5"; }

#nav_global {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    visibility: hidden;
    z-index: 8002; }
#nav_global:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0;
    z-index: 8001;
    transition: 0.5s ease;
    -o-transition: 0.5s ease;
    -webkit-transition: 0.5s ease; }
#nav_global .close-area{
    position: absolute;
    left: 0;
    top: 0;
    width: calc(100% - 380px);
    height: 100%;
    background-color: transparent;
    z-index: 8002; }
#nav_global .menu-box{
    position: absolute;
    display: flex;
    align-items: center;
    width: 380px;
    height: 100%;
    right: -400px;
    top: 0;
    padding: 30px 40px 40px 60px;
    background-color: #fff;
    z-index: 8002;
    transition: 0.5s ease;
    -o-transition: 0.5s ease;
    -webkit-transition: 0.5s ease; }
body.menu-active #nav_global{ visibility: visible; }
body.menu-active #nav_global:before { opacity: .5; }
body.menu-active #nav_global .menu-box{ right: 0; }
#nav_global a.menu-close {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 30px;
    top: 30px;
    width: 30px;
    height: 30px;
    color: var(--gray-color);
    border-radius: 3px;
    z-index: 8004; }
#nav_global a.menu-close:hover{ color: var(--primary-color); }
#nav_global .links li{
    position: relative;
    line-height: 30px;
    padding-left: 20px;
    margin-bottom: 15px; }
#nav_global .links li:last-child{ margin-bottom: 0; }
#nav_global .links li:before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 5px;
    height: 5px;
    background: var(--primary-color);
    border-radius: 50%; }
#nav_global .links li a{
    display: flex;
    font-weight: var(--primary-font-medium);
    color: var(--black-color);
    font-size: 16px; }
#nav_global .links li a:hover{ 
    color: var(--primary-color);
    padding-left: 5px; }
#nav_global .info .widget-html{
    position: relative;
    margin-top: 70px;
    padding-top: 40px; }
#nav_global .info .widget-html:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 1px;
    background-color: var(--silver-color); }
#nav_global .info h2{
    margin: 0 0 15px 0;
    font-weight: var(--primary-font-bold);
    font-size: 16px; }
#nav_global .info ul+h2{ margin-top: 40px; }
#nav_global .info li{
    line-height: 28px;
    color: var(--black-color);
    font-weight: var(--primary-font-medium);
    font-size: 14px; }
#nav_global .info li a{
    color: var(--gray-color);
    font-weight: var(--primary-font-normal);
    padding-left: 5px; }
#nav_global .info li a:hover{ color: var(--black-color); }

header{ height: 190px; }
header #header_top{ padding: 20px 0; }
header #header_top .wrapper,
header #header_bottom .wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center; }
header .header-cart,
header .customer-service a{
    display: flex;
    align-items: center; }
header .customer-service a{
    color: var(--gray-color);
    font-weight: var(--primary-font-medium); }
header .customer-service a i{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 7px;
    fill: #fff;
    background-color: var(--primary-color);
    transition: 0.3s ease;
    -o-transition: 0.3s ease;
    -webkit-transition: 0.3s ease; }
header .customer-service a:hover i{ background-color: var(--second-color); }
header #header_bottom{
    position: relative;
    background-image: -moz-linear-gradient(-180deg, rgb(246, 146, 30) 0%, rgb(0, 147, 69) 100%);
    background-image: -webkit-linear-gradient(-180deg, rgb(246, 146, 30) 0%, rgb(0, 147, 69) 100%);
    background-image: -ms-linear-gradient(-180deg, rgb(246, 146, 30) 0%, rgb(0, 147, 69) 100%);
    z-index: 7001;
    transition: 0.5s ease;
    -o-transition: 0.5s ease;
    -webkit-transition: 0.5s ease; }
header #header_bottom.fixed_top{ 
    position: fixed;
    top: -60px;
    left: 0;
    width: 100%; }
header #header_bottom.fixed{
    position: fixed;
    top: 0; }
header .header-search{
    display: flex;
    align-items: center; }
header #header_bottom a.menu-aux{
    display: flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 18px; }
header #header_bottom a.menu-aux svg{ 
    fill: var(--primary-color);
    width: 24px;
    height: 24px;
    transition: 0.3s ease;
    -o-transition: 0.3s ease;
    -webkit-transition: 0.3s ease; }
header #header_bottom a.menu-aux:hover{ background-color: var(--second-color); }
header #header_bottom a.menu-aux:hover svg{ fill: #fff; } 

/* Menu style */
.navbar-default {
    background-color: transparent;
    border-radius: 0;
    border: none;
    margin: 0;
    min-height: 40px; }
.navbar-default .navbar-nav > li > a,
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:focus,
.navbar-default .navbar-nav > .open > a:hover {
    background-color: transparent; }

.nc-caret {
    font-size: 10px;
    line-height: 14px;
    margin-top: 1px;
    margin-left: 8px; }

.navbar-content {
    position: relative;
    padding: 0;
    font-weight: var(--primary-font-medium);
    font-size: 16px; }
.navbar-content li {
    margin: 0 25px;
    position: relative; }
.navbar-content li.first-item{ margin-left: 0; }
.navbar-content li.last-item { margin-right: 0; }
.navbar-content>ul>li:before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    background: #f4a601;
    left: -25px;
    top: 47%;
    border-radius: 50%; }
.navbar-content>ul>li.first-item:before { display: none; }
.navbar-content li a {
    display: flex;
    align-items: center;
    padding: 18px 0;
    color: #fff !important;
    line-height: 24px; }
.navbar-content>ul>li a{ position: relative; }
.navbar-content>ul>li a:after{
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    background: #fff;
    left: 0;
    bottom: 0;
    -webkit-transition: width .3s;
    -o-transition: width .3s;
    transition: width .3s; }
.navbar-content>ul>li a:hover:after{ width: 100%; }

.navbar-content .dropdown-menu {
    display: block;
    opacity: 0;
    top: 150%;
    border: none;
    border-radius: 0;
    background-color: #fff;
    background-position: right center;
    background-repeat: no-repeat;
    box-shadow: 0 0 20px rgba(0,0,0,.15);
    padding: 40px 200px 40px 10px;
    visibility: hidden;
    z-index: 25000 !important;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease; }
.navbar-content .menu-1 .dropdown-menu {
    left: -90px;
    width: 1000px;
    background-image: url(../img/bg-menu1.jpg); }
.navbar-content .menu-2 .dropdown-menu {
    left: -180px;
    width: 740px;
    background-image: url(../img/bg-menu2.jpg); }
.navbar-content .menu-3 .dropdown-menu {
    left: -90px;
    width: 480px;
    background-image: url(../img/bg-menu3.jpg); }
.navbar-content .menu-4 .dropdown-menu {
    left: -180px;
    width: 760px;
    background-image: url(../img/bg-menu4.jpg); }
.navbar-content .menu-5 .dropdown-menu {
    left: -250px;
    width: 740px;
    background-image: url(../img/bg-menu5.jpg); }
.navbar-content .dropdown:hover .dropdown-menu {
    opacity: 1;
    top: 100%;
    visibility: visible;
    z-index: 9999; }
.navbar-content .dropdown-menu ul{ 
    overflow: hidden;
    display: grid ;
    grid-gap: 0;
    width: 100%;
    margin: 0 auto; }
.navbar-content .menu-1 .dropdown-menu ul{ grid-template-columns: repeat(3, 1fr); }
.navbar-content .menu-2 .dropdown-menu ul,
.navbar-content .menu-4 .dropdown-menu ul,
.navbar-content .menu-5 .dropdown-menu ul{ 
    grid-template-columns: repeat(2, 1fr); }
.navbar-content .menu-3 .dropdown-menu ul{ grid-template-columns: repeat(1, 1fr); }
.navbar-content .dropdown-menu li {
    margin: 0 !important;
    position: relative;
    padding: 0 30px 10px 40px;
    border-right: 1px solid rgba(0,0,0,0.1); }
.navbar-content .menu-1 .dropdown-menu li:nth-child(3),
.navbar-content .menu-1 .dropdown-menu li:nth-child(6),
.navbar-content .menu-1 .dropdown-menu li:nth-child(9),
.navbar-content .menu-1 .dropdown-menu li:nth-child(12),
.navbar-content .menu-2 .dropdown-menu li:nth-child(2),
.navbar-content .menu-2 .dropdown-menu li:nth-child(4),
.navbar-content .menu-2 .dropdown-menu li:nth-child(6),
.navbar-content .menu-3 .dropdown-menu li,
.navbar-content .menu-4 .dropdown-menu li:nth-child(2),
.navbar-content .menu-4 .dropdown-menu li:nth-child(4),
.navbar-content .menu-4 .dropdown-menu li:nth-child(6),
.navbar-content .menu-5 .dropdown-menu li:nth-child(2),
.navbar-content .menu-5 .dropdown-menu li:nth-child(4),
.navbar-content .menu-5 .dropdown-menu li:nth-child(6) {
    border-right: none; }
.navbar-content .dropdown-menu li a {
    display: flex;
    align-items: center;
    padding: 0 0 0 60px;
    color: var(--black-color) !important;
    font-weight: var(--primary-font-medium);
    font-size: 16px;
    line-height: 22px;
    height: 70px;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 40px; }
.navbar-content li.icon-1 a { background-image: url(../img/icon-1.png); }
.navbar-content li.icon-2 a { background-image: url(../img/icon-2.png); }
.navbar-content li.icon-3 a { background-image: url(../img/icon-3.png); }
.navbar-content li.icon-4 a { background-image: url(../img/icon-4.png); }
.navbar-content li.icon-5 a { background-image: url(../img/icon-5.png); }
.navbar-content li.icon-6 a { background-image: url(../img/icon-6.png); }
.navbar-content li.icon-7 a { background-image: url(../img/icon-7.png); }
.navbar-content li.icon-8 a { background-image: url(../img/icon-8.png); }
.navbar-content li.icon-9 a { background-image: url(../img/icon-9.png); }
.navbar-content li.icon-10 a { background-image: url(../img/icon-10.png); }
.navbar-content li.icon-11 a { background-image: url(../img/icon-11.png); }
.navbar-content li.icon-12 a { background-image: url(../img/icon-12.png); }
.navbar-content li.icon-13 a { background-image: url(../img/icon-13.png); }
.navbar-content li.icon-14 a { background-image: url(../img/icon-14.png); }
.navbar-content li.icon-15 a { background-image: url(../img/icon-15.png); }
.navbar-content li.icon-16 a { background-image: url(../img/icon-16.png); }
.navbar-content li.icon-17 a { background-image: url(../img/icon-17.png); }
.navbar-content li.icon-18 a { background-image: url(../img/icon-18.png); }
.navbar-content li.icon-19 a { background-image: url(../img/icon-19.png); }
.navbar-content li.icon-20 a { background-image: url(../img/icon-20.png); }
.navbar-content li.icon-21 a { background-image: url(../img/icon-21.png); }
.navbar-content li.icon-22 a { background-image: url(../img/icon-22.png); }
.navbar-content li.icon-23 a { background-image: url(../img/icon-23.png); }
.navbar-content li.icon-24 a { background-image: url(../img/icon-24.png); }
.navbar-content li.icon-25 a { background-image: url(../img/icon-25.png); }
.navbar-content li.icon-26 a { background-image: url(../img/icon-26.png); }
.navbar-content li.icon-27 a { background-image: url(../img/icon-27.png); }
.navbar-content li.icon-28 a { background-image: url(../img/icon-28.png); }
.navbar-content .dropdown-menu li a:hover { color: var(--primary-color) !important; }

/* Quote */
#shopping_cart {
    position: relative;
    margin-left: 60px; }
#shopping_cart a.cart-icon{
    display: flex;
    align-items: center;
    color: var(--gray-color);
    font-weight: var(--primary-font-medium); }
#shopping_cart a.cart-icon i{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    fill: #fff;
    padding: 6px;
    background-color: var(--primary-color); }
#shopping_cart a.cart-icon .bubble{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: var(--gray-color);
    position: relative;
    font-size: 14px;
    border: 1px solid #929496;
    margin-left: 7px;
    padding-top: 1px; }

.cart_block {
    position: absolute;
    top: 40px;
    right: 0;
    z-index: 7002;
    display: none;
    padding-top: 10px; }
.cart_block .cart_block_list{
    border-radius: 10px;
    background-color: #fff;
    width: 340px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.cart_block dl {
    overflow: hidden;
    margin-bottom: 0; }
.cart_block dt {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0 0 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1); }
.cart_block dt.last_item {
    margin-bottom: 0;
    border-bottom: none; }
.cart_block .cart-img{
    width: 76px;
    margin-right: 20px;
    flex: none; }
.cart_block .cart-info{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 2px; }
.cart_block .cart-info h5{
    margin: 0;
    font-size: 14px;
    font-weight: var(--primary-font-medium);
    line-height: 20px;
    height: 20px;
    overflow: hidden; }
.cart_block .cart-info h5 a{ color: var(--black-color); }
.cart_block .cart-info h5 a:hover{ color: var(--primary-color); }
.cart_block .cart-info .product-attributes{
    width: 100%;
    line-height: 20px;
    font-weight: var(--primary-font-normal);
    font-size: 13px;
    color: var(--gray-color); }
.cart_block .cart-info .quantity-formated{
    color: var(--gray-color);
    line-height: 20px;
    width: 100%;
    margin-top: 10px;
    font-size: 14px; }
.cart_block .cart-info .quantity-formated b{ 
    padding-right: 5px;
    font-weight: var(--primary-font-medium);
    color: var(--black-color); }
.cart_block .remove_link{
    width: 20px;
    flex: none;
    margin-left: 15px;
    text-align: center; }
.cart_block .remove_link a{ color: var(--gray-color); }
.cart_block .remove_link a:hover{ color: var(--black-color); }
.cart_block .cart_block_no_products{ 
    text-align: center;
    color: var(--gray-color);
    margin-bottom: 30px;
    margin-top: 10px; }
.cart_block .cart-buttons {
    display: flex;
    justify-content: center;
    margin-top: 15px; }

.layer_cart_overlay {
    background: rgba(0,0,0,.5);
    display: none;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99992; }
.layer_cart_overlay .cart-overlay{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding-bottom: 40px; }
.layer_cart_overlay .cart-overlay a.layer-close {
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(30,30,30,.6);
    color: #ccc;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 10px;
    width: 44px;
    z-index: 1003; }
.layer_cart_overlay .cart-overlay a.layer-close:hover{ color: #fff; }
.layer_cart_overlay .cart-overlay a.layer-close svg{ fill: currentColor; }
.layer_cart_overlay .layer-close-area{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1001; }
#layer_cart {
    position: relative;
    background-color: #fff;
    padding: 44px;
    z-index: 1002; }
#layer_cart .layer-box{
    position: relative;
    display: flex;
    align-items: center;
    padding: 30px;
    border-radius: 10px;
    background-color: #edf2e4; }
#layer_cart #layer_cart_img{
    width: 150px;
    margin-right: 50px;
    flex: none; }
#layer_cart .layer-product{
    width: 400px;
    flex: none;
    padding-top: 2px; }
#layer_cart .layer-product h2{
    position: relative;
    margin: 0 0 25px 0;
    font-weight: var(--primary-font-bold);
    font-size: 16px;
    line-height: 24px; }
#layer_cart #layer_cart_info{
    position: relative;
    padding-left: 30px; }
#layer_cart #layer_cart_info:before{
    position: absolute;
    left: 0;
    top: 0;
    font-family: "FontAwesome5";
    font-weight: 400;
    content: "\f058";
    color: var(--second-color);
    font-size: 18px; }
#layer_cart .layer-title{
    font-size: 15px;
    font-weight: var(--primary-font-bold);
    margin-bottom: 5px; }
#layer_cart .layer-reference,
#layer_cart .layer-attribute,
#layer_cart .layer-quantity{
    color: var(--gray-color); }
#layer_cart .layer-reference span,
#layer_cart .layer-attribute span,
#layer_cart .layer-quantity span{
    color: var(--black-color);
    font-weight: var(--primary-font-medium);
    padding-right: 10px; }
#layer_cart .layer-action{ margin-top: 30px; }
#layer_cart .layer-action h2{
    margin: 0 0 30px 0;
    text-align: center;
    font-size: 16px;
    font-weight: var(--primary-font-bold);
    line-height: 24px; }
#layer_cart .layer-buttons{
    display: flex;
    align-items: center;
    justify-content: space-between; }

/* Search Box*/
#search_box{
    position: relative;
    width: 220px;
    height: 40px;
    margin-right: 40px; }
#search_box .search_query{
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    width: 100%;
    position: relative;
    height: 40px;
    padding: 0px 50px 0 20px;
    color: #fff;
    transition: 0.3s ease;
    -o-transition: 0.3s ease;
    -webkit-transition: 0.3s ease; }
#search_box ::-webkit-input-placeholder { color: #f2f4f6 !important; }
#search_box ::-moz-placeholder { color: #f2f4f6 !important; }
#search_box :-ms-input-placeholder { color: #f2f4f6 !important; }
#search_box input:-moz-placeholder { color: #f2f4f6 !important; }
#search_box button{
    border: none;
    color: #fff;
    background-color: transparent;
    width: 40px;
    height: 40px;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 15px;
    padding: 0 10px 0 5px; }
#search_box button:hover{ color: var(--black-color); }

.ac_results {
    border: none !important;
    background-color: transparent !important;
    width: 310px !important;
    padding: 10px 20px 20px 20px !important;
    margin-left: -20px; }
.ac_results ul{
    padding: 15px !important;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.ac_results li {
    padding: 7px 0 !important;
    font-size: 13px !important;
    line-height: 18px !important;
    cursor: pointer !important;
    border-bottom: 1px solid rgba(0,0,0,0.1); }
.ac_odd { background-color: #fff !important; }
.ac_over { 
    background-color: #f2f4f6 !important;
    color: var(--black-color) !important; }

/* Breadcrumb */
#breadcrumb{
    height: 180px;
    text-align: center;
    border-top: 1px solid #fff;
    background-image: url(../img/bg-breadcrumb.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; }
#breadcrumb .container{
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center; }
#breadcrumb .cat-logo{
    position: absolute;
    left: 15px;
    bottom: -20px;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); }
#breadcrumb .wrapper h1{
    font-family: var(--second-font);
    font-weight: var(--second-font-bold);
    line-height: 1;
    margin: 15px 0 25px 0;
    font-size: 36px;
    color: #fff; }
#breadcrumb .path{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: var(--primary-font-medium);   }
#breadcrumb .path a{ color: #fff; }
#breadcrumb .path a.last,
#breadcrumb .path span.last,
#breadcrumb .path a:hover{ 
    color: var(--primary-color); }
#breadcrumb .path .pipe{
    color: #fff;
    margin: 0 20px;
    font-size: 13px; }

#breadcrumb.homebrewer{
    height: 240px;
    background-image: url(../img/hb-breadcrumb.jpg); }
#breadcrumb.homebrewer .container { justify-content: flex-start; }
#breadcrumb.homebrewer .wrapper{
    position: relative;
    padding-left: 240px; }
#breadcrumb.homebrewer .wrapper:before{
    content: "";
    position: absolute;
    left: 0;
    top: -41px;
    width: 180px;
    height: 180px;
    background-image: url(../img/logo-homebrewer.png);
    background-repeat: no-repeat; }
#breadcrumb.homebrewer .path{ justify-content: flex-start; }


/* Banners */
#banners{
    display: block;
    width: 100%;
    height: 80vh; 
    position: relative; }   
.seq {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    overflow: hidden; }
.seq .seq-canvas,
.seq .seq-canvas > * {
    position: absolute;
    height: 100%;
    width: 100%; }
.seq .seq-canvas,
.seq .seq-canvas > * {
    margin: 0;
    padding: 0;
    list-style: none; }
.seq .seq-pagination {
    position: absolute;
    bottom: 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1002; }
.seq .seq-pagination span{ margin: 0 4px; }
.seq .seq-pagination a {
    display: block;
    width: 12px;
    height: 12px;
    background-color: rgba(255,255,255,0.7);;
    border-radius: 50%; }
.seq .seq-pagination a:hover,
.seq .seq-pagination .seq-current a{ 
    background-color: var(--primary-color); }
.seq.seq-active { overflow: hidden; }
.seq.seq-active .seq-preloader,
.seq.seq-active .seq-pagination {
    visibility: visible; }
.seq.seq-active .seq-preloader.seq-preloaded { visibility: hidden; }
.seq .seq-step > .seq-wrapper {
    opacity: 0;
    visibility: hidden;
    transition: .5s;
    -o-transition: .5s;
    -webkit-transition: .5s; }
.seq .seq-step.seq-in > .seq-wrapper {
    opacity: 1;
    visibility: visible; }

.seq-wrapper,
.seq-wrapper .video,
.seq-wrapper .image{ 
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1002; }
.seq .slide-decoration{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 190px;
    background-image: url(../img/bg-banners.png);
    background-repeat: no-repeat;
    z-index: 1001; }
.vidbacking-active-body-back{
	position: absolute;
	z-index: -100;
	min-width: 101%;
	min-height: 100%;
	top: 50%;
	left: 50%;
	background-size: cover;
	overflow: hidden;
	opacity: 1;
	transition: 2s opacity;
	transform: translateX(-50%) translateY(-50%); }
.vidmask-body-back{ display: none; }
.seq-wrapper .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1; }
.seq-wrapper .video .overlay{ 
    background-image: url(../img/bg-overlay.png);
    background-repeat: repeat;
    background-size: inherit; }

.seq .seq-nav {
    display: none;
    position: absolute;
    z-index: 100;
    top: calc(50% - 40px);
    left: 0;
    width: 100%;
    border: none;
    margin: 0 auto;
    padding: 0; } 
.seq.seq-active .seq-nav { display: block; }
.seq .seq-nav .seq-prev,
.seq .seq-nav .seq-next{ 
    position: absolute;
    width: 55px;
    height: 55px;
    border: none;
    fill: #a7a7a7;
    background-color: transparent;
    opacity: 0;
    transition: 0.3s ease;
    -o-transition: 0.3s ease;
    -webkit-transition: 0.3s ease; }
.seq .seq-nav .seq-prev{ left: 15px; }
.seq .seq-nav .seq-next{ right: 15px; }
.seq:hover .seq-nav button{ opacity: 0.4; }
.seq .seq-nav button:hover{ opacity: 1; }

.seq-wrapper .content{
    position: absolute;
    width: 770px;
    height: 100%;
    left: 15%;
    top: 0;
    display: flex;
    align-items: center;
    padding-bottom: 40px;
    z-index: 1003; }
.seq-wrapper .content h2{
    margin: 0 0 10px 0;
    font-weight: var(--primary-font-medium);
    color: #fff;
    font-size: 22px;
    line-height: 24px; }
.seq-wrapper .content h1{
    margin: 0 0 30px 0;
    font-family: var(--second-font);
    font-weight: var(--second-font-bold);
    color: #fff;
    font-size: 56px;
    line-height: 66px; }
.seq-wrapper .content p{
    color: var(--silver-color);
    font-size: 16px;
    line-height: 26px;
    margin: 0;
    padding-right: 40%; }
.seq-wrapper .content ul{ margin-top: 30px; }
.seq-wrapper .content li{
    display: flex;
    align-items: center; }
.seq-wrapper .image a.clean{
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1003; }

.seq-wrapper .content p,
.seq-wrapper .content h1,
.seq-wrapper .content h2{
    opacity: 0;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transform: translateZ(0) scale(0);
    -ms-transform: translateZ(0) scale(0);
    transform: translateZ(0) scale(0); }
.seq-wrapper .content li{
    opacity: 0;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    -webkit-transform: translate3d(-700px, 0, 0);
    -ms-transform: translate3d(-700px, 0, 0);
    transform: translate3d(-700px, 0, 0); }
.seq-in .content p,
.seq-out .content p,
.seq-in .content h1,
.seq-out .content h1,
.seq-in .content h2,
.seq-out .content h2{
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateZ(0) scale(1);
    -ms-transform: translateZ(0) scale(1);
    transform: translateZ(0) scale(1); }
.seq-in .content li,
.seq-out .content li{
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }


/* Home */
#featured{ padding: 50px 0 70px 0; }


/* Product list global*/
.product-list {
    display: grid;
    grid-gap: 30px;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 auto; }

.product-box{
    position: relative;
    background-color: #edf2e4;
    border-radius: 10px;
    box-shadow: 2.5px 4.33px 15px 0px rgba(0, 0, 0, 0.08); }
.product-box .sale {
    width: 90px;
    height: 90px;
    overflow: hidden;
    position: absolute;
    top: -4px;
    right: -4px;
    z-index: 1; }
.product-box .sale::before,
.product-box .sale::after {
    position: absolute;
    z-index: -1;
    content: '';
    display: block;
    border: 3px solid #cf0027;
    border-top-color: transparent;
    border-right-color: transparent; }
.product-box .sale::before {
    top: 0;
    left: 6px; }
.product-box .sale::after {
    bottom: 6px;
    right: 0; }
.product-box .sale span {
    position: absolute;
    display: block;
    width: 130px;
    padding: 0;
    background-color: #ef0c37;
    box-shadow: 0 5px 10px rgba(0,0,0,.1);
    text-transform: uppercase;
    font-weight: var(--primary-font-bold);
    font-size: 11px;
    letter-spacing: 1px;
    color: #fff;
    text-align: center;
    left: -10px;
    top: 22px;
    transform: rotate(45deg); }
.product-box .img-box{ 
    position: relative;
    padding: 15px;
    background-color: #fff; }
.product-box .img-box img{ border-radius: 10px; }
.product-box .info-box{ padding: 15px 20px 25px 20px; }
.product-box .info-box h2{
    display: flex;
    align-items: center;
    height: 48px;
    margin: 0 0 15px 0;
    font-family: var(--second-font);
    font-weight: var(--second-font-medium);
    font-size: 18px;
    line-height: 24px; }
.product-box .info-box h2 a{ color: var(--black-color); }
.product-box .info-box .summary{
    height: 44px;
    overflow: hidden;
    color: var(--gray-color); }
.product-box .info-box .goto{ 
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px; }
.product-box .info-box .goto a.simple{
    display: block;
    line-height: 24px;
    position: relative;
    color: var(--gray-color);
    font-weight: var(--primary-font-medium);
    text-decoration: underline; }
.product-box .info-box .goto a.simple:hover{ color: var(--black-color); }
.product-box .info-box .goto a.detail{
    height: 38px;
    padding: 0 30px; }

#category .product-box .info-box{ padding: 20px 30px 30px 30px; }
#category .product-box .info-box .summary{ height: 66px; }
#category .product-box .info-box .goto{ margin-top: 20px; }
#category .fancybox-slide{ padding: 30px 44px; }


/* Product */
#product .product-top,
#product .product-image .wrapper{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start; }
#product .product-image{ margin-right: 45px; }
#product .product-image .out,
.product-box .img-box .out{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 60px;
    background-color: rgba(255,255,255,.75);
    color: #929292;
    font-size: 30px;
    font-family: var(--second-font);
    font-weight: var(--second-font-bold);
    line-height: 40px;
    z-index: 1001; }
.product-box .img-box .out{
    font-size: 24px;
    line-height: 38px; }
#product #image_block{
    position: relative;
    padding: 15px;
    border: 2px solid #f5f5ff;
    margin-right: 15px; }
#product #image_block .sale {
    width: 100px;
    height: 100px;
    overflow: hidden;
    position: absolute;
    top: -6px;
    right: -6px; }
#product #image_block .sale::before,
#product #image_block .sale::after {
    position: absolute;
    z-index: -1;
    content: '';
    display: block;
    border: 3px solid #cf0027;
    border-top-color: transparent;
    border-right-color: transparent; }
#product #image_block .sale::before {
    top: 0;
    left: 0; }
#product #image_block .sale::after {
    bottom: 0;
    right: 0; }
#product #image_block .sale span {
    position: absolute;
    display: block;
    width: 165px;
    padding: 2px 0;
    background-color: #ef0c37;
    box-shadow: 0 5px 10px rgba(0,0,0,.1);
    text-transform: uppercase;
    font-weight: var(--primary-font-bold);
    font-size: 12px;
    letter-spacing: 1px;
    color: #fff;
    text-align: center;
    left: -22px;
    top: 30px;
    transform: rotate(45deg); }
#product #views_block{
    flex: none;
    width: 148px; }
#product #views_block li a{ 
    display: block;
    border: 2px solid #f5f5ff;
    padding: 10px;
    margin-right: 0; }
#product .share{ 
    margin-top: 30px;
    display: flex;
    align-items: center; }
#product .share h2{
    margin: 0 15px 0 0;
    font-size: 15px;
    font-weight: var(--primary-font-bold);
    color: var(--black-color); }
#product .share ul,
#product .share .share-product{
    display: flex;
    align-items: center; }
#product .share li{ margin-right: 10px; }
#product .share li .share-product{
    justify-content: center;
    margin: 0;
    padding: 0;
    background-color: #f5f5ff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    fill: var(--gray-color);
    transition: 0.3s ease;
    -o-transition: 0.3s ease;
    -webkit-transition: 0.3s ease; }
#product .share li .share-product:hover{ 
    background-color: var(--second-color);
    fill: #fff; }
#product .share li .share-product svg{ 
    width: 16px; 
    height: 16px; }
#product .share li .btn-whatsapp svg{
    width: 18px;
    height: 18px; }
#product .product-info{
    flex: none;
    width: 460px; }
#product .product-info h1.title{
    margin: 0 0 20px 0;
    color: var(--black-color);
    font-size: 30px;
    font-family: var(--second-font);
    font-weight: var(--second-font-bold);
    line-height: 34px; }
#product .product-info .reference{ color: var(--gray-color); }
#product .product-info .reference strong{
    color: var(--black-color);
    font-weight: var(--primary-font-bold);
    margin-right: 10px; }
#product .product-info .description{
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #eaedff; }
#product .product-info .description .txt-gradient {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10vw;
    background: linear-gradient(180deg, transparent 0, rgba(255,255,255,.9) 100%); }
#product .product-info .txt p{ 
    color: var(--gray-color);
    margin-bottom: 15px; }
#product .product-info .txt li{
    position: relative;
    margin-bottom: 5px;
    color: var(--gray-color);
    padding-left: 18px; }
#product .product-info .txt li:last-of-type{ margin-bottom: 15px; }
#product .product-info .txt p strong, 
#product .product-info .txt li strong{ 
    color: var(--black-color); }
#product .product-info .txt li:before{
    content: "";
    position: absolute;
    left: 2px;
    top: 9px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--primary-color); }
#product .product-info .panel{
    border: none;
    box-shadow: none;
    margin: 20px 0 0 0; }
#product .product-info .panel-heading{
    padding: 0;
    border: none;
    background-color: transparent;
    margin: 0; }
#product .product-info .panel-heading a{
    display: inline-block;
    position: relative;
    line-height: 24px;
    font-weight: var(--primary-font-bold);
    color: var(--black-color); }
#product .product-info .panel-heading a:hover{ color: var(--gray-color); }
#product .product-info .panel-heading a:after{
    position: relative;
    font-family: "FontAwesome5";
    font-weight: 900;
    font-size: 12px; }
#product .product-info .panel-heading a[aria-expanded="true"]:after { content: "\f077"; }
#product .product-info .panel-heading a[aria-expanded="false"]:after { content: "\f078"; }
#product .product-info .panel-body { padding: 20px 0 0 0; }
#product .product-info .to-details a{
    display: inline-block;
    line-height: 24px;
    font-weight: var(--primary-font-bold);
    color: var(--black-color);
    text-decoration: underline; }
#product .product-info .to-details a:hover { color: var(--gray-color); }
#product #attributes { margin-top: 30px; }
#product #attributes h3 {
    margin: 0 0 5px 0;
    font-size: 15px;
    color: var(--black-color);
    font-weight: var(--primary-font-bold);
    line-height: 22px; }
#product .attribute_list ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap; }
#product .attribute_list li {
    position: relative;
    margin-right: 10px;
    margin-top: 10px; }
#product .attribute_list label {
    display: block;
    margin-bottom: 0; }
#product .attribute_list .attribute_radio {
    position: absolute;
    top: 0;
    cursor: pointer;
    opacity: 0;
    width: 100%;
    height: 100%;
    margin: 0; }
#product .attribute_list .attr-label {
    display: block;
    line-height: 20px;
    padding: 7px 14px;
    font-size: 14px;
    font-weight: var(--primary-font-medium);
    border: 2px solid var(--silver-color);
    border-radius: 3px;
    position: relative; }
#product .attribute_list .attr-label:hover, 
#product .attribute_list .attribute_radio:checked+span {
    border-color: transparent;
    background-color: var(--primary-color);
    color: #fff; }
#product .product-actions {
    margin-top: 30px;
    display: flex;
    align-items: center; }
#product #quantity_wanted_p {
    display: flex;
    align-items: center;
    margin-right: 25px; }
#product #quantity_wanted_p strong {
    color: var(--black-color);
    font-weight: var(--primary-font-bold);
    margin-right: 10px; }
#product .qty-group{
    display: flex;
    align-items: center; }
#product #quantity_wanted {
    display: block;
    text-align: center;
    color: var(--black-color);
    height: 44px;
    width: 60px;
    background-color: #fff;
    border: 2px solid #eaedff; }
#product .qty-buttons {
    position: relative;
    border: 2px solid #eaedff;
    border-left: 0; }
#product .qty-buttons a{
    display: block;
    width: 22px;
    height: 20px;
    fill: #9a9a9a;
    padding: 0 4px; }
#product .qty-buttons a.button-plus{ padding-top: 2px; }
#product .qty-buttons a:hover{ fill: var(--gray-color); }
#product #add_to_cart{
    display: flex;
    align-items: center; }
#product .product-bottom{ padding-top: 70px; }
#product .product-bottom .title{ 
    margin-bottom: 30px;
    border-bottom: 2px solid #eaedff; }
#product .product-bottom .title h1{
    position: relative;
    display: inline-block;
    margin: 0;
    line-height: 30px;
    padding: 0 15px 15px 15px;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: var(--primary-font-bold);
    color: var(--black-color); }
#product .product-bottom .title h1:after{   
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -2px;
    left: 0; }
#product .product-bottom .row{
    margin-left: -10px;
    margin-right: -10px; }
#product .product-bottom .owl-carousel .item{ padding: 6px 10px 0 10px; }
#product .product-bottom .owl-nav{
    position: absolute;
    top: 50%;
    margin: 0;
    width: 100%;
    height: 40px; }
#product .product-bottom .owl-nav button {
    position: absolute;
    background-color: transparent;
    display: block;
    border-radius: 0;
    fill: #d6d6d6;
    margin: 0; }
#product .product-bottom .owl-nav button.owl-prev{ left: -35px; }
#product .product-bottom .owl-nav button.owl-next{ right: -35px; }
#product .product-bottom .owl-nav button.disabled:hover{ fill: #d6d6d6; }
#product .product-bottom .owl-nav button:hover { fill: #9a9a9a; }
#product .product-bottom .owl-nav svg{ width: 38px; }

#product .product-quick{ 
    padding: 30px;
    min-height: 540px;
    align-items: center; }
#product .product-quick .product-image .wrapper { display: block; }
#product .product-quick #image_block { margin-right: 0; }
#product .product-quick #views_block { 
    width: 100%;
    margin-top: 14px; }
#product .product-quick .product-info h1.title{
    margin: 0 0 15px 0;
    font-size: 26px;
    line-height: 30px; }
#product .product-quick .product-info .description {
    position: relative;
    height: 155px;
    overflow: hidden;
    margin-top: 15px;
    padding-top: 15px; }
#product .product-quick #attributes,
#product .product-quick .product-actions {
    margin-top: 25px; }
#product .product-quick .bx-controls-direction a {
    bottom: 40%;
    width: 20px; }
#product .product-quick .bx-prev { left: -25px; }
#product .product-quick .bx-next { right: -25px; }


/* Search */
#search .page-heading{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eaedff; }
#search .page-heading strong{
    font-weight: var(--primary-font-bold);
    margin-right: 15px; }


/* Quote */
#order-opc #inner .wrapper,
#contact #inner .wrapper{
    display: flex;
    align-items: flex-start;
    justify-content: space-between; }
#order-opc .quote-list{
    flex: none;
    width: 50%;
    border: 1px solid #dadbd9;
    border-radius: 10px;
    padding: 20px; }
#order-opc .quote-list table thead{ border-bottom: 1px solid var(--black-color); }
#order-opc .quote-list table th{ 
    font-weight: var(--primary-font-medium);
    padding-top: 0;
    padding-bottom: 10px; }
#order-opc .quote-list table tbody tr{ border-bottom: 1px solid #dadbd9; }
#order-opc .quote-list table tbody tr:last-child{ border-bottom: none; }
#order-opc .quote-list table tbody tr:last-child td{ padding-bottom: 0; }
#order-opc .quote-list h2{
    margin: 0;
    font-family: var(--second-font);
    font-weight: var(--second-font-medium);
    font-size: 15px;
    line-height: 22px;
    color: var(--black-color); }
#order-opc .quote-list .product-info{ width: 224px; }
#order-opc .quote-list .product-attributes,
#order-opc .quote-list .reference{
    color: var(--gray-color);
    font-size: 14px; }
#order-opc .quote-list .product-attributes{ margin-top: 5px; }
#order-opc .quote-list .reference{ margin-top: 10px; }
#order-opc .quote-list .reference strong{
    color: var(--black-color);
    font-weight: var(--primary-font-bold);
    margin-right: 10px; }
#order-opc .quote-list .qty {
    display: flex;
    align-items: center; }
#order-opc .quote-list .qty-number {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black-color);
    height: 44px;
    width: 60px;
    background-color: #fff;
    border: 2px solid #eaedff;
    cursor: default; }
#order-opc .quote-list .qty-buttons {
    position: relative;
    border: 2px solid #eaedff;
    border-left: 0; }
#order-opc .quote-list .qty-buttons a{
    display: block;
    width: 22px;
    height: 20px;
    fill: #9a9a9a;
    padding: 0 4px; }
#order-opc .quote-list .qty-buttons a.button-plus{ padding-top: 2px; }
#order-opc .quote-list .qty-buttons a:hover{ fill: var(--gray-color); }
#order-opc .quote-list a.remove{
    display: flex;
    justify-content: center;
    width: 40px;
    fill: #9a9a9a; }
#order-opc .quote-list a.remove:hover{ fill: var(--gray-color); }
#order-opc .quote-list a.remove svg{
    width: 18px;
    height: 18px; }

#order-opc .quote-form,
#contact .contact-form{
    flex: none;
    width: calc(50% - 45px); }
#order-opc .quote-form h1,
#contact .contact-form h1 {
    margin: 0 0 30px 0;
    color: var(--black-color);
    font-size: 30px;
    font-family: var(--second-font);
    font-weight: var(--second-font-bold);
    line-height: 34px; }


/* Contact */
#contact .contact-info{
    flex: none;
    width: calc(50% - 15px); }
#contact .loc-box{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #edf2e4;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 10px; }
#contact .loc-box .widget-html h2,
#contact .loc-box .location,
#contact .loc-box .widget-html:last-of-type .info,
#contact .loc-box .widget-html:last-of-type .opening,
#contact .loc-box .widget-html:first-of-type .address{ 
    display: none !important; }
#contact .loc-box .loc-info{ 
    position: relative;
    width: 100%;
    z-index: 1; }
#contact .loc-box .widget-html:first-of-type{
    flex: none;
    width: 260px; }
#contact .loc-box .widget-html ul.info{ margin-bottom: 25px; }
#contact .loc-box .loc-info>h2{
    position: relative;
    margin: 0 0 30px 0;
    font-weight: var(--primary-font-bold);
    font-size: 18px;
    line-height: 24px; }
#contact .loc-box .widget{ display: flex; }
#contact .loc-box .widget-html ul.info li{
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    height: 24px; }
#contact .loc-box .widget-html ul.info li:last-child{ margin-bottom: 0; }
#contact .loc-box .widget-html ul.info li a,
#contact .loc-box .widget-html ul.address li a{ 
    color: var(--black-color); }
#contact .loc-box .widget-html ul.info li a:hover,
#contact .loc-box .widget-html ul.address li a:hover{ 
    color: var(--primary-color); }
#contact .loc-box .widget-html ul.info li:before,
#contact .loc-box .widget-html ul.opening:before,
#contact .loc-box .widget-html ul.address:before{
    font-family: "FontAwesome5";
    font-weight: 900;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    color: #abb39d;
    font-size: 11px;
    border: 1px solid #abb39d;
    border-radius: 50%; }
#contact .loc-box .widget-html ul.info li,
#contact .loc-box .widget-html ul.opening,
#contact .loc-box .widget-html ul.address{
    position: relative;
    padding-left: 40px; }
#contact .loc-box .widget-html ul.opening li,
#contact .loc-box .widget-html ul.address li{
    line-height: 24px; }
#contact .loc-box .widget-html ul.info li.phone:before { content: "\f879"; }
#contact .loc-box .widget-html ul.info li.mobile:before { 
    content: "\f232";
    font-weight: 300;
    font-size: 14px; }
#contact .loc-box .widget-html ul.info li.mail:before { content: "\f0e0"; }
#contact .loc-box .widget-html ul.opening:before { content: "\f017"; }
#contact .loc-box .widget-html ul.address:before { content: "\f3c5"; }
#contact .loc-box .widget-html ul.info li.phone, 
#contact .loc-box .widget-html ul.info li.mobile {
    font-weight: var(--primary-font-bold); }
#contact .loc-box .loc-icon{
    position: absolute;
    right: 0;
    bottom: 0;
    width: 170px;
    height: 149px;
    background-repeat: no-repeat;
    border-radius: 0 0 10px 0;
    z-index: 1; }
#contact .loc-box .loc-icon.bog{ background-image: url(../img/map-corner-bog.png); }
#contact .loc-box .loc-icon.cal{ background-image: url(../img/map-corner-cal.png); }
#contact .loc-box .loc-icon a{
    position: relative;
    display: block;
    height: 100%;
    color: var(--black-color);
    font-weight: var(--primary-font-medium);
    padding: 110px 0 0 80px;
    text-decoration: underline; }
#contact .loc-box .loc-icon a:hover{ color: var(--primary-color); }
#contact .loc-box a.loc-go{
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    color: var(--black-color);
    fill: var(--black-color);
    text-decoration: underline;
    font-weight: var(--primary-font-medium);
    z-index: 1; }
#contact .loc-box a.loc-go:hover{ 
    color: var(--primary-color);
    fill: var(--primary-color); }
#contact .loc-box a.loc-go svg{
    width: 12px;
    margin-left: 5px; }
#contact .loc-map{ margin-bottom: 15px; }
#contact .loc-map iframe{
    width: 100%;
    height: 400px;
    border-radius: 10px; }  
#contact .group-select{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0 15px;
    height: 57px;
    border-radius: 10px;
    border: 1px solid #dadbd9;
    background: #f5f7f2; }
#contact .group-select label{
    position: absolute;
    display: block;
    left: 15px;
    top: 17px;
    margin: 0;
    width: 80px;
    font-weight: var(--primary-font-normal);
    color: #929496; }


/* Forms */
.nc-form .form-group { margin-bottom: 25px; }
.nc-form .form-control {
    padding: 15px;
    height: 57px;
    box-shadow: none;
    border-radius: 10px;
    border: 1px solid #dadbd9;
    background: #f5f7f2;
    font-size: 15px;
    color: var(--black-color); }
.nc-form .form-control:focus { border-color: var(--third-color); }
.nc-form .group-flex {
    display: flex;
    align-items: center;
    justify-content: space-between; }
.nc-form .group-flex .large{ width: calc(100% - 225px); }   
.nc-form .group-flex .short{
    flex: none;
    width: 200px; }    
.nc-form textarea.form-control {
    height: 130px;
    padding: 20px 15px;
    line-height: 22px;
    text-align: justify; }
.nc-form .ptd{
    display: flex;
    align-items: center;
    margin-bottom: 30px; }
.nc-form .ptd div.checker {
    cursor: pointer;
    margin-right: 12px;
    width: 22px;
    height: 22px; }
.nc-form .ptd div.checker span {
    position: relative;
    top: 0px;
    width: 22px;
    height: 22px; }
.nc-form .ptd div.checker input {
    width: 22px;
    height: 22px; }
.nc-form .ptd label {
    font-weight: var(--primary-font-normal);
    margin: 0;
    padding-top: 2px;
    color: var(--gray-color); }
.nc-form .ptd label a {
    font-weight: var(--primary-font-bold);
    color: var(--gray-color); }
.nc-form .ptd label a:hover{ color: var(--black-color); }
.nc-form .form-group.submit {
    display: flex;
    align-items: center; }


/* Confirmation */
#confirmation .confirmation-box{
    position: relative;
    margin: 20px auto;
    text-align: center;
    width: 600px; }
#confirmation .confirmation-box svg{
    fill: var(--second-color);
    width: 60px; }
#confirmation .confirmation-box h1{
    margin: 30px 0;
    font-family: var(--second-font);
    font-weight: var(--second-font-bold);
    font-size: 36px; }
#confirmation .confirmation-box p{
    color: var(--gray-color);
    font-size: 18px;
    line-height: 30px;
    margin: 0; }


/* Privacy */
#privacy.content_only .privacy-box{ padding: 30px; }
#privacy .privacy-box h1{
    font-family: var(--second-font);
    font-weight: var(--second-font-bold); 
    margin: 0 0 30px 0;
    font-size: 20px;
    line-height: 30px;
    text-align: center; }
#privacy .privacy-box h2{
    margin: 25px 0 15px 0;
    font-size: 16px;
    font-weight: var(--primary-font-bold); }
#privacy .privacy-box p,
#privacy .privacy-box li{ 
    color: var(--gray-color); }
#privacy .privacy-box p strong,
#privacy .privacy-box li strong{
    color: var(--black-color);
    font-weight: var(--primary-font-medium); }
#privacy .privacy-box li{
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px; }
#privacy .privacy-box li:before{
    content: "";
    position: absolute;
    left: 2px;
    bottom: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--gray-color); }



















































.home-middle{
    position: relative;
    background-image: url(../img/bg-middle.jpg);
    background-repeat: no-repeat;
    background-position: right center;
    min-height: 445px;
    padding-top: 60px; }
.home-middle .widget-html {
    padding-right: 50%;
    position: relative;
    z-index: 1; }
.home-middle .widget-html h2{
    margin: 0;
    font-weight: var(--primary-font-normal);
    text-transform: uppercase;
    color: var(--gray-color);
    font-size: 14px; }
.home-middle .widget-html h1 {
    font-weight: var(--primary-font-normal);
    font-size: 28px;
    text-transform: uppercase;
    line-height: 36px;
    margin: 20px 0 25px 0; }
.home-middle .widget-html h1 strong{ font-weight: var(--second-font-bold); }
.home-middle .widget-html p {
    line-height: 26px;
    color: var(--gray-color); }
.home-middle .widget-html h3 {
    margin: 34px 0 0 0;
    display: flex;
    align-items: center; }
.home-middle .widget-html h3 a {
    display: block;
    line-height: 38px;
    padding: 0 20px;
    color: var(--black-color);
    font-size: 13px;
    background: var(--primary-color);
    border-radius: 3px;
    font-weight: var(--primary-font-medium);
    text-transform: uppercase; }
.home-middle .widget-html h3 a:hover {
    background-color: var(--black-color);
    color: #fff; }
.home-bottom{ padding: 70px 0; }

.featured-head{ 
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px; }
.featured-head h1{
    line-height: 30px;
    font-size: 20px;
    font-weight: var(--primary-font-bold);
    color: var(--black-color);
    margin: 0 0 0 5px; }
.featured-head ul{ 
    display: flex;
    align-items: center; }
.featured-head li{ margin-left: 12px; }
.featured-head li:first-child{ margin-left: 0; }
.featured-head li a{
    display: block;
    line-height: 34px;
    padding: 0 20px;
    font-weight: var(--primary-font-medium);
    color: var(--black-color);
    border: 1px solid transparent;
    border-radius: 3px;
    font-size: 14px; }
.featured-head li.active a,
.featured-head li a:hover{
    border-color: var(--primary-color); }

#featuredservices h1 {
    margin: 0 0 15px 0;
    line-height: 30px;
    position: relative;
    font-size: 20px;
    font-weight: var(--primary-font-bold);
    color: var(--black-color);
    text-align: center; }
#featuredservices .row{
    margin-left: -10px;
    margin-right: -10px; }
#featuredservices .owl-carousel .owl-wrapper-outer { padding: 15px 0; }
#featuredservices .owl-carousel .owl-item { padding: 0 10px; }
#featuredservices .owl-theme .owl-controls .owl-buttons div.owl-prev { left: -15px; }
#featuredservices .owl-theme .owl-controls .owl-buttons div.owl-next { right: -15px; }
#featuredservices .goto{
    display: flex;
    justify-content: center;
    margin-top: 5px; }
.featured-list .goto{ 
    margin-top: 20px;
    text-align: center; }
#featuredservices .goto a,
.featured-list .goto a{
    color: var(--gray-color);
    text-decoration: underline; }
#featuredservices .goto a:hover,
.featured-list .goto a:hover{ 
    text-decoration: none; }
#featuredservices .goto a i,
.featured-list .goto a i{ 
    margin-left: 5px;
    font-size: 11px; }
.featured-list.row{
    margin-left: -10px;
    margin-right: -10px; }
.featured-list li{ 
    min-height: 464px;
    padding: 0 10px; }
#featuredservices .featured-list li{ padding: 0; }
.featured-list li .item-container {
    position: relative;
    background: #fff;
    box-shadow: 0 2px 20px rgba(43,48,54,0.25);
    border-radius: 20px; } 
#featuredservices .featured-list li .item-container {
    border: 1px solid #e0e2e4;
    box-shadow: none; }
.featured-list li .img-box {
    position: relative;
    padding: 15px; }
.featured-list li .img-box img {
    margin: 0 auto;
    display: block; }
.featured-list li .img-box .new-box {
    position: absolute;
    transform: rotate(-90deg);
    text-transform: uppercase;
    background-color: #202447;
    color: #fff;
    padding: 0 6px;
    top: 18px;
    left: 3%;
    font-size: 13px;
    font-weight: var(--primary-font-medium);
    line-height: 24px;  }
.featured-list li .img-box .new-box:before {
    content: "";
    border-right: 11px solid #202447;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    height: 0;
    left: -10px;
    position: absolute;
    bottom: 0;
    width: 0; }
.featured-list li .info-box{ padding: 0 20px 20px 20px; }
.featured-list li .info-box h5{
    display: flex;
    align-items: center;
    height: 40px;
    margin: 0; }
.featured-list li .info-box h5 a {
    color: var(--black-color);
    line-height: 20px;
    font-size: 14px;
    font-weight: var(--primary-font-bold); }
.featured-list li .info-box h5 a:hover { color: var(--primary-color); }
.featured-list li .info-box .reference{ 
    color: var(--gray-color);
    font-size: 13px;
    margin-top: 10px; }
.featured-list li .info-box .reference strong{ 
    font-weight: var(--primary-font-bold);
    color: var(--black-color); }
.featured-list li .info-box .description{
    color: var(--gray-color);
    line-height: 20px;
    height: 40px;
    overflow: hidden;
    margin: 10px 0 20px 0;
    cursor: default; }
.featured-list li .info-box .more{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 20px; }
.featured-list li .info-box .more a.detail{
    display: block;
    line-height: 34px;
    padding: 0 20px;
    color: var(--black-color);
    font-size: 13px;
    background: var(--primary-color);
    border-radius: 3px;
    font-weight: var(--primary-font-medium);
    text-transform: uppercase; }
.featured-list li .info-box .more a.quote,
.featured-list li .info-box .more a.quote-search{
    color: var(--gray-color);
    font-weight: var(--primary-font-medium);
    text-decoration: underline; }
.featured-list li .info-box .more a.detail:hover{
    background: var(--black-color);
    color: #fff; }
.featured-list li .info-box .more a.quote:hover,
.featured-list li .info-box .more a.quote-search:hover{
    text-decoration: none; }

#company_box{
    padding-left: 350px;
    background-image: url(../img/bg-about.jpg);
    background-repeat: no-repeat;
    background-position: left top; }
#company_box .widget-html h2{
    margin: 25px 0 10px 0;
    font-size: 16px;
    line-height: 30px;
    font-weight: var(--primary-font-bold); }
#company_box .widget-html p,
#company_box .widget-html li{
    line-height: 24px;
    color: var(--gray-color); }
#company_box .widget-html li{
    position: relative;
    padding-left: 20px;
    margin-bottom: 5px; }
#company_box .widget-html li::before{
    content: "";
    position: absolute;
    left: 2px;
    top: 10px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary-color); }





















































/* Blog */
#blog.wrapper { 
    display: flex;
    justify-content: space-between; }

#blog .main { width: calc(100% - 390px); }
#blog .main .list-blog {
    display: grid;
    grid-gap: 30px;
    grid-template-columns: repeat(2, 1fr);
    margin: 0 auto; } 

#blog .main a.head-link { display: block; }
#blog .main .element-img {
    overflow: hidden;
    position: relative; }
#blog .main .element-img:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    opacity: 0;
    z-index: 1;
    transition: 0.4s ease;
    -o-transition: 0.4s ease;
    -webkit-transition: 0.4s ease; }
#blog .main a.head-link:hover .element-img:after { opacity: 0.2; }
#blog .main .element-img span.play {
    position: absolute;
    width: 120px;
    height: 120px;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 2; }
#blog .main .element-img span.play .play-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    fill: #fff;
    padding-left: 5px;
    z-index: 4; }
#blog .main .element-img span.play .play-icon svg{ width: 40px; }
#blog .main .element-img span.play .ripple{
    position: absolute;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,.5);
    animation: ripple 2s linear infinite;
    transition: background 0.1s ease;
    z-index: 3; }
#blog .main .element-img span.play .ripple-1 { animation-delay: 0s; }
#blog .main .element-img span.play .ripple-2 { animation-delay: 0.3s; }
#blog .main .element-img span.play .ripple-3 { animation-delay: 1.7s; }
#blog .main .element-info {
    border: 2px solid #f4f3fb;
    border-top: none;
    padding: 20px 30px 30px 30px; }
#blog .main .element-info .date{
    display: flex;
    align-items: center;
    margin-bottom: 15px; }
#blog .main .element-info .date svg{ 
    width: 14px;
    fill: var(--second-color); }
#blog .main .element-info .date span {
    font-size: 14px;
    color: var(--gray-color);
    text-transform: capitalize;
    font-weight: var(--primary-font-medium);
    padding-top: 5px;
    padding-left: 10px; }
#blog .main .element-info .title {
    font-weight: var(--primary-font-bold);
    font-size: 18px;
    line-height: 26px;
    height: 52px;
    overflow: hidden;
    color: var(--black-color);
    transition: 0.3s ease;
    -o-transition: 0.3s ease;
    -webkit-transition: 0.3s ease; }
#blog .main a.head-link:hover .element-info .title { color: var(--primary-color); }
#blog .main .element-info .description {
    margin-top: 15px;
    color: var(--gray-color);
    line-height: 24px;
    max-height: 72px;
    overflow: hidden; }

#blog .main .article-blog { width: 100%; }
#blog .main .article-blog h1.title {
    margin: 0 0 15px 0;
    color: var(--black-color);
    font-size: 30px;
    font-family: var(--second-font);
    font-weight: var(--second-font-bold);
    line-height: 34px; }
#blog .main .article-blog .social,
#blog .main .article-blog .date,
#blog .main .article-blog .share,
#blog .main .article-blog .tags,
#blog .main .article-blog .tags a,
#blog .main .article-blog .back{
    display: flex;
    align-items: center; }
#blog .main .article-blog .social{ 
    border-top: 2px solid #f5f5f5;
    padding: 15px 0 25px 0; }
#blog .main .article-blog .date svg{ 
    width: 14px;
    fill: var(--second-color); }
#blog .main .article-blog .date span {
    font-size: 14px;
    color: var(--gray-color);
    text-transform: capitalize;
    font-weight: var(--primary-font-medium);
    padding-top: 5px;
    padding-left: 10px; }
#blog .main .article-blog .share{ 
    padding-top: 3px;
    margin-left: 40px; }
#blog .main .article-blog .share h2{
    margin: 0 10px 0 0;
    font-size: 15px;
    font-weight: var(--primary-font-medium);
    color: var(--gray-color); }
#blog .main .article-blog .share ul,
#blog .main .article-blog .share .share-blog{
    display: flex;
    align-items: center; }
#blog .main .article-blog .share li{ margin-right: 7px; }
#blog .main .article-blog .share li .share-blog{
    justify-content: center;
    margin: 0;
    padding: 0;
    background-color: #f5f5ff;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    fill: var(--gray-color);
    transition: 0.3s ease;
    -o-transition: 0.3s ease;
    -webkit-transition: 0.3s ease; }
#blog .main .article-blog .share li .share-blog:hover{ 
    background-color: var(--second-color);
    fill: #fff; }
#blog .main .article-blog .share li .share-blog svg{ 
    width: 16px; 
    height: 16px; }
#blog .main .article-blog .share li .btn-whatsapp svg{
    width: 18px;
    height: 18px; }
#blog .main .article-blog .image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
    margin-bottom: 30px; }
#blog .main .article-blog .image img { transform: translateY(-50px); }
#blog .main .article-blog .image a {
    position: relative;
    display: block;
    height: 100%;
    width: 100%; }
#blog .main .article-blog .image a:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #020407;
    opacity: 0;
    transition: 0.3s ease;
    -o-transition: 0.3s ease;
    -webkit-transition: 0.3s ease; }
#blog .main .article-blog .image a:hover:after { opacity: 0.2; }
#blog .main .article-blog .image a span.play {
    position: absolute;
    width: 180px;
    height: 180px;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 2; }
#blog .main .article-blog .image a span.play .play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    fill: #fff;
    padding-left: 7px;
    z-index: 4; }
#blog .main .article-blog .image a span.play .play-icon svg { width: 60px; }
#blog .main .article-blog .image a span.play .ripple{
    position: absolute;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    background: rgba(255,255,255,.5);
    animation: ripple 2s linear infinite;
    transition: background 0.1s ease;
    z-index: 3; }
#blog .main .article-blog .image a span.play .ripple-1 { animation-delay: 0s; }
#blog .main .article-blog .image a span.play .ripple-2 { animation-delay: 0.3s; }
#blog .main .article-blog .image a span.play .ripple-3 { animation-delay: 1.7s; }
#blog .main .article-blog .description{ padding-right: 10px; }
#blog .main .article-blog .description h1{
    line-height: 30px;
    font-size: 20px;
    font-weight: var(--primary-font-bold); 
    line-height: 34px;
    margin: 0 0 15px 0; }
#blog .main .article-blog .description p+h1,
#blog .main .article-blog .description ul+h1{ 
    margin-top: 20px; }
#blog .main .article-blog .description h2{
    line-height: 26px;
    font-size: 18px;
    font-weight: var(--primary-font-bold);
    margin: 0 0 10px 0; }
#blog .main .article-blog .description p+h2,
#blog .main .article-blog .description ul+h2{ 
    margin-top: 15px; }
#blog .main .article-blog .description h3{
    line-height: 26px;
    font-size: 16px;
    font-weight: var(--primary-font-medium);
    margin: 0 0 10px 0; }
#blog .main .article-blog .description p{
    color: var(--gray-color);
    line-height: 26px; }
#blog .main .article-blog .description p strong,
#blog .main .article-blog .description p b{
    font-weight: var(--primary-font-medium);
    color: var(--black-color); }
#blog .main .article-blog .description ul{ margin: 0 0 15px 0; }
#blog .main .article-blog .description li{
    position: relative;
    color: var(--gray-color);
    line-height: 26px;
    padding-left: 20px;
    margin-bottom: 5px; }
#blog .main .article-blog .description li:last-child{ margin-bottom: 0; }
#blog .main .article-blog .description li:before{
    content: "";
    position: absolute;
    left: 2px;
    top: 11px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--primary-color); }
#blog .main .article-blog .description p a,
#blog .main .article-blog .description li a{
    font-weight: var(--primary-font-medium);
    color: var(--black-color);
    text-decoration: underline; }
#blog .main .article-blog .description p a:hover,
#blog .main .article-blog .description li a:hover{ 
    color: var(--gray-color); }
#blog .main .article-blog .tags {
    flex-wrap: wrap;
    margin-top: 20px; }
#blog .main .article-blog .tags a {
    height: 30px;
    margin-top: 5px;
    margin-right: 20px;
    color: var(--gray-color);
    font-weight: var(--primary-font-medium); }
#blog .main .article-blog .tags a:hover { color: var(--black-color); }
#blog .main .article-blog .tags svg { 
    width: 12px;
    fill: var(--second-color);
    margin-right: 5px; }
#blog .main .article-blog .back { margin-top: 35px; }
#blog .main .article-blog .back a {
    display: flex;
    align-items: center;
    height: 30px;
    padding-right: 20px;
    color: var(--black-color);
    fill: var(--black-color);
    text-decoration: underline;
    font-weight: var(--primary-font-medium); }
#blog .main .article-blog .back a:hover {
    color: var(--primary-color);
    fill: var(--primary-color); }
#blog .main .article-blog .back a svg{
    width: 12px;
    margin-right: 7px; }

@keyframes ripple{
    0%{transform:scale(.2);opacity:0}
    50%{opacity:.9}
    100%{transform:scale(1em);opacity:0}
}

#blog .sidebar {
    flex: none;
    width: 350px; }
#blog .sidebar .box {
    border: 2px solid #f5f5f5;
    border-radius: 10px;
    margin-bottom: 30px;
    padding: 25px; }
#blog .sidebar .box.newsletter { margin-bottom: 0; }
#blog .sidebar h2.box-head {
    position: relative;
    padding-left: 15px;
    font-size: 18px;
    font-family: var(--second-font);
    font-weight: var(--second-font-bold);
    line-height: 20px;
    margin: 0 0 25px 0;
    border-left: 4px solid var(--second-color); }
#blog .sidebar .categories li { 
    padding: 6px 0;
    border-bottom: 1px solid #e4e4e4; }
#blog .sidebar .categories li:last-child { border-bottom: none; }
#blog .sidebar .categories li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 30px;
    color: var(--gray-color);
    position: relative; }
#blog .sidebar .categories li a:hover { 
    color: var(--second-color);
    padding-left: 10px; }
#blog .sidebar .recents li {
    padding: 15px 0;
    border-bottom: 1px solid #e4e4e4; }
#blog .sidebar .recents li:first-child { padding-top: 5px; } 
#blog .sidebar .recents li:last-child { 
    border-bottom: none;
    padding-bottom: 0; }
#blog .sidebar .recents li a{
    display: flex;
    align-items: center;
    justify-content: space-between; }
#blog .sidebar .recent-img {
    display: block;
    width: 60px;
    height: 68px;
    margin-top: 4px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; }
#blog .sidebar .recent-info {
    flex: none;
    width: 220px; }
#blog .sidebar .recent-info .date { 
    display: flex;
    align-items: center;
    margin-bottom: 4px; }
#blog .sidebar .recent-info .date svg {
    width: 14px;
    fill: var(--second-color); }
#blog .sidebar .recent-info .date span {
    font-size: 14px;
    color: var(--gray-color);
    text-transform: capitalize;
    font-weight: var(--primary-font-medium);
    padding-top: 5px;
    padding-left: 10px; }
#blog .sidebar .recent-info h5 {
    margin: 0;
    line-height: 20px;
    font-weight: var(--primary-font-bold);
    max-height: 40px;
    overflow: hidden;
    font-size: 15px;
    color: var(--black-color);
    transition: 0.3s ease;
    -o-transition: 0.3s ease;
    -webkit-transition: 0.3s ease; }
#blog .sidebar a:hover .recent-info h5{ color: var(--primary-color); }
#blog .sidebar .tags{
    margin-left: -1px;
    margin-right: -1px; }
#blog .sidebar .tags a {
    display: inline-block;
    margin: 5px 1px;
    line-height: 30px;
    color: var(--gray-color);
    padding: 7px 14px;
    border: 2px solid #f6f6f6; }
#blog .sidebar .tags a:hover {
    color: var(--second-color);
    border-color: var(--second-color); }
#blog .sidebar .newsletter p{
    color: var(--gray-color);
    margin-bottom: 20px; }


/* Suppliers */
#suppliers{ padding-bottom: 60px;}
#suppliers .owl-carousel .owl-item img {
    max-width: 180px;
    margin: 0 auto; }


/* Pagination */
.pagination-box{ 
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 35px; }
.pagination-box .product-count{ 
    color: var(--gray-color);
    font-size: 14px; }
.pagination-box .product-count b{ font-weight: var(--primary-font-medium); } 
.pagination-box .pagination{
    display: flex;
    align-items: center;
    margin: 0 0 0 15px; }
.pagination-box .pagination>li{ margin: 0 2px; }
.pagination-box .pagination>li>a,
.pagination-box .pagination>li>span {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    margin: 0;
    border-radius: 50% !important;
    font-size: 14px;
    font-weight: var(--primary-font-medium);
    height: 24px;
    width: 24px;
    color: var(--gray-color);
    padding: 0; }
.pagination-box .pagination>li.arrow-pag a,
.pagination-box .pagination>li.arrow-pag span{
    width: 18px;
    fill: #f00; }
.pagination-box .pagination>li.arrow-pag a svg,
.pagination-box .pagination>li.arrow-pag span svg{
    width: 14px; }
.pagination-box .pagination>li>a:focus,
.pagination-box .pagination>li>a:hover{
    color: #fff !important;
    background-color: var(--gray-color) !important; }
.pagination-box .pagination>.active>a,
.pagination-box .pagination>.active>a:focus,
.pagination-box .pagination>.active>a:hover,
.pagination-box .pagination>.active>span,
.pagination-box .pagination>.active>span:focus,
.pagination-box .pagination>.active>span:hover {
    color: var(--black-color) !important;
    background-color: var(--primary-color) !important; }
.pagination-box .pagination>.disabled>span,
.pagination-box .pagination>.disabled>span:focus,
.pagination-box .pagination>.disabled>span:hover {
    cursor: default;
    fill: #929292 !important; }
.pagination-box .pagination>.arrow-pag>a { fill: #929292 !important; }
.pagination-box .pagination>.arrow-pag>a:hover,
.pagination-box .pagination>.arrow-pag>a:focus { 
    background-color: transparent !important;
    fill: var(--gray-color) !important; }


/* Page Not Found */
.page-not-found{
    position: relative;
    padding-left: 300px;
    margin: 40px auto;
    width: 70%;
    height: 250px;
    display: flex;
    align-items: center;
    background-image: url(../img/404.png);
    background-position: left center;
    background-repeat: no-repeat; }
.page-not-found h1{
    margin: 0;
    font-weight: var(--primary-font-bold);
    font-size: 40px;
    line-height: 50px; }


/* Footer */
footer{
    margin-top: 65px;
    background-image: url(../img/bg-footer.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; }
footer .wrapper{ 
    position: relative;
    padding-left: 420px; }
footer .footer-left{
    position: absolute;
    left: 0;
    top: -65px;
    background-color: var(--primary-color);
    width: 330px;
    height: calc(100% + 65px);
    background-image: -moz-linear-gradient(-90deg, rgb(0, 147, 69) 0%, rgb(246, 146, 30) 100%);
    background-image: -webkit-linear-gradient(-90deg, rgb(0, 147, 69) 0%, rgb(246, 146, 30) 100%);
    background-image: -ms-linear-gradient(-90deg, rgb(0, 147, 69) 0%, rgb(246, 146, 30) 100%);
    box-shadow: 2.5px 4.33px 15px 0px rgba(118, 188, 2, 0.4);
    border-radius: 30px 30px 0 0; }
footer .footer-logo{
    position: relative;
    padding: 190px 45px 0 45px;
    background-image: url(../img/logo-footer.png);
    background-position: center 45px;
    background-repeat: no-repeat; }
footer .footer-logo .widget-html p{
    color: #fff;
    text-align: center;
    margin-bottom: 0; }
footer .social-block{ margin-top: 40px; }
footer .social-block ul,
footer .social-block li a{
    display: flex;
    justify-content: center;
    align-items: center; }
footer .social-block li{ margin: 0 5px; }
footer .social-block li a{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    color: var(--primary-color);
    font-size: 16px; }
footer .social-block li a:hover{
    background-color: var(--second-color);
    color: #fff; }
footer .footer-right{ padding-top: 70px; }
footer .footer-info .widget{ display: flex; }
footer .footer-info .widget-html{ margin-right: 75px; }
footer .footer-info .widget-html:last-of-type{ 
    margin-left: 45px;
    margin-right: 0; }
footer .footer-info .widget-html h2{
    position: relative;
    margin: 0 0 30px 0;
    color: #fff;
    font-family: var(--second-font);
    font-weight: var(--second-font-bold);
    font-size: 18px;
    line-height: 24px;
    padding-bottom: 20px; } 
footer .footer-info .widget-html h2:before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 60px;
    border-radius: 2px;
    background-image: -moz-linear-gradient(-180deg, rgb(246, 146, 30) 0%, rgb(0, 147, 69) 100%);
    background-image: -webkit-linear-gradient(-180deg, rgb(246, 146, 30) 0%, rgb(0, 147, 69) 100%);
    background-image: -ms-linear-gradient(-180deg, rgb(246, 146, 30) 0%, rgb(0, 147, 69) 100%); }
footer .footer-info .widget-html li{
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px; }
footer .footer-info li.location { margin-top: 24px; }
footer .footer-info .info li:before{
    position: absolute;
    font-family: "FontAwesome5";
    font-weight: 900;
    left: 0;
    top: 0;
    color: var(--silver-color); } 
footer .footer-info .info li.phone:before{ 
    content: "\f879";
    font-size: 14px; }
footer .footer-info .info li.mobile:before{ 
    content: "\f232";
    font-weight: 300; }
footer .footer-info .info li.location:before{ content: "\f3c5"; }
footer .footer-info .links li{ 
    position: relative;
    padding-left: 20px;
    margin-bottom: 16px; }
footer .footer-info li:last-child{ margin-bottom: 0; }
footer .footer-info .links li:before{
    content: "";
    position: absolute;
    left: 2px;
    bottom: 9px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--primary-color); } 
footer .footer-info .widget-html li a{ color: #fff; }
footer .footer-info .links li,
footer .footer-info .links li a{ 
    color: var(--silver-color); } 
footer .footer-info li.phone a,
footer .footer-info li.mobile a{
    font-size: 16px;
    font-weight: var(--primary-font-bold); }
footer .footer-info li.location a{ 
    color: var(--silver-color);
    text-decoration: underline; }
footer .footer-info .widget-html li a:hover{ color: #fff; }
footer .footer-info .widget-html li.mail,
footer .footer-info ul.opening,
footer .footer-info ul.address{
    display: none; }
footer .copyright{
    color: var(--silver-color);
    padding-top: 30px;
    padding-bottom: 30px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.2); }

.links li.active::before{ display: none; }
.links li.active a{ position: relative; }
.links li.active a:after {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--primary-color);
    -webkit-animation: notify-pulse 1s infinite; }
#nav_global .links li.active a:after {
    top: 15px;
    left: -20px; }
#footer .links li.active a:after {
    top: 6px;
    left: -18px;}
@-webkit-keyframes notify-pulse {
    0% { box-shadow: 0 0 0 0px rgba(246, 146, 30, 0.7); }
    100% { box-shadow: 0 0 0 10px rgba(0, 0, 0, 0); }
}
@keyframes notify-pulse {
    0% { box-shadow: 0 0 0 0px rgba(246, 146, 30, 0.7); }
    100% { box-shadow: 0 0 0 10px rgba(0, 0, 0, 0); }
}


/* Whatsapp */
.wa-mobile {
    position: fixed;
    width: 58px;
    height: 58px;
    padding-bottom: 2px;
    right: 25px;
    bottom: 25px;
    z-index: 9000; }
.compensate-for-scrollbar .wa-mobile { right: 40px; }
.wa-mobile a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    font-size: 32px;
    background: #25d366; }
.wa-mobile a:hover { background: var(--second-color); }
.wa-box{
    position: fixed;
    height: 175px;
    width: 275px;
    bottom: 100px;
    right: -340px;
    padding-top: 30px;
    visibility: hidden;
    opacity: 0;
    z-index: 8003;
    transition: 0.5s ease;
    -o-transition: 0.5s ease;
    -webkit-transition: 0.5s ease; }
.wa-box.active{ 
    right: 0;
    opacity: 1;
    visibility: visible; }
.wa-box a.wa-close{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    top: 0;
    left: 3px;
    border-radius: 50%;
    background-color: #25d366;
    color: #fff; }
.wa-box a.wa-close svg{
    width: 18px;
    height: 18px; }
.wa-box a.wa-close:hover{ background-color: var(--second-color); }
.wa-box .wrapper{ 
    display: flex;
    flex-wrap: wrap; }
.wa-box .wrapper a{
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 30px;
    margin-top: 30px;
    font-weight: var(--primary-font-medium); }
.wa-box .wrapper a i{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    top: -6px;
    width: 50px;
    height: 50px;
    padding-bottom: 2px;
    border-radius: 50%;
    border: 3px solid #fff;
    background-color: #25d366;
    color: #fff;
    font-size: 24px;
    box-shadow: 2px 4px 15px 0 rgba(0,0,0,.2);
    z-index: 2; }
.wa-box .wrapper a span{
    position: relative;
    display: block;
    line-height: 38px;
    background-color: #fff;
    border-radius: 0 20px 20px 0;
    box-shadow: 2px 4px 15px 0 rgba(0,0,0,.2);
    padding: 0 25px 0 30px;
    color: var(--black-color);
    z-index: 1;
    transition: 0.3s ease;
    -o-transition: 0.3s ease;
    -webkit-transition: 0.3s ease; }
.wa-box .wrapper a:hover span{
    color: #fff;
    background-color: #25d366; }



/*** 4. Responsive ***/
@media (min-width: 992px) and (max-width: 1200px) {
    
}

@media (min-width: 767px) and (max-width: 991px) {
    
}

@media (max-width: 767px) {
    header { height: 168px; }
    header .header-logo img{ height: 70px; }
    header #header_bottom .wrapper { padding: 9px 0; }
    header #header_bottom .header-mobile { display: flex; }
    #shopping_cart { 
        margin-left: 0;
        margin-right: 15px;
        background-color: #fff;
        padding: 7px 12px;
        border-radius: 3px; }
    header .customer-service a i,
    #shopping_cart a.cart-icon i {
        width: 28px;
        height: 28px;
        padding: 0;
        fill: var(--gray-color);
        background-color: transparent; }
    #shopping_cart a.cart-icon i {
        width: 26px;
        height: 26px;
        margin-right: -8px; }
    #shopping_cart a.cart-icon .bubble {
        color: #fff;
        border: none;
        margin-left: 0;
        background-color: var(--primary-color); }
    #search_box {
        width: calc(100% - 25px);
        margin-right: 0; }

    .navbar-default .navbar-toggle {
        position: relative;
        margin: 0;
        border: 0;
        border-radius: 3px;
        width: 40px;
        height: 40px;
        font-size: 20px;
        color: #fff;
        background: var(--primary-color);
        border: 1px solid rgba(255,255,255,0.7);
        z-index: 8009; }
    .navbar-default .navbar-toggle:focus,
    .navbar-default .navbar-toggle:hover {
        background: var(--primary-color); }
    .navbar-default .navbar-content{
        position: fixed;
        right: -100%;
        top: 0;
        z-index: 8008;
        width: 100%;
        height: 100% !important;
        background: rgba(255,255,255,0.95);
        padding-top: 50px;
        border-top: none;
        transition: 0.4s ease;
        -o-transition: 0.4s ease;
        -webkit-transition: 0.4s ease; }
    .navbar-default .collapse{ display: block; }
    .navbar-default .navbar-content.in{ right: 0%; }
    .navbar-default .navbar-content ul {
        margin: 0;
        float: inherit;
        background: none; }
    .navbar-content .dropdown-menu ul:before,
    .navbar-content .nav-aux .info { 
        display: none; }

    .navbar-content li {
        margin: 0 !important;
        padding: 0; }
    .navbar-content li:before,
    .navbar-content li:after {
        display: none; }
    .navbar-content li a {
        color: var(--black-color) !important;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        padding: 15px 30px;
        display: block; }
    .navbar-content li a:hover, 
    .navbar-content li.active a {
        background-color: transparent !important;
        color: var(--second-color) !important;
        border-color: var(--second-color) !important; }

    .navbar-content .dropdown-menu {
        left: 0 !important;
        background: rgba(255,255,255,0.85) !important;
        width: 100% !important;
        box-shadow: none !important;
        padding: 0 !important;
        display: none; }
    .navbar-content .open .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important; }
    .navbar-content .open .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        -webkit-box-shadow: none;
        box-shadow: none; }
    .navbar-content .dropdown-menu {
        opacity: 0 !important;
        visibility: hidden !important; }
    .navbar-content .dropdown-menu ul { grid-template-columns: repeat(1, 1fr) !important; }
    .navbar-content .dropdown-menu li{ padding: 0 30px !important; }
    .navbar-content .dropdown-menu li a {
        padding: 0 0 0 50px;
        height: 60px;
        background-size: 30px; }

    .navbar-content .nav-aux{
        padding: 0 15px;
        margin-top: 30px; }

    #breadcrumb .cat-logo{ display: none; }
    #breadcrumb.homebrewer .wrapper { padding-left: 0; }


    #inner { padding: 30px 0 50px 0; }


    .product-list { grid-template-columns: repeat(1, 1fr); }

    #product .product-top, 
    #product .product-image .wrapper {
        display: block; }
    #product .product-image { margin-right: 0; }
    #product #image_block {
        margin-right: 0;
        margin-bottom: 15px; }
    #product #views_block { width: 100%; }
    #product .product-info { 
        width: 100%;
        margin-top: 30px; }


    #blog.wrapper{ display: block; }
    #blog .main { width: 100%; }
    #blog .main .list-blog { grid-template-columns: repeat(1, 1fr); } 
    #blog .sidebar { width: 100%; }
    #blog .main .article-blog .image { height: inherit; }
    #blog .main .article-blog .image img { transform: translateY(0); }








    .seq-wrapper .content {
        width: 90%;
        left: 5%; }
    .seq-wrapper .content h2 {
    font-size: 20px; }
    .seq-wrapper .content h1 {
        font-size: 38px;
        line-height: 46px;
        margin-bottom: 20px; }
    .seq-wrapper .content p {
    font-size: 15px;
    line-height: 24px;
    padding-right: 0; }


    #company_box {
        padding-left: 0;
        background-image: none; }




#order-opc #inner .wrapper, 
#contact #inner .wrapper {
    display: block; }
#contact .contact-info,
#order-opc .quote-form, 
#contact .contact-form { 
    width: 100%; }





.home-middle .widget-html{ padding-right: 0; }
.home-middle {
    background-image: none;
    background-color: var(--silver-color); }





    #suppliers { padding-bottom: 50px; }


    footer { 
        margin-top: 45px;
        background-image: url(../img/bg-footer-mobile.jpg); }
    footer .wrapper { padding-left: 0; }
    footer .footer-info .widget { display: block; }
    footer .footer-left {
        position: relative;
        top: -45px;
        margin: 0 auto;
        border-radius: 30px; }
    footer .footer-logo {
        position: relative;
        padding: 170px 30px 40px 30px;
        background-position: center 35px; }
    footer .footer-right { padding-top: 10px; }
    footer .footer-info .widget-html {
        margin: 0 auto !important;
        width: 170px !important; }
    footer .footer-info .widget-html:first-of-type { margin-bottom: 45px !important; }
    footer .footer-info .widget-html:last-of-type { margin-top: 60px !important; }
    footer .footer-info .widget-html h2 {
        margin: 0 0 25px 0;
        padding-bottom: 15px; }


    .wa-mobile {
        right: 15px;
        bottom: 15px; }
    .wa-mobile a { font-size: 36px; }
    .wa-box { bottom: 90px; }








    .featured-head ul { display: block; }
}
