@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  max-width: 100%;
  font-family: 'Open Sans', sans-serif;
}
body {
  background: #fff;
  color: #333;
  overflow-x: hidden;
  overflow: visible;
}
header{
  z-index: 2000;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  height: 6.5rem;
  top: 0;
}

.brand{
  max-width: 55%;
}
 .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;
  min-width: 40%;
  display: flex;
  flex-wrap: wrap;
  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;
  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.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;
  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;
   }
}
/*Twenty twenty slider*/
.sliderAnimate{
  margin-top: 1.5rem;
  margin-left: 7%;
  margin-right: 7%;
}
.sliderAnimate img{
  width: 90vw;
  height: 87vh;
}
@media screen and (max-width: 900px){
    .sliderAnimate{
        margin-top: .5rem;
        margin-left: 4%;
        margin-right: 4%;
    }
  .sliderAnimate img{
    width: 100%;
    height: auto;
  }
}
/*about*/
.about{
  margin-top: 5rem;
  margin-left:7%;
  margin-right:7%;
  margin-bottom: 5rem;
}
.about .heading{
  color: #e9781c;
  font-size: 34px;
  font-weight: 480;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 20px;
}
.about .text{
  color: #02222d;
  font-size: 18px;
  font-weight: 480;
  letter-spacing: 1px;
  justify-content: center;
  text-align: justify;
  margin-right: 45px;
  margin-left: 45px;
}
@media screen and (max-width: 900px){
  .about{
    margin-bottom: 1rem;
    width:100vw;
    margin-left: 1%;
    margin-right: 1%;
  }
  .about .heading{
    font-size: 28px;
  }
  .about .text{
    font-size: 15px;
  }
}
/*Swiper Gallery*/
.mainx{
  float: left;
  background: #f0f0f0;
  width: 100vw;
  overflow: hidden;
  height: 75vh;
  margin-bottom: 3rem;
}
.swiper-slider{
  width: 100vw;
  max-width: 100vw;
  padding: 100px 0;
}
.swiper-slide{
  width:40%;
  box-shadow: 0 15px 25px #333;
}
.swiper-slide-next{
  box-shadow: 15px 20px 25px #333;
}
.swiper-slide-prev{
  box-shadow: -15px 20px 25px #333;
}
img{
  width: 100%;
  vertical-align: top;
}
@media screen and (max-width: 900px){
  .mainx{
    height: 45vh;

  }
  .swiper-slide{
    width: 65%;
  }
}
.paragraph1, .paragraph2{
  top: 2.5rem;
  position: relative;
  margin-bottom: 3rem;
  margin-left: 3rem;
  margin-right: 3rem;
}
.paragraph1 p, .paragraph2 p{
  background: -webkit-linear-gradient(rgb(239,128,27),rgb(168,61,35));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  justify-content: center;
  text-align: center;
  font-size: 42px;
}
@media screen and (max-width: 900px){
  .paragraph1, .paragraph2{
    top: 1rem;
    margin-bottom: 1.5rem;
    margin-left: 1rem;
    margin-right: 1rem;
  }
.paragraph1 p, .paragraph2 p{
  font-size: 20px;
}
}
/*Tabs*/
#services-tabs{
  justify-content: center;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 1rem;
}
#services-tabs ul li{
  padding: 5px 20px;

}
#services-tabs ul li a {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #212227;
  border: 2px solid black;
  border-radius: 12px;
  text-transform: uppercase;
  font-weight: bold;
  padding: 5px 10px;
  text-decoration: none;
}
#services-tabs ul li.r-tabs-state-active a{
  background-color:#e9781c;
  color: white;
  font-weight: 700;
  border: 2px solid #e9781c;
  /*border-bottom: 3px solid #fb527a;*/
  padding-bottom: 5px;
  transition: border-color 300ms linear;
}
.service-tab .row{
  /*margin-left: 11rem;*/
  justify-content: center;
align-items:center;
  text-align: justify;
  max-width: 1150px;
  display: flex;
}
.service-tab .col-md-6{
   border: 2px solid #f0f0f0;
  padding: 0;
  width: 550px;
}
.service-tab img{
  width: 590px;
  height: 480px;
  object-fit: contain;
  /*margin: 1.5rem auto;*/
 /* margin-left: 3px;*/

}
.service-tab .tab-bg{
  background: #f0f0f0;
  padding: 59px 30px;
  min-height: 481px;
  max-width: 550px;
}
.service-tab h3{
  font-size: 32px;
  margin-bottom: 30px;
}
.service-tab p{
  font-size: 24px;
  margin-bottom: 30px;
}
.btn-general{
  font-family: 'Open Sans', sans-serif;
  border-radius: 28px;
  font-size: 13px;
  text-transform: uppercase;
  margin: 0 7px;
  padding: 12px 47px 12px 47px;
  transition: all 0.5s;
  text-decoration: none;
}
.btn-yellow{
  color: white;
  border: 1px solid #e9781c;
  background: #e9781c;
}
.btn-yellow:hover,
.btn-yellow:focus{
  color: white;
  border: 1px solid #212227;
  background: #212227;
}
@media screen and (max-width: 900px){
  #service-tabs{
    justify-content: space-between;
    text-decoration: none;
  }
  #services-tabs ul li{
    text-decoration: none;
    color: orange;
    padding: 2px 10px /*2px 20px*/;
  }
  #services-tabs ul li.r-tabs-state-active a{
    text-decoration: none;
    background-color:none;
    color: orange;

  }
  #services-tabs ul li a{
    text-decoration: none;
    font-size: 10px;
    border: 1px solid black;
    padding: 3px 5px;
  }
  .service-tab .row{
    max-width: 350px;
    margin-left: 0;
    flex-direction: column;
  }
  .service-tab .col-md-6 .tab-bg{
    padding: 39px 10px;
    min-height: 200px;
  }
  .service-tab .col-md-6 .tab-bg h3{
    font-size: 20px;
    margin-bottom: 15px;
  }
  .service-tab .col-md-6 .tab-bg p{
    font-size: 18px;
    margin-bottom: 15px;
  }
  .service-tab .col-md-6 img{
    height: 220px;
    object-fit: fill;
  }
  .service-tab h3{
    font-size: 22px;
    margin-bottom: 20px;
  }
  .service-tab p{
    font-size: 17px;
    margin-bottom: 20px;
  }
  .btn-general{
    font-size: 11px;
    padding: 8px 30px 8px 30px;
  }
}

