.header-container {
    max-width: 1700px;
    margin-right: auto;
    margin-left: auto;
    position: relative;
}

.header-wrapper {
    z-index: 4;
    background-color: #F07427;
    min-height: 60px;
}

.header {
    position: relative;
    padding: 5px 15px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 70px;
    height: 70px;
}

.title-h2.bigger-margin {
    margin-top: 40px;
}

.section.section-grey.bigger-margin {
    margin-top: 50px;
}

.title-h2.bigger-margin {
    margin-bottom: 50px;
}

.logo-label {
    margin-left: 15px;
    color: white;
    font-size: 24px;
}

.navigate {
    width: 40%;
    display: flex;
    justify-content: space-between;
}

.navigate-btn {
    color: white;
    font-size: 20px;
}

.navigate-btn-container {
    width: fit-content;
}

.underline-header {
    margin-top: 5px;
    background-color: white;
    height: 1px;
    width: 0%;
    transition: .5s ease;
}

.navigate-btn-container:hover .underline-header {
    width: 100%;
}

.burger-menu-btn {
    z-index: 3;
    display: none;
    position: absolute;
    right: 20px;
}

.burger-menu-img {
    background: #F07427;
    width: 30px;
    height: 30px;
}

.concealed-navigate {
    opacity: 0;
    visibility: hidden;
    padding: 0px 20px;
    flex-direction: column;
    justify-content: space-around;
    height: 100px;
    width: 100%;
    position: absolute;
    display: flex;
    left: 0;
    top: 100%;
    z-index: 1;
    background-color: #F07427;
    transform: translateY(10px);
    transition: .3s ease;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.concealed-navigate.shown-menu {
    visibility: initial;
    opacity: 1;
    transform: translateY(5px);
}

@media (min-width: 950px) {
    .concealed-navigate.shown-menu {
        visibility: hidden;
        opacity: 0;
    }
}

@media (max-width: 864px) {
    .header-container {
        width: 100%;
    }

    .header-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .navigate {
        display: none;
    }

    .burger-menu-btn {
        position: initial;
        display: initial;
    }

    .header {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .logo {
        width: 40px;
        height: 40px;
    }

    .logo-label {
        font-size: 20px;
    }
}