
.mainHeader {
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    height:12%;
    z-index: 100;
    box-shadow: 0px 0px 5px #ddd;
    background-color: white;
    min-height: 7em;
}

#headerFlexContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: fit-content;
}

#headerLogo {
    margin-right: 5%;
    margin-left: .3%;
    width: 30%;
    height:80%;
}

#valHeaderLogo {
    margin-right: 5%;
    margin-left: .3%;
    margin-top:2%;
    width: 42%;
    height:100%;
}

#mobile-header {
    display: flex;
    justify-content: space-between;
    width: 22%;
    height: 12%;
    z-index: 100;
    background-color: white;
}

#burger-nav {
    display: none;
}

/*===============Dropdown=================*/
#headerFlexContainer ul {
    list-style-type: none;
}

.nav-main-menu {
    display: flex;
    justify-content: flex-end;
    padding-inline-start: 0%;
}

.nav-link {
    width: 25%;
    height: 40px;
    padding: 26px 22px;
    margin-inline: 10px;
    font-size: 20px;
    text-decoration: none;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-link:hover {
    color: black;
}

.nav-link span {
    margin-right: 5px;
}

.fa-chevron-down {
    font-size: 12px;
    transition: .3s;
}

.dropdown:hover .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown:hover .nav-link{
    color: black;
}

.dropdown {
    position: relative;
    width: fit-content;
    white-space: nowrap;
}

.dropdown a {
    display: flex;
    justify-content: space-between;
    width: fit-content;
    padding-inline: 2%;
}

.dropdown span {
    width: fit-content;
}

.nav-main-menu .dropdown-content {
    display: none;
    position: absolute;
    top:60px;
    left:0;
    background: white;
    min-width: 10%;
    border-top: 3px solid grey;
    border-radius: 0 0 3px 3px;
    animation: slideUp .3s;
}

.dropdown-content li {
    padding:5px;
}

.dropdown-content li a {
    color:var(--primary-color);
    text-decoration: none;
}

.dropdown-content li a:hover {
    text-decoration: underline;
    color: black;
}

.dropdown-content li:hover {
    background: white
}

@keyframes slideUp {
    from{
        margin-top: 20px;
    } to {
        margin-top: 0px;
    }
}

.betaAnnouncement {
    position: absolute;
    background-color: lightgreen;
    width: 120px;
    padding-inline: 10px;
    right:100px;
    top:0px;
    z-index: 100;
    transform:translateX(-50%);
    border: solid darkgreen 2px;
}

.betaAnnouncement a {
    text-decoration: underline;
}

/* ==Tablets (landscape)== */
@media (min-width: 800px) and (max-width: 1366px) and (orientation : landscape) {

}

@media (min-width: 800px) {
    .dropdown:hover .dropdown-content{
        display: block;
    }
}

#socialAndContact {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-right: 1%;
    margin-left:2%;
}

#socialMediaBox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

#contactInfo {
    padding: 0;
    margin: 0;
    color: #bb2a30ff;
    font-weight: bold;
}

#contactInfo:hover {
    text-decoration: underline;
}

.fa {
    font-size: 50px;
    width: 50px;
    padding: 5%;
    text-align: center;
    text-decoration: none;
}

.fa:hover {
    opacity: 0.7;
}

.fa-facebook {
    background: #3B5998;
    color: white;
    margin:2px;
    padding:1%;
    padding-top:20%;
    padding-bottom: 20%;
}

.fa-instagram {
    background: red;
    color: white;
    margin:2px;
    padding:1%;
    padding-top:20%;
    padding-bottom: 20%;
}

