.subscribe {
    margin-bottom: 70px;
    display: none;
}

.subscribe__subcontainer {
    box-sizing: border-box;
    padding: 40px;
    border-radius: 16px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.40) 0%, rgba(255, 255, 255, 0.40) 100%), linear-gradient(42deg, rgba(245, 176, 169, 0.60) -52.31%, rgba(233, 63, 46, 0.60) -38.14%, rgba(236, 91, 77, 0.60) -23.97%, rgba(236, 113, 101, 0.60) -12.37%, rgba(249, 209, 205, 0.60) 18.06%, rgba(255, 255, 255, 0.60) 61.07%);
    backdrop-filter: blur(102px);
    position: relative;
    overflow: hidden;
}

.subscribe__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.subscribe__title {
    color: #E93F2E;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 12px;
}

.subscribe__description {
    font-size: 20px;
    font-weight: 500;
    line-height: 140%;
    margin-bottom: 27px;
}

.subscribe__form {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 9px;
}

.subscribe__input {
    all: unset;
    display: flex;
    width: 342px;
    height: 44px;
    padding: 10px 16px;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;
    border-radius: 40px;
    background: #FFF;
    color: #272737;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    cursor:text;
}

.subscribe__input::placeholder {
    color: #272737;
    font-size: 16px;
    font-weight: 400;
}

.subscribe__button {
    display: inline-block;
    text-decoration: none;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 13.5px 24px;
    color: #FFF;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    background: radial-gradient(92.39% 92.39% at 22.06% 19.23%, #F9D1CD 0%, #EC5B4D 43%, #DB2525 69%, #E93F2E 85%, #F5B0A9 100%);
}

.subscribe__button:hover {
    background: #E93F2E;
}

.subscribe__img {
    position: absolute;
    right: -97px;
    bottom: -35px;
    width: auto;
    height: 258px;
    object-position: center;
}

.subscribe__img-mobile {
    display: none;
}

@media (max-width: 1015px) {
    .subscribe__img {
        display: none;
    }    

    .subscribe__img-mobile {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        height: 133px;
    }
}

@media (max-width: 768px) {

    .subscribe {
        margin-bottom: 76px;
    }
    
    .subscribe__subcontainer {
        padding: 24px;
    }

    .subscribe__title {
        font-size: 24px;
        margin-bottom: 8px;
        max-width: 158px;
    }
    
    .subscribe__description {
        font-size: 12px;
        margin-bottom: 16px;
        max-width: 158px;
    }

    .subscribe__form {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
    }



    .subscribe__input {
        max-width: 342px;
        width: 100%;
    }

    
        
}