/* HEADER */

.header {
    z-index: 1;
    position: fixed;
    top: 0;
    height: 59px;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);

    
}
.header .content {
    margin: auto;
    height: 59px;
    width: 1180px;
    display: flex;
    justify-content: space-between;

}


.header .content .navigation {

    position: absolute;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);

    height: 59px;
    display: flex;
    justify-content: center;
    gap: 0;
    width: calc(100vw - 280px);

}

/* DROPDOWN MENU */

.header .content .navigation .dropdown {
    position: relative;
    display: inline-block;
}


.header .content .navigation .dropdown .dropdown_content {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    position: absolute;
    top: 100%;
    min-width: 100%;
    max-height: 0;
    transition: max-height 0.15s ease 0s;
    overflow: hidden;
    z-index: 1;
}

.header .content .navigation .dropdown:hover .dropdown_content {
    max-height: 500px;
}

.header .content .navigation .dropdown .dropdown_content::before {
    background: #000;
    opacity: 70%;
    width: 100%;
    height: 100%;
    bottom: 100%;
    content: "";
    display: block;
    position: absolute;
    transition: height 0.15s ease 0s, bottom 0.15s ease 0s;
}

.header .content .navigation .dropdown:hover .dropdown_content::before {
    height: 100%;
    bottom: 0%;
}

.header .content .navigation .dropdown .link_container {
    flex-grow: 1;
    display: table;
    padding-top: 16px;
    margin-bottom: 17px;
}

.header .content .navigation .dropdown .link_container a {
    transition: color 0.15s ease 0s;
    color: #FFFFFF00;
}
.header .content .navigation .dropdown:hover .link_container a {
    color: #FFFFFF;
}

.header .content .navigation .dropdown_btn {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}



.header .content .navigation a {

    font-family: 'Red Hat Display';
    font-weight: 300;
    font-size: 20px;
    line-height: 26px;

    margin-left: 30px;
    margin-right: 30px;

    text-wrap: nowrap;
    display: flex;
    align-items: center;

    position: relative;
}

.header .content .navigation button {
    border: none;
    background: none;
    padding: 0;

    font-family: 'Red Hat Display';
    font-weight: 300;
    font-size: 20px;
    line-height: 26px;

    margin-left: 30px;
    margin-right: 30px;

    display: flex;
    align-items: center;

    position: relative;
}

.header .content .navigation a:after {
    background: none repeat scroll 0 0 transparent;
    bottom: 14px;
    content: "";
    display: block;
    height: 1px;
    left: 50%;
    top: 100%;
    position: absolute;
    background: #fff;
    transition: width 0.15s ease 0s, left 0.15s ease 0s;
    width: 0;
}
.header .content .navigation a:hover:after {
    width: 100%;
    left: 0;
}
#header_resources:after {
    width: 0%;
    left: 0;
}

/* LOGO & SOCIALS */
.header .content .logo {

    position: static;
    height: 59px;
    display: flex;
    align-items: center;
}

.header .content .logo a {
    position: relative;
    display: flex;
}
.header .content .logo a img {
    margin-top: 6px;
    height: 43px;
}

.header .content .socials {

    position: relative;
    height: 59px;
    display: flex;
    transform: translatex(-39px);
}
.header .content .socials .sideways_slide .slide_activator {
    display: flex;
    height: 59px;
    width: 39px;
}
.header .content .socials .sideways_slide .slide_activator img {
    margin: auto;
    margin-right: 15px;
}
.header .content .socials .sideways_slide {
    height: 59px;
    position: absolute;
    display: flex;
}
.header .content .socials .sideways_slide a {
    height: 100%;
    position: absolute;
}
.header .content .socials .sideways_slide a img {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.header .content .socials .sideways_slide img {
    display: block;
}
.header .content .socials .sideways_slide .slider_1 {
    padding-right: 15px;
    right: -0px;
    opacity: 0%;
    transition: right 0.15s ease 0s, opacity 0.15s ease 0s;
}
.header .content .socials .sideways_slide .slider_2 {
    padding-right: 15px;
    right: -0px;
    opacity: 0%;
    transition: right 0.15s ease 0s, opacity 0.15s ease 0s;
}
.header .content .socials .sideways_slide .slider_3 {
    padding-right: 15px;
    right: -0px;
    opacity: 0%;
    transition: right 0.15s ease 0s, opacity 0.15s ease 0s;
}
.header .content .socials .sideways_slide:hover .slider_1 {
    right: 39px;
    opacity: 100%;
}
.header .content .socials .sideways_slide:hover .slider_2 {
    right: 93px;
    opacity: 100%;
}
.header .content .socials .sideways_slide:hover .slider_3 {
    right: 147px;
    opacity: 100%;
}

.header .content .socials .sideways_slide .obstructor {
    position: absolute;
    left: -15px;
    width: 54px;
    height: 59px;
}

@media only screen and (max-width: 1320px) {
    .header .content {
        width: calc(100% - 140px);
    }
}