.subscribe-wrap {
    background: rgb(31, 96, 127);
}

#subscribe {
    padding: 7px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 90px;
}

.subscribe__text {
    color: rgb(255, 255, 255);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.2;
    max-width: 434px;
}

.subscribe form {
    display: flex;
    gap: 16px;
    align-items: flex-end;
}

.subscribe form .subscribe-inputs > p  {
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 4px;
}

.subscribe form .subscribe-inputs > input {
    border-radius: 4px;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
    background: rgb(255, 255, 255);
    max-width: 100%;
    width: 360px;
    line-height: 48px;
    color: #222;
    font-size: 16px;
    border: none;
    outline: none;
    padding: 0 15px;
}

.subscribe__btn {
    border-radius: 4px;
    background: rgb(32, 32, 32);
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-weight: 500;
    line-height: 48px;
    padding: 0 32px;
    border: none;
}

.subscribe__socials {
    display: flex;
    align-items: center;
    gap: 20px;
}

.subscribe__socials i:hover {
    color: #a4a4a4;
}

@media (max-width: 1320px) {
    #subscribe {
        gap: 20px;
    }
}

@media (max-width: 1200px) {
    .footer iframe {
        max-width: 100%;
        height: 280px;
    }
}

@media (max-width: 1100px) {

    #subscribe form,
    #subscribe {
        flex-direction: column;
        align-items: stretch;
    }

    .subscribe__text {
        font-size: 18px;
    }

    #subscribe {
        padding: 16px 35px;
    }

    .subscribe form .subscribe-inputs > input {
        width: 100%;
    }

    .subscribe__text {
        margin: 0 auto;
    }

    .subscribe__socials {
        justify-content: center;
    }
}

