:root{
    --c1: #fec828; /*yelow*/
    --c2: #daae5c;
    --c3: red;
    --c4: #fd6e1d;
    --c-btn: #192675;
    --grey: #fafafa; /*grey*/
    --grey2: #e1e5ee;
    --font2: 'Montserrat', sans-serif;
    --font-icon: "Font Awesome 6 Pro";


}
::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.3);background-color:#F5F5F5;cursor:pointer}::-webkit-scrollbar{width:8px;background-color:#F5F5F5;cursor:pointer}::-webkit-scrollbar-thumb{-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.3);background-color:#555}
::selection{color: #fff;background:var(--c2);}


/*LET START*/
html {
    height: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box
}

body {
    font-family: var(--font2);
    height: 100%;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
    color: #333;
    background: #fff;
    -webkit-font-smoothing: antialiased
}
.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6 {
    line-height: 1.5;
    font-weight: 600;
    font-family: var(--font2), serif;
    color: #4c4c4e;
}
.h1, h1 {
    font-size: 30px;
}
a {
    color: #4c4c4e;
    text-decoration: unset !important;
    transition: all .3s
}
a:hover{
    color: var(--c1);
}

@media screen and (max-width: 764px) {
    .container{
        max-width: 100%;
    }
}


/*alert-box*/
.alert-box {
    position: fixed;
    z-index: 999;
    pointer-events: none;
    right: 5px;
    bottom: 0px
}
.alert-box>div {
    position: relative;
    pointer-events: auto;
    overflow: hidden;
    margin: 0 0 6px;
    padding: 8px 4px 8px 40px;
    width: 300px !important;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background-position: 15px center;
    background-repeat: no-repeat;
    color: #fff;
    opacity: 1;
    border: none
}

.alert-box>:hover {
    -moz-box-shadow: 0 0 5px #000;
    -webkit-box-shadow: 0 0 5px #000;
    box-shadow: 0 0 5px #000;
    opacity: 1;
    cursor: pointer
}

.alert-box button.close {
    position: absolute;
    padding: 0;
    cursor: pointer;
    -webkit-appearance: none;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    -os-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1px solid #fff;
    background: #fff;
    text-align: center;
    color: #000;
    outline: none;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

}
.alert-box button.close i{
    font-size: 17px;
}

.alert-box .title {
    font-weight: 700;
    text-transform: capitalize
}

.alert-box .message {
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    margin-right: 28px
}

.alert-box .alert>i {
    position: absolute;
    top: 50%;
    left: 10px;
    font-size: 25px;
    top: 50%;
    transform: translateY(-50%);
    -os-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.alert.alert-success {
    background-color: #51a351
}

.alert.alert-warning {
    background-color: #ca9900
}

.alert.alert-error {
    background-color: #bd362f
}

@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-20px)}100%{opacity:1;-webkit-transform:translateY(0)}}@keyframes fadeInDown{0%{opacity:0;transform:translateY(-20px)}100%{opacity:1;transform:translateY(0)}}@-webkit-keyframes fadeOutDown{0%{opacity:1;transform:translateY(0)}100%{opacity:0;transform:translateY(20px)}}@keyframes fadeOutDown{0%{opacity:1;transform:translateY(0)}100%{opacity:0;transform:translateY(20px)}}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}

.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}


.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}
.text-underline{
    text-decoration: underline !important;
}
.text-font2, .title{
    font-family: var(--font2), serif;
}
.text1line,
.text2line,
.text3line,
.text4line {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden
}

.text2line {
    -webkit-line-clamp: 2
}

.text3line {
    -webkit-line-clamp: 3
}

.text4line {
    -webkit-line-clamp: 4
}

.c1 {color: var(--c1) !important}
.c2 {color: var(--c2) !important}
.c3 {color: var(--c3) !important}
.c4 {color: var(--c4) !important}

.bg-c1 {background-color: var(--c1) !important}
.bg-c2 {background-color: var(--c2) !important}
.bg-c3 {background-color: var(--c3) !important}
.bg-c4 {background-color: var(--c4) !important}

.grey{
    color: var(--grey)
}
.grey2{
    color: var(--grey)
}
.bg-grey{
    background-color: var(--grey) !important;
}
.bg-grey2{
    background-color: #ededed !important;
}
.bg-grey3{
    background-color: #f3f3f3 !important;
}
.text-black{
    color: #111;
}
.border-color-c1{border-color: var(--c1) !important}
.border-color-c2{border-color: var(--c2) !important}
.border-color-c3{border-color: var(--c3) !important}
.border-color-c4{border-color: var(--c4) !important}
.thumbnail-fill{
    position: relative;
    display: inline-block;
    width: 100%;
    overflow: hidden;
    padding-bottom: 60%;
}

.fill-40{
    padding-bottom: 40%;
}
.fill-50{
    padding-bottom: 50%;
}
.fill-90{
    padding-bottom: 90%;
}
.fill-80{
    padding-bottom: 80%;
}
.fill-100{
    padding-bottom: 100%;
}

.thumbnail-fill img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -os-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    height: 100%;
    width: 100%;
    vertical-align: middle;
    object-position: center;
    object-fit: cover;
    transition: all 0.3s;
}
.thumbnail-scale:hover .thumbnail-fill img {
    transform: scale(1.02);
    -webkit-transform: scale(1.02) translate(-50%, -50%);
    -moz-transform: scale(1.02) translate(-50%, -50%);
    -o-transform: scale(1.02) translate(-50%, -50%);
    -ms-transform: scale(1.02) translate(-50%, -50%);
}
.fill-height{
    padding: 0 !important;
    height: 300px !important
}


.show-pass {
    position: absolute;
    top: 52%;
    right: 0;
    transform: translate(-50%, -50%);
    -os-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    z-index: 99;
    align-items: center;
    text-align: center;
    outline: none;
    display: flex;
}
.show-pass>i {
    font-size: 18px
}

.show-pass:hover {
    color: #00BCD4
}

.x10{width: 10px !important;min-width: 10px;}
.x20{width: 20px !important;min-width: 20px;}
.x25{width: 25px !important;min-width: 25px;}
.x30{width: 30px !important;min-width: 30px;}
.x35{width: 35px !important;min-width: 35px;}
.x40{width: 40px !important;min-width: 40px;}
.x50{width: 50px !important;min-width: 50px;}
.x60{width: 60px !important;min-width: 60px;}
.x70{width: 70px !important;min-width: 70px;}
.x80{width: 80px !important;min-width: 80px;}
.x90{width: 90px !important;min-width: 90px;}
.x100{width: 100px !important;min-width: 100px !important;}
.x120{width: 120px !important;min-width: 120px !important;}
.x150{width: 150px !important;min-width: 150px !important;}
.x200{width: 200px !important;min-width: 200px !important;}

