#header {
    width: 100%;
    position: fixed;
    z-index: 1000;
}

/**************************************************************************************************************************************/
/***********************************************************    .BLOCK1    ************************************************************/
/**************************************************************************************************************************************/

#header .block1 {
    background-color: #23853B;
    height: 50px;
    color: #FFFFFF;
    display: flex;
    flex-direction: row;
    width: 100%;
}

#header .block1 #info {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    font-weight: bold;
    letter-spacing: 1px;
    align-items: center;
}

#header .block1 #info a {
    color: #FFFFFF;
    width: fit-content;
}

#header .block1 #info #mail {
    margin: 0px 40px;
}

/**************************************************************************************************************************************/
/***********************************************************    .BLOCK2    ************************************************************/
/**************************************************************************************************************************************/

#header .block2 {
    display: flex;
    flex-direction: row;
    background-color: #FFFFFF;
    height: 90px;
    color: #000000;
    box-shadow: #dddddd 0px 8px 10px;
    width: 100%;
    justify-content: space-around;
    align-items: center;
}

#header .block2 #logo {
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: -webkit-fill-available;
}

#header .block2 #logo img {
    height: 125px;
    width: auto;
}

#header .block2 #language {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: fit-content;
    border-radius: 8px;
    box-shadow: #dddddd 6px 6px 4px;
}

#header .block2 #language p {
    padding: 10px 20px;
    cursor: pointer;
}

#header .block2 #language .fr {
    border: 2px solid #FFFFFF;
    border-radius: 8px 0 0 8px;
    color: #494949;
}

#header .block2 #language .de {
    background-color: #EF7D15;
    border: 2px solid #EF7D15;
    border-radius: 0 8px 8px 0;
    color: #FFFFFF;
}

#header .block2 #language .fr:hover {
    border: 2px solid #EF7D15;
    color: #EF7D15;
}

#header .block2 ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
}

#header .block2 ul a,
#header .block2 ul li {
    margin: 0 10px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    color: #494949;
    font-size: 12px;
    display: flex;
    height: 30px;
    align-items: center;
}

#header .block2 ul .activ {
    border-bottom: 2px solid #494949;
}

#pop-up-container {
    position: relative;
    cursor: pointer;
}

#pop-up-container .fa-chevron-down {
    font-size: 16px;
    margin-left: -8px;
    margin-top: 8px;
    cursor: pointer;
}

#popup {
    display: none;
    position: absolute;
    border: 2px solid #EF7D15;
    background-color: #FFFFFF;
    top: 32px;
    flex-direction: column;
    width: 280px;
    height: auto;
}

#popup a {
    background-color: white;
    color: #EF7D15 !important;
    border: none;
    cursor: pointer;
    margin: 0px !important;
    line-height: 30px;
}

#popup a p:hover {
    background-color: #EF7D15;
    color: #FFFFFF;
}

#popup li {
    color: #EF7D15 !important;
    width: 100%;
}

#popup li:hover {
    color: #FFFFFF !important;
}

/**************************************************************************************************************************************/
/********************************************************    MENU RESPONSIVE    *******************************************************/
/**************************************************************************************************************************************/

.block3 {
    background-color: #FFFFFF;
    height: 80px;
    color: #FFFFFF;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    border-bottom: 2px solid #29A048;
    display: none;
}

.block3 img {
    height: 80px;
    width: auto;
    margin-left: 40px;
}

.block3 #language-2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: fit-content;
    border-radius: 8px;
    box-shadow: #dddddd 6px 6px 4px;
    margin: auto;
    margin-right: 40px;
}

.block3 #language-2 p{
    padding: 10px 20px;
    cursor: pointer;
}

.block3 #language-2 .fr{
    border-radius: 8px 0 0 8px;
    color: #494949;
}

.block3 #language-2 .de{
    background-color: #EF7D15;
    border: 2px solid #EF7D15;
    border-radius: 0 8px 8px 0;
    color: #FFFFFF;
}

.block3 #language-2 .de:hover {
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
}

.block3 #logo-menu-hamburger {
    margin: auto;
    margin-right: 40px;
    font-size: 30px;
    cursor: pointer;
    color: #EF7D15;
}

#menu-hamburger {
    width: 100%;
    height: calc(100vh - 80px);
    display: none;
    flex-direction: column;
    background-color: #FFFFFF;
    overflow-y: scroll;
}

#menu-hamburger nav {
    display: flex;
    flex-direction: column;
    width: 100%;
}

#menu-hamburger nav a {
    width: 100%;
    display: block;
    padding: 20px;
    color: #494949;
    border-bottom: 2px solid #29A048;
}

#menu-hamburger nav div {
    border-bottom: 2px solid #29A048;
}

#menu-hamburger nav div a {
    border-bottom: none;
    display: flex;
    flex-direction: row;
}

#menu-hamburger nav p {
    padding: 20px;
    padding-bottom: 0;
}

#menu-hamburger nav ul li a ,
#menu-hamburger nav ul div p,
#menu-hamburger nav ul div a li{
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
}

#menu-hamburger  nav div .fa-circle {
    font-size: 6px;
    margin-left: 40px;
    margin-top: 8px;
    margin-right: 10px;
}

/**************************************************************************************************************************************/
/**********************************************************    RESPONSIVE    **********************************************************/
/**************************************************************************************************************************************/


@media (max-width: 1024px) {
    
    #header .block1,
    #header .block2 {
        display: none;
    }

    #header .block3 {
        display: flex;
    }
    
}

@media (max-width: 768px) {
    
    .block3 {
        align-items: center;
    }
    .block3 #language-2 {
        margin-right: 20px;
        font-size: 12px;
    }
    .block3 #language-2 p {
        padding: 4px 10px;
    }
    .block3 #logo-menu-hamburger {
        margin-right: 20px;
    }

}

@media (max-width: 436px) {

    .block3 img {
        margin-left: 20px;
    }

}

@media (max-width: 340px) {
    
    .block3 img {
        height: 60px;
    }
}