.footer {
    margin: 30px 0;
}

.footer .footer-menu ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.footer .footer-menu h4 {
    margin-bottom: 15px;
}

.footer .footer-menu ul li {
    margin-bottom: 5px;
}

.footer .footer-menu ul li:last-child {
    margin-bottom: 0;
}

.footer .footer-menu ul li a.ft-link {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    transition: all 0.3s;
    color: #578987;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    font-family: 'Satoshi-Regular';
}

.footer .footer-menu ul li a.ft-link:hover {
    text-decoration: underline;
}

.footer .footer-menu ul.ft-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer .footer-menu ul.ft-social li {
    margin-bottom: 0;
}

.footer .footer-menu ul.ft-social li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid #11615D;
    border-radius: 100%;
    cursor: pointer;
    transition: all 0.3s;
}

.footer .footer-menu ul.ft-social li a:hover {
    background-color: #11615D;
}

.footer .footer-menu ul.ft-social li a:hover svg path {
    fill: #fff;
    stroke: #fff;
}

.footer .ft-contact {
    border: 1px solid #E0E0E0;
    border-width: 1px 0;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.footer .ft-contact .ft-contact-box {
    display: flex;
    gap: 15px;
}

.footer .ft-contact .ft-contact-box .content h4 {
    margin-bottom: 5px;
}

.footer .ft-contact .ft-contact-box .content a {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    transition: all 0.3s;
    color: #578987;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    font-family: 'Satoshi-Regular';
}

.footer .ft-contact .ft-contact-box .content a:hover {
    color: #11615D;
}

.footer .ft-contact .ft-contact-box .location {
    width: 100%;
    flex: 0 0 47px;
}

.footer .copyright-txt {
    text-align: center;
    font-weight: 400;
    font-size: 20px;
    line-height: 35px;
    font-family: 'Satoshi-Regular';
}

.footer .copyright-txt a {
    font-weight: 700;
    font-family: 'Satoshi-Bold';
    color: #11615D;
    text-decoration: none;
    cursor: pointer;
}

.footer .copyright-txt a:hover {
    text-decoration: underline;
}

.footer .copyright-txt strong {
    font-weight: 700;
    font-family: 'Satoshi-Bold';
    color: #11615D;
}

@media(max-width:1400px) {

    .footer .footer-menu ul li a.ft-link,
    .footer .ft-contact .ft-contact-box .content a {
        font-size: 16px;
        line-height: 25px;
    }

    .footer .footer-menu h4 {
        margin-bottom: 10px;
    }

    .footer .copyright-txt {
        font-size: 18px;
        line-height: 30px;
    }

    .footer .ft-contact {
        padding-top: 25px;
        padding-bottom: 25px;
        margin-top: 25px;
        margin-bottom: 25px;
    }
}

@media(max-width:1199px) {
    .footer .footer-menu-wrapper {
        row-gap: 30px;
    }
}

@media(max-width:991px) {
    .footer .ft-contact {
        row-gap: 30px;
        justify-content: center;
    }
}

@media(max-width:767px) {
    .footer .copyright-txt {
        font-size: 16px;
        line-height: 25px;
    }
}