
* {
  margin: 0;
  padding: 0;
}

body{
  max-width: 100vw;
  overflow-x: hidden;
}

    /*----------------contents css ---------------------------------------*/
    .title {
      font-weight: bold;
      font-size: 64px;
    }
    .title2 {
      font-size: 64px;
    }
    .title3 {
      font-weight: bold;
      font-size: 54px;
    }
    .title4 {
      font-size: 54px;
    }
.linktxt{
  color: black;
  text-decoration:underline;
}
.linkpng-xlarge{
  width: 2%;
}
.linkpng-large{
  width: 2%;
}
.linkpng-small{
  width: 5%;
}





  .xl-map .mapouter{
    float: right;
  }

  .med-sm-padding  {
    padding-left: calc(50vw - 220px);


    /*----------------loader css ---------------------------------------*/

}

.loader {
  position: fixed;
  z-index: 100;
  height:100%;
  width: 100%;
  background-color: white;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;

  }

.loader img{
  height: 100px;
}

.loader.hidden{
  animation: fadeOut 1s;
  animation-fill-mode: forwards;
}

@keyframes fadeOut{
 100%{
  opacity: 0;
  visibility: hidden;
 }
}
/*-------Collapsible pannel-----*/
.collapsible {
  background-color: #777;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

.active, .collapsible:hover {
  background-color: #555;
}

.collapsible:after {
  content: "\f078";
  color: white;
  font-weight: bold;
  float: right;
  margin-left: 5px;
  font-family: 'Font Awesome 5 Pro';

}

.active:after {
  content: "\f077";
}

.collapsible-content {
  padding: 0 5%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #f1f1f1;
}

/*----------------desktop header css ---------------------------------------*/

#nav{
  position: fixed;
  background: white;
  padding: 0 30px;
  width: 100%;
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;

}
#nav a{
font-weight: 500;
font-size: calc(7px + (20 - 7) * ((100vw - 300px) / (1600 - 300)));
color: black;
}

#nav a:hover{
text-decoration: none;
color: #316a40;
}

.hoverlg .dsk_logo{
height: 150px;
margin-top: 95px;
}


.hoverlg img:hover{
opacity: 0.5;
}


.dropbtn {
  background-color: white;
  color: black;
  padding: 10px;
  font-size: 16px;
  border: none;
}

.dropdown {
  position: relative;
  display: inline-block;
  z-index: 1;

}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {color: grey;}

.dropdown:hover .dropdown-content {display: block;}

.dropdown:hover .dropbtn {background-color: white; color:grey;}



/*----------------desktop socials css ---------------------------------------*/

.socials{
  z-index: 20;
  bottom: 20px;
  position: fixed;
  margin-left: 5%;
}

.socials a {
color: black;
}

.socials a:hover {
color: #316a40;
}




/* --------------------------------- mobile header css -------------------------- */




nav{
  height: 70px;
  width: 100%;
  background: white;
}

.mbl_logo{
  height: 7em;
  position: absolute;
  right: 5vw;
  top: 15px;
}

.menu-box{
  position: fixed;
  z-index: 1;
  top: 0;
  left: 10px;
}

.menu-box .toggler{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 50px;
  height: 50px;
  opacity: 0;
  cursor: pointer;
}

.menu-box .hamburger {
  position: absolute;
  top: 25px;
  left: 10px;
  z-index: 1;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-box .hamburger > div{
  position: relative;
  z-index: 1;
  width: 100%;
  height: 2px;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.menu-box .hamburger > div:before,
.menu-box .hamburger > div:after{
 content: '';
 position: absolute;
 z-index: 1;
 top: -10px;
 width: 100%;
 height: 2px;
 color: black;
 background-color: black;
}


.menu-box .hamburger > div:after{
  top: 10px;
}

.menu-box .toggler:checked + .hamburger > div{
  transform: rotate(135deg);
}

.menu-box .toggler:checked + .hamburger > div:before,
.menu-box .toggler:checked + .hamburger > div:after{
  top:0;
  transform: rotate(90deg);
}

.menu-box .toggler:checked:hover + hamburger > div{
  transform: rotate(225deg);
}




.menu-box .toggler:checked ~ .menu{
  visibility: visible;
}

.menu-box .toggler:checked ~ .menu > div{
  transform: scale(1)

}

.menu-box .toggler:checked ~ .menu > div > div{
  opacity: 1;
  transition: opacity 0.4s ease;

}

.menu-box .menu{
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;

}

.menu-box .menu > div{
  background:rgba(0,0,0, 0.8);
  border-radius: 50%;
  height: 400vw;
  width: 400vw;
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: all 0.4s ease;
}


.menu-box .menu > div > div{
  text-align: center;
  max-height: 100vh;
  max-width: 90vw;
  opacity: 0;
  transition: opacity 0.4s ease;

}

.menu-box .menu li{
  list-style: none;
  color: white;
  font-size: 0.5em;
}

.menu-box .menu a{
  font-size: 3em;
  text-decoration: none;
  color: white;
  transition: color 0.4s ease;

}

.menu-box .menu a:hover{
  color: #316a40;
}

.sub-nav{
    padding-top: 100px;
    text-align: center
}
.sub-nav a{
  padding-left: 1vw;
  color: black;

}

.sub-nav a:hover{
  color: #316a40;
  text-decoration: none;
}


/* --------------------------------- footer -------------------------- */

.footer  {
  text-align: center;
  color: black;
  bottom: 0;
  font-size: 10px;
  z-index: 1;
}
