/* Footer */
*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    font-family: "Poppins", sans-serif;
}
section{
    padding: 80px 13% 70px;
}
.footer{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, auto));
    gap: 3.5rem;
    background: #f1f4f5;
}
.footer-content h2{
    color: #0e5242;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.footer-content li{
    margin-bottom: 16px;
}
.footer-content li a{
    display: inline-block;
    color: #0e5242;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    transition: all .30s ease;
}
.footer-content li a:hover{
    transform: translateY(-3px) translateX(-5px);
    color: #129e4a;
}
/* End Footer */

/* Bereakpoints */
@media (max-width: 1690px){
    section {
        padding: 50px 5% 40px;
    }
}
@media (max-width: 1120px){
    .footer{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, auto));
        gap: 2rem;
    }
}
@media (max-width: 700px){
    .footer{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, auto));
        gap: 2.5rem;
    }
    .footer .footer-content img{
        width: 180px;
    }
}
/* style footer */

/* .container5 {
    background-color: #f1f4f5;
}
.container5 .text h1 {
    font-family: "Poppins";
    color: #0e5242;
}
.container5 .text p {
    font-family: "Poppins";
    font-size: 1.4em;
    color: #0e5242;
} */