@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,700;1,300&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
   font-family: 'Open Sans', sans-serif;
   /*overflow-x: hidden;*/
  }
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;

}
.brand{
  max-width: 60%;
}
.brand img{
  max-width: 45%;
  margin-top: 1.5rem;
  justify-content: center;
  align-items: center;
  margin-left: 2.5%;
}
.main-contentH{
  margin-top: 12px;
  margin-right: 20px;
  float: right;
  width: 35%;
  display: flex;
  justify-content: space-around;
}
.containerH{
  color: #111;
  display: flex;
}
.containerH .boxX{
  text-align: center;
}
.containerH .boxX .iconX i{
  position: relative;
  background-color: #e9781c;
  padding: .25rem .5rem .25rem .5rem;
  border: 1px solid #e9781c;
  border-radius: 8px;
  color: #fff;
  justify-content: center;
  align-items: center;
}
.containerH .boxX .iconX h3,
.containerH .boxX .iconX h4{
  position: relative;
  /*font-weight: 400px;*/
  margin: 0;
  padding: 0px 3px;
  font-size: 16px;
}
.containerH .boxX .iconX h3{
  font-weight: bold;
}
.containerH .boxX .iconX h4{
  font-weight: 600;
  margin: 3px 0;
  font-style: 18px;
}
@media screen and (max-width: 900px){
  header{
    height: 4.5rem;
    align-items: center;
  }
  .brand{
    width: 100%;
  }
  .brand img{
    min-width: 280px;
  }
  .main-contentH{
    display: none;
  }
}
@media screen and (max-width: 900px) and (orientation:landscape){
  header{
    height: 5rem;
  }
  .brand img{
    min-width: 60%;
  }
}