@media (min-width: 800px) and (max-width: 1366px) and (orientation : landscape) {

    .nav-main-menu {
        display: flex;
        justify-content: flex-end;
        padding-inline-start: 0;
    }

    .betaAnnouncement {
        position: absolute;
        background-color: lightgreen;
        width: 120px;
        padding-inline: 10px;
        right:-50px;
        top:120px;
        z-index: 100;
        transform:translateX(-50%);
        border: solid darkgreen 2px;
    }

    .mainHeader {
        position: fixed;
        top:0;
        left:0;
        width: 100%;
        height:12%;
        z-index: 100;
        box-shadow: 0px 0px 5px #ddd;
        background-color: white;
    }
    
    #headerFlexContainer {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    #headerLogo {
        margin-right: 5%;
        margin-left: .3%;
        width: 30%;
        height:80%;
    }
    
    #valHeaderLogo {
        margin-right: 5%;
        margin-left: .3%;
        margin-top:2%;
        width: 42%;
        height:120%;
    }
    
    #mobile-header {
        display: flex;
        justify-content: space-between;
        width: 28%;
        height: 18%;
        z-index: 100;
        margin-left: 2%;
        background-color: white;
    }
    
    #burger-nav {
        display: none;
    }
    
    /*===============Dropdown=================*/
    #headerFlexContainer ul {
        list-style-type: none;
    }
    
    .nav-main-menu {
        display: flex;
        justify-content: flex-end;
    }
    
    .nav-link {
        width: 25%;
        height: 40px;
        padding: 26px 22px;
        margin-inline: 10px;
        font-size: 20px;
        text-decoration: none;
        color: var(--primary-color);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-link:hover {
        color: black;
    }
    
    .nav-link span {
        margin-right: 5px;
    }
    
    .fa-chevron-down {
        font-size: 12px;
        transition: .3s;
    }
    
    .dropdown:hover .fa-chevron-down {
        transform: rotate(180deg);
    }
    
    .dropdown:hover .nav-link{
        color: black;
    }
    
    .dropdown {
        position: relative;
        width: fit-content;
        white-space: nowrap;
    }
    
    .dropdown a {
        display: flex;
        justify-content: space-between;
        width: fit-content;
        padding-inline: 2%;
    }
    
    .dropdown span {
        width: fit-content;
    }
    
    .nav-main-menu .dropdown-content {
        display: none;
        position: absolute;
        top:60px;
        left:0;
        background: white;
        min-width: 10%;
        border-top: 3px solid grey;
        border-radius: 0 0 3px 3px;
        animation: slideUp .3s;
    }
    
    .dropdown-content li {
        padding:5px;
    }
    
    .dropdown-content li a {
        color:var(--primary-color);
        text-decoration: none;
    }
    
    .dropdown-content li a:hover {
        text-decoration: underline;
        color: black;
    }
    
    .dropdown-content li:hover {
        background: white
    }
    
    @keyframes slideUp {
        from{
            margin-top: 20px;
        } to {
            margin-top: 0px;
        }
    }
    
    @media (min-width: 800px) {
        .dropdown:hover .dropdown-content{
            display: block;
        }
    }
    
    #socialAndContact {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-right: 1%;
    }
    
    #socialMediaBox {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
    }
    
    #contactInfo {
        padding: 0;
        margin: 0;
        color: #bb2a30ff;
        font-weight: bold;
    }
    
    #contactInfo:hover {
        text-decoration: underline;
    }
    
    .fa {
        font-size: 50px;
        width: 50px;
        padding: 5%;
        text-align: center;
        text-decoration: none;
    }
    
    .fa:hover {
        opacity: 0.7;
    }
    
    .fa-facebook {
        background: #3B5998;
        color: white;
        margin:2px;
        padding:1%;
        padding-top:20%;
        padding-bottom: 20%;
    }
    
    .fa-instagram {
        background: red;
        color: white;
        margin:2px;
        padding:1%;
        padding-top:20%;
        padding-bottom: 20%;
    }
}


/* ==Tablets (Portrait)== */
@media (min-width: 800px) and (max-width: 1366px) {
    .mainHeader {
        position: fixed;
        top:0;
        left:0;
        width: 100%;
        height: 6%;
        z-index: 10;
        box-shadow: 0px 0px 5px #ddd;
        background-color: white;
    }

    .betaAnnouncement {
        position: absolute;
        background-color: lightgreen;
        width: 120px;
        padding-inline: 10px;
        left:100px;
        top:190px;
        z-index: 100;
        transform:translateX(-50%);
        border: solid darkgreen 2px;
    }
    
    #headerFlexContainer {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    #mobile-header {
        display: flex;
        justify-content: space-between;
        width: 100%;
        height: 2%;
        z-index: 100;
        background-color: white;
    }

    #headerLogo {
        width: 30%;
        height:80%;
    }

    #valHeaderLogo {
        width: 30%;
        height:80%;
    }

    .burger-nav {
        display: block;
        height: 80px;
        width: 80px;
        background: url(../images/burger-icon.svg) no-repeat;
        background-size: contain;
        top:20px;
        position: relative;
        cursor: pointer;
    }

    #socialAndContact {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        margin-right: 1%;
    }

    #active {
        display: flex;
    }

    .dropdown-content #active {
        display: block;
    }

    /*===============Dropdown=================*/
    #headerFlexContainer ul {
        list-style-type: none;
    }

    .nav-main-menu {
        z-index: 50;
        position: relative;
        width:30%;
        right:-360px;
        top:-15px;  
        display: none;
        padding-top: 3%;
        flex-direction: column;
        justify-content: space-between;
        color: white;
        background-color: var(--primary-color);
        border-radius: 2rem;
        border: 2px solid var(--primary-color-dark);
        height:auto;
    }

    .nav-link {
        width: 12%;
        height: 15px;
        padding-top:10px;
        margin-inline: 5px;
        font-size: 12px;
        text-decoration: none;
        color: var(--primary-color);
        display: flex;
        justify-content: flex-start;
        align-items: center;

    }

    .nav-link:hover {
        color: black;
    }

    .nav-link span {
        margin-right: 5px;
    }

    .fa-chevron-down {
        width:5px;
        margin: 2px;
        padding: 2px;
        font-size: 6px;
        transition: .3s;
    }

    .dropdown:hover .fa-chevron-down {
        transform: rotate(180deg);
    }

    .dropdown:hover .nav-link{
        color: white;
    }

    .dropdown {
        position: relative;
        width: fit-content;
        white-space: wrap;
    }

    .dropdown a {
        display: flex;
        justify-content: space-between;
        width: fit-content;
        color:white;
        padding-inline: 0;
    }

    .dropdown span {
        width: fit-content;
    }

    .nav-main-menu .dropdown-content {
        display: none;
        flex-direction: column;
        position: relative;
        top:-20px;
        font-size: 12px;
        color:white;
        background: var(--primary-color);
        width: 200px;
        padding-left: 00px;
        border-top: 1px solid grey;
        border-radius: 0 0 3px 3px;
        text-wrap: wrap;
    }

    .dropdown-content li {
        padding:5px;
        width:150px;
    }

    .dropdown-content li a {
        color:white;
        text-decoration: none;
    }

    .dropdown-content li a:hover {
        text-decoration: underline;
        color: black;
    }

    .dropdown-content li:hover {
        background: white
    }
}

