/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

.footer {
    padding: 32px 0 8px 0;
}

.footer .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
}

.footer_cta-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.footer_links-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 32px;
}

.footer_links-row .col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-width: 200px;
}

.footer_links-row-title {
    font-size: 18px;
    font-family: "Urbanist-SemiBold";
    margin-bottom: 16px;
}

.footer_links-row .col ul li {
    margin-bottom: 16px;
}

.footer_links-row .col ul li:last-child {
    margin-bottom: 0;
}

.footer_links-row-link,
.footer_links-row-link:visited,
.footer_links-row .col ul li a {
    font-size: 16px;
    line-height: 26px;
    color: #2A2243;
    font-family: "Urbanist-Medium";
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.footer_links-row-link:hover,
.footer_links-row .col ul li a:hover {
    color: #3D6CB9;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.footer_links-row-link svg {
    width: 24px;
    height: 24px;
    margin-left: 8px;
}

.footer_copyright {
    text-align: center;
    font-size: 14px;
    color: #2A2243;
    font-family: "Urbanist-Medium";
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    line-height: 1.4;
}

.kickstartweb_link {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #2A2243;
}

.kickstartweb_link:hover {
    color: #3D6CB9;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

@media (max-width: 550px) {
    .footer_cta-row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        gap: 16px;
    }
}

@media (max-width: 463px) {
    .footer_links-row .col {
        width: 100%;
    }

    .footer_links-row-title {
        text-align: center;
    }

    .footer_links-row .col ul li {
        text-align: center;
    }

    .footer_links-row-link {
        text-align: center;
    }
}