/* --------------------------- */
/*        Header Desktop       */
/* --------------------------- */

#header{
    position: sticky;
    top: 0;
    z-index: 999;
}
header.desktops{
    height: 6rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.75);
    background-color: var(--main-colour);
    background:linear-gradient(137.5deg,#006446,#006446 35%,#00573d 35%,#00573d 70%,#006446 70%,#006446)
}
header.desktops > .header-logo-container{
    height: 4rem;
    width: 22rem;
    padding: 1rem;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
header.desktops > .header-logo-container > img{
    height: 4rem;
    width: min-content;
}
header.desktops > .header-links-container{
    height: 4rem;
    margin: auto;
    width: 24rem;
    border-radius: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    place-content: center;
    text-align: center;
}
header.desktops > .header-links-container > a{
    height: 4rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: large;
    font-weight: bolder;
    text-decoration: none;
    color: white;  
} 

header.desktops > .header-button{
    position: absolute;
    top: 0;
    right: 0;
    height: calc(100% - 2.4rem);
    width: 13rem;
    margin: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: xx-large;
    font-weight: bolder;
    text-decoration: none;
    color: white;
    border: medium solid white;    
    border-radius: 15px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/header-button.png);
    -webkit-box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.75);
}
header.desktops > .header-button:hover{
    transform: scale(1.1);
}

/* --------------------------- */
/*         Header Mobile       */
/* --------------------------- */


header.mobiles{
    width: 100%;
    height: 4rem;
    -webkit-box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.75);
    background-color: var(--main-colour);
    background: linear-gradient(137.5deg,#00573d,#00573d 60%,#006446 60%,#006446);
}
header.mobiles > .header-mobiles{
    display: flex;
    justify-content: center;
    align-items: center;
}
header.mobiles > .header-mobiles > .header-logo-container{
    height: 4rem;
    width: 50vw;
    display: flex;
    justify-content: center;
    align-items: center;
}
header.mobiles > .header-mobiles > .header-logo-container > img{
    width: 100%;
    max-height: 49px;
    max-width: 275px;
}
header.mobiles > .header-mobiles > button{
    height: 3rem;
    width: 3rem;
    position: absolute;
    top: .5rem;
    right: .5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background-color: transparent;
}
header.mobiles > .header-mobiles > button > span{
    font-size: 3rem;
    color: white;
}

header.mobiles > .header-mobiles-dropdown > nav{
    height: 8rem;
    width: 100%;
    overflow-x: scroll;
    background-color: var(--main-colour);
    background: linear-gradient(137.5deg,#00412d,#00412d 60%,#00553b 60%,#00553b);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1rem;
    place-items: center;
}
header.mobiles > .header-mobiles-dropdown > nav > a{
    height: 6rem;
    width: 12rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    border: medium solid white;
    font-size: xx-large;
    font-weight: bolder;
    text-decoration: none;
    color: white;
}
.menu-dropdown-items > a{
    background-color: #00553b;
}

/* --------------------------- */
/*        Header Queries       */
/* --------------------------- */

@media only screen and (max-width: 1023px) {
    header.desktops{
        display: none;
    }
}
@media only screen and (min-width: 1024px) {
    header.mobiles{
        display: none;
    }
}