/*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: 50vh;
  }
}
/*Enquiry Form*/
.container-fluid:before, .container-fluid:after{
  padding: 20px;
  display: table;
  content: "";
}
.contact_container{
  margin-top:-4px;
}
.container-f{
  width:100% !important;
  clear:both;
}
.contact{
  padding:5% 0;
}
.containerE {
	padding-right: 0px;
	padding-left: 0px;
}
.row{
  margin-left: -15px;
  margin-right: -15px;
}
.containerE h2 {
    display: block;
    font-size: 2em;
    margin-block-start: 0.83em;
    margin-block-end: 0.83em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    margin-bottom:30px!important;
    color:#ea5529;
    font-family: 'Quicksand',sans-serif;
    font-weight: 700;
    line-height: 1.1;
}
.contact_container{
  background: #f8f8ff;
  margin-top:-4px;
}
label{
  display:inline-block;
  margin-top: 10px;
  cursor:default;
  font-size:20px;
  color: #000;
  }
label span{
  font-size:14px;
  color:#939393;
}
.form-group .form-control{
  padding:7px 12px;
  border-color:#929191;
  box-shadow:none;
  color: #333;
}
.form-control{
  display:block;
  width:100%;
  height:34px;
  color:#555;
  opacity: 0.7;
  vertical-align:middle;
  background-color:#fff;
  background-image:none;
  border:1px solid #ccc;
  border-radius:8px;
  -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);
  box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);
  -webkit-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
