@import "navbar.css";
@import "aboutus.css";
@import "blogs.css";
@import "footer.css";
@import "blogpost.css";

.container {
    display: contents;
    flex-flow: row wrap;
    justify-content: flex-start;
}

.cover {
    width: 100%;
    max-height: 75vh;
}

.destinations-container {
    margin: 5vh 20vw 0 25vw;
    display: flex;
    flex-flow:column;
    justify-content: flex-start;
    text-align: center;
    
}

.destinations {
    width: 30vw;
    height: 30vw;
    border-radius: 50%;
}

.caption {
    text-align: center;
    margin: 2vh 4vw 2vh 4vw;
    font-size: 1.25rem;
    display: flex;
    flex-flow: column;
    font-style: italic;
}

/*Extra small devices*/
@media screen and (min-width: 200px) and (max-width: 499px) {
    .destinations-container {
        justify-content: center;
        flex-wrap: wrap;
    }
 }

/*Small devices and Tablets*/
@media screen and (min-width: 500px) and (max-width: 767.98px) {
    .destinations-container {
        margin: 5vh 10vw 0 10vw;
    }
 }
 * {
    box-sizing: border-box;
}
table {
    padding: 0 3px;
}
table td {
    width: 100%;
    display: block;
}
label {
    display: block;
    padding-bottom: 5px;
}
span {
    color:#000;
}
input {
    border: 1px solid #ccc;
    width: 100%;
    padding: 10px;
    outline: none;
    margin-bottom: 15px;
}
input[type=submit] {
    background-color: #0DBFDC;
    color: white;
    font-weight: bold;
    margin-top: 40px;
    border-radius: 4px;
    width: 100%;
}
textarea {
    border: 1px solid #ccc;
    width: 100%;
    padding: 10px;
    outline: none;
    min-height: 80px;
    resize: vertical;
}
button {
  border: none;
  background-color: #000000;
  padding: 12px 0;
  cursor: pointer;
  font-size: xx-large;
  color: #ffffff;
}
@media only screen and (min-width: 768px) {
    table {
        padding: 30px 80px 0 80px;
    }
    table td {
        width: 50%;
        display:inline-block;
    }
    textarea, input {
        width: 80%;
    }
    input[type=submit] {
        width: fit-content;
    }
    ul li ul {
        font-size: 18px;
        list-style: outside none none;
        visibility: hidden;
        opacity: 0;
        border-radius: 4px;
        position: absolute;
    padding-bottom: 1px;
    display: none;
        background : #000
       
      }
    
      ul li:hover > ul,
      ul li ul:hover {
        visibility: visible;
        opacity: 1;
        display: block;
        min-width: 250px;
        text-align: left;
        padding-top: 20px;
        padding: auto;
        
        box-shadow: 0px 3px 5px -1px #ccc;
      }
      ul li {
        list-style: none;
        margin: 0 auto;
        display: inline-block;
        position: relative;
        text-decoration: none;
        text-align: center;
        font-family: arvo;
      }
    
      li a {
        color: white;
      }
    
      li a:hover {
        color: #3ca0e7;
      }
    
      li:hover {
        cursor: pointer;
      }
    
      ul li ul li {
        clear: both;
        width: 100%;
        text-align: right;
        margin-bottom: 20px;
        border-style: none;
      }
    
      ul li ul li a:hover {
        padding-left: 10px;
        border-left: 2px solid #3ca0e7;
        transition: all 0.3s ease;
      }
    }
    
    
    a {
    
      text-decoration: none;
    
      &:hover {
          color: #3CA0E7;
      }
    
    }
    .banner {
        width: 100%;
        height: 20%;
      }
    
      .banner img {
        height : 100%;
        width: 100%;
      }
      #mobile-icon:checked ~ nav > ul {
        max-height: 100vh;
      }
        /* mobile nav change hamburger to x on click */
  #mobile-icon:checked ~ .toggle .hamburger-icon {
    background-color: transparent;
  }
  #mobile-icon:checked ~ .toggle .hamburger-icon:before {
    top: 0;
    transform: rotate(45deg);
  }
  #mobile-icon:checked ~ .toggle .hamburger-icon:after {
    top: 0;
    transform: rotate(-45deg);
  }
  .hide-mobile {
    display: none;
  }

    ul li ul li a { transition: all 0.5s ease; }
    


