@media screen and (min-width: 1168px){
    .container{
        max-width: 1158px;
        padding: 0 15px;
        margin: 0 auto;
    }

    .address-list {
        display: flex;
        gap: 40px;
        flex-direction: row;

    }

    .address-link{
         padding: 24px 0;
         font-family: Roboto;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.5;
        letter-spacing: 0.02em;
    }

    .hero-section{
        padding: 188px 0;
        max-width: 1440px;
        background-image: linear-gradient(rgba(46, 47, 66, 0.7), rgba(46, 47, 66, 0.7)), url(../images/hero/hero-bg-desc.jpg);
    }



    .hero-title{
        line-height: 1.07;
    }

    /* benefits section */
    .benefits-section {
        padding: 120px 0;
    }

    .benefits-item {
        width: 264px;
    }

    .benefit-svg{
        display: flex;
    }

    .benefits-title{
        font-weight: 500;
        font-size: 20px;
        line-height: 1.2;
    }


    .doing-section{
        display: flex;
        padding-bottom: 120px;
    }

    .doing-title {
        font-size: 36px;
        line-height: 1.11;
        text-align: center;
        text-transform: capitalize;
        letter-spacing: 0.02em;
        color: var(--dark, #2E2F42);
        margin-bottom: 72px;
    
    }
    
    .doing-list {
        display: flex;
        gap: 24px;
    }


    /* our team section  */
.team-section {
    
    padding: 120px 0;
}



.customers-section {
    padding-top: 120px;
    padding-bottom: 48px;
}

.customers-list {
    justify-content: space-between;
    gap: 24px;
}

.customer-item {
    width: calc((100% - 120px) / 6);
    height: 88px;
    
}




.footer {
    background-color: var(--dark, #2E2F42);
    padding-top: 100px;

}




.footer-text {
    line-height: 1.5;
    color: var(--light, #F4F4FD);
    letter-spacing: 0.02em;
    font-weight: 400;
    font-size: 16px;
   display: block;
   margin-bottom: 0;
}

.footer-l-c{
    gap: 0;
}

.footer-wrapper{
    display: flex;
    align-items: baseline;
}

.footer-left{
    margin-right: 120px;
    margin-left: 0;
    padding-left: 0;
}

.footer-center{

}
.footer-media-title {
    color: var(--white-background, #FFF);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
    
}

.footer-list {
    display: flex;
    /* justify-content: center; */
}

.footer-item {
    width: 40px;
    height: 40px;
    margin-bottom: 0;
}

.footer-svg-link {
    padding: 8px;
    border-radius: 50%;
    background-color: var(--primary-brand, #4D5AE5);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);

}

.footer-svg-link:hover,
.footer-svg-link:focus{
     background-color: #31d0aa;
}


.footer-svg{
    fill: #F4F4FD;
}


.footer-right {
    padding-left: 0;
    margin-left: 80px;
}

.footer-right-text{
    color: var(--WHITE, #FFF);
    font-weight: 500;
    line-height: 1.5; 
    letter-spacing: 0.02em;
    margin-bottom: 16px;
    font-size: 16px;
}

.footer-form-wrapper{

    
}
.footer-form {
    display: flex;
    gap: 24px;
}

.footer-input{
    width: 264px;
    height: 40px;
    border-radius: 4px;
    border: 1px solid var(--white-background, #FFF);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
    background-color: transparent;
    padding-top: 8px;
    padding-left: 16px;
    padding-bottom: 8px;
    color: var(--white-background, #FFF);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.04em;
}
.footer-input::placeholder {
    color: var(--white-background, #FFF);
}
.footer-subscr-btn {
    background-color: var(--primary-brand, #4D5AE5);
    color: var(--white-background, #FFF);
    text-align: center;
    padding: 8px 24px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.04em;
    border-radius: 4px;
    gap: 16px;
    min-width: 165px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Roboto", sans-serif;
    cursor: pointer;
    border: none;
    
}
.footer-subscr-svg {
    fill: var(--white-background);
    
    
}


}

@media only screen and (min-width: 1168px) and (min-resolution: 192dpi) {
    .hero{
        background-image: linear-gradient(rgba(46, 47, 66, 0.7), rgba(46, 47, 66, 0.7)), url(../images/hero/hero-bg-desc@2x.jpg);
    }
    
}