@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
*{
  margin:0;
  padding:0;
  max-width: 100%;
  box-sizing: border-box;
  position: relative;
  font-family: 'Open Sans',sans-serif;

}

body{
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  background-color: #fff;
  height: 100vh;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}

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-around;
}
.container{
  color: #111;
  display: flex;
  justify-content: space-around;

}

.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: 4rem;
  }
  .brand{
    width: 100%;
  }
  .brand img{
    min-width: 85%;
  }
  .main-contentH{
    display: none;
  }
}
nav{
  background: #1b1b1b;
  opacity: 0.8;
  width: 100%;
  max-width: 100%;
  position: sticky;
  top: 0;
  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.7px;
}

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;
  min-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;
}

nav .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;
   }
}
.responsive {
  margin-top: 10px;
  margin-left: 5%;
  width: 90%;
  height: auto;
}
.galleryContainer{
    width: 100%;
    height: 700px;
    max-width: 80vw;
    margin-left: 9.5rem;
    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{
    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{
      height: 400px;
      min-width: 95vw;
      margin-left: 0;
    }
    .galleryContainer .slideShowContainer>.captionTextHolder{
        font-size: 14px;
        height: 30px;
        line-height: 30px;
    }
    .galleryContainer #dotsContainer{
        padding-top: 8px;
    }
    .galleryContainer #dotsContainer .dots{
        width: 10px;
        height: 10px;


    }
}
.about{

  border-radius: 8px;
  position: relative;
  width: 90vw;
  max-width: 90vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about .contentBx{
  padding: 100px;
  width: 60%;
}
.heading{
  color: #333;
  font-size: 35px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.about p:nth-child(1){
  color: red;
  font-size: 80px;
  padding-right: 8px;
  float: left;
  line-height: .7;
  font-family: georgia;
}
.text{
  color: #111;
  font-size: 17px;
  letter-spacing: 1px;
  text-align: justify;
}
.about .imgBx{

  width: 40%;
  justify-content: center;
  align-items: center;
  object-fit: fill;
  box-sizing: border-box;
  margin-left: 5px;
}
@media screen and (max-width: 900px){
  .about{
    flex-direction: column;
    margin-bottom: 1rem;
  }
  .about .contentBx{
    padding: 0px;
    width: 80%;
  }
  .heading{
    justify-content: center;
    text-align: center;
    font-size: 25px;
  }
  .text{
    font-size: 15px;
  }
  .about .imgBx{
    padding-top: 20px;
    width: 340px;


    margin-left: 2%;
  }
}


.tech{
  box-sizing: border-box;
  border-radius: 8px;
  height: 68vh;
  background: #b6a19e;
  width: 94vw;
  padding: 50px;
  align-items: center;
  left: 40px;
  margin-bottom: 2rem;
}

.tech table {
  font-weight: 400;
  left: 8%;
  border-collapse: collapse;
  border-spacing: 0;
  width: 80%;
}
.tech th, td {
  text-align: justify;
  padding: 8px;
}
.tech .text{
  color: #111;
}
.tech .imgBx{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
.tech .imgBx img{
  color: #fff;
  max-width: 250px;
  margin: 20px;
  opacity: 0.50;
  cursor: pointer;
}
.tech .imgBx img:hover{
  opacity: 1;
}
@media screen and (max-width: 900px){
  .tech{
    margin-top: 20px;
    height: 800px;
    width: 90vw;
    padding: 20px;
    left: 20px;
    margin-bottom: 1rem;
  }
  .tech table {
    width: 90%;
  }
  .tech th, td {
    border: 1px solid #414141;
    padding: 5px;
    margin-bottom: 10px;
  }
  .tech .imgBx img{
    max-width: 80px;
    margin: 10px;

  }
}
.footer footer{
  position: relative;
  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;
  left: 2%;
  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;
  margin-left: 10px;
  text-align: justify;
  color: #fff;
  justify-content: center;
}

.footer footer .centerF .contentF .phone{
  margin: 15px 0;
}
.footer footer .rightF form .text{
  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{
  background: #000;
}
.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: 900px) and (orientation:landscape){
  .galleryContainer{
      height: 100vh;
      min-width: 94vw;
      margin-left: 2%;
      margin-right: 2%;
    }
}


@media screen and (max-width: 900px) and (orientation:landscape){
  .about{
    width:100vw;
  }
  .about .contentBx{
    width: 95vw;
    left: 5%;
  }

  .about .imgBx{
    padding-top: 1.5rem;
    width: 80vw;
    left: 4%;
  }
}


@media screen and (max-width: 900px) and (orientation:landscape){
  .tech{
    margin-top: .5rem;
    height: auto;
    width: 96vw;
    left: 2%;
    margin-bottom: .2rem;
  }
  .tech table {
    left: 2%;
    width: 85vw;
  }
  .tech th, td {
    border: none;
    /*margin-bottom: .5rem;*/
  }
  .tech .imgBx{
    margin-top: 0;
  }
  .tech .imgBx img{
    max-width: 20vw;
    /*margin: .5rem;*/

  }
}
