/* FOOTER */

footer {
    background-color: #080609;
}

.footer {
    background-image: url(../images/shade-foot.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-blend-mode: hard-light, normal;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 72px 80px 40px 80px;
}

.topside-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0 60px;
    padding: 0 40px;
    width: fit-content;
    border-bottom: 1px solid #F5F5F5;
    margin-bottom: 40px;
}

.topside-text {
    display: flex;
    justify-content: center;
    max-width: 500px;
}

.topside-text h2 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    line-height: 104.8%;
    max-width: 520px;
    margin-bottom: 48px;
}

.topside-links {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 0 50px;
    margin-bottom: 48px;
}

.topside-links a {
    height: fit-content;
}

.topside-links p {
    font-feature-settings: 'case' on;
    font-size: 18px;
    font-weight: 700;
    padding: 14px 20px;
    color: #ffffff;
}

.topside-links p:hover {
    transition: 0.5s;
    color: #FF9900;
}

.topside-ctas {
    margin-bottom: 48px;
}

.topside-ctas .dhcta {
    width: 200px;
    padding: 18px 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
}

.topside-ctas .dhcta:first-of-type {
    background-color: #FF7A00;
    margin-right: 0;
    margin-bottom: 20px;
    border: 1px solid #FF7A00;
}

.topside-ctas .dhcta:first-of-type:hover {
    transition: 0.5s;
    background-color: #171619;
    border: 1px solid #171619;
}

.topside-ctas .dhcta:first-of-type p {
    color: #ffffff;
}

.topside-ctas .dhcta:last-of-type {
    background-color: #ffffff;
    border: 1px solid #171619;
}

.topside-ctas .dhcta:last-of-type:hover {
    transition: 0.5s;
    background-color: #FF7A00;
    border: 1px solid #171619;
}


.bottomside-footer {
    display: flex;
    width: 100%;
    max-width: 1200px;
    justify-content: space-between;
    align-items: center;
}

.bottom-logo img {
    height: 40px;
}

.copyright-socials {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.copyright p {
    color: #F5F5F5;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.48px;
}

.socials {
    display: flex;
    align-items: center;
    gap: 16px;
}

.socials img {
    width: 24px;
}

@media (max-width: 1024px) {
    .footer {
        padding: 60px 24px 40px 24px;
    }

    .topside-footer {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 0 48px;
        padding: 0 24px;
        margin-bottom: 24px;
        width: fit-content;
    }
    
    .topside-text h2 {
        font-size: 40px;
        margin-bottom: 24px;
        max-width: 400px;
        text-align: center;
    }
    
    .topside-links {
        display: grid;
        grid-template-columns: repeat(2, auto);
        gap: 0 40px;
        margin-bottom: 24px;
    }
    
    .topside-links p {
        font-size: 16px;
        padding: 12px 16px;
    }

    .topside-ctas {
        margin-bottom: 24px;
    }

    .bottomside-footer {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 720px) {
    .bottomside-footer {
        gap: 8px;
    }

    .copyright-socials {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-direction: column;
        justify-content: center;
    }

    .bottom-logo img {
        height: 36px;
    }

    .topside-text h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .topside-links p {
        font-size: 16px;
        padding: 10px 14px;
    }

    .topside-links {
        margin-bottom: 20px;
    }

    .topside-ctas {
        margin-bottom: 24px;
    }
}

@media (max-width: 440px) {
    .topside-ctas {
        width: 100%;
    }

    .topside-ctas .dhcta {
        width: 100%;
        padding: 14px 0;
        text-align: center;
        font-size: 14px;
        font-weight: 700;
        border-radius: 4px;
    }

    .topside-ctas .dhcta:first-of-type {
        margin-bottom: 12px;
    }
}