@import url('https://fonts.googleapis.com/css?family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css?family=Quicksand&display=swap');

*{
    margin: 0;
    padding: 0;
    font-family: "poppins";
}

body{
    overflow-x: hidden;
    user-select: none;
}

#site-header{
    width: 100%;
    background-color: #fff;
    /* border-bottom: 1px solid #f1f1f1; */
    z-index: 100;
    display: block;
    /* height: 180px; */
}
.site-header-inner{
    position: relative;
    max-width: 1280px;
    width: 100%;
    padding: 10px 8%;
    margin: 0;
    overflow: hidden;
    border-bottom: 1px solid #f1f1f1;
}

.logo{
    display: inline;
    float: left;
    width: 12%;
}

.logo img{
    width: 100%;
    display: inline-block;
}

.main-title{   
    margin-top: 2%;
    float: left;
    width: 88%;
    text-align: center;
}

.title{
    color: #725411;
    font-family: "Times New Roman", Sans-serif;
    font-size: 46px;
    font-weight: 600;
}

.tagline{
    color: #ffad02;
    font-family: "Poppins", Sans-serif;
    font-size: 26px;
    font-weight: 600;
}

.site-header-navbar{
    width: 100%;
    z-index: 100;
}

.site-header-navbar{
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 12px;
    background-color: #725411;
}

/* dropdown */
.dropbtn {
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
  }
  
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content {
    color: #725411;
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    color: #725411 !important;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  .dropdown-content a:hover {background-color: #f1f1f1;}
  
  .dropdown:hover .dropdown-content {display: block;}
  

div#myTopnav {
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 600;
    color: white;
}

div#myTopnav a{
    text-decoration: none;
    color: white;
    padding: 5px 20px;
}


/* slider css */
.mySlides {display: none;}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 2s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}

.container{
    padding: 20px 8%;
    text-align: center;   
}

.maintitle h1{
    font-family: 'poppins';
    font-size: 36px;
    font-weight: 900;
    color: #725411;
}

.maintitle h2{
    margin-top: 20px;
    font-family: 'poppins';
    font-size: 32px;
    font-weight: 900;
    color:#725411;
}

.content p{
    text-align: justify;
    font-family: "poppins";
    font-size: 16px;
}

.banner{
    margin: 30px 0; 
}

.banner img{
    width: 100%;    
}

.info{
    margin: 80px 0;
    background-image: linear-gradient(168deg, #e6e6e6 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 25px;
    border: 1px solid #333;
}

.info h2{
    font-family: 'poppins';
    font-size: 28px;
    font-weight: 900;
    color: #000000;
}

.info p{
    text-align: justify;
    font-family: "poppins";
    font-size: 16px;
}

.button{
    padding-top: 30px;
}

.button a, .final{
    text-decoration: none;
    color: #fff;
    background-color: #725411;
    padding: 10px 20px;
    border-radius: 5px;
    font-family: "poppins";
    font-size: 16px;
    font-weight: 600;
}

.final{
    margin-right: 20px;
    margin-top: 30px;
    border: none;
    cursor: pointer;
}

input[type="file"], input[type="checkbox"], select, input[type="date"], input[type="radio"]{
    cursor: pointer;
}

#site-footer{
    width: 100%;
    background-color: #fff;
    border-top: 1px solid #cacaca;
    z-index: 100;
}

.site-footer-inner{
    position: relative;
    min-width: 100%;
    padding: 30px 6%;
    margin: auto;
    overflow: hidden;
    border-bottom: 1px solid #f1f1f1;
    display: flex;
	flex-wrap: wrap;
}

.footer-logo{
    display: inline;
    float: left;
    width: 12%;
}

.footer-logo img{
    width: 100%;
    display: inline-block;
}

.footer-menu{
    display: inline;
    float: left;
    width: 23%;
    text-align: left;
    padding: 1.5% 15%;
}

.first-menu, .second-menu{
    display: inline-block;
    vertical-align: middle;
    padding: 20px;
    list-style-type: none
}

.first-menu a, .second-menu a{
    text-decoration: none;
    color: #333;
    font-family: "poppins";
    font-size: 16px;
    font-weight: 600;
}

.footer-getintouch{
    display: inline;
    float: left;
    width: 23%;
    padding: 1.5% 3%;
}

.footer-getintouch ul{
    list-style-type: none;
    padding: 20px;
}

.footer-getintouch ul li{
    padding-bottom: 10px;
}

.footer-getintouch ul a i{
    padding-right: 10px;
}

.footer-getintouch ul a:hover i{
    color: #fbb030;
}

.footer-getintouch ul a{
    text-decoration: none;
    color: #333;
    font-family: "poppins";
    font-size: 16px;
    font-weight: 600;
}

.site-copyright{
    position: relative;
    display: block;
    min-width: 100%;
    padding: 5px 5%;
    margin: auto;
    overflow: hidden;
    border-bottom: 1px solid #f1f1f1;
    background-color: #725411;
}

.copy{
    width: 30%;
    float: left;
    text-align: left;
    padding: 10px 0;
    font-family: "poppins";
    color: white;
}

.copy-menu{
    width: 52%;
    float: left;
    text-align: left;
    padding: 10px 0;
    font-family: "poppins";
    color: white;
}

