/*design by mnemaks from NSV-STUDIO on link nsv.net.ua
  created 09.05.2020
1. HEADER CONTACT ----- 29 line
2. HEADER MENU ----- 76 line
3. SLIDER ----- 96 line
4. FOOTER ----- 161 line
5. PAGE CATALOG ----- 217 line
6. PAGE CONTACT ----- 278 line
  */

body{padding: 0;}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
header,content{
    display: block;
}
::-webkit-scrollbar{
    width: 6px;
    background-color: rgb(230, 230, 230);
}
::-webkit-scrollbar-thumb {
    width: 6px;
    background: rgb(142, 142, 142);
    border-radius: 10px;
}
/****1. HEADER CONTACT****/
#header, #content{
    margin-bottom: 30px;
}
.top-row{
    background: rgb(239, 236, 236);
    width: 100%;
    min-height: 60px;
    position: relative;
}
.padding-20{
    padding: 10px;
    font-size: 17px;
    font-weight: 500;
}
.fa-viber{color: rgb(102, 92, 172, 1);}
.fa-telegram{color: rgb(0, 136, 204);}
.text-link:hover{color: rgb(0, 0, 0);}
.text-link, .text-link span{
    color: rgb(25, 25, 25);
    position: relative;
    z-index: 1;
    text-decoration: none !important;
    transition: 0.4s;
}
.text-link > span:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: rgba(255, 9, 10, 0.5);
    z-index: -1;
    -webkit-transition: 0.2s height;
    transition: 0.2s height;
}
.text-link:hover > span:after {height: 100%;}


