
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  max-width: 100%;
}
body {
  font-family: 'Open Sans', sans-serif;
  background: #fff;
  color: #fff;
}
header{
  z-index: 2000;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  height: 6.5rem;
  top: 0;
}

.brand{
  max-width: 60%;
}
 .brand img{
  max-width: 37%;
  margin-top: 12px;
  justify-content: center;
  align-items: center;
  margin-left: 2.5%;
}

.main-contentH{
  margin-top: 12px;
  margin-right: 20px;
  float: right;
  width: 30%;
  display: flex;
  justify-content: space-between;
}
.container{
  color: #111;
  display: flex;
}

.container .box{
  text-align: center;
}

.container .box .icon i{
  position: relative;
  background-color: #e9781c;
  padding-right: 2px;
  padding-left: 2px;
  border: 1px solid #e9781c;
  border-radius: 8px;
  color: #fff;
  justify-content: center;
  align-items: center;
}

.container .box .icon h3,
.container .box .icon h4{
  position: relative;
  /*font-weight: 400px;*/
  margin: 0;
  padding: 0px 3px;
  font-size: 16px;
}
.container .box .icon h3{
  font-weight: bold;
}
.container .box .icon h4{
  font-weight: 600;
  margin: 3px 0;
  font-style: 18px;
}
@media screen and (max-width: 900px){
  header{
    height: 8vh;
  }
  .brand{
    width: 100%;
  }
  .brand img{
    min-width: 80%;
  }
  .main-contentH{
    display: none;
  }
}
@media screen and (max-width: 900px) and (orientation: landscape){
    header{
      height: 10vh;
    }
    .brand{
        width: 100%;
  }
  .brand img{
    width: 70%;
  }
  .main-contentH{
    display: none;
  }

}
nav{
  background: #1b1b1b;
  opacity: 0.8;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 2000;
 }
nav:after{
  content: '';
  clear: both;
  display: table;
}
nav .logo{
  float: left;
  color: white;
  font-size: 27px;
  font-weight: 600;
  line-height: 70px;
  padding-left: 60px;
}
nav ul{
  float: right;
  margin-right: 40px;
  list-style: none;
  position: relative;
 }
