
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,700;1,300&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Lora:wght@700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@1,300;1,400&display=swap');


*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header{
 z-index: 2000;
 font-family: 'Open Sans', sans-serif;
 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{
    font-family: 'Open Sans', sans-serif;
  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;
}

.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{
    display: none;
}
.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: 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: 3s;
    animation-timing-function: linear;
    animation-fill-mode:forwards;
}
.galleryContainer .moveRightPrevSlide{
    animation-name: moveRightPrev;
    animation-duration: 3s;
    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;
  }
}
.about{
    font-family: 'Lato', serif;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    padding-top: 3rem;
    padding-bottom: 2rem;
    /*max-height: 100vh;*/
    width: 100%;
    margin: 0 auto;
    justify-content: center;
}
.imageA{
    margin : 0rem 1rem 1rem 0rem;
    max-width: 50%;
}

.imageA img{
  width: 650px;
  border-radius: 8px;
}
.contentA{
    font-family: 'Lato', serif;
    font-weight: 400;
    background: #ddd;
    border-radius: 10px;
    justify-content: center;
    text-align: justify;
    align-items: center;
    max-width: 50%;
}
.contentA h2{
    font-family: 'Lora', serif;
    padding-top: 3rem;
    padding-bottom: .6rem;
    text-transform: uppercase;
    font-size: 36px;
    /*letter-spacing: 1px;*/
    opacity: 0.9;
    justify-content: center;
    text-align: center;
}
.contentA span{
    height: 1rem;
    width: 80px;
    background: #333;
    margin-top: 10px;
    margin-bottom: 2rem;
}
.contentA p{
    padding-bottom: 15px;
    font-weight: 400;
    opacity: 0.7;
    width: 80%;
    text-align: justify;
    margin: 0 auto;
    line-height: 1.7;
}
.contentA .test:first-child::first-letter{
  font-size: 10rem;
  float: left;
  display: block;
  margin: 0 15px 0 0;
  line-height: 0.6;
  font-weight: bold;
}
.contentA ul{
    font-family: 'Lato', serif;
    padding-bottom: 15px;
    font-weight: 400;
    opacity: 0.7;
    width: 80%;
    text-align: justify;
    margin: 0 auto;
    line-height: 1.7;
}
.contentA ul li{
  margin-bottom: 5px;
}

.icons{
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.icons li{
    display: block;
    padding: 5px;
    margin: 5px;
}
.icons li i{
    font-size: 26px;
    opacity: 0.8;
}
.icons li i:hover{
    color: #06d6a0;
}
@media screen and (max-width: 900px){
.about{
  flex-direction: column;
  margin: 0;
}
.imageA{
    margin : 0;
    height: auto;
    max-width: auto;
    margin-top: 1rem;
}
.imageA img{
  width: 100vw;
}
.contentA{
    width: 100vw;
}
.contentA ul{
    width: 100%;
    line-height: 1.7;
}
}

@media screen and (max-width: 768px){
.about{
    display: flex;

  margin: 0;
}
.imageA{
    /*margin : 0;
    height: auto;
    max-width: auto;
    margin-top: 1rem;*/
}
.imageA img{
  /*width: 100vw;*/
  display: none;
}
.contentA{
    min-width: 100vw;
    padding: 4px 4px 4px 4px;
}
.contentA ul{
    line-height: 1.7;
    padding: 7% 7% 7% 7%;
}
}


iframe{
  padding-top: 05px;
  display: block;
  width: 100%/*90vw*/;
  /*height: calc(75*90vw);*/
  max-width: 100%/*800px*/;
  max-height: 400px/*600px*/;
  float: center;
  /*margin: 1em auto;*/
  border: solid 2px grey;
  margin-right: 3px;
  box-shadow: 2px 2px 2px silver;
  border-radius: 4px;
}
/*****************/

/*@media(max-width: 992px){
    .about{
        grid-template-columns: 1fr;
        width: 100%;
        flex-wrap: wrap;
    }
    .image{
        margin: .5rem .5rem .5rem .5rem;
        height: 50vh;
    }
    .content{
        height: 100vh;
    }
    .content h2{
        font-size: 20px;
        margin-top: 50px;
        letter-spacing: 3px;
    }
    .content span{
        margin: 20px 0;
    }
    .content p{
        font-size: 14px;
    }
    .icons li i{
        font-size: 20px;
    }
}*/

.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;
  }
}
