@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

footer {
    font-family: 'Poppins', sans-serif;
    width: 100%;
    height: 450px;
    padding: 20px 0;
    position: relative;
    display: flex;
    align-items: center;
    line-height: 24px;
    color: #3E3E3E;
    background: #FFE86D;
}

footer .centered-footer {
    display: flex;
    justify-content: space-between;
    margin: 100px auto auto;
    width: 1300px;
    height: calc(100% - 100px);
    flex-wrap: wrap;
    gap: 24px;
}

footer .information {
    width: 500px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

footer .logo {
    height: 75px;
}

footer .logo-div {
    display: flex;
    flex-direction: row;
    margin-bottom: -30px;
}

footer .footer-heading {
    font-size: 20px;
    font-weight: 600;
    color: #EB6D20;
    margin-bottom: 10px;
    line-height: 0;
}

footer .address {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    margin-top: -10px;
    margin-bottom: -24px;
}

footer .social-link {
    height: 32px;
    margin-right: 16px;
}

footer .copyrigth {
    font-size: 14px;
    line-height: 0;
}

footer .links {
    display: flex;
    flex-direction: row;
    height: 100%;
}

footer .column {
    height: calc(100% - 24px);
    width: 180px;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    margin-left: 70px;
    margin-top: 24px;
    justify-content: space-between;
}

footer .column div {
    display: flex;
    flex-direction: column;
}

footer .links h2 {
    font-size: 16px;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 24px;

}

footer .links a {
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
}

footer .links a:hover {
    color: #EB6D20;
}

footer .footer-link {  
    color: #000000;
    margin-bottom: 12px;
}

footer .footer-bottom-link {
    padding: 0;
    color: #3E3E3E;
    line-height: 24px;
}

footer .footer-accent-link {
    padding: 0;
    color: #EB6D20;
    line-height: 24px;
}

footer .footer-accent-link:hover {
    color: #FFFFFF !important;
}

@media screen and (max-width: 1340px) {
    footer .centered {
        width: calc(100% - 40px);
        padding-left: 20px;
        padding-right: 20px;
    }

    footer .information {
        width: auto;
    }
}

@media screen and (max-width: 1080px) {
    footer {
        height: auto;
    }

    footer .centered-footer {
        flex-direction: column;
        height: auto;
    }

    footer .information {
        height: 450px;
        margin-left: 20px;
    }

    footer .links {
        flex-direction: column;
        height: auto;
        margin-left: 20px;
    }

    footer .column {
        margin-left: 0;
    }
}