@media screen and (max-width: 768px) {
    .item-img img{
        width: 100%;
        height: auto;
    }
    .item-text{
        font-size: 16px;
        line-height: 1.5;
        margin: 20px 0;
    }
    .email a{
        font-weight: 550;
    }
    .email{
        margin-bottom: 30px;
    }
    .partners-container{
        text-align: center;
    }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
    .item-img img{
        width: 800px;
        height: auto;
    }
    .item-text{
        font-size: 18px;
        line-height: 1.5;
        margin: 20px 0;
    }
    .email a{
        font-weight: 550;
    }
    .email{
        margin-bottom: 30px;
    }
    .partners-container{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        justify-content: space-around;
    }
}
@media screen and (min-width: 1200px) {
    .item-img img{
        width: 800px;
        height: auto;
    }
    .item-text{
        font-size: 18px;
        line-height: 1.5;
        margin: 20px 0;
    }
    .email a{
        font-weight: 550;
    }
    .email{
        margin-bottom: 30px;
    }
    .partners-container{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        justify-content: space-between;
    }

}