header{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 192px;
    gap: 4rem;
}

header h1{
    width: 90vw;
    text-align: center;
}

header .content{
    display: flex;
    width: calc(100% - 16rem);
    width: 90vw;
    gap: 2rem;
}

header .content img{
    width: 60%;
    height: 532px;
    border-radius: 2rem;
    object-fit: cover;
    z-index: 10;
}

header .content p{
    font-family: nr;
    font-size: 2rem;
}

/**/

.employees{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    margin-top: 4rem;
    gap: 3.5rem;
}
.employees .type{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
}
.employees .type .title{
    width: 100%;
    font-family: nb;
    font-size: 3rem;
    text-align: center;
}
.employees .type .container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 850px;
    column-gap: 1.5rem;
    row-gap: .75rem;
}

.employees .type:nth-child(3) .container{
    width: 1070px;
}

.employees .type .container .element{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.employees .type .container .element img{
    width: 192px;
    height: 192px;
    margin-bottom: 4px;
    border-radius: 192px;
    background: #fff4;
    mix-blend-mode: screen;
    object-fit: cover;
    z-index: 10;
}
.employees .type .container .element .name{
    font-family: rb;
    font-size: 1.125rem;
    text-align: center;
}
.employees .type .container .element .text{
    font-family: ri;
    font-size: 1.125rem;
    text-align: center;
}

.company footer{
    background: transparent;
}


@media screen and (max-width: 959px) {
    header{
        padding-top: 128px;
    }
    header .content{
        flex-direction: column;
        align-items: center;
    }
    header .content img{
        width: 100%;
        height: auto;
    }
    .employees .type .title{
        font-size: 36px;
    }
    .employees .type .container{
        width: 550px;
    }
    .employees .type:nth-child(3) .container{
        width: 700px;
    }
    .employees .type .container .element img{
        width: 128px;
        height: 128px;
    }
    .employees .type .container .element .name, .employees .type .container .element .text{
        font-size: 12px;
    }
    
}


@media screen and (max-width: 659px) {
    .employees .type .container{
        width: 90vw;
    }
    .employees .type:nth-child(3) .container{
        width: 90vw;
    }
}