.main-footer{
    margin-top: auto;
}
.main-footer .footer-wrap{
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
    align-items: center;
    justify-content: flex-start;
}
@media (min-width: 768px){
    .main-footer .footer-wrap{
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }
}
.main-footer .footer-wrap > div {
    width: 100%;
    text-align: center;
}
@media (min-width: 768px) {
    .main-footer .footer-wrap > div {
        width: calc(50% - 0.938rem);
    }
}
.main-footer .footer-wrap > div:first-child{
    order: 1;
}
.main-footer .footer-wrap > div:last-child{
    display: flex;
    flex-direction: column;
    align-items: center;
    order: 0;
}
@media (min-width: 768px) {
    .main-footer .footer-wrap > div:first-child{
        text-align: left;
        order: 0;
    }
    .main-footer .footer-wrap > div:last-child{
        text-align: right;
        align-items: flex-end;
        order: 1;
    }
}
.main-footer p{
    font-size: 0.75rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 0.875rem;
    color: #686868;
    margin-top: 0;
}
@media (min-width: 768px) {
    .main-footer p {
        font-size: 0.875rem;
    }
}
.main-footer strong{
    font-weight: 600;
}
.main-footer p a{
    color: #00A9E0;
}
.main-footer p a:hover{
    text-decoration: none;
}
.main-footer .socials{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    margin-top: 1rem;
}
@media (min-width: 768px) {
    .main-footer .socials {
        justify-content: flex-end;
        margin-top: 1.5rem;
    }
}
.main-footer .socials a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: #1158A5;
    color: #FFFFFF;
    font-size: 1rem;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
.main-footer .socials a:hover{
    background-color: #00A9E0;
}