@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@200&display=swap');

html, body {
  height: 100%;
  font-family: 'IBM Plex Sans', sans-serif;
}

/* Header BEGIN */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 50;
}

.header:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1F2028;
  z-index: 2;
}

.container {
  max-width: 1440px;
  margin: 0px auto;
  padding: 0 120px;
}

/** Navbar BEGIN **/
.navbar {
  position: relative;
  display: flex;
  justify-content: space-between;
  height: 80px;
  align-items: center;
}

.navbar__logo {
  flex: 0 0 160px;
  overflow: hidden;
  z-index: 3;
}
.navbar__logo img {
  max-width: 100%;
  display: block;
  position: relative;
  z-index: 3;
  width:;
}
.navbar__text {
  position: relative;
  display: block;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  text-decoration: none;
  z-index: 3;
}
.nav__right {
  margin-left: auto;
}
.fa-phone {
     visibility: hidden;
     display: none;
}
.fa-envelope {
     visibility: hidden;
     display: none;
}
/** Navbar END **/

/** Options for responsive Burger menu BEGIN **/
.navbar__burger {}
.navbar__menu {

}

.navbar__list {
  display: flex;
  position: relative;
  z-index: 2;
}
.navbar__list li{
  list-style: none;
  margin: 0px 0px 0px 20px;
}
.nav__link {
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  text-decoration: none;
}
/** Options for responsive Burger menu END **/

/** Styles for navbar buttons BEGIN **/
.nav_btn_1 {
  background-color: #1F2028;
  border-width: thin;
  border-color: #fff;
  border-radius: 50px;
  font-weight: 500;
  color: white;
  padding: 10px 30px;
  cursor: pointer;
  transition: 1s;
  margin: 0 0 0 8px;
  position: relative;
  z-index: 3;
}

.nav_btn_2 {
  background-color: white;
  border-radius: 50px;
  border: thin;
  color: #ff5000;
  font-weight: 500;
  padding: 10px 30px;
  cursor: pointer;
  transition: 1s;
  margin: 0 0 0 8px;
  position: relative;
  z-index: 3;
}
/** Styles for navbar buttons END **/
/* Header END */

/* Text block BEGIN */
section {
    text-align: justify;
}
.about {
    margin: 100px 0;
}
.h1-heading {
  display: flex;
  justify-content: center;
}
.table_policy{
  display: flex;
  justify-content: center;
  padding: 10px;  
}
/* Text block END */

/* Banner BEGIN */
.banner {
  width: 100%;
  padding: 70px 0px 50px 0px;
}
/* Banner END */

/* Products BEGIN */
.h2__title {
  font-weight: bold;
  font-size: xx-large;
  color: #FF5300;
}

.container .row#slider_row {
        position: relative;
        border-bottom: 1px solid #ffffff;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        margin: 1em 0;
    }

    .slider-section {
        display: flex;
        align-items: center;
        /* justify-content: center; */
        /* height: 100vh; */
        margin: 0;
      }
  
      .slider-container {
        /* width: 90%; */
        height: 710px;
        overflow: hidden;
        border-radius: 8px;
      }

      .slider-content {
        display: flex;
        width: 420%;
        transition: transform 0.5s ease-in-out;
      }

      .slider-content_2 {
        display: flex;
        width: 420%;
        transition: transform 0.5s ease-in-out;
      }

      .product-card {
        width: 387px;
        /* height: 100%; */
        /* box-shadow: 1px 1px 10px 2px #0000001a; */
        border-radius: 10px;
        margin-right: 20px;
        padding: 20px;
        box-sizing: border-box;
        background-color: #E8EAED;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin: 0 19px 0 0;
      }

      .product-card_2 {
        width: 387px;
        /* height: 100%; */
        /* box-shadow: 1px 1px 10px 2px #0000001a; */
        border-radius: 10px;
        margin-right: 20px;
        padding: 20px;
        box-sizing: border-box;
        background-color: #E8EAED;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin: 0 19px 0 0;
      }

      .heading .name-cust {
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 5px;
      }

      .prod-name {
        margin-top: 5px;
        font-weight: 800;
      }

      .product-card .prop {
        font-size: 14px;
        line-height: 1.;
        color: #000000;
      }
            .product-card:last-child {
              margin-right: 0;
            }
      .flex-profile {
        display: flex;
        gap: 40px;

        align-items: center;
       }

      .product-card_2 .prop {
        font-size: 14px;
        line-height: 1.;
        color: #000000;
      }
            .product-card_2:last-child {
              margin-right: 0;
            }
      /* Slider arrows */

      .slider_btn_block {
          margin-left: auto;
      }

      .prev,
      .next {
        /*position: absolute; */
        /* top: 50%; */
        /*  transform: translateY(-50%);  */
        /*  background-color: transparent;  */
        cursor: pointer;
        font-size: 20px;
        border: 1px solid;
        border-radius: 20px;
        padding: 6px 14px;
        outline: none;
        transition: all .2s ease-in;
        color: #464A53;
      }
      /*
      .prev {
        left: 0;
      }
      .next {
        right: 0;
      } */

