/* Footer CSS */

.footer {
    width: 100%;
    padding: 27px 0 21px 0;
    background: hsl(216, 63%, 57%);
}

.f {
    padding: 0 50px;
}

.footer_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;  
}
.f .logo {
    width: 156px;
    height: 59px;
    margin-bottom: 10px;
    background: url("../media/f_1.png") no-repeat left center/contain;
}

.f .name {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 5px;
}

.f .address {
    font-size: 10px;
    font-weight: 500;
    line-height: 18px; 
    color: #fff;
}

.f .images {
    width: 280px;
    height: 114px;
    background: white;
}

.f .image_1 {
    width: 163px;
    height: 104px;
    background: url("../media/f_2.png") no-repeat center/contain;
}

.f .image_2 {
    width: 89px;
    height: 89px;
    background: url("../media/f_3.png") no-repeat center/contain;
}

.footer .copyright {
    width: 100%;
    border-top: 1px solid white;
    padding-top: 10px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    text-align: center;
}

@media screen and (max-width: 700px){
    .f .footer_flex{
        flex-direction: column;
        margin-bottom: 17px;
    }

    .f {
        padding: 0 20px;
    }

    .f .logo {
        margin:  0 auto;
        width: 180px;
        height: 68px;
        margin-bottom: 10px;
    }

    .f .logo-text {
        text-align: center;
        margin-bottom: 20px;
    }
    .f .images {
        width: 150px;
        height: 52px;
        background: white;
    }

    .f .image_1 {
        width: 82px;
        height: 52px;
        background: url("../media/f_2.png") no-repeat center/contain;
    }

    .f .image_2 {
        width: 49px;
        height: 48px;
        background: url("../media/f_3.png") no-repeat center/contain;
    }

}