*{
    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("individual-workouts.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: 50vh;
}
.text-title, .fill-form{
    color: white;
    font-size: 36px;
    font-weight: 600;
}
.fill-form{
    padding-bottom: 10vh;
}
.job-section-2::after{
    content: "";
    background: #424242;
    background-image: url("backgroundCircles.png");
    background-blend-mode: overlay;
    opacity: 0.7;
    position: absolute;
    width: 100%;
    height: 50vh;
    z-index: -1;   
}
.job-title{
    color: white;
    font-size: 48px;
    font-weight: bold;
}
.job-text{
    color: white;
    font-size: 24px;
    text-align: center;
}
.job-section-3{
    padding-top: 10vh;
    flex-direction: column;
    background-color: #3E3E3E;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.box{
    display: flex;
    background-color: #484848; 
    width: 52.54vh;
    height: 78vh;
    justify-content: center;
    align-items: center;
    margin-bottom: 13vh;
}
.box-name, .selection, .message, .button{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.box-name, .selection, .message{
    background-color: #484848;
    border: 1px solid #A5A5A5;
    color: #8A8A8A;
}
.box-name, .selection{
    width: 36.5vh;
    height: 4.2vh;
    font-size: 14px;
    font-weight: 600;
    padding-left: 1vh;
}
.box-name{
    margin-bottom: 5vh;
}
.selection{
    margin-bottom: 7vh;
}
.button{
    background-color: #FF7E7E;
    font-size: 18px;
    font-weight: bold;
    color: white;
    margin-top: 3vh;
    width: 100%;
    height: 5.75vh;
    border: 2px solid #FF7E7E;
    border-radius: 2px;
}
.button:hover{
    cursor: pointer;
    background-color: rgb(255, 102, 102);
    transition: 1s;
}
/* 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-title{
        font-size: 20px;
    }
    .job-section-2{
        margin-top: 30vh;
    }
    .job-section-3{
        margin-top: 20vh;
        width: 53vh;
    }
    .fill-form{
        font-size: 20px;
    }
    .footer{
        padding-top: 5vh;
        gap: 14vh;
        justify-content: center;
        align-items: center;
        display: flex;
    }
}