@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

body {
    width:100%;
}

.workerset-presentation {
    width: 100%;    
}

.header-container {
    width: 100%;
    height: 768px;
    background: no-repeat center url('./assets/images/freelancer-feliz.svg');
    background-size: cover;
    padding:67px 30px;
    position: relative;
    z-index:1;
}

.header-container:before {
    width: 100%;
    content:'';
    position: absolute;
    height: 768px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.6);
    z-index:-1;
}

@media (min-width:800px){
    .header-container{
        padding:67px 90px;
        height: 840px;
    }

    .header-container:before {
        height: 840px;
    }
}

.nav-container {
    display:flex;
    justify-content: space-between;
    align-items: center;
}

.nav-container ul {
    display: flex;
    align-items: center;
    color: white;
    list-style:none;
    gap: 20px;
    font-weight: 500;
}

.nav-container ul li{
    font-size: 13px;

}

@media (max-width:600px){
    .close{
        width: 100%;
        display: flex;
        justify-content: flex-end;
        padding-right: 20px;
        padding-top: 20px;
    }

    .nav-container {
        display:flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-container ul {
        display: none;
        flex-direction: column;
        align-items: center;
        color: white;
        list-style:none;
        gap: 20px;
        font-weight: 500;
        background-color: #000;
        width: 100%;
        position: absolute;
        top: 0;
        padding: 0;
        left: 0;
    }

    .active {
        display: flex !important;
    }

    .nav-container ul li{
        padding:30px 0;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .border-menu{
        border-bottom: 1px solid #353535;
    }
}

.icon-mobile{
    cursor: pointer;

} 

@media (min-width:600px){
    .icon-mobile{
        display: none;
    
    }  
}

.common-style-btn{
    border-radius: 5px;
    background: #EF882F;
    color: white;
    border:0;
    font-weight: 500;
}

.common-style-btn:first-child{
    font-size: 13px;
 }

.nav-container ul li button {
    width: 107px;
    height: 37px;
    font-size: 15px;
}

.nav-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap:34px;
}

.nav-message h1 {
    color: white;
    font-weight: 300;
    font-size: 40px;
    max-width: 448px;
    text-align: center;
}

.nav-message button {
    width: 183px;
    height: 45px;
    font-size: 18px;   
}

.icon-man {
    content: url('./assets/icons/man-asesor.svg');
}

.icon-search {
    content: url('./assets/icons/search.svg');
}

.icon-note {
    content: url('./assets/icons/note.svg');
}

.icon-man-specialist {
    content: url('./assets/icons/man-specialist.svg');
}

.icon-check {
    content: url('./assets/icons/check-circle.svg');
}

.icon-clock {
    content: url('./assets/icons/clock-circle.svg');
}

.content-presentation {
  padding:70px 45px;
}

.content-description {
    display:grid;
    grid-template-columns: 100%;
    gap:50px;
    padding-bottom: 90px;
    border-bottom: 1px solid #D9D9D9;

}

.content-description section {
    display:grid;
    grid-template-columns: 80px auto;

}

@media (min-width:800px){
    .content-presentation {
        padding:96px;
      }

    .content-description {
        grid-template-columns: repeat(3, 1fr) ;
    
    }

    .content-description section {
        display:flex;
        gap: 30px;
    } 
}

.text div{
    font-size: 17px;
    font-weight: 600;
    line-height: 25px;
}

.text p{
    color: #747474;
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
}

.section-picture-description {
    display: flex;
    padding: 78px 0 39px;
    gap:42px;
    flex-direction: column;
}
.section-picture-description figure {
    order: -1;
    display: flex;
    justify-content: center;
}

.section-picture-description figure img{
    width: auto;
    height: 270px; 
    border-radius: 20px;
}

@media (min-width:600px){
    .section-picture-description {
        flex-direction: row;
    }

    .section-picture-description figure {
        order: 0;
        justify-content: flex-start;
    }

    
}


@media (min-width:1000px){
    .section-picture-description {
        gap:126px;
    }
    .section-picture-description figure img{
        width: 564px;
        height: 497px;
        border-radius: 20px;
    }
    
}

.description-options .subtitle{
    font-size: 24px;
    font-weight: 400;
    line-height: 35px;
}
.description-options section {
    padding-top: 51px;
    display: flex;
    gap:14px;
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
}

.footer {
    height: 78px;
    background-color: #000;
    color: #FFF;
    font-weight: 500;
    line-height: 26px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width:800px){
    .nav-container ul {
        gap: 38px;
    }

    .nav-container ul li{
        font-size: 15px;
    }

    .common-style-btn:first-child{
       font-size: 15px;
    }

    .nav-message {
        align-items: flex-start;
    }

    .nav-message h1 {
        font-size: 49px;
        max-width: 550px;
        text-align:start;
    }

    .description-options .subtitle{
        font-size: 29px;
        line-height: 49px;
    }

    .description-options section {
        padding-top: 51px;
        display: flex;
        gap:14px;
        font-size: 15px;
        font-weight: 300;
        line-height: 49px;
    }
}