.smarter-adequate {
    background: #EEEEEE;
    max-width: 1920px;
    margin: 0 auto;
    padding: 100px 200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.smarter-adequate .title {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 50px;
    line-height: 45px;
    letter-spacing: 0.03em;
    color: #000000;
    margin: 0 0 75px 0 ;
}
.smarter-adequate .specs-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    height: 400px;
    width: 450px;
}

.single-spec {
    display: flex;
    justify-content: flex-start;
}

.single-spec img {
    display: block;
    margin: 0 25px 0 0;
    width: 45px;
}

.single-spec h3 {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 23px;
    line-height: 32px;
    letter-spacing: 0.03em;
    color: #000000;
}
.single-spec p {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 0.03em;
    color: #000000;
}

@media only screen and (max-width: 1265px) {
   .smarter-adequate {
       padding: 100px 100px;
   } 
}

@media only screen and (max-width: 1090px) {
   .smarter-adequate {
       flex-direction: column;
   } 
   .smarter-adequate .right {
       margin-top: 30px;
   }
   .smarter-adequate .title {
       text-align: center;
   }
}

@media only screen and (max-width: 725px) {
    .smarter-adequate .title {
        font-size: 34px; 
        line-height: 16px;
    }
    .smarter-adequate .specs-container {
        width: unset;
        max-width: 450px;
    }
}

@media only screen and (max-width: 560px) {
    .smarter-adequate {
    padding: 20px 40px;
}
    .smarter-adequate .title {
        font-size: 24px; 
    }

    .specs-container h3 {
        font-size: 17px;
    }
        .specs-container p {
        font-size: 12px;
    }
}