.subscribe {
    background: url('img/subscribe-bg.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 38px;
    box-sizing: border-box;
}
.subscribe__inner {
    width: 100%;
}
.subscribe__content {
    position: relative;
    padding-left: 55px;
    color: #fff;
    margin-bottom: 18px;
}
.subscribe__content::before{
    content: '';
    width: 45px;
    height: 45px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='white' class='size-6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M21.75 6.75v10.5a2.25 2.25 0 0 1-2.25 2.25h-15a2.25 2.25 0 0 1-2.25-2.25V6.75m19.5 0A2.25 2.25 0 0 0 19.5 4.5h-15a2.25 2.25 0 0 0-2.25 2.25m19.5 0v.243a2.25 2.25 0 0 1-1.07 1.916l-7.5 4.615a2.25 2.25 0 0 1-2.36 0L3.32 8.91a2.25 2.25 0 0 1-1.07-1.916V6.75' /%3E%3C/svg%3E%0A");
    position: absolute;
    top: 0;
    left: 0;
}
.subscribe__title {
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 3px;
}
.subscribe__description {
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
}
.subscribe__form {
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.subscribe__form-input {
    border: 1px solid #E5E5E5;
    padding: 12px 14px;
    background: #EEEEEE;
}
.subscribe__form-input::placeholder{
    color: #757575;
}
.subscribe__form-submit {
    color: #D9012A;
    padding: 11px;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.4px;
    text-align: center;
    width: 100%;
    background: #FFFFFF;
    border: none;
    text-transform: uppercase;
}
@media (max-width: 1367px) {
    .subscribe{
        padding: 15px;
    }
}
@media (max-width: 767px){
    .subscribe{
        padding: 10px;
    }
    .subscribe__content {
        padding-left: 35px;
        margin-bottom: 10px;
    }
    .subscribe__content::before {
        width: 30px;
        height: 30px;
    }
    .subscribe__title {
        font-size: 12px;
        line-height: 14px;
    }
    .subscribe__description {
        font-size: 10px;
        line-height: 12px;
    }
}