.y10{height: 10px !important;min-height: 10px;}
.y20{height: 20px !important;min-height: 20px;}
.y25{height: 25px !important;min-height: 25px;}
.y30{height: 30px !important;min-height: 30px;}
.y35{height: 35px !important;min-height: 35px;}
.y40{height: 40px !important;min-height: 40px;}
.y50{height: 50px !important;min-height: 50px;}
.y60{height: 50px !important;min-height: 60px;}
.y70{height: 70px !important;min-height: 70px;}
.y80{height: 80px !important;min-height: 80px;}
.y90{height: 90px !important;min-height: 90px;}
.y100{height: 100px !important;min-height: 100px;}
.y150{height: 150px !important;min-height: 150px !important;}
.y200{height: 200px !important;min-height: 200px !important;}
.rounded2{
    border-radius: 8px !important;
}
.rounded-large{
    border-radius: 30px !important;
}
.center-absolute{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -os-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}
.box-center{
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
@media screen and (min-width: 992px){
    .form-control-xl{
        height: 50px;
    }
    .border-lg-left{
        border-left: 1px solid #dee2e6 !important;
    }
}

.form-control{
    font-family: var(--font2), serif;
    outline: none !important;
    box-shadow: none !important;
}
.form-control:focus:not(:disabled):not(:read-only){
    border: 1px solid #6c6c6c !important;
}
input.form-control, textarea.form-control, select.form-control{
    background-color: #fff;
}
.line{
    height: 4px;
    display: block;
    background-color: var(--c1);
    width: 70px;
}



.popup.active {
    opacity: 1;
    visibility: visible;
    z-index: 99999;
}
.popup{
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    align-items: center;
    display: flex;
    justify-content: center;
    transition: all 0.3s;
    user-select: none;
}
.popup .backdrop{
    position: fixed;
    z-index: 0;
    background: rgb(0 0 0 / 80%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.content-popup{
    width: 1100px;
    max-width: 95%;
    margin: 0 AUTO;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.content-popup.popup-md{
    width: 400px;
}
.content-popup.popup-xl{
    width: 700px;
}
.popup-area{
    background-color: #fff;;
}
.popup .closepopup{
    position: absolute;
    right: 8px;
    top: 8px;
    cursor: pointer;
    z-index: 9;
}
.closepopup.black rect{
    fill: #000;
}








.zoom-image .thumbnail {
position: relative;
overflow: hidden
}

.zoom-image .thumbnail img {
max-width: 100%;
width: 100%;
transition: all .5s ease-out;
-webkit-transition: all .5s ease-out;
-moz-transition: all .5s ease-out;
-ms-transition: all .5s ease-out;
-o-transition: all .5s ease-out
}

.zoom-image:hover .thumbnail img {
transform: scale(1.05);
-webkit-transform: scale(1.05);
-moz-transform: scale(1.05);
-o-transform: scale(1.05);
-ms-transform: scale(1.05)
}
.shadow-small{
    box-shadow: 0 2px 10px rgba(0, 0, 0, .15) !important;
}
.row0 {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-right: 0;
margin-left: 0
}

.row0>[class*="col-"] {
padding-right: 0;
padding-left: 0
}

.row1 {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-right: -1px;
margin-left: -1px
}

.row1>[class*="col-"] {
padding-right: 1px;
padding-left: 1px
}

.row2 {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-right: -2px;
margin-left: -2px
}

.row2>[class*="col-"] {
padding-right: 2px;
padding-left: 2px
}

.row3 {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-right: -3px;
margin-left: -3px
}

.row3>[class*="col-"] {
padding-right: 3px;
padding-left: 3px
}

.row4 {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-right: -4px;
margin-left: -4px
}

.row4>[class*="col-"] {
padding-right: 4px;
padding-left: 4px
}

.row5 {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-right: -5px;
margin-left: -5px
}

.row5>[class*="col-"] {
padding-right: 5px;
padding-left: 5px
}

.row6 {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-right: -6px;
margin-left: -6px
}

.row6>[class*="col-"] {
padding-right: 6px;
padding-left: 6px
}

.row7 {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-right: -7px;
margin-left: -7px
}

.row7>[class*="col-"] {
padding-right: 7px;
padding-left: 7px
}

.row8 {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-right: -8px;
margin-left: -8px
}

.row8>[class*="col-"] {
padding-right: 8px;
padding-left: 8px
}

.row9 {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-right: -9px;
margin-left: -9px
}

.row9>[class*="col-"] {
padding-right: 9px;
padding-left: 9px
}

.row10 {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-right: -10px;
margin-left: -10px
}

.row10>[class*="col-"] {
padding-right: 10px;
padding-left: 10px
}

.row12 {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-right: -12px;
margin-left: -12px
}

.row12>[class*="col-"] {
padding-right: 12px;
padding-left: 12px
}

.row15 {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-right: -15px;
margin-left: -15px
}

.row15>[class*="col-"] {
padding-right: 15px;
padding-left: 15px
}

.row20 {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-right: -20px;
margin-left: -20px
}

.row20>[class*="col-"] {
padding-right: 20px;
padding-left: 20px
}

@media screen and (min-width:1200px) {
.col-5-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%
}

.col-7-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 14.28%;
    flex: 0 0 14.28%;
    max-width: 14.28%
}
}

.text-normal{
font-size: 16px;
}
.text-small, .text-small>*{
font-size: 15px !important
}

.text-small2 {
font-size: 12px !important
}

.text-small3 {
font-size: 12px !important
}

.text-big {
font-size: 18px !important
}

.text-big2 {
font-size: 20px !important
}

.text-big3 {
font-size: 25px !important
}

.text-big4 {
font-size: 28px !important
}

.text-big5 {
font-size: 35px !important
}

.text-big6 {
font-size: 40px !important
}

.text-big7 {
font-size: 48px !important
}

.text-big8 {
font-size: 60px !important
}

.text-big9 {
font-size: 75px !important
}

.text-big10 {
font-size: 120px !important
}

.text-big11 {
font-size: 90px !important
}
@media screen and (max-width:1200px) {
.text-big10 {
    font-size: 100px !important
}

.text-big11 {
    font-size: 75px !important
}
}

@media screen and (max-width:992px) {
.text-big {
    font-size: 17px !important
}

.text-big2 {
    font-size: 18px !important
}

.text-big3 {
    font-size: 21px !important
}

.text-big4 {
    font-size: 23px !important
}

.text-big5 {
    font-size: 28px !important
}

.text-big6 {
    font-size: 32px !important
}

.text-big7 {
    font-size: 36px !important
}

.text-big8 {
    font-size: 40px !important
}

.text-big9 {
    font-size: 45px !important
}

.text-big10 {
    font-size: 80px !important
}
}

@media screen and (max-width:765px) {
.text-big2 {
    font-size: 17px !important
}
.text-big3 {
    font-size: 19px !important
}
.text-big4 {
    font-size: 22px !important
}
.text-big5 {
    font-size: 25px !important
}
.text-big6 {
    font-size: 28px !important
}
.text-big7 {
    font-size: 30px !important
}
.text-big8 {
    font-size: 35px !important
}
.text-big9 {
    font-size: 40px !important
}
}
.weight-300 {
font-weight: 300 !important
}
.weight-400 {
font-weight: 400 !important
}
.weight-500 {
font-weight: 500 !important
}
.weight-600 {
font-weight: 600 !important
}
.weight-700 {
font-weight: 700 !important
}
.weight-900 {
font-weight: 900 !important
}
input[type=checkbox], input[type=radio] {
border: 1px solid #8c8f94;
border-radius: 4px;
background: #fff;
color: #50575e;
clear: none;
cursor: pointer;
display: inline-block;
line-height: 0;
height: 1rem;
margin-left: -1.25rem;
margin-top: 2px;
outline: 0;
padding: 0 !important;
text-align: center;
vertical-align: middle;
width: 1rem;
min-width: 1rem;
-webkit-appearance: none;
box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
transition: .05s border-color ease-in-out;
}
input[type=radio] {
border-radius: 50%;
margin-right: .25rem;
line-height: .71428571
}


input[type=checkbox]:checked::before,input[type=radio]:checked::before {
float: left;
display: inline-block;
vertical-align: middle;
width: 1rem;
speak: never;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale
}

input[type=checkbox]:checked::before {
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%233582c4%27%2F%3E%3C%2Fsvg%3E");
margin: -.1875rem 0 0 -.25rem;
height: 1.3125rem;
width: 1.3125rem
}

input[type=radio]:checked::before {
    content: "";
    border-radius: 50%;
    width: .5rem;
    height: .5rem;
    margin: .1875rem;
    background-color: #3582c4;
    line-height: 1.14285714
}

.btn{
    background-color: var(--c1);
    color: #fff;
    font-size: 15px;
}
.btn:hover{
    box-shadow: 2px 1px 10px 1px #72727273;
    color: #fff;
}
.text-black{
    color: #111 !important;
}
img {
    max-width: 100%;
    max-height: 100%
}

.font-icon{
    font-family: var(--font-icon);
}

.mr-last:last-child{
    margin-right: 0 !important;
}
.mb-last:last-child{
    margin-bottom: 0 !important;;
}
/* call botton */
a.draggable{touch-action:none;position:fixed;bottom:30px;left:40px;visibility:hidden;background-color:transparent;width:100px;height:100px;cursor:pointer;z-index:200000!important;-webkit-backface-visibility:hidden;-webkit-transform:translateZ(0);-webkit-transition:visibility .5s;-moz-transition:visibility .5s;-o-transition:visibility .5s;transition:visibility .5s;visibility:visible}.draggable.is-pointer-down .draggable-icon,.draggable:hover .draggable-icon{background-color:#7fe6a0}.draggable.is-pointer-down .draggable-bd,.draggable:hover .draggable-bd{background-color:rgba(18,242,0,.5)}.draggable.is-pointer-down .draggable-bg,.draggable:hover .draggable-bg{border:2px solid #12f200}a.draggable .draggable-icon {width:55px;height:55px;top:24px;left:23px;position:absolute;background: #00aff2 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAACXBIWXMAAAsTAAALEwEAmpwYAAABNmlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjarY6xSsNQFEDPi6LiUCsEcXB4kygotupgxqQtRRCs1SHJ1qShSmkSXl7VfoSjWwcXd7/AyVFwUPwC/0Bx6uAQIYODCJ7p3MPlcsGo2HWnYZRhEGvVbjrS9Xw5+8QMUwDQCbPUbrUOAOIkjvjB5ysC4HnTrjsN/sZ8mCoNTIDtbpSFICpA/0KnGsQYMIN+qkHcAaY6addAPAClXu4vQCnI/Q0oKdfzQXwAZs/1fDDmADPIfQUwdXSpAWpJOlJnvVMtq5ZlSbubBJE8HmU6GmRyPw4TlSaqo6MukP8HwGK+2G46cq1qWXvr/DOu58vc3o8QgFh6LFpBOFTn3yqMnd/n4sZ4GQ5vYXpStN0ruNmAheuirVahvAX34y/Axk/96FpPYgAAACBjSFJNAAB6JQAAgIMAAPn/AACA6AAAUggAARVYAAA6lwAAF2/XWh+QAAAB/ElEQVR42uya7W3CMBCG31QM4A1aNggTlG6QbpBMkHYC1AloJ4BOABuEDcgGtBOETnD9c1ERCH/lwxeaV8oPFGP86Hy+DxMREW5Bd7gRjSDSNGn4/RiAOvm8C0ZCRD5PSkQVXSr1nK/xE3mcWimA1ZV3JYBZCIO4giQANoYxMwYS6+xKY4lT5dJPreWZY+uspqSCKPYN27GJVBDXheVSQe494ksiEWTuMXcu1dld9SARxDX1OAJ4lgjy4zDnFsC076A4adEiRwAZg4hOUSpNoCsBPDGM+HqkNGynYBCuILuWj+dgWysGsNe8nwL4GsrW0m2fxZBq9rW0rNcX5MOQ9eZD8JFahcG5g/iKT671alGAYQggpYWvpEPYWrU/HDTOfeRIX0q2SL3QN4tGhZJukVobQyXYWw7WtLDKDIuM+ZSzscyCE9PCy5IttCvnZNaeiGLNHKuz8ZVh/MXTVu/1xQKmIqLEAuJ0fNo3iG5B51oSkeKnsBi/4bG9gYB/lCytU5G9DryFW+3Gm+JLwU7ehbJrwTjq4DJU8bHcVbEV9dXXqqP6uqO5e2/QZRYJpqu2IUAA4B3tXvx8hgKp05QZW6dJqrLTNkB6vrRURLRwPHqtYgkC3cLWQAcDQGGKH13FER/NATzi786+BPDNjm1dMkfjn2pGkBHkf4D8DgBJDuDHx9BN+gAAAABJRU5ErkJggg==) no-repeat center center;-webkit-border-radius:100%;-moz-border-radius:100%;border-radius:100%;opacity:.7;box-sizing:initial;-webkit-animation:draggable-circle-img-anim 1s infinite ease-in-out;-moz-animation:draggable-circle-img-anim 1s infinite ease-in-out;-ms-animation:draggable-circle-img-anim 1s infinite ease-in-out;-o-animation:draggable-circle-img-anim 1s infinite ease-in-out;animation:draggable-circle-img-anim 1s infinite ease-in-out;-webkit-transform-origin:50% 50%;-moz-transform-origin:50% 50%;-ms-transform-origin:50% 50%;-o-transform-origin:50% 50%;transform-origin:50% 50%}a.draggable .draggable-bd{width:90px;height:90px;top:6px;left:5px;position:absolute;background-color:#000;-webkit-border-radius:100%;-moz-border-radius:100%;opacity:.75!important;background-color:rgba(0,175,238,.62);border-radius:100%;opacity:.1;-webkit-animation:draggable-circle-fill-anim 2.3s infinite ease-in-out;-moz-animation:draggable-circle-fill-anim 2.3s infinite ease-in-out;-ms-animation:draggable-circle-fill-anim 2.3s infinite ease-in-out;-o-animation:draggable-circle-fill-anim 2.3s infinite ease-in-out;animation:draggable-circle-fill-anim 2.3s infinite ease-in-out;-webkit-transition:all .5s;-moz-transition:all .5s;-o-transition:all .5s;transition:all .5s;-webkit-transform-origin:50% 50%;-moz-transform-origin:50% 50%;-ms-transform-origin:50% 50%;-o-transform-origin:50% 50%;transform-origin:50% 50%}.draggable-bg{width:100px;height:100px;top:0;left:0;position:absolute;background-color:transparent;-webkit-border-radius:100%;-moz-border-radius:100%;opacity:.5;border-radius:100%;border:2px solid #00aff2;opacity:.1;-webkit-animation:draggable-circle-anim 1.2s infinite ease-in-out;-moz-animation:draggable-circle-anim 1.2s infinite ease-in-out;-ms-animation:draggable-circle-anim 1.2s infinite ease-in-out;-o-animation:draggable-circle-anim 1.2s infinite ease-in-out;animation:draggable-circle-anim 1.2s infinite ease-in-out;-webkit-transition:all .5s;-moz-transition:all .5s;-o-transition:all .5s;transition:all .5s;-webkit-transform-origin:50% 50%;-moz-transform-origin:50% 50%;-ms-transform-origin:50% 50%;-o-transform-origin:50% 50%;transform-origin:50% 50%}.phone_text{position: absolute;bottom: -4px;left: 50%;width: max-content;background: #ffe800;color: #000;padding: 2px 9px;border-radius: 4px;font-size: 13px;transform: translateX(-50%);-os-transform: translateX(-50%);-o-transform: translateX(-50%);-moz-transform: translateX(-50%);-webkit-transform: translateX(-50%);}@-moz-keyframes draggable-circle-img-anim{0%{transform:rotate(0) scale(1) skew(1deg)}10%{-moz-transform:rotate(-25deg) scale(1) skew(1deg)}20%{-moz-transform:rotate(25deg) scale(1) skew(1deg)}30%{-moz-transform:rotate(-25deg) scale(1) skew(1deg)}40%{-moz-transform:rotate(25deg) scale(1) skew(1deg)}50%{-moz-transform:rotate(0) scale(1) skew(1deg)}100%{-moz-transform:rotate(0) scale(1) skew(1deg)}}@-webkit-keyframes draggable-circle-img-anim{0%{-webkit-transform:rotate(0) scale(1) skew(1deg)}10%{-webkit-transform:rotate(-25deg) scale(1) skew(1deg)}20%{-webkit-transform:rotate(25deg) scale(1) skew(1deg)}30%{-webkit-transform:rotate(-25deg) scale(1) skew(1deg)}40%{-webkit-transform:rotate(25deg) scale(1) skew(1deg)}50%{-webkit-transform:rotate(0) scale(1) skew(1deg)}100%{-webkit-transform:rotate(0) scale(1) skew(1deg)}}@-o-keyframes draggable-circle-img-anim{0%{-o-transform:rotate(0) scale(1) skew(1deg)}10%{-o-transform:rotate(-25deg) scale(1) skew(1deg)}20%{-o-transform:rotate(25deg) scale(1) skew(1deg)}30%{-o-transform:rotate(-25deg) scale(1) skew(1deg)}40%{-o-transform:rotate(25deg) scale(1) skew(1deg)}50%{-o-transform:rotate(0) scale(1) skew(1deg)}100%{-o-transform:rotate(0) scale(1) skew(1deg)}}@-moz-keyframes draggable-circle-fill-anim{0%{transform:rotate(0) scale(.7) skew(1deg);opacity:.2}50%{transform:rotate(0) scale(1) skew(1deg);opacity:.2}100%{transform:rotate(0) scale(.7) skew(1deg);opacity:.2}}@-webkit-keyframes draggable-circle-fill-anim{0%{transform:rotate(0) scale(.7) skew(1deg);opacity:.2}50%{transform:rotate(0) scale(1) skew(1deg);opacity:.2}100%{transform:rotate(0) scale(.7) skew(1deg);opacity:.2}}@-o-keyframes draggable-circle-fill-anim{0%{transform:rotate(0) scale(.7) skew(1deg);opacity:.2}50%{transform:rotate(0) scale(1) skew(1deg);opacity:.2}100%{transform:rotate(0) scale(.7) skew(1deg);opacity:.2}}@keyframes draggable-circle-fill-anim{0%{transform:rotate(0) scale(.7) skew(1deg);opacity:.2}50%{transform:rotate(0) scale(1) skew(1deg);opacity:.2}100%{transform:rotate(0) scale(.7) skew(1deg);opacity:.2}}@-moz-keyframes draggable-circle-anim{0%{-moz-transform:rotate(0) scale(.5) skew(1deg);opacity:.1;-moz-opacity:.1;-webkit-opacity:.1;-o-opacity:.1}30%{-moz-transform:rotate(0) scale(.7) skew(1deg);opacity:.5;-moz-opacity:.5;-webkit-opacity:.5;-o-opacity:.5}100%{-moz-transform:rotate(0) scale(1) skew(1deg);opacity:.6;-moz-opacity:.6;-webkit-opacity:.6;-o-opacity:.1}}@-webkit-keyframes draggable-circle-anim{0%{-webkit-transform:rotate(0) scale(.5) skew(1deg);-webkit-opacity:.1}30%{-webkit-transform:rotate(0) scale(.7) skew(1deg);-webkit-opacity:.5}100%{-webkit-transform:rotate(0) scale(1) skew(1deg);-webkit-opacity:.1}}@-o-keyframes draggable-circle-anim{0%{-o-transform:rotate(0) kscale(.5) skew(1deg);-o-opacity:.1}30%{-o-transform:rotate(0) scale(.7) skew(1deg);-o-opacity:.5}100%{-o-transform:rotate(0) scale(1) skew(1deg);-o-opacity:.1}}

/*group-button*/
.group-button{position:fixed;bottom:90px;left:20px;z-index:99999}.group-button.right{right:3px;left:auto;bottom:70px}.group-button .item{position:relative;left:10px;margin-bottom:15px}.group-button .item:last-child{margin-bottom: 0}.group-button .item:before{content:"";border:1px solid var(--c1);background-color:rgba(27,127,204,.8);border-radius:100%;display:block;position:absolute;z-index:-1;height:100%;width:100%;opacity:1;-moz-animation:sonar 1.25s linear infinite;-o-animation:sonar 1.25s linear infinite;-webkit-animation:sonar 1.25s linear infinite;animation:sonar 1.25s linear infinite}.group-button.right .item{right:10px;left:auto}.group-button .item img{width:45px;height:45px;border-radius:50%}.group-button .item .text{opacity:0;visibility:hidden;text-align:center;border-radius:5px;white-space:nowrap;width:auto;line-height:25px;padding:5px 10px;position:absolute;top:4px;font-size:12px;color:#fff;cursor:pointer;background-color:#314282b3;left:110%}.group-button.right .item .text{right:110%;left:auto}.group-button .item .text:before{content:"";position:absolute;top:50%;margin-top:-5px;border-width:5px;border-style:solid;border-color:transparent #314282b3 transparent transparent!important;right:100%;display:unset!important}.group-button.right .item .text:before{right:auto;left:100%;transform:rotateZ(-180deg)}.group-button .item:hover .text{visibility:visible;opacity:1}@media only screen and (max-device-width:991px){.group-button .item .text{display:none}}@-webkit-keyframes sonar{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}100%{-webkit-transform:scale(2);transform:scale(2);opacity:0}}@keyframes sonar{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}100%{-webkit-transform:scale(2);transform:scale(2);opacity:0}}

/*BackToTop*/
#BackToTop{overflow:hidden;position:fixed;z-index:90;right:10px;bottom:10px;display:none;width:44px;height:44px;color:#fff;text-align:center;background-color:rgba(121,121,121,.65);border-radius:50%;font-size:18px;line-height:44px;cursor:pointer;-webkit-transform:translateZ(0);transition:all .5s}#BackToTop:hover{box-shadow:0 0 12px hsl(0deg 0% 47.1% / 76%)}

/*theh*/
.theh marquee *{display:inline;font-size:14px;margin:0 5px;padding:0;line-height:20px;color:#fff;font-weight:400}.theh marquee{text-align:left;background:none;color:#fff;line-height:30px;font-size:13px!important;display:block;font-family:var(--font)}

/*zoom*/
.zoom-image img {
    max-width: 100%;
    width: 100%;
    transition: all .5s ease-out;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -ms-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
}
.zoom-image:hover img {
    transform: scale(1.12);
    -webkit-transform: scale(1.12);
    -moz-transform: scale(1.12);
    -o-transform: scale(1.12);
    -ms-transform: scale(1.12);
}

.full-img img, img.full-img{
    width: 100%;
    max-width: 100%;
}
/*image right auto cover to left text*/
.thumbnail{
    padding-top: 70%;
    position: relative;
    height: auto;
    overflow: hidden;
    background-position: 50% 50%;
    background-size: cover;
    margin-bottom: 8px;
}
.thumbnail img{
    object-fit: cover;
    position: absolute;
    object-position: 50% 50%;
    right: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    border-radius: 4px;
    transition: all .6s ease-out;
    -webkit-transition: all .6s ease-out;
    -moz-transition: all .6s ease-out;
    -ms-transition: all .6s ease-out;
    -o-transition: all .6s ease-out;
}
.thumbnail:hover img {
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.thumbnail > a::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
}
.thumbnail > a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
}
.thumbnail:hover > a::after {
    height: 0;
    top: 50%;
    bottom: 50%;
    background: rgba(255,255,255,0.3);
}
.thumbnail:hover > a::before {
    right: 50%;
    left: 50%;
    width: 0;
    background: rgba(255,255,255,0.3);
}


/*video play*/
.video-Container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.video-Container iframe {
  /* optional */
  width: 100%;
  height: 100%;
}
.row0{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:0;margin-left:0}.row0>[class*="col-"]{padding-right:0;padding-left:0}
.row1{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-1px;margin-left:-1px}.row1>[class*="col-"]{padding-right:1px;padding-left:1px}
.row2{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-2px;margin-left:-2px}.row2>[class*="col-"]{padding-right:2px;padding-left:2px}
.row3{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-3px;margin-left:-3px}.row3>[class*="col-"]{padding-right:3px;padding-left:3px}
.row4{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-4px;margin-left:-4px}.row4>[class*="col-"]{padding-right:4px;padding-left:4px}
.row5{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.row5>[class*="col-"]{padding-right:5px;padding-left:5px}
.row6{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-6px;margin-left:-6px}.row6>[class*="col-"]{padding-right:6px;padding-left:6px}
.row7{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-7px;margin-left:-7px}.row7>[class*="col-"]{padding-right:7px;padding-left:7px}
.row8{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-8px;margin-left:-8px}.row8>[class*="col-"]{padding-right:8px;padding-left:8px}
.row9{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-9px;margin-left:-9px}.row9>[class*="col-"]{padding-right:9px;padding-left:9px}
.row10{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-10px;margin-left:-10px}.row10>[class*="col-"]{padding-right:10px;padding-left:10px}
.row15{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.row15>[class*="col-"]{padding-right:15px;padding-left:15px}
.row20{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-20px;margin-left:-20px}.row20>[class*="col-"]{padding-right:20px;padding-left:20px}
@media screen and (min-width: 1200px){
    .col-5{
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}
.text2line{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.text1line{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
@media screen and (min-width: 1250px){
    .container{
        max-width: 1200px;
    }
}
.list-inline>li {
    display: inline-block;
    padding-right: 5px;
    padding-left: 5px;
}
figure.image{
    text-align: center;
    margin-bottom: 15px;
}


/*Icon share*/
.share-area {
    width: 100%;
    display: inline-block;
    align-items: center;
    font-size: .85em;
    margin-left: auto;
    margin-right: auto;
}
.share-area a{
    width: 35px;
    height: 35px;
    display: inline-block;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
    opacity: 1;
    margin-right: 0.12em;
    border: 2px solid currentColor;
    background-color: transparent;
    border-radius: 50%;
    object-fit: cover;
    font-size: 1.2em;
    line-height: 34px;
    position: relative;
    margin-right: 5px;
}
.share-area a i{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -os-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}
.facebook:hover {
    color: #3a589d;
}
.twitter:hover {
    color: #2478ba;
}
.email:hover {
    color: #111;
}
.pinterest:hover {
    color: #cb2320;
}
.linkedin:hover {
    color: #0072b7;
}


.box-tablink{
    border-radius: 25px;
}
.tablinks {
    cursor: pointer;
    white-space: nowrap;
    border-radius: 25px;
    color: #111;
    padding: 10px 25px;
    border: 1px solid transparent;
    transition: all .3s;
}
.tablinks.active, .tablinks:hover{
    background-color: var(--c1);
    border-color: var(--c1);
    color: #fff
}
.tabcontent {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    opacity: 1;
    animation-name: fadeInOpacity;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 0.6s;
    display: none
}
.tablinks{cursor: pointer}
@keyframes fadeInOpacity{0%{opacity:0}50%{opacity:.5}100%{opacity:1}}
.tabcontent.current {
    display: block
}

/*pagination*/
.tablenav{
    display: inline-block;
    width: 100%;
    margin: 0 auto;
    margin-top: 10px !important;
    display: block;

}
.tablenav ul{list-style: none;}
.tablenav li>a, .tablenav li>span {
    display: block;
    position: relative;
    height: 30px;
    width: 30px;
    border-radius: 4px;
    color: #000;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid var(--c1) !important;
    margin-right: 2px;
    transition: all 0.2s;
    z-index: 0 !important;
    font-size: 14px;
}
.tablenav li>a>span, .tablenav li>span>span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -os-transform: translateX(-50%, -50%);
    -o-transform: translateX(-50%, -50%);
    -moz-transform: translateX(-50%, -50%);
    -webkit-transform: translateX(-50%, -50%);
}
.tablenav li>a:hover, .tablenav li.current a, .tablenav li>span:hover, .tablenav li.current>span{
    background-color: var(--c1) !important;
    color: #000;
}
.tablenav li span i{
    font-size: 12px;
}
.tablenav-paging-text{
    font-size: 13px;
}



/*postbox*/
.postbox, .stuffbox {
    margin-bottom: 20px;
    padding: 0;
}
.postbox {
    position: relative;
}

.postbox .postbox-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 18px;
    color: #111;
    background-color: var(--grey2);
    transition: all 0.3s;
    line-height: 1;
}
.postbox:not(.hide) .postbox-header{
    border-bottom: 0;
}
.postbox>.inside{
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
    width: 100%;
    opacity: 1;
}
.postbox.hide>.inside{
    display: none;
    opacity: 0;
}

.handle-actions{
    position: relative;
    height: 25px;
    width: 25px;
    cursor: pointer;
    transition: all 0.3s;
    margin-right: 5px;
}
.handle-actions i{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -os-transform: translateX(-50%, -50%);
    -o-transform: translateX(-50%, -50%);
    -moz-transform: translateX(-50%, -50%);
    -webkit-transform: translateX(-50%, -50%);
}
.handle-actions:hover{
    color: var(--c2);
}
.postbox:not(.hide)>.postbox-header>.handle-actions{
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}







/* HEADER */
header.head{
    font-family: var(--font2), serif;
    font-weight: 500;
}
.head-logo{
    display: inline-block;
    padding: 5px;
}
.head-logo img{
    max-height: 80px;
    width: auto;
}


.trigger {
    position: absolute;
    z-index: 99;
    top: 50%;
    left: 0;
    width: 22px;
    transform: translateY(-50%);
    -os-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
.trigger span{
    width: 28px;
    height: 3px;
    background-color: #bd8712;
    display: block;
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    border-radius: 1px;
    margin-bottom: 4px;
    border-radius: 2px;
}
.trigger span:nth-child(2) {
    width: 15px;
}
.trigger span:last-child {
    margin-bottom: 0
}

@media screen and (max-width: 992px) {
    .head-account {
        position: absolute !important;
        z-index: 99;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        -os-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
    }
    .mini-cart{
        position: absolute !important;
        z-index: 99;
        top: 50%;
        right: 45px;
        transform: translateY(-50%);
        -os-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
    }
}


@media screen and (max-width: 992px){
    .main-header{
        padding: 0px 0;
    }
    .main-header{
        border-bottom: 1px solid #ccc;
    }
    .main-header .logo img{
        height: 80px;
        width: auto;
    }
}
.pointer{cursor: pointer;}






/* MENU */
.main-menu{
    text-align: center;
    margin: 0 auto;
}

.main-menu ul.menu>li {
    font-size: 14px;
    letter-spacing: .2px;
    font-weight: 700;
    display: inline-flex;
    position: relative;
}

.main-menu a {
    color: #000;
    padding: 15px 10px;
    font-weight: 400;
    transition: all .3s;
    text-decoration: none;
    font-size: 15px;
    position: relative;
}
.main-menu > .menu > li>a {
    text-transform: uppercase;
}
.main-menu ul.menu a:hover, .main-menu ul.menu .current-menu-item>a, .main-menu ul.menu .current-menu-ancestor>a {
    font-weight: 700;
    color: var(--c1);
}
.main-menu .menu>.has-children>a:after {
    content: "\f107";
    font-family: "Font Awesome 6 Pro";
    margin-left: 5px;
    font-size: 12px;
}
.main-menu .sub-menu {
    display: block;
    background-color: #fff;
    opacity: 0;
    filter: alpha(opacity=0);
    visibility: hidden;
    -moz-transition: .2s ease-out;
    -o-transition: .2s ease-out;
    -webkit-transition: .2s ease-out;
    -ms-transition: .2s ease-out;
    transition: .2s ease-out;
    -moz-transform: translateY(20px);
    -o-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    border: none;
    border-radius: 0;
    box-shadow: 5px 10px 20px rgba(0, 0, 0, .15);
    min-width: 250px;
    padding: 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    float: left;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
}
.main-menu .sub-menu .sub-menu{
    top: 0;
    left: 100%;
}
.main-menu .has-children:hover>.sub-menu {
    opacity: 1;
    filter: alpha(opacity=100);
    visibility: visible;
    -moz-transition: .3s ease-in;
    -o-transition: .3s ease-in;
    -webkit-transition: .3s ease-in;
    -ms-transition: .3s ease-in;
    transition: .3s ease-in;
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
    display: block;
    margin-top: 0
}
.main-menu .sub-menu li{
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eef2f5;
    color: #a5b4be;
}
.main-menu .sub-menu a{
    font-size: 14px;
    text-transform: none;
    font-weight: 600;
    display: block;
    padding: 10px 18px;
}
.main-menu .sub-menu a:hover{
    background: #fbfbfb;
}





.menu-mobile.opened .main-menu-mobile {
    transform: translateX(0)
}

.menu-mobile .main-menu-mobile {
    position: fixed;
    z-index: 99999;
    background-color: #fff;
    transition: transform .5s cubic-bezier(.7, 0, .3, 1) 0s;
    width: 20rem;
    max-width: 100%;
    bottom: 0;
    text-align: left;
    top: 0;
    overflow-y: auto;
    transform: translateX(-20rem);
    left: -20rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 1.25rem;
    padding-right: 38px;
}

.menu-mobile .bg {
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    content: "";
    position: fixed;
    background: rgba(0, 0, 0, .8);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0
}
.menu-mobile.opened .bg {
    transition: all 0.3s;
    opacity: 1;
    visibility: visible;
    z-index: 9999
}
.menu-mobile .close{
    position: absolute;
    right: 10px;
    top: 10px;
}
.menu-mobile ul {
    list-style: none
}
.menu-mobile ul.menu li {
    display: block;
    width: 100%;
    position: relative;
    padding: 5px 0;
    font-size: 16px;
     border-bottom: 1px solid #ededed38;
}
.menu-mobile ul.menu li:last-child {
    border-bottom: none;
}
.menu-mobile .sub-menu {
    visibility: hidden;
    display: none;
    opacity: 0;
    padding: 0;
    margin-left: 20px
}
.menu-mobile .show>.sub-menu {
    visibility: visible;
    opacity: 1;
    animation-name: fadeInOpacity;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 1s
}
.menu-mobile ul.menu i {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 999;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    transition: all 0.3s;
    font-size: 17px;
}
.menu-mobile ul.menu>li .show i {
    transform: rotate(90deg)
}
.menu-mobile ul.menu i:after {
    content: "\f107";
    display: inline-block;
    font-family: var(--font-icon);
    font-style: normal;
}
.menu-mobile ul.menu>li>a {
    position: relative
}
.menu-mobile a:hover,
.menu-mobile .current-menu-item>a,
.menu-mobile .current-menu-ancestor>a {
    color: #bf7033
}
/* END MENU */



/*SEARCH*/
.head-meta{
    position: relative;
}
.head-meta .meta-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: auto;
    right: -15px;
    z-index: 9999999;
    min-width: 280px;
    width: 100%;
    overflow: hidden;
    padding: 15px 15px;
    border-radius: 3px;
    color: #677279;
    background: #fff;
    border: solid 1px #dfe3e8;
    box-shadow: 0 1px 5px 2px rgb(0 0 0 / 10%);
    visibility: hidden;
    opacity: 0;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out, max-height 0s linear 0.25s, -webkit-transform 0.25s ease-in-out;
    transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out, visibility 0.25s ease-in-out, max-height 0s linear 0.25s;
    transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out, visibility 0.25s ease-in-out, max-height 0s linear 0.25s, -webkit-transform 0.25s ease-in-out;
    will-change: transform;
}
.head-meta:hover .meta-dropdown {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: opacity 0.4s cubic-bezier(0, 1, 0.4, 1), visibility 0.4s linear, -webkit-transform 0.4s cubic-bezier(0.18, 1.25, 0.4, 1);
    transition: opacity 0.4s cubic-bezier(0, 1, 0.4, 1), transform 0.4s cubic-bezier(0.18, 1.25, 0.4, 1), visibility 0.4s linear;
    transition: opacity 0.4s cubic-bezier(0, 1, 0.4, 1), transform 0.4s cubic-bezier(0.18, 1.25, 0.4, 1), visibility 0.4s linear, -webkit-transform 0.4s cubic-bezier(0.18, 1.25, 0.4, 1);
}
.head-meta .tt {
    font-size: 16px;
    color: #252a2b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    font-weight: 500;
    padding-bottom: 5px;
    padding-top: 0;
    text-align: center;
    border-bottom: 1px solid #ededed;
}
.head-search input {
    width: 100%;
    height: 43px;
}
.head-search button svg {
    width: 22px;
}
.head-search button {
    position: absolute;
    top: 0;
    right: 0;
    height: 43px;
    width: 43px;
    border: none;
    background: transparent;
    line-height: 0;
    cursor: pointer;
    outline: none;
}




/*-POST*/
.entry-title{
    font-size: 28px;
    font-weight: 500;
    color: #000;
    border-bottom: 0;
}
.post-meta{
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.post-meta ul{
    margin-bottom: 5px
}
.content-box{
    display: inline-block;
    width: 100%;
}
.entry-content a{
    color: var(--c1);
}
.entry-content a:hover{
    color: var(--c-btn);
}



.sidebar-title{
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 500;
}
.new-post .item{
    margin-bottom: 15px;
    display: inline-block;
}
.new-post .thumbnail{
    float: left;
    width: 150px;
    padding-top: 110px;
    margin-right: 10px;
}
.new-post .box{
    width: calc(100% - 160px);
    float: left;
}
.new-post .box span {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

.page-title{
    text-align: center;
    font-size: 28px;
    font-weight: 500;
    color: #000;
    border-bottom: 0;
}











/*-PRODUCT*/

.price{
    color: var(--c3);
    font-weight: 700;
    font-size: 20px;
}
.price del{
    font-size: 80%;
    color: #8f8f8f;
    font-weight: 600;
}
.price ins{
    text-decoration: none;
    margin-left: 8px;
}


.cart-count{
    position: absolute;
    left: 27px;
    top: 14px;
    background: #FFF;
    width: 17px;
    height: 17px;
    padding: 2px;
    color: #000;
    text-align: center;
    line-height: 13px;
    border-radius: 50%;
    font-size: 11px;
}

.quantity-js{
    display: flex;
    border-radius: 4px;
    width: 107px;
    border: 1px solid hsla(0, 0%, 7%, .11);
}
.quantity-js input{
    appearance: textfield;
    background: transparent;
    border: 0;
    box-shadow: none;
    color: currentColor;
    flex: 1 1 auto;
    font-size: 1em;
    font-weight: 600;
    line-height: 1;
    margin: 0;
    min-width: 40px;
    order: 2;
    padding: .4em 0;
    text-align: center;
    vertical-align: middle;
    -webkit-appearance: none;
    -moz-appearance: textfield;
}
.quantity-js input::-webkit-outer-spin-button, .quantity-js input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
.quantity-js input:focus{
    box-shadow: inset 0 0 1px 1px currentColor;
    outline: none;
}
.quantity-js button{
    background: none transparent;
    border: 0;
    box-shadow: none;
    outline: none;
    color: currentColor;
    cursor: pointer;
    font-size: .9em;
    font-style: normal;
    font-weight: 400;
    margin: 0;
    min-width: 30px;
    opacity: .6;
    padding: 0;
    text-align: center;
    text-decoration: none;
}
.quantity-js button{
    opacity: 1;
}
.quantity-js button:focus{
    box-shadow: inset 0 0 1px 1px currentColor;
    outline: none;
}
.quantity-js .minus {
    border-radius: 4px 0 0 4px;
    order: 1;
}
.quantity-js .plus{
    border-radius: 0 4px 4px 0;
    order: 3;
}


.box-input{
    position: relative;
}
.box-input input{
    padding: 1.5em .5em .5em;
    background-color: #fff;
    border: 1px solid hsla(0, 0%, 7%, .8);
    border-radius: 4px;
    box-sizing: border-box;
    color: #2b2d2f;
    font-family: inherit;
    font-size: 1em;
    height: 3.125em;
    line-height: 1em;
    margin: 0;
    min-height: 0;
    width: 100%;
    box-shadow: none;
    outline: none;
}
.box-input label{
    color: inherit;
    cursor: text;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    left: .5625em;
    letter-spacing: inherit;
    line-height: 1.5;
    margin: 0;
    max-width: calc(100% - 32px);
    overflow: hidden;
    position: absolute;
    text-decoration: inherit;
    text-overflow: ellipsis;
    text-transform: inherit;
    top: 1.562em;
    outline: none;
    transform: translateY(-50%);
    transform-origin: top left;
    transition: all .2s ease;
}

.box-input input:focus + label, .box-input.is-active label{
    top: 0;
    transform: translateY(4px) scale(.75);
}
.validate-error{
    color: var(--red);
    display: flex;
    align-items: center;
    font-size: 12px;
    margin-top: 5px;
}
.box-input:not(.error) .validate-error{display: none}

.box-input.error input{border-color: var(--c3) !important;}







.banner-area{
    padding-top: 15%;
    min-height: 200px;
    text-align: center;
    position: relative;
    background-color: #00000087;
    overflow: hidden;
}
.banner-area .bg{
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
}
.banner-area .page-title{
    color: #fff;
    position: absolute;
    z-index: 9;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -os-transform: translateX(-50%, -50%);
    -o-transform: translateX(-50%, -50%);
    -moz-transform: translateX(-50%, -50%);
    -webkit-transform: translateX(-50%, -50%);
    font-family: var(--font);
    font-weight: bold;
}
.banner-area .page-title:after{
    content: '';
    display: block;
    width: 70px;
    height: 1px;
    background-color: #fff;
    text-align: center;
    position: relative;
    left: 50%;
    margin-top: 10px;
    transform: translateX(-50%);
    -os-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}




.comment-box-title{
    font-size: 18px;
}
.item-comment:last-child{
    border-bottom: none !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}
.item-comment .thumbnail{
    width: 100px;
    padding-top: 100px;
    margin-right: 30px;
    border-radius: 50%;
}
.item-comment .name-comment{
    font-size: 16px;
    font-family: var(--font);
}
.item-comment .comment{
    color: #7c7c7c;
}
@media screen and (max-width: 765px){
    .item-comment .thumbnail{
        width: 60px;
        padding-top: 60px;
        margin-right: 20px;
    }
}





/*FOOTER*/
footer.footer{
    position: relative;
    color: #111
}
footer.footer>.bg{
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
}
.footer-area{
    padding-bottom: 20px;
    padding-top: 60px;
    position: relative;
    z-index: 9;
}
footer.footer a{
    color: #fff;
}
.about-footer{
    font-size: 13px;
    padding-top: 15px;
}
.footer-title{
    font-weight: 500;
    font-size: 17px;
    font-family: var(--font2), serif;
    margin-bottom: 30px;
}








/* HOME */
.home-page{

}
.section{
    background-color: #fff;
    position: relative;
    padding-top: 40px;
    padding-bottom: 30px;
}
.section:last-child{
    padding-bottom: 60px;
}
.section-bg{
    background-repeat: no-repeat;
    background-size: cover;
}
.sub-section-title{
    font-size: 21px;
    font-family: var(--font);
    font-weight: 500;
}
.section-title{
    font-size: 28px;
    font-family: var(--font);
    font-weight: 600;
    color: #4790dc;
}
.section-title span{
    display: inline-block;
}
.section-title span:after{
    content: '';
    height: 2px;
    width: 100px;
    display: block;
    background-color: #777;
    margin-top: 10px;
}
.section-title.text-center span:after{
    left: 50%;
    position: relative;
    transform: translateX(-50%);
    -os-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.section-gioithieu .full-img{
    background-color: #fff;
    padding: 30px;
}
.service-item .icon img{
    width: 50px;
    height: auto;
}
.service-item .value{
    color: var(--c1);
    font-size: 40px;
}


.section-why{
    background-color: #1e1919e6;
    padding-top: 60px;
    padding-bottom: 50px;
}
.section-why>.bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-attachment: fixed;
}
.section-why>.container{
    z-index: 1;
    position: relative;
}
.why-item .icon{
    min-width: 70px;
    max-width: 70px;
    margin-right: 20px;
}
.why-item .title{
    font-size: 18px;
}





/*feedback*/

.feedback-box{
    color: #fff
}
.feedback-box .responsive-thumbnail {
    position: relative;
    margin: 0 350px;
}


.feedback-item .quote{
    position: absolute;
    top: 50%;
    left: 53px;
    width: 25px;
    height: 25px;
    background-color: var(--c1);
    display: block;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transform: translateY(-50%);
    -os-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.star-rating {
    position: relative;
    display: inline-block;
    overflow: hidden;
    line-height: 16px;
    height: 20px
}

.star-rating::before {
    font-family: "Font Awesome 6 Pro";
    content: "\e28b\e28b\e28b\e28b\e28b";
    letter-spacing: 3px;
    color: #dad9e9;
    font-weight: 900;
    height: 18px
}

.star-rating span {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    height: 18px
}

.star-rating span::before {
    font-family: "Font Awesome 6 Pro";
    content: '\e28b\e28b\e28b\e28b\e28b';
    letter-spacing: 3px;
    font-weight: 900;
    z-index: 9;
    height: 18px
}






.new-item {
    background: var(--c1);
    border-radius: 5px;
    position: relative;
    padding: 0;
    margin: 20px 0 20px 20px;
}
.new-item .new-thumb {
    position: relative;
    top: -10px;
    left: -10px;
    padding-top: 240px;
}
.new-item .new-thumb img {
    border-radius: 5px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    object-fit: cover;
}
.new-item .new-content {
    position: absolute;
    background: #fff;
    border: #7a3b02 solid 1px;
    border-radius: 5px;
    bottom: -19px;
    width: 80%;
    right: 10%;
    padding: 10px 15px;
}
.new-item p {
    font-size: 13px;
    letter-spacing: 1px;
    margin: 0;
}
.new-item .title {
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    text-transform: uppercase;
    color: #333;
    padding: 0;
    margin: 3px 0 0;
}






/*nivoSlider*/
.nivoSlider{position:relative;width:100%;height:auto;overflow:hidden}.nivoSlider img{position:absolute;top:0;left:0;max-width:none}.nivo-main-image{display:block!important;position:relative!important;width:100%!important}.nivoSlider a.nivo-imageLink{position:absolute;top:0;left:0;width:100%;height:100%;border:0;padding:0;margin:0;z-index:6;display:none;background:#fff;filter:alpha(opacity=0);opacity:0}.nivo-slice{display:block;position:absolute;z-index:5;height:100%;top:0}.nivo-box{display:block;position:absolute;z-index:5;overflow:hidden}.nivo-box img{display:block}.nivo-caption{position:absolute;left:0;bottom:0;background:#000;color:#fff;width:100%;z-index:8;padding:5px 10px;opacity:.8;overflow:hidden;display:none;-moz-opacity:.8;filter:alpha(opacity=8);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.nivo-caption p{padding:5px;margin:0}.nivo-caption a{display:inline!important}.nivo-html-caption{display:none}.nivo-directionNav a{position:absolute;top:45%;z-index:9;cursor:pointer}.nivo-prevNav{left:0}.nivo-nextNav{right:0}.nivoSlider:hover .nivo-directionNav>a{opacity:1}.nivoSlider{position:relative}.nivoSlider img{position:absolute;top:0;left:0;display:none;min-height:250px;vertical-align:middle;object-position:center;object-fit:cover}.nivoSlider a{border:0;display:block}.nivo-controlNav{text-align:center;position:absolute;bottom:0;width:100%;z-index:6}.nivo-controlNav a.active{background-color:var(--color)}.nivo-controlNav a{display:inline-block;width:15px;height:15px;text-indent:-9999px;border:0;margin:0 2px;cursor:pointer;background-color:#ccc;border-radius:50%;position:relative;z-index:1}.nivo-controlNav a.active{background-position:0 -22px}.nivo-directionNav a{opacity:0;-webkit-transition:all 200ms ease-in-out;-moz-transition:all 200ms ease-in-out;-o-transition:all 200ms ease-in-out;transition:all 200ms ease-in-out}.nivoSlider:hover .nivo-directionNav a{opacity:1}a.nivo-nextNav{background-position:-30px 0;right:15px}a.nivo-prevNav{left:15px}.nivo-directionNav>a{font:normal normal normal 14px/1 "Font Awesome 6 Pro";width:35px;height:35px;font-size:22px;display:inline-block;white-space:nowrap;overflow:hidden;color:transparent;line-height:34px;text-align:center;background:#00000087;border-radius:50%;user-select:none;color:#fff!important}.nivo-directionNav>a:hover{color:var(--color)}.nivo-directionNav .nivo-prevNav:before{content:"\f104"}.nivo-directionNav .nivo-nextNav:before{content:"\f105";position:relative;right:-1px}.nivo-caption a{color:#fff;border-bottom:1px dotted #fff}.nivo-caption a:hover{color:#fff}.nivo-controlNav.nivo-thumbs-enabled{width:100%}.nivo-controlNav.nivo-thumbs-enabled a{width:auto;height:auto;background:none;margin-bottom:5px}.nivo-controlNav.nivo-thumbs-enabled img{display:block;width:120px;height:auto}


.slide-center5:not(.slick-vertical) {
    margin-right: -5px;
    margin-left: -5px
}
.slide-center5:not(.slick-vertical) .slick-slide {
    padding-right: 5px;
    padding-left: 5px
}
.slide-center10:not(.slick-vertical) {
    margin-right: -10px;
    margin-left: -10px
}
.slide-center10:not(.slick-vertical) .slick-slide {
    padding-right: 10px;
    padding-left: 10px
}
.slide-center5.slick-vertical {
    margin-top: -5px;
    margin-bottom: -5px
}
.slide-center5.slick-vertical .slick-slide {
    padding-top: 5px;
    margin-bottom: 5px
}

.slide-center10.slick-vertical .slick-slide {
    padding-top: 10px;
    margin-bottom: 10px
}
.slide-center10.slick-vertical {
    margin-top: -10px;
    margin-top: -10px
}
.slide-center10.slick-vertical .slick-slide {
    padding-top: 10px;
    padding-top: 10px
}

.slick-loading .slick-list {
    background: #fff url(../img/ajax-loader.gif) center center no-repeat
}

/*slick*/
.slick-prev, .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    outline: none;
}


.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: .25
}

.slick-prev:before,
.slick-next:before {
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

[dir='rtl'] .slick-prev {
    right: -25px;
    left: auto
}

.slick-prev:before {
    content: '←'
}

[dir='rtl'] .slick-prev:before {
    content: '→'
}


[dir='rtl'] .slick-next {
    right: auto;
    left: -25px
}

.slick-next:before {
    content: '→'
}

[dir='rtl'] .slick-next:before {
    content: '←'
}
/* Slider */
.slick-slider {
    position: relative;
    cursor: grab;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0
}

.slick-list:focus {
    outline: none
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: ''
}

.slick-track:after {
    clear: both
}

.slick-loading .slick-track {
    visibility: hidden
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px
}

[dir='rtl'] .slick-slide {
    float: right
}

.slick-slide img {
    display: block
}

.slick-slide.slick-loading img {
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-loading .slick-slide {
    visibility: hidden
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent
}

.slick-prev {
    left: 15px;
}
.slick-next{
    right: 15px;
}
.slick-next, .slick-prev {
    position: absolute;
    display: block;
    line-height: 0;
    font-size: 0;
    cursor: pointer;
    color: transparent;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    outline: none;
    /*border: 1px solid #e6e6e6;*/
    box-shadow: 0 0 7px -4px #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all .3s ease-in-out;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, .7);
    color: #fff;
}
.slick-slider:hover .slick-next, .slick-slider:hover .slick-prev {
    opacity: 1;
    visibility: visible;
}



.slick-next:not(.slick-disabled):hover,
.slick-prev:not(.slick-disabled):hover {
    outline: none;
    box-shadow: 0 0 5px 0 rgba(246, 94, 57, .5)
}

.slick-arrow.slick-hidden {
    display: none
}
.slick-next.slick-disabled, .slick-prev.slick-disabled {
    opacity: .5;
}
.slick-next:before, .slick-prev:before {
    font-family: "Font Awesome 6 Pro";
    font-size: 1.4rem;
    color: #fff;
    transition: all 0.3s;
}
.slick-next:hover:before, .slick-prev:hover:before {
    color: var(--c1)
}

.slick-next:before {
    content: "\f105"
}

.slick-prev:before {
    content: "\f104"
}
.slick-dotted.slick-slider {
    margin-bottom: 30px
}

.slick-dots {
    position: absolute;
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center
}

.slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 3px;
    padding: 0;
    cursor: pointer
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: 50%;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1
}
.slick-dots li.slick-active button {
    opacity: .5;
    color: #000
}
