.page-footer .row {
    margin-right: -15px;
    margin-left: -15px;
    min-height: auto;
}

.subscribe-container {
    width: 100%;
    height: 50px;
    margin: 0 auto;
    display: inline-block;
}
.subscribe-container .center-content {
    height: 50px;
    max-width: 675px;
    display: flex;
    align-items: flex-start;
}
.subscribe-logo {
    display: inline-block;
    width: 50px;
    position: relative;
    top: 7px;
}
.subscribe-text {
    display: inline-block;
    font-size: 18px;
    line-height: 1;
    position: relative;
    top: 16px;
    color: #fff;
    margin-left: 30px;
}
.subscribe-container .button {
    display: inline-block;
    margin-left: 30px;
    margin-top: 0;
}
.subscribe-container .nv-button .btn-content {
    font-size: 16px;
    background-color: var(--custom-button-color, #76b900);
    border: none;
    color: #000;
    cursor: pointer;
    display: inline-block;
    font-weight: 700;
    line-height: 1.25em;
    min-width: 50px;
    padding: 13px 15px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: background-color .2s ease-out;
    white-space: nowrap;
}
.page-footer__social {
    display: inline-flex;
    width: 33%;
    text-align: right;
    align-items: center;
    justify-content: flex-end;
    height: 50px;
}
.page-footer__social__label {
    color: #ccc;
    height: 24px;
    padding-top: 4px;
    font-size: 15px;
}
.page-footer__social__link {
    width: 24px;
    height: 24px;
}
.page-footer__social__link>svg {
    width: 24px;
    height: 24px;
}
.page-footer__social__link>svg>path {
    fill: #ccc;
}
.global-footer__copyright, .global-footer__links>li>a, .global-footer__region__label {
    color: #666;
}

@media (min-width: 1024px) and (max-width: 1349px) {
    .page-footer__subscribe {
        width: 60%;
        height: 50px;
    }
    .page-footer__social {
      width: 40%;
    }
}

@media screen and (max-width: 1023px) {

  .subscribe-container {
      display: flex;
      justify-content: center;
  }
  .page-footer__social {
    width: 100%;
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
    .subscribe-container {
        height: auto;
    }

    .subscribe-container .center-content {
        height: auto;
        max-width: 100%;
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    .subscribe-text {
        float: none;
        margin-left: 0;
        display: flex;
        align-items: center;
        gap: 15px;
    }
    .subscribe-container .button {
        margin-top: 33px;
        margin-left: 0;
    }
    .page-footer__social {
        display: flex;
        flex-direction: column;
        height: auto;
        margin-bottom: 15px;
    }
    .page-footer__social__label {
        margin-bottom: 15px;
    }
}