
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root{
    --primary-Red: hsl(7, 99%, 70%) ;
    --primary-Yellow: hsl(51, 100%, 49%) ;
    --primary-Green01: hsl(167, 40%, 24%) ;
    --primary-Blue: hsl(198, 62%, 26%) ;
    --primary-Green02: hsl(167, 30%, 45%) ;
    --White: hsl(0, 100%, 100%) ;
    --black: hsl(212, 27%, 19%) ;
    --Grey-600: hsl(213, 9%, 39%) ;
    --Grey-550: hsl(232, 10%, 55%) ;
    --Grey-400: hsl(207, 12%, 85%) ;
}


body{
    font-family: "Barlow", sans-serif;
}

/* START ABOUT */
#about{
    background: url(images/desktop/image-header.jpg) no-repeat center/cover;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}
#about::after{
    content: '';
    position: absolute;
    background-color: rgb(208, 158, 158);
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: url(images/icon-arrow-down.svg) no-repeat center;
}
#about nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 95vw;
    margin: auto;
    padding: 20px 0;
}
#about nav #ulList{
    display: flex;
}
#about nav #ulList li{
    list-style: none;
    margin: 0 30px;
}
#about nav #ulList li a{
    color: var(--White);
    text-decoration: none;
    font-size: 18px;
}
#about nav #ulList li:last-child a{
    background-color: white;
    font-weight: bold;
    padding: 10px 30px;
    border-radius: 30px;
    color: var(--black);
}
#about nav #ulList li:last-child a:hover{
    background-color: var(--Grey-400);
    color: var(--White);
}
#about .content{
    /* font-size: 55px; */
    color: var(--White);
    position: absolute;
    left: 50%;
    top: 30%;
    transform: translate(-50%,-50%);
}
#about .content h2{
    font-size: 5vw;
}
/* END ABOUT */

/* START SERVICES */
#services{
    min-height: 100vh;
}
#services .boxes{
    display: grid;
    grid-template-rows: repeat(3,1fr) ;
}
.box{
    display: grid;
    grid-template-columns: repeat(2,1fr) ;
}
.box .col{
    width: 100%;
}
.box .col.info-text{
    background-color: var(--White);
    color: var(--black);
    display: flex ;
    padding: 0 150px ;
    align-items: center ;
}
.box .col.info-text .content h3{
    font-size: 35px;
    margin-bottom: 30px;
}
.box .col.info-text .content p{
    margin: 40px 0 ;
}
.box .col img{
    width: 100% ;
    height: 100%;
}

.box .graphic{
    position: relative;
}
.box .graphic .content-graphic{
    position: absolute;
    bottom: 20%;
    text-align: center;
}
.box .graphic .content-graphic p{
    max-width: 40%;
    margin: auto;
    margin-top: 40px;
}
/* END SERVICES */
/* START TESTIMONIALS */
#testimonials{
    padding: 60px 0;
}
#testimonials .grid{
    max-width: 65vw;
    margin: auto;
}
.header{
    text-align: center;
    color: var(--Grey-600) ;
    margin: 60px 0;
    font-size: 30px;
}
#testimonials .grid{
    display: grid;
    grid-template-columns: repeat(3,1fr) ;
    align-items: center;
}
#testimonials .col-testimonial{
    text-align: center;
    padding: 20px 30px;
}
.col-testimonial .img img{
    height: 70px;
    width: 70px;
    border-radius: 50%;
}
p.subtitle{
    color: var(--Grey-600);
    margin: 30px 0;
}
.user b{
    font-size: 20px;
}
.user p{
    font-size: 14px;
    color: var(--Grey-600);
    margin-top: 20px;
}
/* END TESTIMONIALS */

/* START GALLERY */
#gallery .images{
    display: grid;
    grid-template-columns: repeat(4,1fr) ;
}
#gallery .images img{
    width: 100%;
}
/* END GALLERY */


footer{
    background-color: var(--primary-Green02);
    padding: 60px 0;
    text-align: center;
}
footer a img{
    color: var(--primary-Green01);
}

footer .ulList{
    margin: 20px 0;
    display: flex;
    max-width: max-content;
    margin: 40px auto;
}

footer .ulList li{
    text-align: center;
    margin: 0 20px;
    list-style: none;
}

footer .ulList li a{
    text-decoration: none;
    color: var(--primary-Green01);
}

footer .icones img{
    margin: 0 15px;
    cursor: pointer;
    color: var(--primary-Green01) ;
}

footer .images img:hover ,
footer .ulList li a:hover{
    color: var(--White);
    cursor: pointer;
}

#about .bar{
    display: none;
}

/* MOBILE DESIGN  */
@media (max-width:800px) {
    /* START ABOUT */
    #about{
        position: relative;
    }
    #about nav{
        max-width: 85vw;
        margin: auto;
        padding: 40px 0;
    }
    #about nav #ulList{
        display: none;
    }
    #about nav #ulList.active{
        display: block;
        position: absolute;
        width: 90%;
        top: 30%;
        left: 50%;
        transform: translate(-50%,-50%);
        background-color: var(--White);
        padding: 20px;
        z-index: 10;
    }
    #about nav #ulList.active li{
        margin-bottom: 30px;
        text-align: center;
    }
    #about nav #ulList.active li a{
        color: var(--black);
    }
    #about nav #ulList.active li:last-child a{
        background-color: var(--primary-Yellow);
    }
    #about .bar{
        display: block;
        cursor: pointer;
        transition: .3s;
        position: relative;
    }
    #about .bar::before{
        content: '';
        position: absolute;
        border-style: solid;
        border-color: transparent transparent var(--White) transparent;
        border-width: 30px;
        top: calc(100% + 8px);
        left: 10%;
        transform: translateX(-50%);
        display: none;
    }
    #about .bar.active::before{
        display: block;
    }
    /* START ABOUT */
    /* START SERVICES */
    .box{
        display: grid;
        grid-template-columns: repeat(1,1fr) ;
    }
    .box:first-child{
        order: 1;
    }
    .box .col.info-text{
        padding: 0 50px ;
        align-items: center ;
    }
    /* END SERVICES */
    /* START TESTIMONIALS */
    #testimonials .grid{
        max-width: 75vw;
        margin: auto;
    }
    .header{
        margin: 30px 0 40px;
    }
    #testimonials .grid{
        grid-template-columns: repeat(1,1fr) ;
    }
    #testimonials .col-testimonial{
        padding: 10px 20px;
        margin-bottom: 40px;
    }
    .col-testimonial .img img{
        height: 80px;
        width: 80px;
        border-radius: 50%;
    }
    .user p{
        font-size: 12px;
        color: var(--Grey-600);
        margin-top: 5px;
    }
    /* END TESTIMONIALS */
    /* START GALLERY */
    #gallery .images{
        display: grid;
        grid-template-columns: repeat(2,1fr) ;
    }
    /* END GALLERY */
}