@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=Lato:ital,wght@1,300;1,400&display=swap');

*{
  margin: 0;
  padding: 0;
  
  box-sizing: border-box;
}

header{
    font-family: 'Open Sans', sans-serif;
  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{
    font-family: 'Open Sans', sans-serif;
  position: sticky;
  top:0;
  z-index: 999;
  width: 100%;
  background: #242526;
}
nav .wrapper{
  position: relative;
  max-width: 1300px;
  padding: 0px 10px;
  height: 70px;
  line-height: 70px;
  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;
}
.nav-links .mobile-item{
  display: none;
}

.nav-links li:hover .mega-box{
  transition: all 0.3s ease;
  top: 70px;
  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;
}

.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: 420px;
    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;
}

h1{
    font-family: 'Open Sans', sans-serif;
  padding-top: 3rem;
  text-align: center;
  text-transform: uppercase;
  color: #e9781c;
}

.border{
  width: 140px;
  height: 4px;
  background: #333;
  margin: 20px auto;
}
@media (max-width: 1000px){
  h1{
    font-size: 22px;
    padding-top: 1.5rem;
  }
  .border{
    width: 150px;
    height: 2px;
    margin: 10px auto;
  }
}

.about{
    font-family: 'Lato', serif;
  background-color: #d3d3d3;
  border: 2px solid #d3d3d3;
  border-radius: 10px;
  padding: 3rem 3rem 3rem 3rem;
  margin-bottom: 1rem;
  margin-top: 3.5rem;
  margin-left: 5%;
  margin-right: 5%;
}

.about p{
  margin-top: 1rem;
  margin-left: 4%;
  margin-right: 4%;
  font-size: 18px;
  font-family: 'Lato', serif;
  justify-content: center;
  text-align: justify;
}

@media screen and (max-width: 1000px){
  .about{
    padding: 1rem 1rem 1rem 1rem;
    margin-top: 2rem;
    margin-left: 2%;
    margin-right: 2%;
  }


  .about p{
    margin-top: 1rem;
    margin-left: 0;
    margin-right: 0;
    font-size: 18px;

  }
}

.gallery-section{
  width: 100%;
  padding: 60px 0;
}

.inner-width{
  width: 100%;
  max-width: 500px;
  margin: auto;
  padding: 0 20px;
}

.gallery-section .gallery{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery-section .image{
  flex: 25%;
  overflow: hidden;
  cursor: pointer;
  border: .5rem solid #fff;
}

.gallery-section .image img{
  width: 100%;
  height: 100%;
  transition: 0.4s;
}

.gallery-section .image:hover img{
  transform: scale(1) /*rotate(15deg)*/;
}

@media screen and (max-width:960px) {
  .gallery-section .image{
    max-height: 300px;/*conform once*/
    flex: 33.33%;
  }
}

@media screen and (max-width:768px) {
  .gallery-section .image{
    flex: 50%;
  }
}

@media screen and (max-width:480px) {
  .gallery-section .image{
    flex: 100%;
  }
}




.footer footer{
    font-family: 'Open Sans', sans-serif;
  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;
  }
}
