/*----------------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------ HEADER --------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------------------------------*/

.s-header {
    width: 100%;
    height: 80px;
    margin: auto;
    position: fixed;
    z-index: 500;
    top: 0;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
}

.s-header_icon {
    font-family: var(--font-header-1);
    width: 40%;
    margin-left: 10%;
    height: 80px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-size: 28px;
}

.s-header_menu {
    width: 40%;
    margin-right: 10%;
    font-family: var(--font-header-2);
    letter-spacing: 5px;
    font-weight: 400;
    font-size: 16px;
}

.s-header_menu a {
    color: rgb(136, 136, 136);
    transition: all 0.8s ease;
}

.s-header_menu a:hover {
    color: rgb(255, 255, 255);
}

/*----------------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------ FOOTER --------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------------------------------*/

.s-footer {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
    font-family: var(--font-footer);
    background-color: var(--color-intro-main);
    color: white;
    letter-spacing: 5px;
}

.s-footer_connect {
    padding-top: 30px;
    font-size: 16px;
    font-weight: 400;
}

.s-footer_icons {
    padding: 20px;
}

.s-footer_icons i {
    margin: 16px;
    font-size: 30px;
    color: rgb(136, 136, 136);
    transition: all 0.8s ease;
}

.s-footer_icons i:hover {
    color: white;
}

.s-footer_locationtag {
    font-family: var(--font-footer);
    padding: 20px;
    font-size: 12px;
    font-weight: 100;
}