input, button, select, textarea{
  font-family:inherit;
  font-size:inherit;
  line-height:inherit;
}
button, input, select, textarea{
  margin:0;
  font-family:inherit;
  font-size:100%;
}
.contact_container{
  background-image:url('contact.jpg');
  background-size:100% 100%;
}
.contact_banner{
  height: auto;
  /*  background: -webkit-linear-gradient(left, #bdc1c4 , #ebeef3); /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(right, #bdc1c4 , #ebeef3); /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(right, #bdc1c4 , #ebeef3); /* Firefox 3.6 - 15 */
    background: linear-gradient(to right, #bdc1c4 , #ebeef3); /* ±ê×¼µÄÓï·¨£¨±ØÐë·ÅÔÚ×îºó£©*/
  }
.contact_banner img{
  margin-left: 0;
  width:43%;
}
.contact_banner_font{
  width:30%;
  float:right;
  position:absolute;
  right:21%;
  top: 7%;
}
.contact_banner_font>h2{
  font-size:6vh;
  text-transform:uppercase;
  margin: 0;
  margin-top: 13%;
}
.contact_banner_font>p{
  font-size:3vh;
  text-transform:uppercase;
}
.submit{
  width:80px;
  margin:0 auto;
}
.container-fluid {
  background-color: #f5f5f5;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
}
.col-xs-10 {
  width: 83.33333333%;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  float: left;
}
.col-lg-5 {
    width: 41.66666667%;
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
  }
.col-lg-offset-1 {
   margin-left: 8.33333333%;
 }
textarea.form-control{
  height:113px;
}
.btn-primary {
	color: #fff;
	background-color: #ea5529;
	border-color: #ea5529;
  margin: 10px 0;
  text-align: center;
}
span{
  line-height:1.5;
  font-size:16px;
  color:#666;
  margin-top:5px;
  margin-bottom:0px;
}
.container_bottom p {
    margin-right: 40px;
}
.btn-lg,
.btn-group-lg > .btn {
  padding: 10px 10px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.btn-primary:hover {
  color: #fff;
	background-color: #ea5529;
	border-color: #ea5529;
  cursor: pointer;
}
.btn-primary:focus {
	color: #fff;
	background-color: #ea5529;
	border-color: #ea5529;
}
@media screen and (max-width: 900px){
  .containerE h2 {
    font-size: 1.5rem;
  }
  label{
    font-size:16px;
    }
  label span{
    font-size:10px;

  }
  .col-lg-5{
    width: 83.33333333%;
    margin-left: 25px;
  }
  .col-lg-offset-1{
    margin-left: 25px;
  }
}

.galleryContainer h1{
  margin-top: 2rem;
  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: 550px;
    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;
    margin-bottom: 1rem;
    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{
  font-size: 17px;
  margin-left: 3%;
  margin-bottom: 2px;
  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{
  min-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: 900px) and (orientation:landscape){
  .sliderAnimate{
    margin-top: .25rem;
    margin-left: 6.5%;
    margin-right: 6.5%;
  }
  .sliderAnimate img{
    max-height: 90vh;
    object-fit: fill;
  }
}

@media screen and (max-width: 900px) and (orientation:landscape){
  .mainx{
    min-height: 100vh;
  }
}

@media screen and (max-width: 900px) and (orientation: landscape){
  #services-tabs{
    justify-content: space-between;
    text-align: center;
  }
  #services-tabs ul li{
    padding: 5px 8px;
  }
  #services-tabs ul li a {
    font-size: 12px;
    border: 1px solid black;
    border-radius: 12px;
    padding: 5px 8px;
  }
  .service-tab .row{
    max-width: 95vw;
    max-height: 80vh;
    margin-left: 2%;
    margin-right: 2%;
    flex-direction: row;
  }

  .service-tab .col-md-6{
    height: 70vh;
  }
  .service-tab .col-md-6 img{
    width: 70vw;
    object-fit: cover;
  }
  .service-tab .col-md-6 .tab-bg{
    padding: 1rem 1rem;
    height: 70vh;
  }
  .service-tab .col-md-6 .tab-bg h3{
    font-size: 1.5rem;
    margin-bottom: .5rem;
  }
  .service-tab .col-md-6 .tab-bg p{
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 900px) and (orientation:landscape){
  .video{
    width: 70vw;
    left:15%;
    right: 15%;
    height: 85vh;
  }
}

@media screen and (max-width: 900px) and (orientation:landscape){
  .col-lg-5{
    width: 92%;
    margin-left: 25px;
  }

  .col-lg-offset-1{
    width: 92%;
  }
}
