@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap');
* {
    box-sizing: border-box;
  }
body{
    direction: ltr;
    font-family: 'Ubuntu', sans-serif !important;
    font-size: 17px;
    margin: 0;
    padding: 0px;
}



header {
    background: #040807;
}
.navbar {
    color: #DEF9EC;
    border-radius: 0;
    margin: 0;
    transition: all 0.5s ease 0s;
    display: flex !important;
    align-content: center !important;
    justify-content: center !important;
    align-items: center;
    flex-direction: row;
    gap: 10px;
}

.contact-main{
    display: flex;
}

.contact-main .contact-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-left: 10px;
    color: #000000;
}

.contact-block a {
    text-decoration: none;
}


.navbar.navbar-fixed-top {
    background: rgba(0, 0, 0, 0) linear-gradient(to right, #ff5f6d 0%, #ffb270 100%) repeat scroll 0 0;
    box-shadow: 0 0 20px -10px #000;
    padding: 0;
}

.navbar-brand{
    color: #DEF9EC;
    display: flex;
    flex-direction: row;
    align-items: center;

}
.navbar-brand  img {
    width: 40px;
}
.site__title{
    padding: 9px 0 0 9px;
    color: #000000;
}
.navbar__links{
    display:flex; 
    justify-content:space-between;
}

.navbar__burger {
    display: none; 
    cursor: pointer;
    padding: 11px;
}

.navbar__burger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #000;
    margin-bottom: 9px;
}
.navbar-nav{
    color: #eee;
    flex-direction: row;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.navbar-nav li{
    display: inline-block;
    position: relative;
    margin-right:26px;
}

.navbar-nav li a {
    display: block;
    color: #eee;
    font-size: 16px;
    font-weight: 600;
    padding: 9px;
    transition: all 0.3s ease 0s;
    text-decoration:none;
    text-align: center;
}
.navbar-nav  li  a:focus, .navbar-nav  li  a:hover {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    opacity: 0.6;
}

.navbar-nav li ul.dropdown li{
    display: block;
}

.navbar-nav li ul.dropdown{
    width: 300px;
    position: absolute;
    z-index: 6;
    display: none;
    background:  #ffffff;
    left: -150;
}

.navbar-nav li a:hover{
    background:  #ffffff;
}

.navbar-nav li:hover ul.dropdown{
    display: block;
}

.home{
    width: 100%;
    position: relative;
    background-position: center;
    background-size: cover;
    color: #000000;
    background-color:#ffffff;
}

.home .container{
    padding: 26px;
}

.home__img{
    padding-top: 26px;
    display: flex;
    justify-content: center;
}

.home__img img {
    width: 50%;
    height: 50%;
    max-width: 100%;
    position: relative;
}


.home-title{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}
.home-title a{
    text-decoration: none;
    color: #000;
}

.home-title img {
    width: 40px;
}

.home-title h2{
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.home-title .title-phone a{
    color: #000000;
}

.products{
    padding-top: 70px;
    padding-bottom: 70px;
}

.products-title h2{
    text-align: center;
    padding-bottom: 15px;
}

.wraps{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row;
    align-content: center;
}

.pro-block{
    border-radius: 6px;
    transition: .3s;
    box-shadow: 0 0px 20px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #ffffff;
    padding: 15px;
    margin: 10px;
}

.pro-block:hover{
    transition: .3s;
    transform: translateY(-5px);
}

.pro-block-img img{
    border-style: none;
    max-width: 100%;
    height: auto;
}

.pro-block-content{
    padding: 10px;
}

.rating{
    display: flex;
    column-gap: 10px;
    row-gap: 5px;
    margin-bottom: 15px;
    align-items: center;
    justify-content: center;
}

.pro-block-content h6 a {
    color:#000;
}

.text__available {
    color: green;
}

.rating__list{
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 0;
    padding: 0;
}


.rating__list li {
    list-style: none;
    margin-left: 0;
    color: #ffffff;;
}

.pro-block-content h6{
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 18px;
    text-align: center;
}

.pro-block-content h6 a{
    overflow: hidden;
    text-decoration: none;
}

.pro-block-code{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.pro-block-price{
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}

.pro-block-price span{
    margin-top: 0;
}

.pro-block-content .btns{
    font-size: 15px;
    padding: 8px;
    background-color: #DEF9EC;
    color: #3BB77E;
}

.pro-block-content .products__btnB{
    float: left;
    text-decoration: none;
    color: #000000;
    background-color:#ffffff;
    transition: .4s;
    padding: 10px 12px;
}

.bts{
    display: flex;
    flex-direction: column !important;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 15px;
    padding-top: 10px;
}

.products__btnB{
    float: left;
    text-decoration: none;
    color: #000000;
    background-color:#ffffff;
    transition: .4s;
    padding: 10px 12px;
}


.products__btnB:hover{
    background-image: linear-gradient(45deg, #07fff3 0%, #fff5ea 100%);
}
.products__btn{
    float: right;
    text-decoration: none;
    color: #000000;
    background-color:#ffffff;
    transition: .4s;
    padding: 10px 12px;
}

.products__btn:hover {
    background-image: linear-gradient(45deg, #07fff3 0%, #fff5ea 100%);
}


.clients{
    background: #ffffff;
    padding-top: 40px;
    padding-bottom: 40px;
}


.client__block{
    display: flex !important;
    padding-top: 11px;
    text-align: center;
    border: 2px solid #faf3e0;
    padding: 24px;
}

.client__block img{
    width: 90px;
    height: 90px;   
    margin: 0 auto;
    border-radius: 50%;
}


.clients p {
    color: #000000;
    text-align: center;
}
.clients h4{
    color: #000000;
    text-align: center;
}
.client__block p {
    color: #000000;
    font-size: 20px;
    font-weight: 300;
    line-height: 35px;
    margin: 0 0 30px;
    text-align: center;
    padding-top: 10px;
}
.client__block h4 {
    color: #000000;
    font-size: 24px;
    margin: 0;
    text-align: center;
    padding: 20px 0;
}

.client__content-bottom{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #000000;
}


.how__order {
    background:  inherit;
    padding-bottom: 28px;
}

.section-title{
    margin: 78px 0 78px 0;
    text-align: center;
}

.how__order .row{
    display: flex;
    align-content: center;
}

.how__order__block {
    transition: .3s;
    box-shadow: 0 0px 20px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 17px;
    border: 1px solid #59140b;
    display: flex;
    flex-direction: column;
    padding: 20px;
} 

.how__order-icon {
    margin-top: 33px;
    text-align: center;
    padding-bottom: 17px;
}

.how__order-icon i {
    font-size: 33px;
}
.how__order .content {
    overflow: hidden;
    text-align: center;
    padding-bottom: 50px;
}

.contact-form {
    background: #fff none repeat scroll 0 0;
    box-shadow: 0 0 30px 0px rgba(0, 0, 0, 0.1);
    padding: 50px 30px;
}

.contact-form .section__title{
    margin: 7px 0 7px 0 !important;
    text-align: center;
}

.form-control {
    background: transparent none repeat scroll 0 0;
    border: 1px solid #eee;
    border-radius: 5px;
    box-shadow: none;
    color: #333;
    height: 45px;
    padding: 10px 18px;
    transition: all 0.3s ease 0s;
}
.form-group {
    padding-top: 17px;
}

.form-check{
    padding-top: 9px;
    padding-left: 40px;
}

.contact .col .actions{
    width: 100%;
}
.actions{
    padding-top: 11px;
    text-align: center;
}
.form-group textarea {
    height: 117px;
}
.form-group  button {
    border: none;
}
.btn-contact-bg {
    background: #ffffff;
    border-radius: 5px;
    color: #000000;;
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease 0s;
}
.btn-contact-bg:hover,
.btn-contact-bg:focus {
    background: #f55160;
    color: #fff;
}

.copyright{  
    background: #ffffff;
    padding-top: 40px;
    padding-bottom: 40px;
    overflow: hidden;
}

.copyright__block{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #000000;
    gap: 11px;
}
.copyright .contact-info{
    display:flex; 
    align-items:center; 
    margin-bottom:12px;
}

.copyright .contact-info  h6{
    font-size:20px; 
    margin-bottom:6px;
    color: #000000;
    text-align: center;
}
.copyright .contact-info  span{
    position: relative;
    color: #383737;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    color: #000000;
}
.copyright .contact-info  span a{
    color: #000000; 
    text-decoration: none;
}
.copyright .contact-info  span a:hover{
    color: #000000;
    text-decoration: none;
}

.copyright .phone a{
    color: #000000;
    text-decoration: none;
}
.politics{
    display: flex;
    justify-content: center;
}
.politics a{
    padding: 0 15px 0 15px;
    font-size:17px;
    color: #000000;
} 


.politics a:hover{
    font-size:17px;
    color:#00ffb3; 
}       

.logo__image {
    padding-top: 11px;
    display: flex;
    flex-direction: column;
    width: 150px;
    margin: 0 auto;
}

.products__details{
    padding-top: 40px;
    padding-bottom: 40px;
}

.products__details .container{
    padding: 26px;
}

.products__details .row{
    display: flex;
}

.products__details .col{
    padding-top: 11px;
}

.product__block{
    box-shadow: 11px 11px 38px rgba(0, 0, 0, 0.2);
    padding: 20px;
}

.products__details .code span{
    text-decoration: underline;
}

.products__details .price {
    font-size: 24px;
    font-weight: 600;
}

.products__details .price span{
    text-decoration: underline;
}

.related__products{
    padding-top: 30px;
    padding-bottom: 30px;
}

.related__products .container{
    color: #000;
}

.product__block{
    display: flex;
}

.input-userpanelitem{
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    margin: 11px 0px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.textarea-userpanelitem{
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    padding: 0.375rem 0.75rem;
    width: 100%;
}

.related__products .box{
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.related__products h2{
    text-align: center;
    padding-bottom:26px;
}

.prod__img{
    padding-top: 17px;
}

.prod__content{
    padding-top: 17px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}


.prod__content a{
    color: #000;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.prod__content .st{
    color: #000000;
}


.comment{
    background: #fff;
    padding-bottom: 30px;
}


.comment__block{
    display: flex !important;
    padding-top: 11px;
    text-align: center;
    border: 2px solid #faf3e0;
    padding: 24px;
    background: #ffffff;
}

.comment__block img{
    width: 90px;
    height: 90px;   
    margin: 0 auto;
    border-radius: 50%;
}


.comment p {
    color: #000000;
    text-align: center;
}
.comment h4{
    color: #000000;
    text-align: center;
}
.comment__block p {
    color: #000000;
    font-size: 20px;
    font-weight: 300;
    line-height: 35px;
    margin: 0 0 30px;
    text-align: center;
    padding-top: 10px;
}
.comment__block h4 {
    color: #000000;
    font-size: 24px;
    margin: 0;
    text-align: center;
    padding: 20px 0;
}

.contacts{
    padding-top: 60px;
    padding-bottom: 60px;
}



.contact{
    padding-top: 60px;
    padding-bottom: 60px;
}

.contact .row {
    display: flex;
}

.contact .contacts-info{
    display:flex; 
    align-items:flex-start; 
    align-items:center;
    justify-content: center; 
    margin-bottom:32px;
}

.contact .contacts-info i{
    width: 80px;
    height: 80px;
    font-size: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
}
.contact .contacts-info .content h6{
    font-size:20px; 
    margin-bottom:6px;
    text-align: center;
}
.contact .contact-info .content span{
    position: relative;
    color: #383737;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    text-align: center;
}
.contact .contacts-info .content span a{
    color: #383737; 
    text-decoration: none;
    word-break: break-all;
}
.contact .contacts-info .content span a:hover{
    color: #383737; 
    text-decoration: none;
}

.pay .row{
    padding: 35px;
}

.pay ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.return .row{
    padding: 35px;
}

.wholesale__customer .row{
    padding: 35px;
}

.privacy .row{
    padding: 35px;
}

.button-1{
    display: inline-block;
    padding: 15px 25px;
    border-radius: 25px;
    text-decoration: none;
    color: #FFF;
    background-image: linear-gradient(45deg, #FFC107 0%, #ff8b5f 100%);
    transition: .4s;
    margin-top: 15px;
}

.button-2{
    display: inline-block;
    padding: 0.5em 1em;
    text-decoration: none;
    border-radius: 3px;
    font-weight: bold;
    color: #FFF;
    background-image: linear-gradient(45deg, #709dff 0%, #b0c9ff 100%);
    transition: .4s;
}

.button-3 {
    position: relative;
    display: inline-block;
    font-weight: bold;
    padding: 8px 10px 5px 10px;
    text-decoration: none;
    color: #FFA000;
    background: #fff1da;
    border-bottom: solid 4px #FFA000;
    border-radius: 15px 15px 0 0;
    transition: .4s;
}

.button-4{
    display: inline-block;
    padding: 0.5em 1em;
    text-decoration: none;
    color: #67c5ff;
    border: dashed 1px #67c5ff;
    border-radius: 3px;
    transition: .4s;
}

.button-5{
    display: inline-block;
    padding: 0.5em 1em;
    text-decoration: none;
    background: #f7f7f7;
    border-left: solid 6px #ff7c5c;
    color: #ff7c5c;
    font-weight: bold;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
}       



@media (max-width: 450px) {
    .products__bottom{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 767px) {
    .how__order .content{
        flex-direction: column !important;
    }

    .products__details .row{
        flex-direction: column !important;
    }
}

@media (max-width: 991px) {

    .products  .wrap__block{
        flex-direction: column !important;
    }

    .politics{
        flex-direction: column;
    }

    .products__details .row{
        flex-direction: column !important;
   }

   .navbar{
       flex-direction: column !important;
   }

   .navbar__links ul.show{
       display: flex !important;
       flex-direction: column;
   }

   .navbar-nav li:hover ul.dropdown{
    transform: translate(-50px, 10px);
   }
}

@media (max-width: 1200px) {
    .navbar__links ul {
        display: none; 
        background-color: #ffffff;
        padding: 10px;
    }

    .navbar__burger {
        display: block; 
    }

    .navbar__links ul.show {
        display: block;
    }
}  


