@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');

/* COLORS */
/*
accent #ffd11a
Primary text-color #000000 and #ffffff
*/
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #cc0000;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

html{
  scroll-behavior: smooth;

}
* {
  margin: 0;
  padding: 0;
}

body{
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
  background-color: white;

}

/* PRELOADER */






/* NAVBAR */
.navbar{
  background-color: transparent;
  transition: background-color 1s ease 0s;
  padding-top: 0px;
  padding-bottom: 0px;
}
.navbar-nav a {
  color: #f4fcfb;
  background-color: transparent;
  font-weight: bolder;
  margin-right: 20px;
}
.navbar-nav a:hover{
  color: #cc0000;
  border-bottom: 3px solid #ffffff;
  padding-bottom: 5px;
}
.navbar-brand{
  padding-top:15px;
  padding-bottom:15px;
  padding-left: 15px;
}
.navbar-brand img{
  height: 45px;
}
.brand-name{
  color:#ffffff;
  font-weight: 50;
}

.card.bg-info {
    height: 200px;
    margin-bottom:30px;
}

    @media only screen and (min-width: 768px) and (max-width: 991px){
      .navbar-nav a {
        color: #f4fcfb;
        background-color: #000000;
        text-align: center;
        font-weight: bolder;
        margin-right: 20px;
      }
      .navbar-nav a:hover{
        color: #cc0000;
        border-bottom: 3px solid #000000;
        padding-bottom: 5px;
      }
      .brand-name{
        color:#ffffff;
        font-size: 13px;
        font-weight: 50px;
      }
    }

    @media only screen and (min-width: 480px) and (max-width: 767px) {
      .navbar-nav a {
        color: #f4fcfb;
        background-color: #000000;
        text-align: center;
        font-weight: bolder;

      }
      .navbar-nav a:hover{
        color: #cc0000;
        border-bottom: 3px solid #000000;
        padding-bottom: 5px;
      }
      .brand-name{
        color:#ffffff;
        padding-right: 25px;
        font-size: 13px;
        font-weight: 50px;
      }
    }


/* END NAVBAR */

/* SLIDER */
.carousel-item{
  width: 100%;
  height: 607px;
}
.carousel-item img{
  width:100%;
   height: 580px;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.carousel-caption h4{
  font-weight: 600;
  font-size: 70px;
  margin-bottom: 150px;
  color:#ffffff;
  opacity: 0.5;
}
.carousel-caption h5{
  font-weight: 300;
  font-size: 20px;
  margin-bottom: 10px;
  color:#ffffff;
  opacity: 0.5;
}

    @media only screen and (min-width: 768px) and (max-width: 991px){
       .carousel-item img{
        height: 400px;
      }
      .carousel-item{
        width: 100%;
        height: 400px;
      }
      .carousel-caption h4{
        font-weight: 600;
        font-size: 70px;
        margin-bottom: 70px;
        color:#ffffff;
        opacity: 0.5;
      }
      .carousel-caption h5{
        font-weight: 100;
        font-size: 18px;
        margin-bottom: 5px;
        color:#ffffff;
        opacity: 0.5;
      }
    }

    @media only screen and (min-width: 480px) and (max-width: 767px) {
      /* .carousel-item img{
        height: 500px;
      } */
      .carousel-item{
        width: 100%;
        height: 275px;
      }
      .carousel-caption h4{
        font-weight: 600;
        font-size: 50px;
        margin-bottom: 30px;
        color:#ffffff;
        opacity: 0.5;
      }
      .carousel-caption h5{
        font-weight: 50;
        font-size: 13px;
        margin-bottom: 2px;
        color:#ffffff;
        opacity: 0.5;
      }
    }

    .carousel-item img{
      -webkit-animation: slide 30s linear infinite;
      animation: slide 30s linear infinite; }

    @-webkit-keyframes slide {
      0% {
        -webkit-transform: scale(1);
        transform: scale(1); }
      50% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3); }
      100% {
        -webkit-transform: scale(1);
        transform: scale(1); } }
    @keyframes slide {
      0% {
        -webkit-transform: scale(1);
        transform: scale(1); }
      50% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3); }
      100% {
        -webkit-transform: scale(1);
        transform: scale(1); } }


