*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: 'Open Sans', sans-serif;
}
body{
    background-color: #3A3A3A;
}
/* Header navigation */
.header-container{
    display: flex;
    overflow: hidden;
    justify-content: space-between;
    align-items: center;
    margin: 2vh 6.24vh 2vh 6.24vh;
}
.header-nav{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 90px;
}
.header-menu{
    color: white;
    text-decoration: none;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
}
.header-menu:hover{
    cursor: pointer;
    color: #FF7E7E;
    transition: 1s;
}
.header-menu-active{
    color: #FF7E7E;
    font-size: 18px;
    line-height: 21px;
    text-decoration: none;
    font-style: normal;
    font-weight: 500;
}
.header-menu-active:hover{
    cursor: pointer;
}
.language, .content{
    text-decoration: none;
    color: white;
}
.language:hover, .content:hover{
    color: #FF7E7E;
    transition: 1s;
}
.header-dropdown-1, .header-dropdown-2{
    position: absolute;
    display: none;
}
.header-menu:hover .header-dropdown-1{
    display: flex;
    flex-direction: column;
    gap: 1vh;
    background-color: #3A3A3A;
    padding: 2vh;
    box-shadow: 1px 10px 25px #0000006b;
    z-index: 100;
}
.header-menu-active:hover .header-dropdown-1{
    display: flex;
    flex-direction: column;
    gap: 1vh;
    background-color: #3A3A3A;
    padding: 2vh;
    box-shadow: 1px 10px 25px #0000006b;
    z-index: 100;
}
.header-menu:hover .header-dropdown-2{
    display: block;
    background-color: #3A3A3A;
    padding-top: 1vh;
    padding-right: 1vh;
    padding-left: 1vh;
    padding-bottom: 1vh;
    box-shadow: 1px 10px 25px #0000006b;
    z-index: 100;
}
/* Our-Job */
.job-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.job-section-1{
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 45vh;
}
.job-section-1::after{
    content: "";
    background: url("Our-Job.svg");
    opacity: 0.25;
    position: absolute;
    height: 45vh;
    width: 100%;
    z-index: -1;   
}
.job-section-2{
    display: flex;
    position: relative;
    flex-direction: column;
    gap: 5vh;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 65vh;
}
.text-title{
    color: white;
    font-size: 36px;
    font-weight: 600;
}
.job-section-2::after{
    content: "";
    background: #424242;
    background-image: url("backgroundCircles.png");
    background-blend-mode: overlay;
    opacity: 0.7;
    position: absolute;
    width: 100%;
    height: 65vh;
    z-index: -1;   
}
.job-title{
    color: white;
    font-size: 48px;
    font-weight: bold;
}
.job-text{
    color: white;
    font-size: 24px;
    text-align: center;
}
/* Footer */
.footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 3vh 8vh 3vh 8vh;
}
.footer-logos{
    display: flex;
    gap: 5.53vh;
}
.footer-text{
    color: white;
    font-size: 18px;
    font-weight: 600;
}
/* Media */
@media only screen and (max-device-width: 480px) and (max-device-height: 900px){
    .header-container{
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        height: 20vh;
        gap: 5vh;
    }
    .header-nav{
        gap: 2vh;
    }
    .job-section-1{
        display: flex;
        position: relative;
        align-items: center;
        justify-content: center;
        width: 100vh;
        height: 70vh;
        flex-direction: column;
    }
    .job-section-1::after{
        content: "";
        background: url("Our-Job.svg");
        opacity: 0.25;
        position: absolute;
        height: 70vh;
        width: 100vh;
        z-index: -1; 
    }
    .job-section-2{
        display: flex;
        position: relative;
        align-items: center;
        justify-content: center;
        height: 80vh;
        width: 100vh;
    }
    .job-section-2::after{
        content: "";
        background: #424242;
        background-image: url("backgroundCircles.png");
        background-blend-mode: overlay;
        opacity: 0.7;
        position: absolute;
        width: 100vh;
        height: 80vh;
        z-index: -1;   
    }
    .text-title{
        font-size: 40px;
        text-align: center;
        padding-left: 18vh;
    }
    .job-text{
        text-align: center;
        font-size: 15px;
        margin-left: 37vh;
        margin-right: 23vh;
        padding-left: 5vh;
    }
    .footer{
        gap: 35vh;
    }
}