.subscribe {
    background: #e1ddd9;
    padding: 80px 0;
}
.subscribe .container{
    flex-wrap: wrap;
    gap: 30px 20px;
}
.subscribe__title {
    font-family: "Manrope";
    font-weight: 800;
    font-size: 38px;
    line-height: 56px;
    color: var(--black);
}
.subscribe__text {
    font-family: "Open Sans";
    font-weight: 400;
    font-size: 20px;
    line-height: 33px;
    color: var(--black);
    max-width: 540px;
}
.subscribe__form {
    display: flex;
}
.subscribe__form .input-group{
    flex-wrap: nowrap;
}
.subscribe__input {
    border: none;
    background: #f2f2f2;
}
.subscribe__btn {
    border: none;
    font-family: "Manrope";
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    width: 125px;
    height: 54px;
}
.subscribe__input {
    min-width: 320px !important;
    height: 54px;
    width: 100% !important;
    font-size: 16px !important;
}
.subscribe__input, .subscribe__input::placeholder {
    font-family: "Open Sans";
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
//    color: var(--black) !important;
}

@media (max-width: 768px) {
    .subscribe{
        padding: 40px 0;
    }
    .subscribe__title{
        font-size: 30px;
    }
    .subscribe__text{
        font-size: 18px;
        line-height: 25px;
    }
}
@media (max-width: 576px) {
    .subscribe__title{
        font-size: 25px;
        line-height: 40px;
    }
    .subscribe__text{
        font-size: 16px;
        line-height: 22px;
    }
    .subscribe__input{
        min-width: auto !important;
    }
}
@media (max-width: 425px) {
    .subscribe{
        padding: 25px 0;
    }
    .subscribe__title{
        font-size: 24px;
        line-height: 32px;
    }
}
