/* Largest screens */
body {
    padding: 0;
    margin: 0;
    background-color: rgb(22, 22, 22);
    color: white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

img {
    height: auto;
    width: 100%;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: white;
}

a:hover {
    color: white;
}

div, h1, h2, p, a {
    padding-top: 0;
    margin-top: 0;
}

/* BACKGROUND COLOURS */

.background-dark {
    background-color: rgb(18, 18, 18);
}

/* Header */
/* Large Screen */
@media screen and (min-width: 1500px) {
    #header {
        display: flex;
        flex-direction: column;
        position: fixed;
        width: 100%;
        z-index: 2;
    }
    .header{
        background-color: black;
        width: 100%;
        height: 6rem;
        display: flex;
    }
    #header-home {
        display: flex;
        width: 25%;
    }
    
    #header-items {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }
    
    .header-button {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 3rem;
        border: none;
        font-size: 1.5rem;
        color: white;
        background: none;
        height: 100%;
        text-decoration: none;
        white-space: nowrap
    }
    .header-button:hover{
        color: rgb(145, 154, 165);
    }
    .header-button-active{
        color: rgb(145, 154, 165);
    }
    
    .header-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 2rem;
        height: 100%;
    }
    .header-logo > * {
        height: 70%;
    }
    .hamburger {
        display: none;
    }
}
/* Medium Screen */
@media screen and (min-width: 1150px) and (max-width: 1499px) {
    #header {
        display: flex;
        flex-direction: column;
        position: fixed;
        width: 100%;
        z-index: 2;
    }
    .header{
        background-color: black;
        width: 100%;
        height: 6rem;
        display: flex;
    }
    #header-home {
        display: flex;
        width: 25%;
    }
    
    #header-items {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }
    
    .header-button {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 2rem;
        border: none;
        font-size: 1.2rem;
        color: white;
        background: none;
        height: 100%;
        text-decoration: none;
        white-space: nowrap
    }
    .header-button:hover{
        color: rgb(145, 154, 165);
    }
    .header-button-active{
        color: rgb(145, 154, 165);
    }
    
    .header-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 2rem;
        height: 100%;
    }
    .header-logo > * {
        height: 60%;
    }
    .hamburger {
        display: none;
    }
    
}
/* Small Screen */
@media screen and (min-width: 100px) and (max-width: 1150px) {    
    #header {
        display: flex;
        flex-direction: column;
        position: fixed;
        width: 100%;
        z-index: 2;
    }
    .header{
        background-color: black;
        width: 100%;
        height: 6rem;
        display: flex;
        justify-content: space-between;
    }
    #header-home {
        display: flex;
        width: 25%;
    }
    
    #header-items {
        display: none;
    }
    #header-overlay{
        position: absolute;
        width: 100%;
        height: 100vh;
        top: 6rem;
        box-shadow: 0px 0px 2px 0px rgb(145, 154, 165);;
    }
    
    .header-button {
        display: flex;
        justify-content: center;
        align-items: center;
        border: none;
        background-color: black;
        font-size: 1.5rem;
        color: white;
        height: 6rem;
        text-decoration: none;
        border-top: 1px solid rgb(145, 154, 165);;
    }
    .header-button:hover{
        color: rgb(145, 154, 165);
    }
    .header-button-active{
        color: rgb(145, 154, 165);
    }
    .header-blank{
        background-color: #000a;
        width: 100%;
        height: 100%;
    }
    
    .header-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 0 0 1rem;
        height: 100%;
    }
    .header-logo > * {
        height: 40%;
    }
    .hamburger {
        display: block;
    }
}

.header-overlay{
    display: none;
}

/* Hamburger by Himalaya Singh*/
body {
    -webkit-tap-highlight-color: transparent;
  }
  
  #menu_checkbox {
    display: none;
  }
  
  label {
    display: block;
    width: 30px;
    height: 60px;
    margin: 2.2rem 1.2rem 0 0;
    cursor: pointer;
  }
  
  label div {
    position: relative;
    top: 0;
    height: 5px;
    background-color: #fff;
    margin-bottom: 5px;
    transition: 0.3s ease transform, 0.3s ease top, 0.3s ease width,
      0.3s ease right;
    border-radius: 2px;
  }
  
  label div:first-child {
    transform-origin: 0;
  }
  
  label div:last-child {
    margin-bottom: 0;
    transform-origin: 30px;
  }
  
  label div:nth-child(2) {
    right: 0;
    width: 30px;
  }
  
  #menu_checkbox:checked + label div:first-child {
    top: -6px;
    transform: rotateZ(45deg);
  }
  
  #menu_checkbox:checked + label div:last-child {
    top: 4px;
    transform: rotateZ(45deg);
  }
  
  #menu_checkbox:checked + label div:nth-child(2) {
    width: 42px;
    top: -0.5;
    right: 7px;
    transform: rotateZ(-45deg);
  }



/* Page Intro */
/* Large Screen */
@media screen and (min-width: 1500px) {
    .intro {
        width: 100%;
        display: flex;
        padding-top: 6rem;
    }

    .intro-img{
        width: 50%;
        height: auto;
        display: flex;
    }
    
    .intro-child {
        width: 50%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    
    .title {
        color: white;
        font-size: 5rem;
        text-align: center;
    }
    
    .subtitle {
        color: rgb(145, 154, 165);
        font-weight: normal;
        text-align: center;
        margin: 0 1rem;
    }
}
/* Medium Screen */
@media screen and (min-width: 1150px) and (max-width: 1499px) {
    .intro {
        width: 100%;
        display: flex;
        padding-top: 6rem;
    }
    .intro-img{
        width: 50%;
        height: auto;
        display: flex;
    }
    .intro-child {
        width: 50%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    
    .title {
        color: white;
        font-size: 3rem;
        text-align: center;
    }
    
    .subtitle {
        color: rgb(145, 154, 165);
        font-weight: normal;
        text-align: center;
        font-size: 1.2rem;
        margin: 0 1rem;
    }
}
/* Small Screen */
@media screen and (min-width: 800px) and (max-width: 1150px) {
    .intro {
        width: 100%;
        padding-top: 6rem;
    }
    .intro-img{
        width: 100%;
        height: auto;
        display: flex;
    }
    .intro-child {
        position: relative;
        width: 75%;
        padding: 0.5rem;
        left: 50%;
        transform: translate(-50%, -150%);
        height: auto;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
        background-color: #000a;
        border-radius: 25px;
    }
    
    .title {
        color: white;
        font-size: 3rem;
    }
    
    .subtitle {
        color: rgb(145, 154, 165);
        font-weight: normal;
        text-align: center;
        margin: 0 1rem;
    }
}
/* Smallest */
@media screen and (max-width: 799px) {
    .intro {
        width: 100%;
        padding-top: 6rem;
    }
    .intro-img{
        width: 100%;
        height: auto;
        display: flex;
    }
    .intro-child{
        margin: 5% 10% 2rem 10%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .title {
        color: white;
        font-size: 3rem;
        text-align: center;
    }
    .photo-title {
        font-size: 2.2rem;
    }
    .subtitle {
        color: rgb(145, 154, 165);
        font-weight: normal;
        text-align: center;
        font-size: 1.2rem;
    }
}
