@media( max-width: 990px ) {
    h1 {
        font-size: 4rem;
    }

    html {
        font-size: 52.6%;
    }

    .hero::after {
        height: 70%;
        top: 15%;
    }

    .hero__grid {
        margin-bottom: 0;
    }

    .hero__text {
        padding: 0 5rem 0 0;
    }

    .section-info {
        width: 70%;
    }
}

@media( max-width: 768px ) {

    .hero::after {
        height: 35%;
    }

    .hero__grid {
        display: flex;
        flex-direction: column-reverse;
        padding-bottom: 5rem;
    }

    .hero__imgBox {
        display: flex;
        justify-content: center;
    }

    .hero__imgBox img {
        width: 50rem;
    }

    .hero__text {
        padding: 12rem 5rem 5rem;
    }

    .slider__grid {
        display: flex;
        flex-direction: column;
        gap: 5rem;
    }

    .silder__imgBox {
        display: flex;
        justify-content: center;
    }

    .silder__imgBox img {
        width: auto;
    }

    .slider__container::after {
        height: 65%;
        top: 35%;
    }

    .section-download {
        padding-top: 30rem;
        padding-bottom: 12rem;
    }

    .questions{
        width: 80%;
    }

}

@media ( max-width: 576px ) {

    .hero__buttons {
        flex-direction: column;
        gap: rem;
    }

    .hero__buttons .btn {
        width: 20rem;
    }

    .menu-list {
        display: none;
    }
    
    .mobile__menu,
    .mobile__close {
        display: block;
        width: 3rem;
        cursor: pointer;
    }
    
    .menu__mobile {
        transform: translateX(100%);
        position: fixed;
        z-index: 9999;
        background-color: rgba(37, 43, 70, 0.98);
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 5rem;
        display: flex;
        flex-direction: column;
        transition: all .4s ease-out;
    }

    .show.menu__mobile {
        transform: translate(0);
    }

    .menu__mobileHeader {
        display: flex;
        justify-content: space-between;
        margin-bottom: 5rem;
    }

    .menu__mobileBrand {
        filter: invert(0.4);
    }

    .menu__mobileList {
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }

    .menu__mobileList li {
        padding: 3rem;
        display: flex;
        justify-content: center;
        align-items: center;
        border-bottom: 1px solid #fff;
    }

    .menu__mobileList a:link,
    .menu__mobileList a:visited {
        font-size: 3.2rem;
        text-transform: uppercase;
        color: #fff;
        transform: all .4s ease-out;
    }

    .menu__mobileList a:hover,
    .menu__mobileList a:active {
        color: #fa5757;
    }

    .menu__social {
        margin-top: auto;
        display: flex;
        justify-content: center;
        gap: 5rem;
    }

    .menu__social img {
        cursor: pointer;
    }

    .features__buttons {
        width: 90%;
        flex-direction: column;
        gap: 3rem;
        border-bottom: none;
    }

    .feature__button {
        border-bottom: 1px solid #ddd;
    }

    .slider__text {
        padding-left: 2rem;
        padding-right: 2rem; 
    }

    .browsers__grid {
        display: block;
    }

    .browser  {
        margin: 0 auto;
        width: 60%;
        margin-bottom: 5rem;
    }

    .section-download {
        margin-bottom: 0;
    } 

    .form {
        flex-direction: column;
    }

    .footer__grid {
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 5rem;
    }

    .footer__info {
        flex-direction: column;
        align-items: center;
    }

}