.footer-top-line {
    background-color: white;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    height: 10px;
    box-shadow: inset 0 20px 20px -30px rgba(0, 0, 0, 0.1);
}

.footer-text {
    text-align: center;
    font-weight: 300;
}

.global-footer {
    display: flex;
    justify-content: center;
    align-items: baseline;
    font-size: 13px;
    margin: 0 auto;
    padding-bottom: 30px;
    background-color: white;
}

.footer-flex {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: baseline;
    padding: 0 32px;
    box-sizing: border-box;
}

.footer-flex .flex {
    justify-content: space-between;
    width: 100%;
    align-items: flex-start;
}

.global-footer .footer-section {
    margin-right: 30px;
}

.global-footer .footer-section:last-of-type {
    margin-right: 0;
}

.global-footer .subscribe {
    margin-right: 20px;
    /* width: 310px; */
    flex-shrink: 0;
    padding: 0 32px;
    box-sizing: border-box;
}

.global-footer .footer-title {
    color: #b7b7b7;
    margin-bottom: 6px;
    line-height: 10px;
    font-size: 12px;
    line-height: 150%;
}

.global-footer a {
    font-size: 13px;
    line-height: 26px;
    display: block;
    color: #131921;
    white-space: nowrap;
}

.global-footer a:hover {
    color: #00A3FF
}

.global-footer .footer-logo {
    position: relative;
    top: 9px;
    margin-right: 4px;
}

.global-footer input {
    height: 32px;
}

@media screen and (max-width: 1150px) {
    .global-footer {
        display: block;
    }
    .global-footer .subscribe {
        text-align: center;
        width: 100%;
    }
    .global-footer input {
        text-align: center;
        max-width: 400px;
        margin: 0 auto 10px;
        padding: 0;
    }
    .footer-flex {
        margin-top: 0px;
        width: 100%;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        padding-top: 30px;
        box-shadow: inset 0 20px 20px -30px rgba(0, 0, 0, 0.1);
    }
}

@media screen and (max-width: 700px) {
    .footer-flex {
        padding: 10px
    }
    .footer-flex .flex {
        padding: 16px 16px 0;
        display: grid;
        grid-template-columns: 50% 50%;
        grid-gap: 0 10px;
    }
    .global-footer .subscribe {
        padding: 0 20px 10px;
    }
    .global-footer .menu-section {
        margin: 0;
        margin-bottom: 20px;
    }
    .global-footer a {
        line-height: 28px;
    }
}