.lang{padding:5px;}
.lang img{
    transition: 0.4s;
    cursor: pointer;
}
.lang img:hover{transform: scale(0.9);}
.drop-btn{
    border: none;
    background: none;
}
.drop-btn:focus, .drop-btn:hover{outline: none;}
/****2. HEADER MENU****/
.top-menu{
    width: 100%;
    min-height: 80px;
    overflow: hidden;
}
#header .logo{
    padding: 20px;
    float: left;
}
.menu-button-mobile{
    background: rgb(239, 236, 236);
    border: 1px solid rgb(208, 208, 208);
    font-size: 28px;
    width: 50px;
    height: 50px;
    border-radius: 4px;
    float: right;
    margin-top: 25px;
}
/****3. SLIDER****/
.slider-block{
    position: relative;
}
.slider-area {
    position: relative;
    margin-bottom: 80px;
    min-height: 600px;
}
.slider-area.active {
    display: block;
}
.slider-img{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.slider-img.overlay.head:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0.3;
}
.slider-img.overlay.head:after {background-color: rgba(255, 255, 255);}
.slider-wrapper {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.text-center {
    text-align: center;
    padding: 20px;
}
.lead {font-weight: 600;}
.prev, .next{
    position: absolute;
    top: 60%;
    font-size: 55px;
    color: rgba(255, 255, 255, 0.86);
    transition: 0.4s;
    background: rgba(142, 141, 141, 0.74);
    padding: 8px;    
}
.prev:hover, .next:hover{
    color: rgba(255, 255, 255);
    cursor: pointer;
}
.prev{
    left: 20px; 
}
.next{
    right: 20px;    
}
/****4. FOOTER****/
footer.bg-light{
    background: rgb(239, 236, 236) !important;    
}
.section {
    position: relative;
}
.sm-section {
    padding-top: 60px;
    padding-bottom: 60px;
}
.footer-widget {
    margin-top: 15px;
    margin-bottom: 15px;
}
.title {
    position: relative;
    padding-left: 15px;
}
.title:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 10px;
    background-color: rgb(255, 132, 132);
}
.footer-logo .logo {
    display: inline-block;
    margin-bottom: 30px;
}
.footer-logo .logo > img {
    max-height: 120px;
}
.footer-contact li, .footer-links li {
    margin-top: 10px;
}
.footer-contact li a i {
    margin-right: 15px;
}
.footer-contact li a {
    color: rgb(43, 43, 43);
}
.footer-links li a {
    display: inline-block;
    font-size: 14px;
    color: rgb(0, 0, 0);
    -webkit-transition: 0.2s color, 0.2s -webkit-transform;
    transition: 0.2s color, 0.2s -webkit-transform;
    transition: 0.2s transform, 0.2s color;
    transition: 0.2s transform, 0.2s color, 0.2s -webkit-transform;
}
.footer .bottom-footer {
    background-color: rgba(0, 0, 0, 0.15);
}
/****5. PAGE CATALOG****/
.page-title h3{
    display: inline-block;
    border-bottom: 3px solid rgba(255, 9, 10, 0.5);
    border-top: 3px solid rgba(255, 9, 10, 0.5);
    padding: 10px 15px 10px 15px;
}
.cat-block{
    transition: 0.4s;
    margin-bottom: 20px;
}
.cat-block:hover .cat-img{
    transform: scale(0.9);
    cursor: pointer;
}
.cat-block a{
    color: rgb(0, 0, 0);
}
.cat-block a:hover{
    color: rgb(0, 0, 0);
    text-decoration: none;
}
.cat-block .cat-img{
    border: 7px solid rgb(239, 236, 236);
    border-radius: 5px;
    box-shadow: 0px 0px 15px 0px rgb(177, 177, 177);
    transition: 0.4s;
    min-height: 230px;
}
.cat-block .cat-img img{
    width: 100%;
}
.cat-block .cat-title{
    padding: 8px;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 2px solid rgba(255, 9, 10, 0.5);
}
.item img{
    width: 50%;
}
.back-history{
    position: absolute;
    top: 40px;
    left: 30px;
    font-size: 30px;
    color: rgb(255, 132, 132);
    transition: 0.4s;
    cursor: pointer;
}
.back-history a{
    color: rgb(255, 132, 132) !important;
}
.back-history:hover a{
    color: white !important;
}
.back-history:hover{
    position: absolute;
    top: 35px;
    left: 30px;
    font-size: 30px;
    background: rgb(255, 132, 132);
    border-radius: 27px;
    padding: 5px;
}
.none-prod{
    width: 100%;
    text-align: center;
    background: rgb(239 236 236);
    padding: 20px;
    box-shadow: 0px 2px 4px 0px rgb(204 204 204);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 18px;
}
/****6. PAGE CONTACT ABOUT****/
.text-content{
    box-shadow: 0px 0px 30px 0px rgb(191, 191, 191);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    margin-top: 30px;
    border: 1px solid rgb(216, 216, 216);
    font-size: 18px;
    /*text-align: justify;*/
}
.text-content .text-margin{
    margin-left: 25px;
}
.text-content .text-indent {
    text-indent: 1.5rem;
}
.text-content li {
    text-indent: 3rem;
}
.img-about{
    float: left;
    text-align: center;
    height: 700px;
    overflow: auto;
    padding: 10px
}
.img-about::-webkit-scrollbar{
    width: 6px;
    background-color: rgb(230, 230, 230);
}
.img-about::-webkit-scrollbar-thumb {
    width: 6px;
    background: rgb(142, 142, 142);
    border-radius: 10px;
}

.img-block-about{
    float: left;
}
.img-about img{
    border: 9px solid rgb(214, 214, 214);
    margin-bottom: 15px;
    border-radius: 7px;
    box-shadow: 0px 0px 10px 0px rgb(97, 97, 97);
    width: 100%;
}
.back-history{
    position: absolute;
    top: 40px;
    left: 30px;
    font-size: 30px;
    color: rgb(255, 132, 132);
    transition: 0.4s;
    cursor: pointer;
}
.back-history a{
    color: rgb(255, 132, 132) !important;
}
.back-history:hover a{
    color: white !important;
}
.back-history:hover{
    position: absolute;
    top: 35px;
    left: 30px;
    font-size: 30px;
    background: rgb(255, 132, 132);
    border-radius: 27px;
    padding: 5px;
}