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

body{
    color: #000;
    font-family: 'Popins',sans-serif;
    font-size: 14px;
}

.container{
    max-width: 1230px;
    padding: 0 30px;
    margin: 0 auto;
}
.title-1{
    font-size: 34px;
    font-weight: 600;
}

.header{
    background-color:#F1F1F1;
    padding-top: 46px;
}

.header-nav{
    display: flex;
    justify-content: space-between; 
    align-items: flex-end;
    margin-bottom: 76px;
}
.logo{
    position: relative;
    padding: 0 12px 3px 0;    
    font-weight: 700;
    font-size: 32px;
    line-height: 1;
    color: #000;
    
}

.logo::after{
    position: absolute;
    right: 0;
    bottom: 0  ;
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background-color: #fda300;
    border-radius: 50%;
}

.nav-list{
    display: flex;
    column-gap: 50px;
    font-weight: 500;
    font: size 14px;;
}
.nav-button{
    display: none;
}

.nav-link{
    color: #000;  
}

.nav-link.active{
    color:#606060 ;
}

.header-row{
    display: flex;
    justify-content: space-between;
    column-gap: 30px;
}


.header-content{
    margin-top: 124px;
    max-width: 500px;
}

.header-hading{
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 44px;

}

.header-content p{
     line-height: 2;
}


.services{
    padding: 90px 0;
}

.services-row{
    display: flex;
    column-gap: 30px;
    row-gap: 60px;
    flex-wrap: wrap;
}
.service-card{
    flex: 1 1 0;
    min-width: 315px;
}



.service-card-img{
    margin-bottom: 30px;
}

.service-card-title{
    margin-bottom: 10px;
    font-weight:600;
    font-size: 24px;
    text-transform: uppercase;
}
.service-card p{
    line-height: 2;
}



.portfolio{
    padding: 90px 0;
    background-color: #F1F1F1;
}



.portfolio-title{
    margin-bottom: 70px;
    text-align: center;
}



.project{
    text-align: center;

}
.project + .project{
    margin-top: 90px;
}

.project-image{
    margin-bottom: 40px;
}

.project-title{
    font-size: 18px;
}
.project-title a{
    color: #000;
    text-decoration: underline;

}

.contacts{
    padding: 90px 0;
    text-align: center;

}

.contacts-title{
    margin-bottom: 40px;
}

.contacts-content{
    max-width: 480px ;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    font-size: 18px;
}

.contacts-button{
    margin-bottom: 80px;
}

.btn{
    display: inline-block;
    padding: 7px 22px;
    background-color: #070707;
    border-radius: 30px;
    font-size: 18px;
    color: #fff;
    
}

.btn:hover, .btn:focus{
    background-color: #3232;
}

.btn:active{
    position: relative;
    top: 1px;
    background-color: #000000;
}
.contacts-social{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 60px;
    margin-bottom: 40px;
}

.contacts-footer{
    font-size: 14px;
    color: #828282;
}