.product-image {
  border-radius: 0.25rem;
  transition: 0.15s ease;
  background: white;
  display: flex;
  justify-content: center;
}

.product-image img{
  display: flex;
}

.section-price {
  float: left;
  font-weight: 700;
}

/** Button BEGIN **/
.section-btn {
  float: right;
}

.btn-group-sm > .btn, .btn-sm {
    padding: 5px 55px !important;
}
.btn-group-sm>.btn, .btn-sm {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

.btn {
    display: inline-block;
    background-color: white;
    background-image: none;
    border-radius: 50px;
    border: 1px solid;
    color: #ff5000;
    cursor: pointer;
    /* position: relative; */
    margin-top: 10px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    z-index: 3;
    padding: 0 10px;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.btn {
  float: right;
}
/** Button END **/
/* Products END */


/* Advantages BEGIN */
.adv {
  max-width: 1440px;
  margin: 20px auto;
  padding: 0 120px;
  background-color: #E8EAED;
  border-radius: 10px;
}
.adv_block {
  padding: 20px 0;
  margin: 0 0 56px 0;
}

.h2__title {
  font-weight: bold;
  font-size: xx-large;
  color: #FF5300;
}

.adv_p {
  color: #000000;
  font-weight: bold;
  text-align: center;
  position: relative;
	top: 40%;
  font-family: 'IBM Plex Sans', 'sans-serif';
}


.adv_big_photo {
  color: #FFFFFF;
  font-weight: bold;
  position: relative;
	top: 90%;
  text-align: center;
}

.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 10px;
    grid-auto-rows: minmax(300px, auto);
    grid-auto-flow: dense;
    padding: 10px 0;
}

.adv_cnt{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 25%;
}

.grid-item {
    padding: 0rem;
    color: #929796;
    background-color: #ffffff;
    border-radius: 5px;
    &:nth-child(odd) {
        background-color: #ffffff;
    }
}

.span-1-1 {
    grid-column-end: span 1;
    grid-row-end: span 1;
}

.span-2-2 {
    grid-column-end: span 2;
    grid-row-end: span 2;
    background: center / cover no-repeat url(https://godox.ru/upload/medialibrary/f00/he8ck0dnzz4ip99jaczfhmt72k1tep0i/IMG_1760.jpg);
}
/* Advantages END */

/* Reviews block BEGIN */
.container .row#slider_row {
        position: relative;
        border-bottom: 1px solid #ffffff;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        margin: 1em 0;
    }
  
      .slider-rev-container {
        /* width: 90%; */
        height: 340px;
        overflow: hidden;
        border-radius: 8px;
      }

      .slider-rev-content {
        display: flex;
        width: 420%;
        transition: transform 0.5s ease-in-out;
      }

      .review-card {
        width: 387px;
        height: 100%;
        /* box-shadow: 1px 1px 10px 2px #0000001a; */
        border-radius: 10px;
        margin-right: 20px;
        padding: 20px;
        box-sizing: border-box;
        background-color: #E8EAED;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin: 0 19px 0 0;
      }

      .review-card .prop {
        font-size: 14px;
        line-height: 1.;
        color: #000000;
      }

      .rating-image {
        margin-top:-15px;
        margin-left:-8px;
      }
            .review-card:last-child {
              margin-right: 0;
            }
            .flex-profile {
              display: flex;
              gap: 40px;

              align-items: center;
            }
/* Reviews block END */


/* Footer BEGIN */
footer {
    background-color: #3c3b3b;
    width: 100%;
    padding: 1rem 0;
}
  .footer-row-block {
      max-width: 1440px;
      margin: 0px auto;
      padding: 0px 120px;
  }

/** Footer first-row BEGIN **/
    footer .row#first-row-footer {
        position: relative;
        border-bottom: 1px solid #ffffff;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        margin: 1em 0;
        color: #fff;
    }

    .footer__logo {
        flex: 0 0 160px;
        overflow: hidden;
      }
     .footer__logo img {
        max-width: 100%;
        display: block;
        position: relative;
		width: 140px;
     }

     .footer__text {
        position: relative;
        display: block;
        color: #fff;
        text-transform: uppercase;
        font-size: 14px;
        text-decoration: none;
        z-index: 3;
     }

    .footer_btn_1 {
      background-color: #1F2028;
      border-width: thin;
      border-color: #fff;
      border-radius: 50px;
      font-weight: 500;
      color: white;
      padding: 10px 50px;
      cursor: pointer;
      transition: 1s;
      margin: 0 0 0 8px;
      /* position: relative; */
      z-index: 3;
    }

    .social-links {
        left: 0;
        margin-left: auto;
    }
    
        .social-links a {
            color: #fff;
            font-size: 20px;
            border: 1px solid;
            border-radius: 20px;
            padding: 5px;

            -webkit-transition:all .2s ease-in;
            transition:all .2s ease-in;
        }

        .social-links a:not(:last-child) {
            margin-right: 10px;
        }

        .social-links a:hover, .social-links a:focus {
            background-color: #212121;
        }

            .social-links a i {
                width: 25px;
                height: 25px;
                text-align:center;
            }

    .footer_btns_block_right {
      margin-left: auto;
    }
