/**
 * FOOTER REDESIGN
 */

:root {
    /* --- COLORS --- */
    --slate-primary: #5541EF;
    --slate-primary-hover: #4c3cd3;
    --slate-black-bg: #000000;
    --slate-text-white: #ffffff;
    --slate-text-grey: #757575;

    /* --- TYPOGRAPHY --- */
    --slate-font-main: 'Inter', sans-serif;

    /* --- LAYOUT & SPACING --- */
    --slate-container-width: 1350px;
    --slate-radius-sm: 4px;

    /* --- TRANSITIONS --- */
    --slate-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --slate-transition: all 0.3s var(--slate-ease);
}

/* --- FOOTER REDESIGN --- */
.sd-footer-redesign {
    background-color: var(--slate-black-bg);
    color: var(--slate-text-white);
    padding: 80px 0 20px 0;
}

.sd-footer-redesign__widgets {
    padding-bottom: 20px;
}

.sd-footer-redesign__container {
    max-width: var(--slate-container-width);
    margin: 0 auto;
    padding: 0 32px;
}

.sd-footer-redesign__row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 20px;
}

.sd-footer-redesign__col--1 .footer-logo {
    max-width: 190px;
    height: auto;
}

.sd-footer-redesign__col--1 ._form_29,
.sd-footer-redesign__col--1 form[action*="activehosted"] {
    margin: 0;
    padding: 0 !important;
}

.sd-footer-redesign__col--1 ._form-title,
.sd-footer-redesign__col--1 h2 {
    font-size: 20px !important;
    font-weight: 600 !important;
    line-height: normal !important;
}

.sd-footer-redesign__col .widget-title {
    font-size: 14px !important;
    font-weight: 600;
    line-height: normal;
}

.sd-footer-redesign__col--1 ._form-content {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-start;
}

.sd-footer-redesign__col--1 ._form_element._inline-style:not(._clear) {
    flex: 1;
    min-width: 200px;
    margin-right: 0 !important;
}

.sd-footer-redesign__col--1 input[type="text"],
.sd-footer-redesign__col--1 input[type="email"],
.sd-footer-redesign__col--1 ._form_29 input#email {
    flex: 1;
    padding: 14px 16px !important;
    background-color: transparent;
    border: 1px solid #757575 !important;
    border-radius: var(--slate-radius-sm) !important;
    color: var(--slate-text-white);
    font-size: 14px;
    height: 46px;
    width: 100% !important;
}

.sd-footer-redesign__col--1 input[type="text"]::placeholder,
.sd-footer-redesign__col--1 input[type="email"]::placeholder {
    color: #757575 !important;
}

.sd-footer-redesign__col--1 ._submit,
.sd-footer-redesign__col--1 button[type="submit"],
.sd-footer-redesign__col--1 button#_form_29_submit {
    border-radius: var(--slate-radius-sm) !important;
    font-weight: 600 !important;
    margin-top: 0 !important;
}

.sd-footer-redesign__col--1 ._button-wrapper {
    margin: 0 !important;
    position: relative;
    top: 0 !important;
}

.sd-footer-redesign__col--1 ._form-label {
    display: none !important;
}

.sd-footer-redesign__col--1 ._field-wrapper {
    width: 100%;
    margin: 0;
}

.sd-footer-redesign__col--1 ._clear-element {
    display: none;
}

.sd-footer-redesign__col .menu,
.sd-footer-redesign__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sd-footer-redesign__col .menu li,
.sd-footer-redesign__col ul li {
    margin-bottom: 5px;
    padding: 0;
    list-style: none;
}

.sd-footer-redesign__col .menu li:last-child,
.sd-footer-redesign__col ul li:last-child {
    margin-bottom: 0;
}

.sd-footer-redesign__col .menu li:before,
.sd-footer-redesign__col ul li:before {
    display: none;
}