/* END SLIDER */

/* INFOS */
.Infos{
  padding: 30px;
}
.Infos .info-title{
  font-size: 13px;
  font-weight: bolder;
  color: #cc0000;
}
.info-content {
  font-size: 11.5px;
  font-weight: lighter;
  font-style: italic;
}
.Infos .icon:hover{
  animation: bounce 1s infinite alternate;
  -webkit-animation: bounce 1s infinite alternate;
  border-bottom: 2px solid #ffd11a;
  padding-bottom: 5px;
}

  @keyframes icon {
    from {
      transform: translateY(0px);
    }
    to {
      transform: translateY(-15px);
    }
  }
  @-webkit-keyframes bounce {
    from {
      transform: translateY(0px);
    }
    to {
      transform: translateY(-15px);
    }
  }

      @media only screen and (min-width: 768px) and (max-width: 991px){
        .Infos{
          padding: 10px;
        }
        .info-content {
          font-size: 13px;
          font-weight: lighter;
          font-style: italic;
        }
      }

      @media only screen and (max-width: 600px) {
        .Infos{
            padding: 10px;
        }
          .info-content {
            font-size: 13px;
            font-weight: lighter;
            font-style: italic;
          }
          .Infos .icon{
              height: 60px;
          }
      }



/* END INFOS */

/* COMPANY PROFILE */
.company-profile{
  padding: 30px;
background-color: white;
}
.company-text{
  text-shadow: 2px 2px #000000;

}
.abbr{
  line-height: 300%;
}


/* END COMPANY PROFILE */

/* CATALOG */
.brochure-container{
  background: url('../img/bg-img/4.jpg'), linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5));
  background-blend-mode: multiply;
  background-position: center;
  min-height: 500px;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;

}
.content-brochure{
  padding: 10px;
  color: white;
}
.brochure-text{
  margin-top: 10px;
}
  @media only screen and (min-width: 768px) and (max-width: 991px) {

    .brochure-container{
      background: url('../img/bg-img/pic4.jpg'), linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5));
      background-blend-mode: multiply;
      background-position: center;
      min-height: 700px;
      background-size: cover;
      background-repeat: no-repeat;
      background-attachment: fixed;
    }
  }

  @media only screen and (min-width: 480px) and (max-width: 767px) {
    .brochure-container{
      background: url('../img/bg-img/pic4.jpg'), linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5));
      background-blend-mode: multiply;
      background-position: center;
      min-height: 500px;
      background-size: cover;
      background-repeat: no-repeat;
      background-attachment: fixed;
    }
  }
/* END CATALOG */

/* CLIENT */
.container{
  padding: 5px;
}
.container .client-text{
  color: #ffd11a;
  margin-bottom: -25px;
}
.container .client-text:hover{
  color: #ffffff;
}
.brands {
    width: 100%;
}

.brands_slider_container {
    height: 100px;
    padding-left: 97px;
    padding-right: 97px;

}

.brands_slider {
    height: 100%;
    margin-top: 50px
}

.brands_item {
    height: 100%
}

.brands_item img {
    max-width: 100%;
}

.brands_nav {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 5px;
    cursor: pointer
}

.brands_nav i {
    color: #e5e5e5;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease
}

.brands_nav:hover i {
    color: #676767
}

.brands_prev {
    left: 40px
}

.brands_next {
    right: 40px
}
/* END CLIENT */

/* ABOUT */

