﻿.footer-component {
    background: var(--Black, #000);
    /*margin-top: 40px;*/
}

.footer-logo {
    width: 263px;
    height: 60.272px;
}

.footer-container {
    padding-top: 40px;
    padding-bottom: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    flex-shrink: 0;
}

.footer-top {
    display: flex;
    padding-bottom: 40px;
    align-items: flex-start;
    gap: 40px;
    align-self: stretch;
    border-bottom: 0.5px solid #FFF;
}

.footer-top-item:nth-child(2) {
    padding-left: 60px
}

.gap12 {
    gap: 12px;
}

.footer-icon a {
    display: flex;
    padding: 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border-radius: 99px;
    border: 0.5px solid var(--White, #FFF);
    background: var(--Black, #000);
    width: fit-content;
    height: fit-content;
}

.footer-top-item {
    width: calc(100% / 4);
    display: flex;
    flex-direction: column;
}

.gap40 {
    gap: 40px;
}
.footer-top-item p {
    color: var(--White, #FFF);
    font-family: "Baloo 2";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}
.footer-top-item .slogan {
    color: var(--White, #FFF);
    font-family: "Baloo 2";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 20px 0;
}

.mt20{
    margin-top: 20px;
}

.footer-link {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

    .footer-link a {
        overflow: hidden;
        color: var(--White, #FFF);
        text-overflow: ellipsis;
        font-family: "Baloo 2";
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .footer-link span {
        color: #FFF;
        font-family: "Baloo 2";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

.footer-top-item h3 {
    margin: 0;
    color: var(--White, #FFF);
    font-family: "Baloo 2";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    align-self: stretch;
}

.footer-bottom p {
    text-align: center;
    color: #FFF;
    text-align: center;
    font-family: "Montserrat";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 0;
    align-self: stretch;
}

.footer-bt-copyright {
    color: var(--Red, #E84E0E);
    font-family: "Montserrat";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}

.footer-bt-powered {
    color: var(--White, #FFF);
    font-family: "Montserrat";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}
.footer-link a:hover {
    color: var(--color-primary);
}

.facebook-link {
    cursor: pointer;
    width: 12rem;
}
.facebook-link:hover {
    color: var(--Red, #E84E0E);
}
.footer-link-title {
    margin-left: 5px;
}

@media screen and (max-width: 768px) {
    .footer-top {
        flex-direction: column;
    }
    .footer-top-item {
        width: 100%;
        gap: 20px;
    }
    .footer-link {
        gap: 15px;
    }

    .footer-container {
        padding-top: 30px;
    }
    .footer-top {
        gap: 30px;
    }

    .footer-link a, .footer-link p, .footer-top-item p {
        font-size: 16px;
    }

    .footer-top-item:nth-child(2) {
        padding-left: 0
    }
}

.footer-bt-powered:hover {
    color: var(--color-primary) !important;
}