.footer {
    position: relative;
    background-color: #1E1437;
    padding: 100px 0px;
}
.footer_content {
    display: flex;
    flex-direction: column;
}
.footer_top_content {
    display: flex;
    justify-content: space-between;
}
.footer_top {
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(224, 222, 230, 0.13);
}
.col1_footer_text {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #EAEAEA;
}
.footer_logo {
    margin-bottom: 24px;
}
.col_title {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    color: #FFFFFF;
    margin-bottom: 12px;
}
.col_link {
    margin-bottom: 4px;
}
.col_link:last-child {
    margin-bottom: 0px;
}
.col_link a {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #FFFFFF;
}
.col_link a:hover {
    color: #6541E7;
}
.footer_col4_logo {
    margin-top: 36px;
}
.footer_center {
    padding: 48px 0;
    border-bottom: 1px solid rgba(224, 222, 230, 0.13);
}
.footer_center_content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.col_center_title {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    color: #FFFFFF;
    margin-bottom: 12px;
}
.col_center_logos {
    display: flex;
    align-items: center;
    gap: 16px;
}
.col_center_logos img {
    width: 48px;
    height: 30px;
    object-fit: contain;
}
.center_single_logotext {
    display: flex;
    align-items: center;
    gap: 24px;
}
.center_single_logo img {
    width: 69px;
    height: 67px;
    object-fit: contain;
}
.center_single_logo_text {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #FFFFFF;
    opacity: 0.7;
}
.social_list_title {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    color: #FFFFFF;
    margin-bottom: 12px;
}
.social_list_icons {
    display: flex;
    align-items: center;
    gap: 24px;
}
.social_list_icons a img {
    width: 31px;
    height: 31px;
    object-fit: contain;
    transition: all .3s ease-in-out;
}
.social_list_icons a img:hover {
    opacity: .7;
    transition: all .3s ease-in-out;
}
.footer_bottom {
    padding: 48px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}
.footer_copyright {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #FFFFFF;
}
.col_links_select_wrapper .select2-container {
    min-width: 235px;
}
@media only screen and (max-width: 992px) {
    .footer_top_content {
        flex-wrap: wrap;
    }
    .footer_col1,
    .footer_col2,
    .footer_col3,
    .footer_col4 {
        flex: 0 0 50%;
    }
    .footer_center_content {
        flex-direction: column;
        gap: 40px;
    }
}
@media only screen and (max-width: 600px) {
    .footer_top_content {
        flex-direction: column;
        gap: 48px;
    }
    .footer_center_content {
        flex-direction: column;
        gap: 32px;
    }
    .col_center_logos {
        flex-wrap: wrap;
    }
}