/** Footer first-row END **/


/** Footer catalog-block BEGIN **/
    footer .row#catalog-block-footer {
        margin: 1em 0;
        color: #fff;
        position: relative;
        border-bottom: 1px solid #ffffff;
    }
    
    .footer-toggle {
        display: none;
    }

    .link-cat {
        cursor:pointer;
    }
    
    footer ul {
        padding: 0;
        -webkit-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;        
    }

        footer ul li {
            list-style-type: none;
            padding: 0;            
            -webkit-transition: all .5s ease-in-out;            
            transition: all .5s ease-in-out;
            line-height: 1.2;            
        }  


    footer .footer-cat, span {
            font-size: 12px;
        }

        .footer-cat {
          font-size: 14px;
          text-transform: uppercase;
        }

        .footer-cat-links a {
            color: #cecece;
            text-decoration: none;
            position: relative;
        }

        .footer-cat-links.active > li a {
            pointer-events: auto;
        }

        .footer-cat-links a:after {
            top: 21px;
            content: "";
            display: block;
            height: 2px;
            left: 50%;
            position: absolute;
            width: 0;
            background: #fff;
            
            -webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
            transition: width 0.3s ease 0s, left 0.3s ease 0s;
        }

        .footer-cat-links a:hover:after, .footer-cat-links a:focus:after {
            width: 100%;
            left: 0;
        }

    .col-3 {
        display: inline-table;
        width:24%;
    }
/** Footer catalog-block END **/

/** Footer last row & policy block BEGIN **/
.last_row {
  margin: 2em 0;
  color: #fff;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  font-size: 12px;
}

.footer-policy {
  margin-left: auto;
}
  
   div.footer-policy-links {
    margin-left: auto;
    display: flex;
   }

    .footer-policy-links a {
      color: #ffffff;
      text-decoration: none;
      position: relative;
      margin: 0 0 0 2rem;
	  word-break: break-all;
    }

    .footer-policy-links.active > li a {
      pointer-events: auto;
     }

    .footer-policy-links a:after {
      top: 21px;
      content: "";
      display: block;
      height: 2px;
      left: 50%;
      position: absolute;
      width: 0;
      background: #fff;
        -webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
        transition: width 0.3s ease 0s, left 0.3s ease 0s;
    }

    .footer-policy-links a:hover:after, .footer-policy-links a:focus:after {
      width: 100%;
      left: 0;
    }
