:root {
    --SiteColor: 71, 201, 229;
    /* --SiteColor: 0,125,120; */
	--BodyBG: #000000;
	--HeaderBG: #18181a;
	--BlogBG: #000000;
	--FooterBG: #18181a;
	--SidebarBG: #18181a;
}

.Hieght100 {
    height:100%;
}

p {
    font-size:15px;
}


.btn {}
.btn:focus {
    box-shadow:none !important;
}
.btn-white {
    font-size:13px;
    letter-spacing: .2em; 
    width:240px;
    max-width: 100%; 
    height:50px;
    position: relative;
    z-index: 1;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    font-family: inherit;
    padding: 1rem 3rem; 
    text-decoration: none;  
    color: rgb(26,27,24);
    background-color: rgb(255,255,255); 
    text-transform: uppercase;
    font-weight: 600;    
    overflow: hidden;
    border-radius:0 !important;
    margin-top:50px;
    transition-property: color, background-color,box-shadow;
    transition-duration:0.5s;
    transition-timing-function: ease;
}
.btn-white:after {
    content: "";
    z-index: -1;
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transform: skew(-15deg);
    background-image: linear-gradient(90deg,transparent,rgba(26,27,24,0.25),transparent);
    transition:1s;
}
.btn-white:hover {
    box-shadow: none;
    background-color: rgba(255,255,255,0.85);
    transition-delay: 0.25s;
    border:solid #fff 2px
}
.btn-white:hover:after {
    left: 100%;
}



.btn-primary {
    min-width:150px;
    text-align:center;
    height:54px;
    line-height:54px;
    padding:0 30px;
    color:#fff;
    background:rgba(var(--SiteColor),1);
    border:none;
}

.AddToCart {
    position: relative;
    display:inline-block;
    width:100%;
    height:50px;
    text-align:center;
    border:solid 2px rgba(250,250,250);
    border-radius:0;
    background:none;
    color:#fff;
    text-transform: uppercase; 
    font-weight: 400;    
    letter-spacing: 3px;
    font-size:14px;
    transition:0.3s;
    overflow:hidden;
    background:rgba(var(--SiteColor)); 
    margin-top:30px !important; 
} 
 
.AddToCart:hover {
    opacity:0.7;
}

.AddToCart:hover:after {
    animation: none;
    transform: rotate3d(0, 0, 1, 0deg) translate3d(0, 0, 0);
}


.button  {
    min-width: 150px;
    height: 40px;
    line-height:40px !important;
    border-radius: 5px;
    background: rgba(var(--SiteColor)) !important;
    border: none;
    color: #fff !important;
    transition: 0.3s;
    font-weight: 400 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    transition:0.3s;
}
.button:hover {
    opacity:0.8;
}
 


.button2  {
    min-width: 150px;
    height: 42px;
    line-height:42px;
    border-radius: 5px;
    background: rgba(var(--SiteColor)) !important;
    border: none;
    color: #fff !important;
    transition: 0.3s;
    font-weight:500;
    font-size:14px;
    transition:0.3s;
}
.button2 i {
    margin-left:3px;
}
.button2:hover {
    opacity:0.8;
}
 







 
/**************** Input **************/
.input-text {
    border: 1px solid #ddd;
    height: 40px;
    line-height: 40px;
    border-radius: 3px;
    padding-left: 10px;
    width:100%;
}
.input-text:focus {
    border:solid 1px rgba(var(--SiteColor)) !important;
}
.woocommerce form .form-row label {
    font-size:12px;
}


.form-control {
    box-shadow:none;
    border:none;
    border-radius:3px;
    height:42px;
    position: relative;
    color:#686c70;
}
.form-control:focus {
    box-shadow:none;
    border:none;
}


 
.Arrows2 {}
.Arrows2 div {
    width:50px;
    height:50px;
    line-height:50px;
    border-radius:100%;
    background:#a0a8b4;
    text-align:center;
    position:absolute;
    top:50%;
    margin-top:-25px;
    z-index:9;
    font-size:32px;
    color:#fff;
    cursor:pointer;
    transition:0.3s;
}
.Arrows2 div.Prev {
    left:50px;
    padding-right:4px;
}
.Arrows2 div.Next {
    right:50px;
    padding-left:5px;
}
.Arrows2 div:hover {
    background:rgba(var(--SiteColor));
}



.Dots {
    position: absolute;
    bottom: 100px;
    z-index: 99;
    width: 100%;
    height: 50px;
    text-align: center;
}
.Dots li {
    border-radius:100%;
    text-align:center;
    width:18px;
    height:18px;
    line-height:18px;
    border:solid 1px transparent;
}
.Dots li button {
    background:#9ca4b0;
    width:10px;
    height:10px;
    border-radius:100%;
    margin-left:3px;
    margin-top:3px; 
}
.Dots li.slick-active {
    border:solid #5e7fb1 1px;
}
.Dots li.slick-active button {
    background:#5e7fb1;
}