@import url('https://fonts.googleapis.com/css?family=Libre+Caslon+Text:400,700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    min-height: 100%;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}
body{
    height: 100%;
    width: 100%;
    padding: 0;
}
.main-color{
    background-color: #FFCF01;
}
.main-menu a{
    width: 20%;
    float: left;
    text-align: center;
    font-weight: bold;
}
header{
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9;
    width: 100%;
    right: 0;
}
main{
    background-color: #F3F2F4;
}
.banner{
    margin-top: 70px;
    height: 600px;
    width: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url('../img/banner.jpg');
}
.banner .text{
    color: #fff;
    font-weight: bold;
    text-shadow: 0 0 20px black;
    position: absolute;
    left: 50%;
    top: 20%;
    transform: translate(-50%, -20%);
}
.banner .text h1{
    font-size: 40px;
}
.register{
    height: 700px;
    width: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url('../img/register.jpg');
}
footer{
    background-color: #fff;
}

.hamburger-icon {
  position: absolute;
  z-index: 1;
  top: 2vh;
  right: 2vw;
  /* padding-bottom: 1vh; */
}

.hamburger-icon span {
  height: 5px;
  width: 40px;
  background-color:#FFB400;
  display: block;
  margin: 5px 0px 5px 0px;
  transition: 0.7s ease-in-out;
  transform: none;
}

#openmenu:checked ~ .menu-pane {
  left: -5vw;
  transform: translateX(-5vw);
}

#openmenu:checked ~ .hamburger-icon span:nth-of-type(2) {
  transform: translate(0%, 175%) rotate(-45deg);
  background-color: white;
}

#openmenu:checked ~ .hamburger-icon span:nth-of-type(3) {
  transform: rotate(45deg);
  background-color: white;
}

#openmenu:checked ~ .hamburger-icon span:nth-of-type(1) {
  opacity: 0;
}

#openmenu:checked ~ .hamburger-icon span:nth-of-type(4) {
  opacity: 0;
}

div.menu-pane {
  background-color: #FFB400;
  position: absolute;
  transform: translateX(-105vw);
  transform-origin: (0, 0);
  width: 100vw;
  height: 100%;
  transition: 0.6s ease-in-out;
  z-index: 9999999999999999999999999999;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
.menu-pane p {
  color:#FFB400;
  font-size: 0.6em;
}
.menu-pane nav {
  padding: 10%;
}
.menu-links li, a, span {
    transition: 0.5s ease-in-out;
}
.menu-pane ul {
  padding: 10%;
  display: inline-block;
}
.menu-pane li {
  padding-top: 20px;
  padding-bottom: 20px;
  margin-left: 10px;
    font-size: 1em;
}
.menu-links li a {
  color: white;
  text-decoration: none;
}
.menu-links li:hover a {
  color: #FFAB91;
}
#DC-info {
  background-color: #FFAB91;
    border: 2px solid;
  border-color: #FFAB91;
display: block;
  opacity: 0;
}
.menu-links li:first-child a {
  padding: 5px;
}
input.hamburger-checkbox {
  position: absolute;
  z-index: 3;
  top: 5vh;
  left: 5vw;
  width: 10vw;
  opacity: 0;
  height: 6vh;
}

.logo{
  height: 80px;
  display: block;
  margin: auto;
}

.logo2{
  position: absolute;
  left: 20px;
  top: 20px;
  height: 80px;
  width: 80px;
  display: none;
  z-index: 999999;
}
@media(max-width: 1040px){
  .logo{
    height: 140px;
  }
}
@media(max-width: 992px){
    .md-hide{
        display: none;
    }
    .header1{
        display: none;
    }
    .banner{
        margin-top: 0;
    }
    .logo2{
      display: block;
    }
}
@media(max-width: 768px){
 .destination-card{
     margin-left: 25px;
    padding: 0 !important;
}   
}
@media(max-width: 520px){
    .banner .text h1{
      font-size: 20px;
      margin-top: 60px;
    }
    .destination-card{
        margin-left: 15px;
       padding: 0 !important;
   }   
}
@media(max-width: 480px){
    .destination-card{
        margin-left: 15px;
       padding: 0 !important;
   }   
}