.about-container{
  background-color: #ffffff;
}
.about-container .about-content{
  padding: 30px;
}
.about-container .about-content h4{
  color:  #8c8c8c;
  margin-top: 20px;
  margin-left: 30%;
  margin-right: 30%;
  margin-bottom: 10px;
  border-bottom: 3px solid #ffd11a;
  padding-bottom: 5px;
}
.about-container .about-content h4:hover{
  color:  #8c8c8c;
  margin-left: 30%;
  margin-right: 30%;
  margin-bottom: 10px;
  border-bottom: 3px solid #cc0000;
  padding-bottom: 5px;
}
.about-container .about-content p{
  padding: 20px 80px 20px 80px;
  letter-spacing: 0.1em;
}
.about-container .about-content p a{
  font-style: oblique;
  color: #ffd11a;
  font-weight: bold;
}
.about-container .about-content p a:hover{
  font-style: normal;
  color: #cc0000;
  font-weight: bold;
}

.about-pictures{
  padding-top: 30px;
  padding-bottom: 20px;
}
.about-pictures .col {
  padding: 0px;
  margin: 0px;
}
.pic-about{
  height: 200px;
  width: 200px;
  animation: scale 40s linear infinite;
}
.mission-container{
  padding: 30px 20px 20px 20px;
}
.pic-container{
  padding: 20px;
}
.content-container .content-title{
  margin-bottom: -30px;
}
.content-title{
  text-align: left;
  font-size: 18px;
  font-weight: bolder;
  padding: 0;
  color: #cc0000;
}
.content-desc{
  font-size: 16px;
  text-align: justify;
}


@keyframes scale {
  50% {
    -webkit-transform:scale(1.2);
    -moz-transform:scale(1.2);
    -ms-transform:scale(1.2);
    -o-transform:scale(1.2);
    transform:scale(1.2);
  }
}
.about-content-container{
  margin-top:100px;
}
.about-content-container h4{
  padding: 10px;
  color: #8c8c8c;
  margin-left: 30%;
  margin-right: 30%;
  margin-bottom: 10px;
  border-bottom: 3px solid #ffd11a;
  padding-bottom: 5px;
}
.about-history{
  padding: 30px;
  font-weight:90;
  font-size: 15px;
}

/* ABOUT.HTML */

.histo-image img{
  width: 300px;
  height: 300px;
  padding: 10px;
}

    @media only screen and (min-width: 768px) and (max-width: 991px){
      .pic-about{
        height: 160px;
        width: 160px;
        animation: scale 50s linear infinite;
      }
      .about-container .about-content p{
        padding: 20px 50px 20px 50px;
        letter-spacing: 0.1em;
      }
    }

    @media only screen and (min-width: 480px) and (max-width: 767px){
      .pic-about{
        height: 110px;
        width: 110px;
        animation: scale 60s linear infinite;
      }
      .about-container .about-content p{
        padding: 20px 8px 20px 8px;
        letter-spacing: 0.1em;
      }
      .about-content-container h4{
        padding: 10px;
        color: #8c8c8c;
        margin-left: 10%;
        margin-right: 10%;
        margin-bottom: 10px;
        border-bottom: 3px solid #ffd11a;
        padding-bottom: 5px;
      }
      .content-container  p{
        text-align: justify;
      }
    }
/* END ABOUT */

/* PRODUCTS */
.product-container{
  padding: 10px 25px 10px 25px;
  background-color: #e6e6e6;
}
.product-content{
  padding: 15px 10px 10px 10px;
}
.product-content h3{
  margin-left: 30%;
  margin-right: 30%;
  border-bottom: 2px solid #ffd11a;
  padding-bottom: 5px;
}
.product-pictures .row{
  padding: 1px;
}
.product-pictures .row .col{
  padding: 0;
}
.category-product{
  height: 250px;
  width: 280px;
  position: relative;
  overflow: hidden;
}
.category-product img{
  height: 250px;
  width: 250px;
  margin: 5px;
  transition: .5s ease;
  backface-visibility: hidden;
}
.category-product:hover img{
  height: 250px;
  width: 280px;
  opacity: 0.5;
}
.title{
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}
.title-text{
  font-size: 22px;
  font-weight: bold;
  color: #ffffff;
  background-color: #000000;
  padding: 5px 25px 5px 25px;
  z-index: 5;
}
.title-text:hover{
  color:#cc0000;
}
.category-product:hover .title{
   opacity: 1;
}
    @media only screen and (min-width: 768px) and (max-width: 991px){
     
      .category-product img{
        height: 250px;
        width: 250px;
        overflow: hidden;
      }

      .title{
        transition: .5s ease;
        opacity: 0;
        position: absolute;
        top: 50%;
        left: 55%;
        transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        text-align: center;
      }
      .title-text{
        font-size: 16px;
        font-weight: bold;
      }
    }

    @media only screen and (min-width: 480px) and (max-width: 767px) {
      .product-pictures{
        padding: 10px 5px 5px 5px;
        margin-left: 40%;
        margin-right: 30%
      }
      .category-product img{
        height: 250px;
        width: 250px;
        overflow: hidden;
      }
      .title{
        transition: .5s ease;
        opacity: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        text-align: center;
      }
      .title-text{
        font-size: 12px;
        font-weight: bold;
      }
      .category-product img{
        height: 200px;
        width: 280px;
        margin: 5px;
        transition: .5s ease;
        backface-visibility: hidden;
      }
    }

