/* Footer */
footer {
    height: 590px;
    background-image: url(../assets/footerBackground.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    flex-direction: column;
}

footer .container {
    display: flex;
    margin: 105px 0 0 0;
}

.footerContactInfo {
    width: 63%;
}

.footerContactInfo p {
    color: #333333;
    font-size: 16px;
    font-weight: 400;
    line-height: 25.60px;
}

.footerContactInfo .description {
    max-width: 443px;
    margin: 32px 0 45px 0;
}

.footerContactInfo>div {
    display: flex;
    align-items: center;
}

.footerContactInfo .phone,
.footerContactInfo .location,
.footerContactInfo .location>div {
    gap: 4px;
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.footerContactInfo .phoneIcon,
.footerContactInfo .locationIcon {
    content: '';
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px;
    width: 20px;
    height: 20px;
    margin-right: 15px;
}

.footerContactInfo .phoneIcon {
    background-image: url(../assets/icons/phone.svg);
}

.footerContactInfo .locationIcon {
    background-image: url(../assets/icons/location.svg);
}

.footerNavigation {
    width: 37%;
}

.footerNavigation>p {
    color: #333333;
    font-size: 16px;
    font-weight: 400;
    line-height: 25.60px;
    margin-bottom: 45px;
}

.footerMenu {
    display: flex;
    justify-content: space-between;
}

.footerNavigation nav p {
    color: #333333;
    font-size: 24px;
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    line-height: 38.40px;
    margin: 0 0 45px 0;
}

.footerNavigation nav ul {
    padding: 0;
}

.footerNavigation nav li {
    list-style-type: none;
    margin-bottom: 25px;
    font-size: 16px;
    font-weight: 400;
    line-height: 25.60px;
}

.footerNavigation nav li a {
    color: #333333;
    text-decoration: none;
    transition: all ease .3s;
}

.footerNavigation nav li a:hover {
    color: #DD71C6;
}

.socialIcons {
    display: flex;
    gap: 15px;
    padding: 0;
}

.socialIcons li {
    list-style-type: none;
    width: 30px;
    height: 30px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px;
    cursor: pointer;
    transition: all ease .3s;
}

.socialIcons li:hover {
    opacity: .8;
    transform: scale(1.1);
}

.socialIcons .instagram {
    background-image: url(../assets/icons/instagram.svg);
}

.socialIcons .twitter {
    background-image: url(../assets/icons/twitter.svg);
}

.socialIcons .facebook {
    background-image: url(../assets/icons/facebook.svg);
}

.footerCopy {
    justify-content: space-between;
    align-items: center;
    margin-top: 75px !important;
    padding-bottom: 33px;
}

@media (max-width: 820px) {
    footer {
        height: auto;
    }

    footer .container {
        display: block;
        margin-top: 44px;
    }

    .footerContactInfo {
        width: 46%;
    }

    .footerContactInfo .phone {
        margin-bottom: 62px
    }

    .footerNavigation {
        width: 100%;
        margin-top: 60px;
    }

    .footerMenu {
        justify-content: left;
        gap: 33px;
    }

    .footerNavigation nav p {
        font-size: 20px;
        line-height: 32px;
        margin-bottom: 22px;
    }

    .footerCopy {
        display: flex !important;
        margin: 10px 0 0 0 !important;
    }

    .footerContactInfo>div {
        align-items: flex-start;
        margin-bottom: 38px;
    }

    .footerContactInfo .phone,
    .footerContactInfo .location {
        display: flex;
        flex-direction: column;
        align-items: baseline;
        margin: 0;
    }

    .footerContactInfo .phoneIcon,
    .footerContactInfo .locationIcon {
        background-size: 24px;
        width: 24px;
        height: 28px;
    }
}

@media (max-width: 375px) {
    footer {
        background-color: #F9F9F9;
    }
    footer .container {
        width: 90% !important;
    }

    .footerContactInfo {
        width: 100%;
    }

    .footerContactInfo p {
        max-width: 100%;
        font-size: 14px;
        line-height: 22.40px;
    }

    footer .logo {
        width: 138px;
        height: 62px;
        background-size: 138px;
    }

    .footerMenu {
        flex-direction: column;
    }

    .footerNavigation nav li {
        font-size: 14px;
        line-height: 22.40px;
    }
    .footerCopy{
        flex-direction: column;
        align-items: baseline;
        font-size: 14px;
        line-height: 22.40px;
    }
}