footer * {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
}

.footer {
    background-color: #162825;
}

.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 60px 20px 100px;
    gap: 50px;
}

.footer-logo {
    width: max-content;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.footer-links__button {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.footer-links__button-text {
    display: flex;
    flex-direction: column;
}

.footer-links__button-text span {
    font-size: 33px;
    line-height: 1.2;
}

.footer-links__button-link {
    padding: 10px 22px;
    background-color: #C6DBDE;
    border-radius: 12px;
    width: max-content;
    color: #003E31;
    font-size: 17px;
    text-align: center;
}

.footer-links__button-link:hover {
    background-color: #303D3E;
    color: #C6DBDE;
}

.footer-links__column {
    display: flex;
    gap: 160px;
}

.footer-links__column-1 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links__column-1-heading {
    font-weight: 800;
    font-size: 18px;
    color: #E9EBE6;
}

.footer-links__column-1-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links__column-1-links>li>a {
    color: #E9EBE6;
    font-size: 18px;
}

.footer-links__column-2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links__column-2-heading {
    color: #E9EBE6;
    font-weight: 800;
    font-size: 18px;
}

.footer-links__column-2-social {
    display: flex;
    gap: 13px;
}

.footer-links__column-2-social>a {
    width: 45px;
    height: 45px;
    background-color: #026C56;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-links__column-2-social>a:hover {
    background-color: #C6DBDE;
}

.footer-links__column-2-social>a:hover svg path {
    fill: #003E31;
}

.footer-links__column-1-links>li>a:hover {
    color: #09B892;
}

@media (max-width:900px) {
    .footer-links__column {
        gap: 100px;
    }
}

@media (max-width:768px) {
    .footer-container {
        align-items: center;
        padding: 60px 20px 100px;
    }

    .footer-links {
        flex-direction: column;
        width: 100%;
        align-items: center;
        max-width: 590px;
    }

    .footer-links__button {
        width: 100%;
        align-items: center;
    }

    .footer-links__button-link {
        width: 100%;
    }

    .footer-links__column {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width:500px) {
    .footer-links__column {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
}