.admin{
    float: left;
    text-align: left;
    padding: 10px 0;
    font-family: "poppins";
    color: white;
}

/* contact page */
.content{
    display: flex;
    flex-direction: column;
    padding: 5% 10%;
    vertical-align: middle;
}

.contacts{
    width: 50%;
    padding: 20px;
    text-align: left;
    font-family: "poppins";
}

.contacts li{
    font-size: 14px;
}

.contacts i{
    font-size: 15px;
    padding-right: 10px;
}

.contacts li h4{
    font-size: 16px;
    padding-bottom: 10px;
}

.contacts ul{
    list-style-type: none;
    padding: 10px;
}

.contacts ul li a{
    text-decoration: none;
    color: #000000;
    font-family: "poppins";
    padding-bottom: 10px;
}

.cform{
    width: 50%;
    padding: 20px;
    text-align: left;
    font-family: "poppins";
}

.cform form{
    padding-top: 20px;
}

.cform form input, textarea{
    width: 100%;
    padding: 6px 15px;
    margin-bottom: 10px;
    background-color: #f1f1f1;
    border-width: 0 0 1px 0;
    border-color: #A6A6A6;
    border-radius: 5px;
    font-family: "poppins";
    font-size: 16px;
}

.cform form input:focus, textarea:focus{
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #f1f1f1;
    border-width: 0 0 1px 0 !important;
    border-color: #725411!important;
    border-radius: 5px;
    font-family: "poppins";
    font-size: 16px;
}

.cform form input[type="submit"]{
    background-color: #725411;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-family: "poppins";
    font-size: 16px;
    cursor: pointer;
    width: 40%;
}

.form-control{
    border-width: 0 0 1px 0;
    border-radius: 5px;
    border-color: #A6A6A6;
    padding: 5px 15px;
    background-color: #f6f6f6;
}

@media only screen and (max-width: 768px) {

    body{
        overflow-x: hidden;
        max-width: 100%;
    }
    
    .site-header-inner{
        padding: 10px;
    }

    .logo{
        width: 20%;
    }

    .main-title{
        margin-top: 3%;
        width: 80%;
    }

    .tagline{
        font-size: 16px;
    }

    .title{
        font-size: 32px;
    }
    
    div#myTopnav a {
        padding: 5px 12px;
    }

    .site-header-navbar{
        padding: 10px 5px;
    }

    .maintitle h1{
        font-size: 24px;
    }
    
    .maintitle h2{
        margin-top: 15px;
        font-size: 20px;
    }

    .container{
        padding: 10px 3%;
    }

    .site-footer-inner{
        padding: 30px 2%;
    }

    .footer-logo{
        width: 22%;
    }

    .footer-menu{
        width: 36%;
        padding: 0% 2%;
    }

    .footer-getintouch{
        width: 37%;
        padding: 0px;
    }

    .content{
        padding: 2% 5%;
        vertical-align: middle;
    }

    .contacts h2, .cform h2{
        font-size: 20px;
        padding-bottom: 10px;
    }

    .cform form input[type="submit"]{
        width: 60%;
    }

    .contacts{
        padding: 10px;
    }
    
    .cform{
        padding: 10px;
    }
  }

@media only screen and (max-width: 600px) {

    body{
        overflow-x: hidden;
        max-width: 100%;
    }
    
    .site-header-inner{
        padding: 8px;
    }

    .main-title{
        margin-top: 1%;
        width: 80%;
    }

    .tagline{
        font-size: 8px;
    }

    .title{
        font-size: 18px;
    }
    
    div#myTopnav a {
        padding: 5px 12px;
    }

    .site-header-navbar{
        padding: 10px 5px;
    }

    .maintitle h1{
        font-size: 20px;
    }
    
    .maintitle h2{
        margin-top: 10px;
        font-size: 18px;
    }

    .info{
        margin: 40px 0px;
        padding: 16px;
    }
    .container{
        padding: 10px 3%;
    }

    .site-footer-inner{
        padding: 30px 2% 0 2%;
    }

    .footer-logo{
        width: 30%;
    }

    .footer-menu{
        width: 66%;
        padding: 0% 2%;
    }

    .footer-getintouch{
        width: 100%;
        padding: 5px;
        text-align: center;
    }

    .contacts{
        min-width: 100%;
    }

    .cform{
        min-width: 85%;
    }
    .content {
        display: flex;
        flex-direction: column !important;
    }

    .responsive-table {
        width: 100%;
      }
    
      .responsive-table tr {
        display: block;
        margin-bottom: 10px;
      }
    
      .responsive-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
        padding: 10px;
      }

  }

  table {
    margin-top: 30px;
    font-family: "poppins";
    border-collapse: collapse;
    width: 100%;
  }
  
  td, th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
  }
  
  tr:nth-child(even) {
    background-color: #eeeeee;
  }

/* gallery */

.row { 
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
  }
  
 .column {
    flex: 20%;
    padding: 0 4px;
  }
  
  .column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
  }
  
  @media screen and (max-width: 800px) {
    .column {
      flex: 40%;
    }
  }
  
 @media screen and (max-width: 600px) {
    .column {
      flex: 100%;
    }
  }