* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ----------------------- footer-style ------------------------ */
.footer {
    width: 100%;
    color: #e6f2ff;
    margin: -200px auto 0;
}

.footer-top {
    position: relative;
    top: 0;
    left: -8.8%;
    width: 114%;
    overflow-x: hidden;
}

.footer-top img {
    width: 100%;
}


/* footer content */
.footer-content {
    position: relative;
    top: -30px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    padding-top: 14vh;
    background-color: #4e659c;
    font-size: 1.6rem;
}


/* logo-contact */
.logo-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 50px;
}

/* .footer-logo */
.footer-logo {
    display: flex;
    flex: 1;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    width: 40%;
    /* padding: 10px 20px; */
    min-width: 300px;
    max-width: 50%;
}

.footer-logo img:nth-child(1) {
    width: 46%;
    padding: 10px 20px;
}

.footer-logo img:nth-child(2) {
    width: 16%;
}

.footer-logo img:nth-child(3) {
    margin-left: 7%;
    width: 16%;
}

/* .footer-contact */
.footer-contact {
    width: 30%;
    min-width: 200px;
    color: #f3fff6;
    font-size: 0.66em;
    font-weight: 400;
}

.footer-contact p {
    padding: 2px;
}

.footer-last {
    width: 80%;
    margin: 0 auto 30px;
    padding: 20px 0;
    text-align: center;
    border-top: 2px solid #eee;
    color: #eee;
}

.footer-last p {
    font-size: 0.6em;
}

.footer-last a {
    display: inline-block;
    color: #eee;
    font-size: 1.01em;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.5s;
}

.footer-last a:hover {
    transform: scale(1.01);
}