.cat-container{
  padding: 20px;
}

.card img{
  position: relative;
  height: 300px;
}
.card-body{
  background-color: #f5f5f0;
}
.card-title {
  font-size: 18px;
  color: #cc0000;
  font-weight: bolder;
  text-align: center;
}
.card-text{
  font-size: 12px;
}
.container-fluid h4{
  color:  #8c8c8c;
  margin-top: 20px;
  margin-left: 35%;
  margin-right: 35%;
  margin-bottom: 10px;
  border-bottom: 3px solid #ffd11a;
  padding-bottom: 5px;
}

/* END PRODUCTS */


/* SERVICES */
.services-container{
  padding: 30px;
}
.col-services{
  line-height: 1.9;


}
#blogSlider {
  position: relative;
}
#blogSlider .MS-content {
  white-space: nowrap;
  overflow: hidden;
  margin: 0 5%;
}
#blogSlider .MS-content .item {

  display: inline-block;
  height: 100%;
  overflow: hidden;
  position: relative;
  vertical-align: top;
  width: 33%;
  margin:5px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(204,204,204,1);
  -moz-box-shadow: 0px 0px 5px 0px rgba(204,204,204,1);
  box-shadow: 0px 0px 5px 0px rgba(204,204,204,1);
}
  @media (max-width: 991px) {
    #blogSlider .MS-content .item {
      width: 50%;
    }
  }

  @media (max-width: 767px) {
    #blogSlider .MS-content .item {
      width: 100%;
    }
  }

#blogSlider .MS-controls button {
  position: absolute;
  border: none;
  background-color: transparent;
  outline: 0;
  font-size: 50px;
  top: 95px;
  color: rgba(0, 0, 0, 0.4);
  transition: 0.15s linear;
}
#blogSlider .MS-controls button:hover {
  color: rgba(0, 0, 0, 0.8);
}
    @media (max-width: 992px) {
      #blogSlider .MS-controls button {
        font-size: 30px;
      }
    }
    @media (max-width: 767px) {
      #blogSlider .MS-controls button {
        font-size: 20px;
      }
    }
    #blogSlider .MS-controls .MS-left {
      left: 0px;
    }
    @media (max-width: 767px) {
      #blogSlider .MS-controls .MS-left {
        left: -10px;
      }
    }
    #blogSlider .MS-controls .MS-right {
      right: 0px;
    }
    @media (max-width: 767px) {
      #blogSlider .MS-controls .MS-right {
        right: -10px;
      }
    }
.image-block{
    border: 3px solid white ;
    background-color: black;
    padding: 0px;
    margin: 0px;
    height:250px;
    text-align: center;
    vertical-align: bottom;
}
.product-grid {
  text-align:center;
  overflow:hidden;
  position:relative;
  z-index:1;
  padding:0 0 72px;
  -webkit-box-shadow: 0px 0px 9px 0px rgba(212,210,212,1);
  -moz-box-shadow: 0px 0px 9px 0px rgba(212,210,212,1);
  box-shadow: 0px 0px 9px 0px rgba(212,210,212,1);
}

