#main-container-responsive {
    display: none;
    height: auto;
}

#header {
    background-color: #032e59;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    position: fixed;
    z-index: 333333;

}
/* #temporaryHide{
    display: none;
} */

#headerDummy {
    width: 100%;
    height: 100px;
    position: relative;
}

#boxHeader {
    width: 100%;
    height: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#logo {
    width: 20%;
    height: 100%;
    position: relative;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;

}

#logoPhoto {
    z-index: 2;
    width: 52%;
    height: auto;
    cursor: pointer;
    transform: scale(1.2);
    animation: anim2 1.2s;
    animation-fill-mode: forwards;
}

.overlay {
    z-index: 1;
    width: 100%;
    height: 110%;
    background-color: #14539a;
    position: absolute;
    transform: scaleX(0);
    transform-origin: 0% 50%;
    animation: anim 1.2s;

}

@keyframes anim {
    0% {
        transform: scaleX(0);
        transform-origin: 0% 50%;
    }

    50% {
        transform: scaleX(1);
        transform-origin: 0% 50%;
    }

    51% {
        transform: scaleX(1);
        transform-origin: 100% 50%;
    }

    100% {
        transform: scaleX(0);
        transform-origin: 100% 50%;
    }
}

@keyframes anim2 {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 1;

    }

    51% {
        opacity: 1;

    }

    100% {
        opacity: 1;
        transform: scale(1);

    }
}




#barPointer {
    width: 69%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}



.pointers {
    font-family: 'Graphik-Regular';
    font-size: 94%;
    color: white;
}

.pointers:hover {
    font-family: 'Graphik-SemiBold';
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    #boxHeader {
        width: 86%;
        height: 80%;
        margin: 0 auto;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    #logo {
        width: 45%;
        height: 100%;
        position: relative;
        display: flex;
        align-content: center;
        align-items: center;
        justify-content: center;

    }
    .overlay{
        width: 120%;

    }

    #logoPhoto {
        width: 100%;
        height: auto;
        cursor: pointer;
    }


    /*-----Burger icon---------*/
    #main-container-responsive {
        display: block;
        height: auto;
    }

    #hamburger button {
        background: none;
        border: 0;
        cursor: pointer;
        padding: 0;
        width: 35px;
        height: 35px;
    }

    #hamburger button span {
        background: white;
        display: block;
        height: 3px;
        width: 80%;
        margin: 7px;
        animation: 1s;
        animation-fill-mode: forwards;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.25s ease-in-out;
        -moz-transition: 0.25s ease-in-out;
        -o-transition: 0.25s ease-in-out;
        transition: 0.25s ease-in-out;
    }

    #hamburger button.open span {
        margin: 0;
    }

    #hamburger button span:nth-child(3) {
        top: 31px;
    }

    #hamburger button.open span:nth-child(1) {
        top: 18px;
        -webkit-transform: rotate(135deg);
        -moz-transform: rotate(135deg);
        -o-transform: rotate(135deg);
        transform: rotate(135deg);
        margin-bottom: -5px;
    }

    #hamburger button.open span:nth-child(2) {
        opacity: 0;
        left: -60px;
    }

    #hamburger button.open span:nth-child(3) {
        top: 18px;
        -webkit-transform: rotate(-133deg);
        -moz-transform: rotate(-133deg);
        -o-transform: rotate(-133deg);
        transform: rotate(-133deg);
    }

    #barPointer {
        position: fixed;
        width: 100%;
        height: 44%;
        left: -100%;
        top: 100px;
        display: flex;
        flex-direction: column;
        background-color: #032e59;
        align-items: center;
        text-align: center;
        justify-content: space-around;
        transition: 0.3s;
    }

    .pointers {
        font-family: 'Graphik-semibold';
        font-size: 120%;

    }

    #barPointer.open {
        left: 0%;

    }

}

@media screen and (max-width: 1400px) and (min-width: 769px) {

    #barPointer {
        width: 74%;
        height: 100%;
        position: relative;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-evenly;
    }

    .pointers {
        font-family: 'Graphik-Regular';
        font-size: 15px;
        width: auto;
        line-height: 25px;
        color: white;
    }

}