/** Footer last row & policy block END **/
/* Footer END */

/* Footer btn-msg BEGIN */
/* the background when modal content appears */
.cookie-message__modal {
  background-color: rgba(0, 0, 0, 0.4);
  display: none; 
  height: 100%;
  left: 0;
  position: fixed; 
  top: 0;
  width: 100%; 
  overflow: auto; 
  z-index: 1; 
}

/* the modal content box */
.cookie-message__modal-content {
  align-items: center;
  background-color: HSL(233.33deg 12.68% 13.92%);
  border: 1px solid;
  box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.75);
  color: white;
  display: flex;
  flex-direction: row;
  padding: 1em;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

/* ok button label */
.cookie-message__label {
  border: 1px solid white;
  border-radius: 10px;
  box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.75);
  padding: 0.5em;
  text-align: center;
}

.cookie-message__label:hover {
  background-color: HSL(18.82deg 100% 50%);
  cursor: pointer;
}

.cookie-message__label:active {
  background-color: HSL(343, 100%, 80%);
  box-shadow: none;
}

/* hidden button element */
.cookie-message__button {
  display: none;
}
/* Footer btn-msg END */


/* Button Up BEGIN */
.back-to-top {
  position: fixed;
  opacity: .6;
  bottom: 120px;
  right: 10px;
  z-index: 99999;
  cursor: pointer;
  font-size: 20px;
  background-color: transparent;
  border: 1px solid;
  border-radius: 20px;
  transition: all .2s ease-in;
}
.fa-arrow-up{
  color: #FF5000;
  padding: 8px 10px;
}
/* Button Up END */


/* Media query for advantages block BEGIN */

@media (max-width: 800px) {
    .grid-layout {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        grid-gap: 10px;
        grid-auto-rows: minmax(200px, auto);
        grid-auto-flow: dense;
        padding: 10px;
    }
}

@media (max-width: 600px) {
    .grid-layout {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        grid-gap: 10px;
        grid-auto-rows: minmax(150px, auto);
        grid-auto-flow: dense;
        padding: 10px;
    }
}

@media (max-width: 500px) {
    .grid-layout {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
        grid-gap: 10px;
        grid-auto-rows: minmax(110px, auto);
        grid-auto-flow: dense;
        padding: 10px;
    }
    .adv_big_photo {
      top: 60%;
    }
    .adv_cnt svg {
      width: 100%;
    }
}
}
/* Media query for slider END */


/* Media query for slider BEGIN */
@media (max-width: 1024px) {
    .slider-content {
      display: flex;
      width: 320%;
      transition: transform 0.5s ease-in-out;
    }

    .slider-content_2 {
      display: flex;
      width: 320%;
      transition: transform 0.5s ease-in-out;
    }
  
    .slider-content_3 {
      display: flex;
      width: 320%;
      transition: transform 0.5s ease-in-out;
    }
}

@media (max-width: 675px) {
  .slider-container {
      /* width: 90%; */
      height: 810px;
      overflow: hidden;
      border-radius: 8px;
  }
}

@media (max-width: 400px) {
  .review-card .prop {
      font-size: 12px;
      line-height: 1.6;
      color: #000000;
    }

  .product-card .prop {
      font-size: 12px;
      line-height: 1.6;
      color: #000000;
    }
}
/* Media query for slider END */

/* Media query for navbar elements BEGIN */
@media (max-width: 1048px){
  .navbar__text {
    display: none;
  }
}

@media (max-width: 810px) {
  .nav_btn_1 {
    visibility: hidden;
    display: none;
  }
  .nav_btn_2 {
    visibility: hidden;
    display: none;
  }
  .footer_btn_1 {
    visibility: hidden;
    display: none;
  }
}