.product-grid .product-image {
  position:relative;
  transition:all .3s ease 0;
}

.product-grid .product-image a {
  display:block;
}

.product-grid .product-image img {
  width:100%;
  height:auto;
}

.product-grid .pic-1 {
  opacity:1;
  transition:all .3s ease-out 0;
}

.product-grid .pic-2 {
  opacity:0;
  position:absolute;
  top:0;
  left:0;
  transition:all .3s ease-out 0;
}

.product-grid .social {
  width:150px;
  list-style:none;
  opacity:0;
  transform:translateY(-50%) translateX(-50%);
  position:absolute;
  top:60%;
  left:50%;
  z-index:1;
  transition:all .3s ease 0;
  margin:0;
  padding:0;
}

.product-grid:hover .social {
  opacity:1;
  top:50%;
}

.product-grid .social li {
  display:inline-block;
}

.product-grid .social li a {
  color:#fff;
  background-color:#333;
  font-size:16px;
  line-height:40px;
  text-align:center;
  height:40px;
  width:40px;
  display:block;
  position:relative;
  transition:all .3s ease-in-out;
  margin:0 2px;
}

.product-grid .social li a i
{
  margin-top:11px;
  color:#e5d80e;
}

.product-grid .social li a:hover {
  color:#fff;
  background-color:#cf1717;
}

.product-grid .social li a:after,.product-grid .social li a:before {
  content:attr(data-tip);
  color:#fff;
  background-color:#000;
  font-size:12px;
  letter-spacing:1px;
  line-height:20px;
  white-space:nowrap;
  opacity:0;
  transform:translateX(-50%);
  position:absolute;
  left:50%;
  top:-30px;
  padding:1px 5px;
}

.product-grid .social li a:after {
  content:'';
  height:15px;
  width:15px;
  border-radius:0;
  transform:translateX(-50%) rotate(45deg);
  top:-20px;
  z-index:-1;
}

.product-grid .product-discount-label,.product-grid .product-new-label {
  color:#fff;
  background-color:#ef5777;
  font-size:12px;
  text-transform:uppercase;
  display:block;
  position:absolute;
  top:10px;
  left:0;
  padding:2px 7px;
}

.product-grid .product-discount-label {
  background-color:#333;
  left:auto;
  right:0;
}

.product-grid .rating {
  color:#FFD200;
  font-size:12px;
  list-style:none;
  position:relative;
  z-index:-1;
  margin:0;
  padding:12px 0 0;
}

.product-grid .rating li.disable {
  color:rgba(0,0,0,.2);
}

.product-grid .product-content {
  background-color:#fff;
  text-align:center;
  position:absolute;
  left:0;
  right:0;
  bottom:-10px;
  z-index:1;
  transition:all .3s;
  margin:0 auto;
  padding:10px 0;
}

.product-grid:hover .product-content {
  bottom:0;
}

.product-grid .title {
  font-size:13px;
  font-weight:400;
  letter-spacing:.5px;
  text-transform:capitalize;
  transition:all .3s ease 0;
  margin:0 0 10px;
}

.product-grid .desc {
  color:#cc0000;
  font-size:20px;
  font-weight:700;
  letter-spacing:.6px;
  margin-bottom:10px;
  text-align:center;
  transition:all .3s;
}

.product-grid .add-to-cart {
  color:#000;
  font-size:13px;
  font-weight:600;
}

.product-grid:hover .pic-1,.product-grid:hover .pic-2,.product-grid .social li a:hover:after,.product-grid .social li a:hover:before {
  opacity:1;
}

  @media only screen and max-width990px{
    .product-grid {
     margin-bottom:30px;
    }
  }

/* END SERVICES */

/* CONTACTS */
.contact-area{
  background-color: #04233c;
  padding: 10px;
  color: white;
}
.contact-container{
  padding: 50px;
}
/* END CONTACTS */

/* FOOTER */
#btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
}