nav ul li{
  float: left;
  display: inline-block;
  background: #1b1b1b;
  margin: 0 1.5px;
}
nav ul li a{
  color: white;
  line-height: 70px;
  text-decoration: none;
  font-size: 18px;
  padding: 8px 15px;
 }
 nav ul li a:hover{
  color: #e60000/*cyan*/;
  border-radius: 5px;
  box-shadow:  0 0 5px #e60000/*#33ffff*/,
               0 0 10px #e60000/*#66ffff*/;
}
nav ul ul li a:hover{
  box-shadow: none;
}
nav ul ul{
  position: absolute;
  top: 90px;
  border-top: 3px solid #e60000/*cyan*/;
  opacity: 0;
  visibility: hidden;
  transition: top .3s;
}
nav ul ul ul{
  border-top: none;
}
nav ul li:hover > ul{
  top: 50px;
  opacity: 1;
  visibility: visible;
}
nav ul ul li{
  position: relative;
  margin: 0px;
  width: 180px;
  float: none;
  display: list-item;
  border-bottom: 1px solid rgba(0,0,0,0.3);
}
nav ul ul li a{
  line-height: 50px;
}
nav ul ul ul li{
  position: relative;
  top: -60px;
  left: 150px;
}
nav .show, nav .icon, nav input{
  display: none;
}
.fa-plus{
  font-size: 15px;
  margin-left: 40px;
}
@media all and (max-width: 900px){
  nav ul{
    float: left;
  }
    nav ul li a{
    color: white;
    line-height: 50px;
    text-decoration: none;
    font-size: 14px;
    padding: 5px 8px;
   }
}
.slideshow{

  width: 100%;
  height: 90vh;
  position: relative;
  overflow: hidden;
}
.slideshow-item{
  width: 100vw;
  height: 90vh;
  position: absolute;
  opacity: 0;
  animation: cycleImages 31s infinite;
}
.slideshow-item img{
  background-color: #212121;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  object-fit: fill;
}
.slideshow-item:nth-child(1),
.slideshow-item:nth-child(1) img{
  animation-delay: 0s;
}
.slideshow-item:nth-child(2),
.slideshow-item:nth-child(2) img{
  animation-delay: 10s;
}
.slideshow-item:nth-child(3),
.slideshow-item:nth-child(3) img{
  animation-delay: 20s;
}
.slideshow-item-text{
  max-width: 35%;
  position: absolute;
  top: 70%;
  left: 0;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 1rem 1rem;
}
.slideshow-item-text h5{
  font-size: 30px;
  font-family: 'Open Sans', sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.slideshow-item-text p{
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
  letter-spacing: 1px;
  font-weight: 300;
}
@keyframes cycleImages {
  25%{
    opacity: 1;
  }
  50%{
    opacity: 0;
  }
  70%{
    opacity: 0;
  }
}
@media screen and (max-width: 1000px) {
  .slideshow{
    height: 45vh;
  }
  .slideshow-item{
    height: 52vh;
  }
  .slideshow-item img{
    height: auto;
  }
  .slideshow-item-text{
    max-width: 100%;
    height: auto;
    padding: 1rem;
    top: 28vh;
    bottom: 0;
    transform: initial;
  }

  .slideshow-item-text h5{
    font-size: 1.2rem;
  }

  .slideshow-item-text p{
    font-size: 1rem;
  }
}
.intro p{
  margin-top: 2rem;
  font-family: 'Open Sans', sans-serif;
  background: -webkit-linear-gradient(rgb(168,61,35),rgb(239,128,27));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  position: relative;

}
@media screen and (max-width: 900px){
  .intro p{
    margin-top: 0;
    font-size: 25px;
  }
}
.productLink{
  height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}
.container{
  width: 100%;
  max-width: 90rem;
  padding: 0 .5rem;
  margin: 0 auto;
}
.content0{
  display: flex;
  background-color: #fff;
}
.content-image{
  border: 2px solid #F0F0F0;
  flex: 1;
}
.content-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-text{
  flex: 1;
  padding: 5rem;
  background-color: #F0F0F0;
}
.title{
  font-family: 'Open Sans',sans-serif;
  font-size: 2rem;
  background: -webkit-linear-gradient(rgb(168,61,35),rgb(239,128,27));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta{
  display: inline-block;
  text-decoration: none;
  border: 3px solid transparent;
  border-image: linear-gradient(to right,rgb(168,61,35),rgb(239,128,27));
  border-image-slice: 1;
  font-size: 18px;
  font-weight: bold;
  background: -webkit-linear-gradient(rgb(168,61,35),rgb(239,128,27));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: .5rem 1.5rem;
  margin-top: 2.5rem;
}
.cta:hover{
  border: 3px solid transparent;
  border-image: linear-gradient(#111,#111);
  border-image-slice: 1;
  background: -webkit-linear-gradient(#111,#111);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right; rgb(168,61,35),rgb(239,128,27));
}
@media screen and (max-width: 1000px){
  .productLink{
    height: 70vh;
    margin-top: 0;
  }
  .content0{
    flex-direction: column;
  }
  .title{
    font-size: 1.5rem;
  }
  .content-text{
    padding: 1rem;
  }
  .content-text p{
    font-size: 1rem;
    text-align: justify;
  }
  .cta{
    float: right;
    font-size: 15px;
    margin-top: 1.5rem;
  }
}
.galleryContainer h1{
  color: #333;
  font-size: 32px;
  font-weight: 500;
  text-align: center;
  position: relative;
  margin-bottom: 2rem;
}

.galleryContainer h1:after{
  content: '';
  position: absolute;
  width: 100px;
  height: 4px;
  background-color: #e9781c;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.galleryContainer{
    margin-top: 2rem;
    margin-bottom: 5rem;
    width: 100%;
    height: 500px;
    max-width: 60vw;
    margin-left: 18rem;
    user-select: none;
    padding: 10px;
    box-sizing: border-box;
}
.galleryContainer .slideShowContainer{
    width: 100%;
    height: 90%;
    overflow: hidden;
    background-color: gainsboro;
    position: relative;
}
.galleryContainer .slideShowContainer .imageHolder{
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;
}
.galleryContainer .slideShowContainer .imageHolder img{
    width: 100%;
    height: 100%;
}
.galleryContainer .slideShowContainer .imageHolder .captionText{
    display: none;
}

.galleryContainer .slideShowContainer .leftArrow,.galleryContainer .slideShowContainer .rightArrow{
    width: 50px;
    background: #00000036;
    position: absolute;
    left: 0;
    z-index: 1;
    transition: background 0.5s;
    height: 72px;
    top: 50%;
    transform: translateY(-50%);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.galleryContainer .slideShowContainer .rightArrow{
    left: auto;
    right: 0;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.galleryContainer .slideShowContainer .leftArrow:hover,.galleryContainer .slideShowContainer .rightArrow:hover{
    background: #000000a8;
    cursor: pointer;
}
.galleryContainer .arrow{
    display: inline-block;
    border: 3px solid white;
    width: 10px;
    height: 10px;
    border-left: none;
    border-bottom: none;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.galleryContainer .arrow.arrowLeft{
    transform: rotateZ(-135deg);
}
.galleryContainer .arrow.arrowRight{
    transform: rotateZ(45deg);
}
.galleryContainer .slideShowContainer>.captionTextHolder{
    display: none;
    position: absolute;
    bottom: 0;
    z-index: 1;
    color: white;
    font-family: sans-serif;
    font-size: 20px;
    text-align: center;
    width: 100%;
    background: #00000047;
    height: 50px;
    line-height: 50px;
    overflow: hidden;
}
.galleryContainer .slideShowContainer>.captionTextHolder>.captionText{
    margin: 0;
}
.galleryContainer #dotsContainer{
    width: 100%;
    height: 10%;
    text-align: center;
    padding-top: 20px;
    box-sizing: border-box;
}
.galleryContainer #dotsContainer .dots{
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-left: 5px;
    background-color: #bbb;
    cursor: pointer;
    transition: background-color 0.5s;
}
.galleryContainer #dotsContainer .dots:first-child{
    margin-left: 0;
}
.galleryContainer #dotsContainer .dots:hover,.galleryContainer #dotsContainer .dots.active{
    background-color: #717171;
}
.galleryContainer .moveLeftCurrentSlide{
    animation-name: moveLeftCurrent;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-fill-mode:forwards;
}
.galleryContainer .moveLeftNextSlide{
    animation-name: moveLeftNext;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-fill-mode:forwards;
}
@keyframes moveLeftCurrent {
    from {margin-left: 0;opacity: 1;}
    to {margin-left: -100%;opacity: 1;}
}
@keyframes moveLeftNext {
    from {margin-left: 100%;opacity: 1;}
    to {margin-left: 0%;opacity: 1;}
}
.galleryContainer .moveRightCurrentSlide{
    animation-name: moveRightCurrent;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-fill-mode:forwards;
}
.galleryContainer .moveRightPrevSlide{
    animation-name: moveRightPrev;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-fill-mode:forwards;
}
@keyframes moveRightCurrent {
    from {margin-left: 0;opacity: 1;}
    to {margin-left: 100%;opacity: 1;}
}
@keyframes moveRightPrev {
    from {margin-left: -100%;opacity: 1;}
    to {margin-left: 0%;opacity: 1;}
}
.slideTextFromBottom {
    animation-name: slideTextFromBottom;
    animation-duration: 0.7s;
    animation-timing-function: ease-out;
}
@keyframes slideTextFromBottom {
    from {opacity: 0;margin-top: 100px}
    to {opacity: 1;margin-top: 0px;}
}
.slideTextFromTop {
    animation-name: slideTextFromTop;
    animation-duration: 0.7s;
    animation-timing-function: ease-out;
}
@keyframes slideTextFromTop {
    from {opacity: 0;margin-top: -100px}
    to {opacity: 1;margin-top: 0px;}
}
@media screen and (max-width: 900px){
    .galleryContainer h1{
    margin-top: none;
    font-size: 24px;
    justify-content: center;
    text-align: center;
  }
  .galleryContainer{
      height: 50vh;
     min-width: 96vw;
      margin-left: 2%;
	margin-right: 2%;
    }
    .galleryContainer .slideShowContainer>.captionTextHolder{
        font-size: 14px;
        height: 30px;
        line-height: 30px;
    }
    .galleryContainer #dotsContainer{
        padding-top: 8px;
    }
    .galleryContainer #dotsContainer .dots{
        width: 10px;
        height: 10px;


    }
}
@media screen and (max-width: 900px) and (orientation:landscape){

  .galleryContainer{
      height: 100vh;
      min-width: 94vw;
      margin-left: 2%;
      margin-right: 2%;
    }
    .galleryContainer .slideShowContainer{
      height: 94vh;
    }
}
/*Footer*/
.footer footer{
  position: relative;
  left: 0;
  bottom: 0px;
  width: 100%;
  background: #111;
}
.footer footer .main-contentF{
  color: #fff;
  display: flex;
}
.footer footer .main-contentF .boxF{
  flex-basis: 50%;
  padding: 10px 20px;
}
.footer footer .boxF h2{
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
}
.footer footer .boxF .contentF{
  margin: 20px 0 0 0;
  position: relative;
}
.footer footer .boxF .contentF:before{
  position: absolute;
  content: '';
  top: -10px;
  height: 2px;
  width: 100%;
  background: #1a1a1a;
}
.footer footer .boxF .contentF:after{
  position: absolute;
  content: '';
  height: 2px;
  width: 15%;
  background: #f12020;
  top: -10px;
}
.footer footer .leftF .contentF p{
  text-align: justify;
}
.footer footer .leftF .contentF ul li{
  font-size: 17px;
  margin-left: 3%;
  margin-bottom: 2px;
}
.footer footer .leftF .contentF ul a{
  text-decoration:none;
  outline: none;
  color: #fff;
  transition: 0.3s
}
.footer footer .leftF .contentF ul a:hover{
  color: #f12020;
}
.footer footer .leftF .contentF .social{
  margin: 20px 0 0 0;
}
.footer footer .leftF .contentF .social a{
  padding: 0 2px;
}
.footer footer .leftF .contentF .social a i{
  height: 40px;
  width: 40px;
  color:#fff;
  background: #1a1a1a;
  line-height: 40px;
  text-align: center;
  font-size: 18px;
  border-radius: 5px;
  transition: 0.3s;
}
.footer footer .leftF .contentF .social a i:hover{
  background: #f12020;
}
.footer footer .centerF .contentF i{
  font-size: 1.4375rem;
  color: #fff;
  background: #1a1a1a;
  height: 45px;
  width: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  transition: 0.3s;
  cursor: pointer;
}
.footer footer .centerF .contentF i:hover{
  background: #f12020;
}
.footer footer .centerF .contentF .text1{
  font-size: 1.0625rem;
  font-weight: 500;
  padding-left: 10px;
  color: #fff;
}
.footer footer .centerF .contentF .phone{
  margin: 15px 0;
}
.footer footer .rightF form .text1{
  font-size: 1.0625rem;
  margin-bottom: 2px;
  color: #fff/*#656565*/;
}
.footer footer .rightF form .msg{
  margin-top: 10px;
}
.footer footer .rightF form input, .footer footer .rightF form textarea, .rightF form .msgForm{
  width: 100%;
  font-size: 1.0625rem;
  background: #151515;
  padding-left: 10px;
  border: 1px solid #222222;
}
.footer footer .rightF form input:focus,
.footer footer .rightF form textarea:focus,
.footer footer .rightF form .msgForm:focus{
  outline-color: #3498db;
  color: white;
}
.footer footer .rightF form input{
  height: 35px;
}
.footer footer .rightF form textarea{
  height: 35px;
  resize: none;
}
.footer footer .rightF form .btnF{
  margin-top: 10px;
}
.footer footer .rightF form .btnF button{
  height: 40px;
  width: 100%;
  border: none;
  outline: none;
  background: #f12020;
  font-size: 1.0625rem;
  font-weight: 500;
  cursor: pointer;
  transition: .3s;
}
.footer footer .rightF form .btnF button:hover{
  color: #fff;
  background: #333;
}
.footer footer .bottomF center{
  padding: 5px;
  font-size: 0.9375rem;
  background: #151515;
}
.footer footer .bottomF center span{
  color: #656565;
}
.footer footer .bottomF center a{
  color: #f12020;
  text-decoration: none;
}
.footer footer .bottomF center a:hover{
  text-decoration: underline;
}
@media screen and (max-width: 900px) {
  footer{
    position: relative;
    bottom: 0px;
  }
  .main-contentF{
    flex-wrap: wrap;
    flex-direction: column;
  }
  .main-contentF .boxF{
    margin: 5px 0;
  }
}

@media screen and (max-width: 900px) and (orientation:landscape){
  header{
    height: 15vh;
  }
  .brand img{
    min-width: 63%;
  }
}

@media screen and (max-width: 900px) and (orientation:landscape){
  nav ul{
    float: right;
  }
    nav ul li a{
    color: white;
    line-height: 45px;
    text-decoration: none;
    font-size: 16px;
    padding: 5px 8px;
   }
   nav ul ul{
     top: 13vh;
   }
}

@media screen and (max-width: 1000px) and (orientation:landscape){
  .slideshow{
    margin-top:1px;
    height: 100vh;
    width: 100vw;
    align-items: center;
  }
  .slideshow-item img{
    height: 100vh;

  }
  .slideshow-item-text{
    max-width: 75vw;
    height: 26vh;
    padding: 1rem;
    top: 40vh;
  }
  .slideshow-item-text h5{
    font-size: 1.2rem;
  }
  .slideshow-item-text p{
    font-size: 1rem;
  }
}


@media screen and (max-width: 900px) and (orientation: landscape){
  .intro p{
    font-size: 28px;
    margin-bottom: 1rem;
  }
}

@media screen and (max-width: 1000px) and (orientation: landscape){
  .productLink{
    margin-bottom: 1rem;
    height: 60vh;
    padding: 1.5rem 0;
  }
  .content0{
    flex-direction: row;
  }
  .content-image{
    min-width: 55%;
  }
  .content-image img{
    width: 60vw;
    min-height: 60vh;
    object-fit: cover;
  }
  .cta{
    margin-top: 1.2rem;
    float: none;
  }

}