@media (max-width: 800px) {
  .fa-envelope {
         background-color: white;
         border-width: thin;
         border-radius: 50px;
         color: #444857;
         padding: 10px;
         cursor: pointer;
         transition: 1s;
         margin: 0 8px;
         position: relative;
         z-index: 3;
         visibility: visible;
  }

  .fa-phone {
         background-color: white;
         border-width: thin;
         border-radius: 50px;
         color: #444857;
         padding: 10px;
         cursor: pointer;
         transition: 1s;
         margin: 0 8px;
         position: relative;
         z-index: 3;
         visibility: visible;
  }
}
@media (max-width: 500px) {
  .fa-envelope {
         background-color: white;
         border-width: thin;
         border-radius: 50px;
         color: #444857;
         padding: 10px;
         cursor: pointer;
         transition: 1s;
         margin: 0px;
         position: relative;
         z-index: 3;
         visibility: visible;
  }

  .fa-phone {
         background-color: white;
         border-width: thin;
         border-radius: 50px;
         color: #444857;
         padding: 10px;
         cursor: pointer;
         transition: 1s;
         margin: 0px;
         position: relative;
         z-index: 3;
         visibility: visible;
  }
  .social-links a:not(:last-child) {
         margin-right: 0px;
  }
  .navbar {
    height: 60px;
  }
  .navbar__logo {
	  flex: auto;
  }
  .navbar__logo img {
	  width: 120px;
  }
  .footer__logo {
	  flex: auto;;
  }
  .footer__logo img {
	  width: 120px;
  }
  .footer_btn_block {
	visibility: hidden;
    display: none;
  }
}
/* Media query for navbar elements END */

/* Media query for banner BEGIN */
@media (max-width: 400px) {
	.banner {
		padding: 80px 0px 50px 0px;
	}
}
/* Media query for banner END */

/* Media query for products title BEGIN */
@media (max-width: 400px) {
  .h2__title {
    font-size: x-large;
  }
}
/* Media query for products title END */

/* --- Tablets to Smartphone for Common Elements --- */  
@media only screen and (max-width : 1024px) {    

    .container {
      margin: 1rem auto;
      padding: 0px 60px;
    }
    
    .footer-row-block {
        margin: 0px auto;
        padding: 0px 60px;
    }
  
    .footer__text {
        display: none;
    }

    .col-3 {
        display: block;
        width: 100%;
        padding-bottom: 1em;
        position: relative;
    }  
        
    footer .footer-cat {
        margin-left: 0px;
    }
     
    .footer-toggle,.footer-toggle::after {
        background: #fff;
        height: 2px;
        width: 15px;
        position: absolute;
        display: block;
        -webkit-transition:all .4s ease-in;
        transition:all .4s ease-in;
    }

    .footer-toggle {        
        top: 8px;
        cursor:pointer;
        right: 10px;
    }

    .footer-toggle::after {
        content: '';
        -webkit-transform: rotate(90deg);
                transform: rotate(90deg);
    }

    .btnActive .footer-toggle::after {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }

    .footer-cat-links {
        margin: 0 0em 0px 1.6em;
    }

        .footer-cat-links a {
            pointer-events: none;
        }
    
    .footer-cat-links li {
        line-height: 0;
        opacity: 0;
    }

    .footer-cat-links.active > li{
        line-height:2;
        opacity:1;
    }

    /* .social-1 {
        display: none !important;
    } */

    .social-2 {
        display: block;
        position: absolute;
        top: 7.5em;
        bottom: 0px;
        height:20px;
        padding-bottom: 1.5em;
        width: 100%;
    }

}

/* --- Tablet (portrait) --- */  
@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : portrait) {
    
    .container {
      margin: 0px auto;
      padding: 0px 60px;
    }
  
    footer {
        padding-right:3em;
        padding-left:3em;
    }

    .col-3 {
        display: block;
        width: 100%;
        padding-bottom: 1em;
    }
}


/* --- Tablet (landscape) --- */  
@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : landscape) {  
    
    .container {
      margin: 0px auto;
      padding: 0px 60px;
    }

    section {
        padding-bottom: 3em;
    }

    .sec-heading {
        padding:1em 0;
    }
    
    .col-3 {
        display: block;
        width: 100%;
        padding-bottom: 1em;
    }
}

/* --- Mini Tablet --- */  
@media only screen and (max-width : 600px) {  
    
    .col-3 {
        display: block;
        width: 100%;
        padding-bottom: 1em;
    }
    
    footer {
        padding: 1rem 0;
    }
}

/* --- Smartphones (portrait and landscape) --- */ 
@media only screen and (max-width : 480px) {  
    
    footer {
        padding-right: 0.2em;
        padding-left: 0.2em;
    }
}