/* Specs from specsheet */
body {
    font-family: helvetica;
    font-size: 22px;
    color: seashell;
    background-color: black;
    opacity: 0.9;
    text-align: center;
    margin: 0;
}

.header {
    width:100%;
    height: 69px;
    display: block;
    background-color: black;
    position: fixed;
    top: 0px;
    border-bottom: 1px solid seashell;
    z-index: 1;
}

.checkbtn{
    font-size: 30px;
    color: white;
    line-height: 20px;
    margin-top: 15px;
    margin-right: 30px;
    cursor: pointer;
    display: none;
}
  
#check{
    display: none;
}

.logo {
    height: 50px;
    float: left;
    padding-left: 10px;
}

button {
    font-size: 22px;
    padding: 10px;
    color: #fff;
    background-color: black;
    border: 1px solid white;
}

button:hover {
    background-color: gray;
    cursor: pointer;
    transition: .2s ease-in .1s;
}

nav a li{
    display: table;
    float: right;
    padding-right: 10px;
    text-align: right;
    color: white;
    margin-bottom: 10px;
    padding: 0px 10px;
    height: 100%;
    text-decoration: none;
}

.header a li:hover {
    text-decoration: none;
    color: grey;
}

#mission h4 {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.mission-container {
    background-image: url(./photos/img-mission-background.jpeg);
    background-repeat: no-repeat;
    background-position: center;
    height: 700px;
    max-width: 40px auto 40px auto;
    display: flex;
}

.text-over {
    margin: auto;
    background-color: black;
    width: 100%;
    opacity: 0.8;
}

#home-style {
    padding: 1em;
}

#home-style p {
    padding: 10px 5em;
}

#menus {
    columns: 2;
    padding: 15px;
}

.col_slit1{
}

.col_slit1 img{
    width: 800px;
    height: 500px;
}

.col_slit2{
    padding: 20px;
    height: 455px;
    display: table-cell;
    vertical-align: middle;
    border: 4px solid white;
}

.col_slit2 h2{
    /* text-decoration: underline; */
    text-align: left;
    border-bottom: 2px solid white;
    font-size: 2em;
    /* display: inline-block; */
    /* padding: 0 1.5rem; */
}

.col_slit2 p{
    display: table-cell;
    vertical-align: middle;
}

.col_slit2 .view-btn {
    margin-top: 20px;
}

.trend-container {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    height: auto;
}

.trend img { 
    height: 200px;
    width: 300px;
    padding: 10px 20px;
}

.trend img:hover { 
    transform: scale(1.1);
}

.banner {
    background-image: url(./photos/img-locations-background.jpeg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 500px;
    max-width: 1200px;
    margin: 40px auto auto auto;
}

.text-top {
    font-size: 40px;
    font-weight: bold;
}

.box-container {
    max-width: 1050px;
    margin: 15px auto auto auto;
    display: flex;
    justify-content: space-between;
}

.box { 
    display: inline;
    color: seashell;
    background-color: black;
    box-sizing: border-box;
    height: 300px;
    width: 300px; 
    padding: 20px;
    margin: 80px auto auto auto;
    opacity: .8;
}

@media screen and (max-width: 1630px) {
    #menus {
        columns: 1;
        padding: 5px;
    }
}

@media screen and (max-width: 1270px) {

    .header {
        position: fixed;
    }

    #home-style {
        height: auto;
        margin: 15px;
    }

    #home-style p {
        margin: 20px;
        padding-left: 2.6em;
        padding-right: 2.6em;
    }

    .text-over {
        margin: auto;
        background-color: black;
        max-width: 750px;
        min-width: 300px;
        opacity: 0.8;
    }

    #main_copy{
      padding: .5em;
    }
  
    nav ul {
      display: block;
    }
  
    .checkbtn {
      display: block;
      float: right;
    }
  
    ul {
      position: fixed;
      width: 100%;
      height: 100vh;
      background: white;
      top: 30px;
      left: -150%;
      text-align: center;
      transition: all .5s;
    }
  
    ul a{
      color: #fff;
      font-size: 40px;
    }

    nav a li {
        color: black;
        display: block;
        float: none;
        padding-right: 0;
        text-align: center;
        margin-top: 10px;
        padding: 0;
        height: 100px;
        text-decoration: none;
        z-index: 1;
    }
  
    nav ul li{
      display: block;
      padding: .8em;
    }
  
    a:hover, a.active{
      background: none;
      color: #fff;
    }
  
    #check:checked ~ ul{
      left: 0%;
    }

    .banner {
        height: 60em;
        background-image: none;
    }

    .box-container {
        max-width: 1050px;
        margin: 15px auto auto auto;
        display: block;
        justify-content: space-evenly;
    }

    .box { 
        display: grid;
        color: seashell;
        background-color: black;
        box-sizing: content-box;
        height: 300px;
        width: 300px; 
        padding: 10px;
        margin: 80px auto auto auto;
        opacity: .8;
    }
}

@media screen and (max-width: 500px) {
    #home-style{
        margin: 5px;
        padding-left: 1em;
        padding-right: 1em;
    }

    #home-style p {
        margin: 20px;
        padding-left: 1em;
        padding-right: 1em;
    }
}