footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-top: 1px solid var(--main-color);
    background-color: var(--main-color);
    padding: 80px 0;
}

.footer-wrapper {
    width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.footer-line {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, .5);
}

.footer-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.logo-f {
    width: 180px;
}

.footer-text {
    display: flex;
    gap: 7rem;
}

.footer-text ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-text ul li {
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
}

.footer-bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: -1rem;
}

.footer-bottom p {
    color: #fff;
    font-size: 15px;
    letter-spacing: 0;
}

.fbBtn-wrapper {
    display: flex;
    gap: 2rem;
}


/*==================================================*/
@media (max-width: 1250px) {
    .footer-wrapper {
        width: 100%;
        padding: 0 20px;
    }
}


@media (max-width: 950px) {
    .footer-top {
        flex-direction: column;
        gap: 3rem;
    }
}


@media (max-width: 768px) {
    .footer-text {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        gap: 1rem;
    }
}


@media (max-width: 550px) {
    footer {
        padding: 40px 0;
    }
    
    .footer-wrapper {
        gap: 2rem;
    }

    .footer-top {
        gap: 2rem;
    }
    
    .logo-f {
        width: 130px;
    }
    
    .footer-text {
        gap: 1.5rem;
    }
    
    .footer-text ul {
        gap: 0;
    }
    
    .footer-text ul li {
        font-size: 13px;
        line-height: 1.65;
    }

    .footer-text ul br {
        display: none;
    }

    .footer-text ul li br {
        display: block;
    }

    .footer-bottom p {
        font-size: 13px;
    }

    .f-personalBtn {
        display: none;
    }
}