/* ***********************************************************
 * THIS FILE ONLY CONTAINS STYLING FOR THE NAVIGATION MENU   *
 * IT IS ONLY ABOUT THE NAVIGATION-HEADER, NOT THE SUB-ITEMS *
 *********************************************************** */

/* BEGIN NAV-MENU */


/*! ************************** Mobile Window Size ************************** */


/* BEGIN LEFT CONTENT: HEADER LOGO + TEXT, HEADER CONTAINER */
.header-wrapper {
    position: relative;
    z-index: 10000;
    width: 100vw;
    transition: all 0.25s ease 0s;
    max-height: 50px;
    height: 50px;
}

.header-wrapper .menue {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-wrapper .logo .text {
    margin-left: 62px;
    text-transform: uppercase;
    padding: 14px 0 25px 0;
    transition: all 0.25s ease 0s;
    text-align: center;
}
.header-wrapper .logo .text .name {
    font-family: arimoregular;
    font-size: 10px;
    line-height: 1em;
    padding: 2px 0 2px 0;
    color: var(--white);
    text-align: center;
}
.header-wrapper .logo .text .claim {
    font-family: headlineregular;
    font-size: 10px;
    line-height: 1em;
    padding: 2px 0 2px 0;
}
.header-wrapper .icon-logo {
    width: 50px;
    height: 50px;
    background: url("../images/svg/thw-bv-logo.svg") no-repeat top left;
    background-color: var(--darkish-blue);
    background-size: cover;
    position: absolute;
    transition: all 0.25s ease 0s;
}
.header-wrapper .icon-logo-grey {
    width: 50px;
    height: 50px;
    background: url("../images/svg/thw-bv-logo-grey.svg") no-repeat top left;
    background-color: var(--darkish-blue);
    background-size: cover;
    position: absolute;
    transition: all 0.25s ease 0s;
}
#rt-logo a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}
/* END LEFT CONTENT: HEADER LOGO + TEXT, HEADER CONTAINER */


/* BEGIN RIGHT CONTENT: BURGER MENU */
.header-wrapper .toggle-wrap {
    display: grid;
    align-items: center;
    height: 35px;
    
}

.header-wrapper .toggle__title {
    color: #FFFFFF;
}

.header-wrapper .toggle__after span {
    transition: all .5s ease;
    background-color: #FFFFFF;
}

.header-wrapper .toggle-wrap .toggle {
    position: relative;
    display: flex;
    justify-content: space-evenly;
    border: none;
    outline: none;
    background: none;
}

.header-wrapper .toggle-wrap .toggle:active .toggle__title {
    padding-right: 10px;
}

.header-wrapper .toggle-wrap .toggle:active .toggle__after {
    opacity: 0;
    right: 10;
}

.header-wrapper .toggle-wrap .toggle:focus {
    outline: 0;
    box-shadow: none;
}

.header-wrapper .toggle-wrap .toggle .toggle__before {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;

    height: 27px;
    width: inherit;

    transition: all .3s ease;
    margin-top: 4px;
    margin-right: 0;
    opacity: 0;
    z-index: -1;
}


.header-wrapper .toggle-wrap .toggle .toggle__before span {
    display: block;
    height: 2px;
    width: 20px;
    border-radius: 25px;
    background-color: #FFFFFF;
    transform-origin: center;
}

.header-wrapper .toggle-wrap .toggle .toggle__before span:nth-child(1) {
    position: absolute;
    transform: rotate(90deg);
    width: 10px;
    right: 5px;
    top: 8px;
}

.header-wrapper .toggle-wrap .toggle .toggle__before span:nth-child(3) {
    position: absolute;
    transform: rotate(-90deg);
    width: 10px;
    right: 5px;
    bottom: 7px;
}

.header-wrapper .toggle-wrap .toggle .toggle__title {
    display: none;
}

.header-wrapper .toggle-wrap .toggle .toggle__after {
    position: absolute;
    right: 15px; /*      @TO-DO */
    top: 50%;
    transform: translateY(-50%);

    display: flex;
    flex-direction: column;
    justify-content: space-evenly;

    height: 27px;
    width: 27px;

    transition: all .3s ease;
    opacity: 1;
    z-index: -1;
}

.header-wrapper .toggle-wrap .toggle .toggle__after span {
    display: block;
    height: 2px;
    width: 20px;
    border-radius: 25px;
    background-color: #FFFFFF;
}

.header-wrapper .toggle-wrap .toggle .toggle__after span:nth-child(2) {
    width: 16px;
    margin-left: 4px;
}

/* BEGIN2 CHANGE ITEMS WHEN BODY HAS CLASS -open */

/* ELEMENT BEFORE */
body.-open .header-wrapper .toggle-wrap .toggle .toggle__before {
    opacity: 1;
    margin-right: 0;
    transform: rotate(45deg);
}

body.-open .header-wrapper .toggle-wrap .toggle .toggle__before span {
    transform-origin: center;
}

body.-open .header-wrapper .toggle-wrap .toggle .toggle__before span:nth-child(1) {
    transform: rotate(90deg);
    width: 10px;
    right: 5px;
    top: 8px;
}

body.-open .header-wrapper .toggle-wrap .toggle .toggle__before span:nth-child(3) {
    transform: rotate(-90deg);
    width: 10px;
    right: 5px;
    bottom: 7px;
}

body.-open .header-wrapper .toggle-wrap .toggle:hover .toggle__before {
    transform: rotate(135deg);
}

/* ELEMENT CENTER */
body.-open .header-wrapper .toggle-wrap .toggle .toggle__title {
    background-color: transparent;
    padding-right: 10px;
    color: #FFFFFF;
}

/* ELEMENT END */
body.-open .header-wrapper .toggle-wrap .toggle .toggle__after {
    opacity: 0;
    right: 10px;
}

/* END2 CHANGE ITEMS WHEN BODY HAS CLASS -open */

/* END RIGHT CONTENT: BURGER MENU */

.header-wrapper.small {
    position: fixed!important;
    transition: all 0.25s ease 0s;
    top: 0;
}

.header-wrapper.small .logo .text .claim.small {
    text-align: center;
}


/*! ************************** 576px Window Size ************************** */


@media (min-width: 576px) {

    .header-wrapper .toggle-wrap .toggle .toggle__before {
        margin-right: -35px;
    }

    .header-wrapper .toggle-wrap .toggle .toggle__title {
        display: inline-block;
        margin: 0 10px 0 10px;
        font-family: arimoregular;
        font-size: 18px;
        font-weight: 400;
        letter-spacing: -.03em;
        padding-right: 40px;
        transition: all .3s ease;
        line-height: 2;
        z-index: 999;
    }

    .header-wrapper .toggle-wrap .toggle:active .toggle__after {
        right: 30px;
    }

}


/*! ************************** 768px Window Size ************************** */


@media (min-width: 768px) {
    .header-wrapper {
        max-height: 75px;
        height: 75px;
    }
    .header-wrapper .logo .text {
        margin-left: 170px;
        padding: 25px 0 5px 0;
        text-align: left;
    }
    .header-wrapper .logo .text .name {
        font-size: 16px;
        text-align: left;
    }
    .header-wrapper .logo .text .claim {
        font-size: 16px;
    }
    .header-wrapper .icon-logo {
        width: 150px;
        height: 150px;
    }

    .header-wrapper .icon-logo-grey {
        width: 150px;
        height: 150px;
    }

    .header-wrapper.small {
        max-height: 75px;
        height: 75px
    }

    .header-wrapper.small .logo .text {
        margin-left: 105px;
        padding: 30px 0 31px 0;
        position: relative;
    }

    .header-wrapper.small .logo .text .claim {
        display: none;
    }

    .header-wrapper.small .logo .text .claim.small {
        display: block;
        text-align: center;
        position: absolute;
        /*left: 19.888%;
        right: 0;
        top: 30px;
        */
    }

    .header-wrapper.small .icon-logo {
        width: 75px;
        height: 75px;
        transition: all 0.25s ease 0s;
    }

    .header-wrapper.small .icon-logo-grey {
        width: 75px;
        height: 75px;
        transition: all 0.25s ease 0s;
    }
}


/*! ************************** 992px Window Size ************************** */


@media (min-width: 992px) {

    .header-wrapper {
        max-height: 125px;
        height: 125px;
    }

    .header-wrapper .logo .text {
        margin-left: 285px;
        padding: 40px 0 25px 0;
    }

    .header-wrapper .logo .text .name {
        font-size: 22px;
    }

    .header-wrapper .logo .text .claim {
        font-size: 22px;
    }

    .header-wrapper .icon-logo {
        width: 260px;
        height: 260px;
    }

    .header-wrapper .icon-logo-grey {
        width: 260px;
        height: 260px;
    }

    .header-wrapper.small {
        max-height: 100px;
        height: 100px
    }

    .header-wrapper.small .logo .text {
        margin-left: 125px;
        /*padding: 40px 0 31px 0;*/
    }

    .header-wrapper.small .logo .text .claim {
        display: none;
    }

    .header-wrapper.small .logo .text .claim.small {
        display: block;
        /* left: 18.777777%;
        top: 40px; */
    }

    .header-wrapper.small .icon-logo {
        width: 100px;
        height: 100px;
        transition: all 0.25s ease 0s;
        transition: 950ms;
    }

    .header-wrapper.small .icon-logo-grey {
        width: 100px;
        height: 100px;
        transition: all 0.25s ease 0s;
        transition: 950ms;
    }

    /* Provitex */
    .header-wrapper .toggle-wrap .toggle .toggle__before span {
        transform-origin: unset;
    }

    .header-wrapper .toggle-wrap .toggle .toggle__before span:nth-child(1) {
        right: 0;
        bottom: unset;
        top: unset;
        transform-origin: right;
        transform: rotate(35deg);
        width: 12px;
    }
    
    .header-wrapper .toggle-wrap .toggle .toggle__before span:nth-child(3) {
        right: 0;
        bottom: unset;
        transform-origin: right;
        transform: rotate(-35deg);
        width: 12px;
    }
}


/*! ************************** 1100px Window Size ************************** */


@media (min-width: 1100px) {
    .header-wrapper .logo .text .name {
        font-size: 22px;
    }
    .header-wrapper .logo .text .claim {
        font-size: 22px;
    }


    /* Provitex */
    .header-wrapper .toggle-wrap .toggle:hover .toggle__before {
        opacity: 1;
        margin-right: 0;
    }
    
    .header-wrapper .toggle-wrap .toggle:hover .toggle__title {
        padding-right: 10px;
    }
    
    .header-wrapper .toggle-wrap .toggle:hover .toggle__after {
        opacity: 0;
        right: 30px;
    }

    .header-wrapper .toggle-wrap .toggle:active .toggle__before {
        opacity: 1;
        margin-right: 0;
    }
}

/* END NAV-MENU */