
/* BODY + HEADING */
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #ffffff;
    font-size: 12px;
    justify-content: center;
    flex-direction: column;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    font-style: normal;
} 

.heading a {
    background-color: #fff;
    color: #222;
    border: none;
    text-decoration: none;
    display: inline;
    line-height: 28px;
    border-radius: 30px;
    padding: 14px 28px;
    min-height: 30px;
    min-width: 120px;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    position: relative;
    z-index: 10;
}

.heading a:hover {
    background-color: #222;
    color: rgb(212, 212, 212);
}

/* LANDING PAGE */

.background-image-container {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: left;
    align-items: center;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.5);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.landing-logo {
    z-index: 20;
    position: absolute;
    top: 10px;
    left: 10px;
}

.heading {
    z-index: 20;
    position: relative;
    text-align: left;
    margin: 20px 20px 20px 20px;
}

.heading h1 {
    font-size: 30px;
    color: #fff;
}

.heading p  {
    font-size: 15px;
    color: #fff;
    text-align: left;
}

@keyframes fade {
    0% {
        opacity: 1;
    }

    9% {
        opacity: 1;
    }

    11% {
        opacity: 0;
    }

    98% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.background-image-container img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    top: 0;
    left: 0;
    animation: fade 54s ease-in-out infinite;
}

.background-image-container img:nth-of-type(1) {
    animation-delay: 48s;
}

.background-image-container img:nth-of-type(2) {
    animation-delay: 42s;
}

.background-image-container img:nth-of-type(3) {
    animation-delay: 36s;
}

.background-image-container img:nth-of-type(4) {
    animation-delay: 30s;
}

.background-image-container img:nth-of-type(5) {
    animation-delay: 24s;
}

.background-image-container img:nth-of-type(6) {
    animation-delay: 18s;
}

.background-image-container img:nth-of-type(7) {
    animation-delay: 12s;
}

.background-image-container img:nth-of-type(8) {
    animation-delay: 6s;
}

.background-image-container img:nth-of-type(9) {
    animation-delay: 0s;
}


/* CONTACT */
p {
    text-align: center;
}

input, button, textarea {
    border: 2px solid rgba(0, 0, 0, 0.6);
    background-image: none;
    background-color: #f8f8f8;
    box-shadow: none;
    padding: 5px;
  }
  input:focus, button:focus, textarea:focus {
    outline: none;
  }
  
  textarea {
    min-height: 50px;
    resize: vertical;
  }
  
  button {
    cursor: pointer;
    font-weight: 500;
  }
  
  .contact-card {
    border: 1px solid black;
    max-width: 500px;
    background-color: #fff;
    margin: 0 auto;
    box-shadow: -0.6rem 0.6rem 0 rgba(29, 30, 28, 0.26);
  }
  .contact-header {
    text-align: center;
    padding: 8px;
    font-size: 14px;
    font-weight: 700;
    border-bottom: 1px solid black;
  }
  .contact-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
  }
  .contact-body__message {
    margin-top: 10px;
  }
  .contact-body button {
    margin-top: 10px;
    align-self: flex-end;
  }

/* SIDE NAVIGATION AND LOGO */

.logo img {
    width: 150px;
    position: relative;
    top: 10px;
    left: 10px;
}

.sidenav {
    width: 150px;
    position: fixed;
    z-index: 1;
    top: 120px;
    left: 25px;
    overflow-x: hidden;
    padding-top: 110px;
}

.sidenav a {
    text-decoration: none;
    font-size: 14px;
    color: #000000;
    display: block;
}

/* GALLERY */

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 25px 10px 0 200px;
}

.container .box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.container .box .column {
    display: flex;
    flex-direction: column;
    width: 49.5%;
}

.container .box .column img {
    width: 100%;
    padding-bottom: 15px;
}

.container .box .column video {
    width: 100%;
    padding-bottom: 15px;
}

/* MEDIA QUERIES */

@media only screen and (max-width: 600px){
    .container {
        margin: 140px 10px 0 10px;
    }

    .container .box {
        flex-direction: column;
    }

    .container .box .column {
        width: 100%;
    }

    .sidenav {
        margin-top: -100px;
        margin-left: -20px;
        padding: 0;
        width: 200px;
        height: 100%;
        overflow: auto;
        width: 100%;
        position: relative;
        text-align: center;
    }

    .logo img {
        display: block;
        margin-top: 10px;
        margin-left: auto;
        margin-right: auto;
        width: 200px;
    }

    
    .heading h1 {
        font-size: 60px;
    }

    .heading p {
        margin-right: 100px;
    }

    .background-image-container {
        justify-content: center;
    }

    html,
    body{
      width:100%;
      overflow-x:hidden;
    }
    
  }