/* Created By AkinaCss */
/* Footer Css */

footer {
    background-color: var(--bg-color);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 50px 0px;
}

.footer {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 85%;
    gap: 50px;
}

.footeric {
    flex: 1 1 25%;
    width: 25%;
    max-width: calc(25% - 50px);
}

.footeric.img {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footeric.img img {
    width: 70%;
    object-fit: scale-down;
    max-height: 200px;
}

.footeric.sitemap {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 10px;
    border-right: 2px solid var(--white);
    padding: 10px;
}

.footeric.sitemap a {
    color: var(--white);
    width: fit-content;
    font-size: 14px;
}
.footeric.sitemap a:hover {
    color: var(--blueLight);
    transform: translateX(10px);
}

.footeric.right {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 10px;
    color: var(--white);
}

.footeric.right .social {
    display: flex;
    flex-direction: row;
    text-align: left;
    gap: 10px;
    color: var(--white);
    font-size: 25px;
}

.footeric.right .social a:hover {
    color: var(--blueLight);
    transform: translateY(-5px);
}

.footeric.right p {
    font-family: var(--text);
    font-size: 14px;
}


.footeric.right-end {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    text-align: left;
    gap: 20px;
    color: var(--white);
}

.footeric.right-end a {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 10px;
    color: var(--white);
    font-size: 16px;
}

.footeric.right-end a i {
    font-size: 22px;
}

.footeric.right-end a:hover {
    color: var(--blueLight);
    transform: translateX(5px);
}

@media (max-width: 1100px) {
    .footeric.right {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
    }
    .footeric {
        flex: 1 1 50%;
        width: 50%;
        max-width: calc(50% - 50px);
    }
    .footeric.sitemap {
        border-right: 2px solid transparent;
        padding: 0px;
    }
    
}

@media (max-width: 768px) {
    .footeric {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
    }

    .footeric.img img {
        width: auto;
        object-fit: scale-down;
        max-height: 150px;
    }
    .footeric.img {
        justify-content: flex-start;
    }
}