﻿.footer {
    background-color: #FFEDB5;
    border-top: 15px solid #FFF6DA;
    padding-top: 80px; 
    margin-top: 80px; 
    font-size: 15px;
    line-height: 21px;
    color: #444;
    padding-bottom: 0px;
}
    .footer address {
        font-style: normal; 
        font-size: 15px;
        line-height: 1.4;
        color: #001a3a;
    }

.footer__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-bottom: 100px;
}

.footer__section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    padding-left: 20px;
    padding-right: 20px;
}

.footer__logo {
    width: 230px;
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 40px;
}

.footer__middle {
    display: flex;
    flex-direction: column;
    gap: 30px;
    line-height: 21px;
}
.footer__phone {
    color: #444;
    text-decoration: none;
}
.footer__email {
    text-decoration: underline;
    color: #000;
}

.footer__right {
    align-items: flex-start;
}

.footer__link {
    display: inline-block;

    background-color: #fff;
    color: #000;

    font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 18.2px;

    border: 1px solid #f7f7f7;
    padding: 6px 15px;
    border-radius: 20px;

    text-decoration: none;

    margin-bottom: 5px;
    margin-right: 5px;
}

.footer__link:hover {
    text-decoration: underline;
}
.footer .footer__link i {
    font-size: 11px;
    margin-left: 6px;
    opacity: 0.7;
}
.footer__footer {
    height: 7px;
    margin-top: 80px;
    background: linear-gradient(to right, #E30613, #FFD147);
}

/* Desktop */
@media (min-width: 1024px) {

    .footer__content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer__left {
        width: 25%;
    }

    .footer__middle {
        width: 45%;
        flex-direction: row;
        justify-content: space-between;
    }

    .footer__right {
        width: 20%;
        align-items: flex-start;
    }
}