@import url('https://fonts.googleapis.com/css2?family=Alegreya:ital,wght@0,400..900;1,400..900&display=swap');

*{
    font-family: "Alegreya", serif;
    font-optical-sizing: auto;
    font-style: normal;
}

body {
    background-color: #fefefe;
}

.site-container {
    max-width:100vw;
    min-height:100vh;
    margin:0 auto;
}

.hero {
    z-index:2;
}

.slider {
    z-index:1;
}

.navigation-container {
    background: linear-gradient(rgba(0,0,0,0.35) 30%, rgba(0,0,0,0.25) 70%, rgba(0,0,0,0.0) 99%);
    opacity: 90%;
    z-index:3;
    border-radius: 0 0 15px 15px;
    position: absolute;
    width: 100%;
    display:flex;
    justify-content: center;
}

.navigation-container .link {
    font-size: 22px;
}

.trips-container{
    background-color: rgba(201,218,228, 0.01);
    border-radius:8px;
}

.trips-container h5 {
    text-align: center;
    font-size: 28px;
}

.link {
    text-transform: none;
    text-decoration: none;
}

.white {
    color: floralwhite;
}

.black {
    color:#191919
}

.bolder {
    font-weight:550;
}


.regular {
    font-size: 1rem;
}

.home-logo img{
    max-height: 48px;
    filter: drop-shadow(1px 1px 1px floralwhite);
}

.home-logo:hover img{
    filter: drop-shadow(3px 3px 3px floralwhite);
    transition: all .1s ease;
}

.link:hover {
    opacity: 80%;
    color: floralwhite;
}

.carousel-item {
    height: 100vh;
}

.carousel-item img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit:cover;
}

.middle-text {
    position: absolute;
    text-align: center;
    top:40%;
    left:15%;
    z-index:3;
    width:70%;
    filter: drop-shadow(2px 2px 2px #5e5e5e);
}

h1 {
    font-size:54px;
}

h2 {
    font-size:48px;
}

h3 {
    font-size:42px;
}

h4 {
    font-size:36px;
}

h5 {
    font-size:30px;
}

p, span {
    font-size: 18px;
}

main {
    background: rgba(0,0,0,.015);
    color: #191919;
}

.latest-container {
    padding:3rem auto;
    margin-top: 48px;
}

.latest-container h2 {
    text-align: center;
}

.latest-container article {
    width:100%;
    max-width: 520px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    margin:16px 16px 48px 16px;
}

.latest-container article img {
    display:block;
    max-width:100%;
    object-fit:cover;
}

.latest-container article p {
    text-overflow: ellipsis;
    overflow:hidden;
    height:81px;
    width: 100%;
    margin: 0;
}

.pre-footer {
    background-image: url("/static/img/5-3/15.png");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height:12vh;
    margin-top:auto;
}

.footer {
    background-color: #002F6C;
}

.about-container {
    margin-top: 48px;
}

.about-container article {
    margin: 16px 16px 64px 16px;
}

.about-container article img {
    width: 55%;
    border-radius:8px 0 0 8px;
    object-fit: cover;
}

.about-container article:last-of-type img {
    border-radius: 0 8px 8px 0;
} 

.about-container article p {
    font-size: 20px;
}

.about-container h2 {
    text-align:center;
}

.parallax {
  background-image: url("/static/img/5-3/15.png");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height:12vh;
}

.menu {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  
  .menu > li {
    margin: 0 1rem;
    overflow: hidden;
  }
  
  .menu-button-container {
    display: none;
    height: 100%;
    width: 30px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  #menu-toggle {
    display: none;
  }
  
  .menu-button,
  .menu-button::before,
  .menu-button::after {
    display: block;
    background-color: #fff;
    position: absolute;
    height: 4px;
    width: 30px;
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
  }
  
  .menu-button::before {
    content: '';
    margin-top: -8px;
  }
  
  .menu-button::after {
    content: '';
    margin-top: 8px;
  }
  
  #menu-toggle:checked + .menu-button-container .menu-button::before {
    margin-top: 0px;
    transform: rotate(405deg);
  }
  
  #menu-toggle:checked + .menu-button-container .menu-button {
    background: rgba(255, 255, 255, 0);
  }
  
  #menu-toggle:checked + .menu-button-container .menu-button::after {
    margin-top: 0px;
    transform: rotate(-405deg);
  }

@media (max-width: 1020px) {
    .about-container article img {
        width: 55%;
    }

    h5 {
        font-size: 24px!important;
    }

    .navigation-container .link {
        font-size: 20px!important;
    }

    .container {
        max-width: 100%!important;
    }
}

@media (max-width: 768px) {
    .about-container article img {
        width: 100%;
    }
    .about-container article {
        flex-direction: column!important;
    }
    .menu-button-container {
      display: flex;
    }
    .menu {
      position: absolute;
      top: 0;
      margin-top: 50px;
      left: 0;
      flex-direction: column;
      width: 100%;
      justify-content: center;
      align-items: center;
    }
    #menu-toggle ~ .menu li {
      height: 0;
      margin: 0;
      padding: 0;
      border: 0;
      transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }
    #menu-toggle:checked ~ .menu li {
      border: 1px solid rgba(0,0,0,.2);
      height: 2.5em;
      padding: 0.5em;
      transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }
    .menu > li {
      display: flex;
      justify-content: center;
      margin: 0;
      padding: 0.5em 0;
      width: 100%;
      color: white;
      background-color: rgba(0,0,0,.2);
    }
    .menu > li:not(:last-child) {
      border-bottom: 1px solid #444;
    }

    .mobile-d-none {
        display: none!important;
    }
  }
  @media (min-width: 768px) {
    .desktop-d-none {
        display: none!important;
    }
  }

  .even-nav-flex-item {
    display:block;
    width:175px;
  }