@media (max-width: 800px) {

    .betaAnnouncement {
        font-size: 10px;
        position: absolute;
        background-color: lightgreen;
        width: 80px;
        padding-inline: 10px;
        left:50px;
        top:90px;
        z-index: 100;
        transform:translateX(-50%);
        border: solid darkgreen 2px;
    }

    .mainHeader {
        position: fixed;
        top:0;
        left:0;
        width: 100%;
        height: 12%;
        z-index: 10;
        box-shadow: 0px 0px 5px #ddd;
        background-color: white;
    }
    
    #headerFlexContainer {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    #mobile-header {
        display: flex;
        justify-content: space-between;
        width: 100%;
        height: 3%;
        z-index: 100;
        background-color: white;
    }

    #headerLogo {
        width: 30%;
        height:80%;
    }

    #valHeaderLogo {
        width: 30%;
        height:80%;
    }

    .burger-nav {
        display: block;
        height: 80px;
        width: 80px;
        background: url(../images/burger-icon.svg) no-repeat;
        background-size: contain;
        top:20px;
        position: relative;
        cursor: pointer;
    }

    #socialAndContact {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        margin-right: 1%;
    }

    #active {
        display: flex;
    }

    .dropdown-content #active {
        display: block;
    }

    /*===============Dropdown=================*/
    #headerFlexContainer ul {
        list-style-type: none;
    }

    .nav-main-menu {
        z-index: 50;
        position: relative;
        width:50%;
        right:-140px;
        top:-15px;  
        display: none;
        padding-top: 3%;
        flex-direction: column;
        justify-content: space-between;
        color: white;
        background-color: var(--primary-color);
        border-radius: 2rem;
        border: 2px solid var(--primary-color-dark);
        height:auto;
    }

    .nav-link {
        width: 12%;
        height: 15px;
        padding-top:10px;
        margin-inline: 5px;
        font-size: 12px;
        text-decoration: none;
        color: var(--primary-color);
        display: flex;
        justify-content: flex-start;
        align-items: center;

    }

    .nav-link:hover {
        color: black;
    }

    .nav-link span {
        margin-right: 5px;
    }

    .fa-chevron-down {
        width:5px;
        margin: 2px;
        padding: 2px;
        font-size: 6px;
        transition: .3s;
    }

    .dropdown:hover .fa-chevron-down {
        transform: rotate(180deg);
    }

    .dropdown:hover .nav-link{
        color: white;
    }

    .dropdown {
        position: relative;
        width: fit-content;
        white-space: wrap;
    }

    .dropdown a {
        display: flex;
        justify-content: space-between;
        width: fit-content;
        color:white;
        padding-inline: 0;
    }

    .dropdown span {
        width: fit-content;
    }

    .nav-main-menu .dropdown-content {
        display: none;
        flex-direction: column;
        position: relative;
        top:-20px;
        font-size: 12px;
        color:white;
        background: var(--primary-color);
        width: 200px;
        padding-left: 00px;
        border-top: 1px solid grey;
        border-radius: 0 0 3px 3px;
        text-wrap: wrap;
    }

    .dropdown-content li {
        padding:5px;
        width:150px;
    }

    .dropdown-content li a {
        color:white;
        text-decoration: none;
    }

    .dropdown-content li a:hover {
        text-decoration: underline;
        color: black;
    }

    .dropdown-content li:hover {
        background: white
    }
}