nav{
  position: sticky;
  top:0;
  z-index: 999;
  width: 100%;
  background: #242526;
}
nav .wrapper{
  position: relative;
  max-width: 1300px;
  background: #242526;
  padding: 0px 10px;
  height: 70px;
  line-height: 70px;
  border: none;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wrapper .logo a{
  color: #242526/*#f2f2f2*/;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}
.wrapper .nav-links{
  display: inline-flex;
}
.nav-links li{
  list-style: none;
}
.nav-links li a{
  color: #f2f2f2;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.nav-links li a:hover{
  background: #3A3B3C;
  color: #e9781c;
}
.nav-links .mobile-item{
  display: none;
}

.nav-links li:hover .mega-box{
  transition: all 0.3s ease;
  top: 72px;
  opacity: 1;
  visibility: visible;
}

.mega-box{
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
}
.mega-box .content{
  background: #242526;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.mega-box .content .row{
  width: calc(30% - 10px);
  line-height: 45px;
}

.content .row .header{
  color: #e9781c/*#f2f2f2*/;
  background: #242526;
  font-size: 18px;
  font-weight: 500;
  line-height: 35px;
}

.content .row .header a{
  text-decoration: none;
  color:#e9781c;
  background: #242526;
  padding: 0;
  font-size: 18px;
}
.content .row .mega-links{
  margin-left: -40px;
  border-left: 1px solid rgba(255,255,255,0.09);
}
.row .mega-links li{
  padding: 0 20px;
  line-height: 35px;
}
.row .mega-links li a{
  padding: 0px;
  padding: 0 20px;
  color: #d9d9d9;
  font-size: 15px;
  display: block;
}
.row .mega-links li a:hover{
  color: #f2f2f2;
}
.wrapper .btn{
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.wrapper .btn.close-btn{
  position: absolute;
  right: 30px;
  top: 10px;
}

@media screen and (max-width: 970px) {
  nav .wrapper{
    height: 45px;
  }
  .wrapper .btn{
    display: block;
  }
  .wrapper .nav-links{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: auto;
    top: 0;
    left: -100%;
    background: #242526;
    display: block;
    padding: 50px 0px;
    line-height: 30px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
  }
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }
  #menu-btn:checked ~ .nav-links{
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn{
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn{
    display: block;
  }
  .nav-links li{
    margin: 15px 10px;
  }
  .nav-links li a{
 
    padding: 0 20px;
    display: block;
    font-size: 20px;
  }

  #showMega:checked ~ .mega-box{
    max-height: 100%;
  }
  .nav-links .desktop-item{
    display: none;
  }
  .nav-links .mobile-item{
    display: block;
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links .mobile-item:hover{
    background: #3A3B3C;
  }
  .drop-menu li{
    margin: 0;
  }
  .drop-menu li a{
    border-radius: 5px;
    font-size: 18px;
  }
  .mega-box{
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 10px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .mega-box .content{
    box-shadow: none;
    flex-direction: column;
    padding: 10px 0px 0 10px;
  }
  .mega-box .content .row{
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2){
    border-top: 0px;
  }
  .content .row .mega-links{
    border-left: 0px;
    padding-left: 10px;
  }
  .row .mega-links li{
 
    font-size: 16px;
    margin: 0;
  }
  .content .row .header{
    font-size: 18px;
              line-height: 1.2;
  }
}
@media screen and (max-width: 970px) and (orientation:landscape){
  .wrapper .nav-links{
    max-width: 900px;
  }
}
nav input{
  display: none;
}

.responsive {
  margin-top: 10px;
  margin-left: 5%;
  width: 90%;
  height: auto;
}
.galleryContainer{
    width: 100%;
    height: 96vh;
    max-width: 100vw;
    /*margin-left: 9.5rem;*/
    user-select: none;
    /*padding: 10px;*/
    padding-top: .75rem;
    padding-left:2rem;
    padding-right: 2rem;
    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;
    text-align: justify;
    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;*/
  display: none;
}
.galleryContainer .slideShowContainer>.captionTextHolder>.captionText{
    margin: 0;
    font-size: 24px;
    font-weight: bold;
}
.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: 3s;
    animation-timing-function: linear;
    animation-fill-mode:forwards;
}
.galleryContainer .moveLeftNextSlide{
    animation-name: moveLeftNext;
    animation-duration: 3s;
    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{
      margin: 0 0 0 0;
      padding: 0;
      height: 35vh;
      width: 100%;
    }
  .galleryContainer .slideShowContainer>.captionTextHolder{
      font-size: 14px;
      height: 30px;
      line-height: 30px;
  }
  .galleryContainer #dotsContainer{
      padding-top: 8px;
  }
  .galleryContainer #dotsContainer .dots{
      width: 10px;
      height: 10px;
    }
    .galleryContainer .slideShowContainer .leftArrow,.galleryContainer .slideShowContainer .rightArrow{
        display: none;
    }
  }
@media screen and (max-width: 900px) and (orientation:landscape){
  .galleryContainer{
      margin-top: .25rem;
      height: 96vh;
      width: 96vw;
      margin-left: 2%;
  }
  .galleryContainer .slideShowContainer{
    height: 94vh;
  }
}

.containerG{
  position: relative;
  top: 1rem;
  width: 1200px;
  height: 400px;
  margin: 80px auto 0;
}

.containerG .box{
  position: relative;
  width: calc(400px - 30px);
  height: calc(300px - 30px);
  background: #000;
  float: left;
  margin: 15px;
  box-sizing: border-box;
  overflow: hidden;
  box-shadow: 0 5px 10px rgba(0,0,0,0.8);
}

.containerG .box:before{
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-bottom: 1px solid #fff;
  border-top: 1px solid #fff;
  box-sizing: border-box;
  transition: 0.5s;
  transform: scaleY(0);
  opacity: 0;
  z-index: 1;
}

.containerG .box:before{
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  box-sizing: border-box;
  transition: 0.5s;
  transform: scaleY(0);
  opacity: 0;
  z-index: 1;
}

.containerG .box:hover:before{
  transform: scaleX(1);
  opacity: 1;
}

.containerG .box:hover:after{
  transform: scaleY(1);
  opacity: 1;
}

.containerG .box .imgBox{
  position: relative;

}

.containerG .box .imgBox img{
  width: 100%;
  align-items: center;
  transition: 0.5s;
}

.containerG .box:hover .imgBox img{
  opacity: .2;
  transform: scale(1.2);
}

.containerG .box .content{
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}

.containerG .box .content h2{
  margin: 0 0 10px;
  padding: 0;
  color: #fff;
  transition: 0.5s;
  transform: translateY(-50px);
  opacity: 0;
  visibility: hidden;
}

.containerG .box .content p{
    margin: 0;
    padding: 0;
    color: #fff;
    transition: 0.5s;
    transform: translateY(50px);
    opacity: 0;
    visibility: hidden;
}
.containerG .box .content .cta{
  display: inline-block;
  text-decoration: none;
  border: 2px solid #fff;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 400;
  /*background: #111;*/
  color: #fff;
  padding: .5rem 1rem;
  margin-top: 2rem;
  transition: 0.5s;
  transform: translateY(50px);
  opacity: 0;
  visibility: hidden;
}
.containerG .box .content .cta:hover{
  border: 3px solid #fff;
  background: #111;
  color: #fff;


}

.containerG .box .content:hover h2,
.containerG .box .content:hover p,
.containerG .box .content:hover .cta{
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  transition-delay: 0.2s;
}
@media (max-width: 1200px){
  .containerG{
    width: 800px;
    height: auto;
    margin:  80px auto 80px;
  }
  .containerG .box{
    width: calc(400px - 30px);
    height: calc(300px - 30px);
  }
}
@media (max-width: 800px){
  .containerG{
    width: 600px;
    height: auto;
    margin:  80px auto 80px;
  }
  .containerG .box{
    width: calc(300px - 30px);
    height: calc(225px - 30px);
  }
  .containerG .box .content:hover h2{
    font-size: 16px;
  }
  .containerG .box .content:hover .cta{
    font-size: 14px;
    margin-top: .25rem;
  }
    .containerG .box .content .cta{
  padding: .15rem .15rem;
}
}
@media (max-width: 600px){
  .containerG{
    width: 100%;
    height: auto;
    margin:  80px auto 80px;
  }
  .containerG .box{
    width: calc(300px - 30px);
    height: calc(225px - 30px);
    margin: 15px auto;
    float: none;
  }
  .containerG .box .content:hover h2{
    font-size: 16px;
  }
  .containerG .box .content:hover .cta{
    font-size: 14px;
    margin-top: .15rem;
  }
  .containerG .box .content .cta{
  padding: .15rem .25rem;
}
}

.banner{
  position: relative;
  background: #d3d3d3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem 1rem 1rem 1rem;
  margin: 0 8% 0 8%;
}

.banner .content{
  max-width: 550px;
  display: flex;
  flex-wrap: wrap;
}

.banner .content img{
  max-width: 100%;
  margin-bottom: 10px;
}

.banner .content h2{
  color: #414141;
  font-weight: 700;
  font-size: 2em;
}

.banner .content p{
  font-size: 1.2em;
  color: #414141;
  font-weight: 300;
  margin: 15px 0 25px;
  text-align: justify;
}

.banner .content a{
  position: relative;
  text-transform: uppercase;
  background: #fff;
  color: #111;
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
  display: inline-block;
  padding: 10px 15px;
  border: 2px solid #111;
}

.clip{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 10000;
  background: rgba(0, 0, 0, 0.95);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
}

.clip.active{
  visibility: visible;
  opacity: 1;
}

.clip video{
  position: relative;
  max-width: 900px;
  outline: none;
}

.close{
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
  filter: invert(1);
  max-width: 32px;
}

@media (max-width: 990px) {
  .banner{
    margin:0;
    padding-top: 1.5rem;
    padding-bottom: .5rem;
    height: auto;
  }
  .banner .content{
    max-width: auto;
    margin-left: 1%;
    margin-right: 1%;
    text-align: flex-start;
  }
  .banner .content img{
    margin-bottom: 0;
  }
  .banner .content h2{
    font-size: 1.5rem;
  }

  .banner .content p{
    font-size: 1rem;
    margin-top: 5px;
  }

  .banner .content a{
    letter-spacing: 2px;
    padding: 8px 10px;
  }
  .clip video{
    max-width: 90%;
  }

}
@media screen and (max-width: 900px) and (orientation:landscape){
  .banner{
    /*margin-left: 2%;
    margin-top: 2rem;
    margin-right: 2%;
    padding-top: 1rem;
    height: auto;
    padding-bottom: 1rem;
    margin-bottom: 5rem;*/
    /*display: flex;

    justify-content: center;
    height: auto;*/
    margin: 2rem 5rem 2rem 5rem;
  }
  .banner .content{
    /*max-width: auto;
    margin-left: 1%;
    margin-right: 1%;
    flex-wrap: wrap;*/
    justify-content: center;
    flex-direction: column;
  }
  .banner .content img{
    justify-content: center;
    max-width: 350px;
    margin-bottom: 0;
  }
  .banner .content h2{
    font-size: 1.3rem;
  }

  .banner .content p{
    font-size: 1rem;
    margin-top: 0px;
    margin-bottom: 0;
  }

  .banner .content a{
    letter-spacing: 1px;
    padding: 8px 10px;
    margin-top: 0;
    max-width: 10rem;
  }
  .clip video{
    max-width: 90%;
  }
  .clip img{
    max-width: 3%;
  }
}

/*Video Section*/
.video{
  position: relative;
  top: 2rem;
  left: 19%;
  width: 60vw;
  height: 85vh;
  margin-bottom: 4rem;
}
.video video {
	position: absolute;
  /*border: 2px solid #f0f0f0;*/
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: fill;
	z-index: -1;
}
@media screen and (max-width: 900px){
.video{
  width: 90vw;
  left:5%;
  height: 40vh;
  }
}

.tech{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 3rem;
  margin-bottom: 1rem;
}
.tech .heading{
  color: #333;
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 1px;
}
.tech .imgBx img{
  color: #fff;
  max-width: 180px;
  margin: .5rem;
  /*opacity: 0.50;*/
}

@media screen and (max-width: 900px){
  .tech{
    margin-bottom: 0;

  }
  .tech .heading{
    font-size: 1.6rem;
    letter-spacing: 0;
    margin-bottom: 0;
  }
  /*.tech table {
    width: 90%;
  }
  .tech th, td {
    border: 1px solid #414141;
    padding: 5px;
    margin-bottom: 10px;
  }*/
  .tech .imgBx img{
    max-width: 160px;
    margin: 10px;

  }
}
@media screen and (max-width: 900px) and (orientation:landscape){
  .tech{
    margin-top: .5rem;
    height: auto;
    width: 96vw;
    left: 2%;
    margin-bottom:0;
  }
  .tech .heading{
    font-size: 1.5rem;
    margin-bottom: 0;
  }
  .tech .imgBx img{
    margin: 0;
  }
  .tech .imgBx img{
    max-width: 20vw;
    /*margin: .5rem;*/

  }
}


.client{
  display: flex;
  flex-direction: column;
  padding-top: 1rem;
  justify-content: center;
  align-items: center;
  padding-bottom: 1.2rem;
  margin-bottom: 2rem;
}
.client .heading{
  text-transform: capitalize;
  color: #333;
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 1px;
}

.client .imgBx{
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  margin-top: .5rem;
}
.client .imgBx img{
  color: #fff;
  max-width: 160px;
  margin: 20px;
  /*opacity: 0.50;*/
  cursor: pointer;
}
.client .imgBx img:hover{
  opacity: 1;
}
@media screen and (max-width: 900px){

  .client .heading{
    font-size: 1.8rem;
    letter-spacing: 0px;
  }
  .client .imgBx img{
    max-width: 100px;
    margin: 10px;
  }
}
@media screen and (max-width: 900px) and (orientation:landscape){
  .client{
    height: auto;
  }
  .client .heading{
    font-size: 1.7rem;
    margin-bottom: 0;
  }
  .client .imgBx{
    margin-top: 0;
  }
  .client .imgBx img{
    max-width: 21vw;
    margin: 0;

  }
}

.footer footer{
  position: relative;
  left: 0;
  bottom: 0px;
  width: 100%;
  background: #111;

}
.footer footer .main-contentF{
  color: #e9781c;
  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 5px;
}
.footer footer .leftF .contentF .social a i{
  height: 40px;
  width: 40px;
  color: #fff;
  /*background: #e9781c;*/
  line-height: 55px;
  text-align: center;
  border-radius: 5px;
  transition: 0.3s;
}
/*.footer footer .leftF .contentF .social a i:hover{
  background: #f12020;
}*/
.footer footer .centerF .contentF i{
  font-size: 1.46rem;
  color: #fff;
  /*background: #e9781c;*/
  height: 50px;
  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: #fff;
  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;
}
.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: #e9781c;
  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: #fff;*/
}
.footer footer .bottomF center span{
  color: #fff;
}
.footer footer .bottomF center a{
  color: #e9781c;
  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;
  }
}
