.footer {
    position: relative;
    z-index: 100;
    padding: 75px;
    background-color: #050505;
}

.footer__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__title {
    margin-bottom: 30px;
    font-size: 100px;
    color: #fff;
}

.footer .underline {
    font-style: normal;
}

.footer__subtitle {
    margin-bottom: 60px;
    color: #afafaf;
    font-size: 22px;
    max-width: 500px;
}

.footer__btn {
    font-size: 26px;
    width: 250px;
    height: 80px;
}

.footer__links-ul {
    font-size: 30px;
}

.footer__link {
    padding: 20px;
    color: #fff;
}

.footer__link:hover {
    color: #6a6a6a;
}

.footer__social-medias {
    font-size: 30px;
    color: #fff;
}

.social-medias-container {
    display: flex;
    gap: 20px;
}

.social-medias-container img {
    transition: .5s;
}

.social-medias-container img:hover {
    transform: scale(1.2);
}

@media screen and (max-width: 1350px) {
    /* footer */
    .footer__container {
        gap: 30px;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 1050px) {
    /* footer */
    .footer__container {
        justify-content: center;
    }

    .footer__info {
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 750px) {
    /* footer */
    .footer__title {
        font-size: 70px;
    }

    .footer__subtitle {
        font-size: 20px;
    }

    .footer__links-ul {
        font-size: 25px;
    }

    .footer__social-medias {
        font-size: 25px;
    }

}

@media screen and (max-width: 600px) {
    /* footer */
    .footer {
        text-align: center;
    }

    .footer__btn {
        margin: 0 auto;
    }
}

@media screen and (max-width: 500px) {
    /* footer */
    .footer__title {
        font-size: 55px;
    }

    .footer__subtitle {
        font-size: 18px;
    }

}

@media screen and (max-width: 430px) {
    /* footer */
    .footer__title {font-size: 52px;}

    .footer__subtitle {font-size: 16px;}

    .footer__btn {
        width: 220px;
        height: 70px;
    }
}