.sd-footer-redesign__col a {
    color: #B3B3B3;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: var(--slate-transition);
    line-height: normal;
}

.is-redesign ~ .sd-footer-redesign ._form_29 form {
    margin: 0 !important;
}

.is-redesign ~ .sd-footer-redesign .sd-footer-redesign__col .widget-title {
    padding-bottom: 0;
}

.sd-footer-redesign .sd-footer-redesign__col .widget-title {
    padding-bottom: 1em;
}

:not(.is-redesign) .sd-footer-redesign__col .widget-title {
    padding-bottom: 1em;
}

.sd-footer-redesign .sd-footer-redesign__col div#nav_menu-2 {
    height: auto;
    padding: 0;
}

.sd-footer-redesign .sd-footer-redesign__col div#text-3 {
    height: auto;
}

/* --- FOOTER BOTTOM (DIVIDER + COPYRIGHT) --- */
.sd-footer-redesign__divider {
    width: 100%;
    height: 1px;
    background-color: #434343;
    margin-bottom: 24px;
}

.sd-footer-redesign__bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sd-footer-redesign__copyright {
    color: #8F8F8F;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    padding-bottom: 0;
}

.sd-footer-redesign__links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sd-footer-redesign__links a {
    color: #8F8F8F;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: var(--slate-transition);
}

.sd-footer-redesign__links a:hover {
    color: var(--slate-text-white);
}

.sd-footer-redesign__separator {
    color: #8F8F8F;
    font-size: 14px;
}

/* --- RESPONSIVE --- */

@media (max-width: 1024px) {
    .sd-footer-redesign__row {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .sd-footer-redesign {
        padding: 60px 0 30px 0;
    }

    .sd-footer-redesign__row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sd-footer-redesign__col--1 .footer-logo {
        max-width: 160px;
    }

    .sd-footer-redesign__col--1 ._inline-style {
        flex-direction: column;
    }

    .sd-footer-redesign__col--1 ._submit,
    .sd-footer-redesign__col--1 button[type="submit"] {
        width: 100% !important;
    }

    .sd-footer-redesign__bottom-content {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        text-align: center;
    }

    .sd-footer-redesign__col .widget-title,
    .sd-footer-redesign__col #text-3 form#_form_69B04225000F6_ ._form-content ._button-wrapper,
    #_form_69B040F181DFA_._inline-form._inline-style ._inline-style._button-wrapper {
        margin-top: 0 !important;
    }
    .sd-footer-redesign__col input#email {
        width: 100% !important;
    }
    .sd-footer-redesign__col ._button-wrapper._inline-style {
        width: 30% !important;
    }
    .sd-footer-redesign__col ._button-wrapper._inline-style button[type="submit"] {
        height: 49px !important;
    }
    .sd-footer-redesign__container {
        padding: 0 16px;
    }
    .sd-footer-redesign__col.sd-footer-redesign__col--1 .textwidget > p:first-of-type {
        margin: 0;
    }
}

/*@media (min-width: 320px) and (max-width: 667px) {*/
/*    .sd-footer-redesign__col #text-3 form#_form_69B04225000F6_ ._form-content ._button-wrapper,*/
/*    #_form_69B040F181DFA_._inline-form._inline-style ._inline-style._button-wrapper {*/
/*        margin-top: 0 !important;*/
/*    }*/
/*}*/
/*#_form_69B040F181DFA_._inline-form._inline-style ._inline-style._button-wrapper {*/
/*    margin-top: 0 !important;*/
/*    margin-left: 0 !important;*/
/*}*/
/*#_form_69B040F181DFA_._inline-form._inline-style ._inline-style._button-wrapper {*/
/*    margin-top: 0 !important;*/
/*    margin-left: 0 !important;*/
/*}*/
/*#_form_69B040F181DFA_._inline-form._inline-style ._inline-style._button-wrapper {*/
/*    margin-top: 0 !important;*/
/*    margin-left: 0 !important;*/
/*}*/