@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,700;0,800;1,700;1,800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@media screen and (min-width: 701px){
    body{
        width: 100%;
        background-color: white;
    }
    
    header{
        font-family: 'Rubik', sans-serif;
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
    }
    
    nav{
        width: 100%;
        height: 90px;
        display: flex;
        align-items: center;
        justify-content: space-around;
    }
    
    nav > ul{
        display: flex;
        gap: 40px;
    }
    
    nav li{
        list-style: none;
    }
    
    nav a{
        text-decoration: none;
        color: #4F5665;
    }
    
    nav div{
        display: flex;
        gap: 20px;
        align-items: center;
    }
    
    nav div > a{
        font-weight: 500;
    }
    
    nav button{
        font-family: 'Rubik', sans-serif;
        width: 110px;
        height: 35px;
        background: transparent;
        border: 2px solid #427FF0;
        border-radius: 50px;
        color: #427FF0;
        font-weight: 500;
        font-size: 1rem;
    }
    
    .start{
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding-bottom: 50px;
    }
    
    .start div{
        padding-left: 30px;
        width: 600px;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .start button{
        font-family: 'Rubik', sans-serif;
        font-weight: 500;
        width: 250px;
        height: 45px;
        border-radius: 10px;
        background-color: #427FF0;
        border: none;
        font-size: 1rem;
        filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.5));
    }
    
    .start img{
        padding-bottom: 20px;
    }
    
    .start div h1{
        font-size: 3.5rem;
    }
    
    main{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    
    .users{
        font-family: 'Rubik', sans-serif;
        display: flex;
        width: 85%;
        height: 150px;
        justify-content: space-around;
        align-items: center;
        background-color: rgb(238, 238, 238);
        overflow: hidden;
        box-shadow: 0 2px 7px 0px rgba(0,0,0,0.3),
        0 1px 3px 0 rgba(0,0,0,0.5);
    
    }
    
    .users > div{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        height: 80%;
        width: 530px;
    }
    
    .divider{
        border-left: 2px solid rgba(0,0,0,0.2);
    }
    
    .users i{
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 20px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: rgba(66, 127, 240, 0.3);
        color: #427FF0;
    }
    
    .n{
        font-size: 25px;
        font-weight: 700;
    }
    
    .l{
        font-size: 20px;
    }
    
    .first{
        display: flex;
        justify-content: space-around;
        align-items: center;
        height: fit-content;
        padding-top: 100px;
        width: 100%;
        font-family: 'Rubik', sans-serif;
    }
    
    .first > img{
        height: 600px;
    }
    
    .first > div{
        width: 400px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .first h1{
        font-weight: 500;
        font-size: 35px;
        line-height: 3rem;
    }
    
    .first p{
        font-size: 1rem;
        line-height: 1.8rem;
    }
    
    .first ul{
        font-size: 14px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        list-style: none;
    }
    
    .first ul i{
        color: #2FAB73;
    }
    
    
    .second{
        width: 100%;
        height: fit-content;
        padding: 100px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-family: 'Rubik', sans-serif;
        gap: 30px;
    }
    
    .second > div{
        display: flex;
        gap: 35px;
    }
    
    .second > h1{
        font-size: 35px;
    }
    
    .second > p{
        font-size: 16px;
    }
    
    .second > div div{
        background-color: rgb(238, 238, 238);
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        height: 550px;
        width: 330px;
        border-radius: 10px;
        border: #427FF0 solid 2px;
        box-shadow: 0 2px 10px 2px rgba(0,0,0,0.2);
    }
    
    .second > div div p{
        font-size: 18px;
        font-weight: 500;
    }
    
    .second ul{
        list-style-type: none;
        font-size: 14px;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .fa-check{
        color: #2FAB73;
    }
    
    .fa-xmark{
        color: rgb(248, 61, 61);
        font-size: 1.3rem;
    }
    
    .second button{
        font-family: 'Rubik', sans-serif;
        width: 150px;
        height: 35px;
        background: transparent;
        border: 1px solid #427FF0;
        border-radius: 50px;
        color: #427FF0;
        font-weight: 500;
        font-size: 1rem;
    }
    
    .third{
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-family: 'Rubik', sans-serif;
        gap: 70px;
        text-align: center;
        padding-top: 60px;
    }
    
    .third h1{
        font-size: 35px;
        width: 400px;
    }
    .third p{
        font-size: 16px;
        width: 510px;
    } 
    
    .third > div{
        display: flex;
        width: 80%;
        justify-content: space-around;
        align-items: center;
    }
    
    .m1{
        height: 112px;
    }
    
    .m2{
        height: 50px;
    }
    
    .m3{
        height: 208px;
    }
    
    .m4{
        height: 63px;
    }
    
    .m5{
        height: 51px;
    }
    
    .fourth{
        font-family: 'Rubik', sans-serif;
        display: flex;
        flex-direction: column;
        width: 100%;
        height: fit-content;
        align-items: center;
        gap: 50px;
        padding: 70px 0;
    }
    
    .fourth > h1{
        font-size: 35px;
        width: 500px;
        text-align: center;
    }
    
    .fourth > p{
        font-size: 16px;
        width: 550px;
        text-align: center;
    }
    
    .fourth > div{
        display: flex;
        gap: 40px;
    }
    
    .fourth > div > div{
        width: 350px;
        border: #DDDDDD 3px solid;
        padding: 25px;
        border-radius: 7px;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .fourth > div > div > div{
        display: flex;
        align-items: center;
    }
    
    .fourth > div > div > div > img{
        flex: 1;
    }
    
    .name{
        padding-left: 10px;
        flex: 3;
    }
    
    .fourth > div > div > div > p{
        flex: 1;
    }
    
    .fourth i{
        color: #FEA250;
    }
    
    footer{
        font-family: 'Rubik', sans-serif;
        width: 100%;
        height: fit-content;
        background-color: rgb(230, 230, 230);
        display: flex;
        justify-content: space-around;
        padding: 50px 0;
    }
    
    footer ul{
        list-style: none;
        display: flex;
        flex-direction: column;
        font-size: 1rem;
        gap: 15px;
    }
    
    .light{
        color: black;
        font-weight: 600;
        padding-bottom: 15px;
    }
    
    footer a{
        text-decoration: none;
        color: #4F5665;
    }
    
    footer > div{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    footer > div > p{
        width: 400px;
    }
    
    footer small{
        opacity: 0.5;
    }
    
    footer i{
        font-size: 1.4rem;
        color: #427FF0;  
    }
    
    footer h4{
        font-size: 20px;
    }
    
    footer > div > div{
        display: flex;
        gap: 10px;
    }
    
    footer > div > div > div{
        width: 35px;
        height: 35px;
        background-color: white;   
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        filter: drop-shadow(0 2px 2px rgba(0,0,0,0.5));
    }
    
    .fa-facebook-f{
        font-size: 1.2rem;
    }
    
    .fa-twitter, .fa-instagram{
        padding-top: 2px;
    }
    
    span{
        font-weight: 500;
    }
    
    .mobile{
        display: none;
    }
}


/* ################################################################### */
/* ################################################################### */
/* ################################################################### */
/* ################################################################### */
/* ################################################################### */
/* ################################################################### */


@media screen and (min-width: 1px) and (max-width: 700px) {
    body{
        width: 100%;
        height: fit-content;
        background-color: white;
    }

    body img{
        height: 10px;
        width: 10px;
    }
    
    header{
        font-family: 'Rubik', sans-serif;
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }
    
    nav{
        position: fixed;
        width: 100%;
        height: 55px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 15px;
        box-shadow: 0 1px 5px rgba(0,0,0,0.3);
        z-index: 11;
        background-color: #ebebeb;
    }

    nav i{
        font-size: 1.4rem;
    }

    nav .fa-xmark{
        font-size: 1.7rem;
    }

    .navButton{
        transition: 0.5s;
    }

    .navButton:active{
        transform: rotate(360deg);
    }

    .popup{
        display: flex;
        flex-direction: column;
        gap: 50px;
        position: fixed;
        background-color: #ebebeb;
        box-shadow: 0 5px 5px 2px rgba(0,0,0,0.3);
        right: -100%;
        height: 100vh;
        width: 60%;
        padding-top: 65px;
        align-items: center;
        text-align: center;
        z-index: 10;
        transition: 0.3s;
    }

    nav h1{
        font-size: 1.3rem;
    }
    
    .popup > ul{
        display: flex;
        gap: 10px;
        flex-direction: column;
    }
    
    .popup li{
        list-style: none;
    }
    
    .popup a{
        text-decoration: none;
        color: #4F5665;
        font-size: 1rem;
    }
    
    .popup div{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .popup div > a{
        font-weight: 500;
    }
    
    .popup button{
        font-family: 'Rubik', sans-serif;
        width: 170px;
        height: 35px;
        background: transparent;
        border: 2px solid #427FF0;
        border-radius: 50px;
        color: #427FF0;
        font-weight: 500;
        font-size: 1rem;
    }
    
    .start{
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        height: fit-content;
        text-align: center;
        padding-top: 70px
    }

    .start div{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    
    .start button{
        font-family: 'Rubik', sans-serif;
        font-weight: 500;
        width: 250px;
        height: 45px;
        border-radius: 10px;
        background-color: #427FF0;
        border: none;
        font-size: 1rem;
        filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.5));
        margin: 20px 0;
    }
    
    .start img{
        padding-bottom: 20px;
        width: 90%;
        height: auto;
    }
    
    .start div h1{
        font-size: 2rem;
        line-height: 2.8rem;
        width: 90%;
        padding-bottom: 20px;
    }

    .start p{
        font-size: 0.8rem;
        width: 80%;
    }
    
    main{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    
    .users{
        margin-top: 100px;
        font-family: 'Rubik', sans-serif;
        display: flex;
        width: 95%;
        height: 87px;
        justify-content: space-around;
        align-items: center;
        background-color: rgb(238, 238, 238);
        overflow: hidden;
        box-shadow: 0 2px 7px 0px rgba(0,0,0,0.3),
        0 1px 3px 0 rgba(0,0,0,0.5);
    
    }
    
    .users > div{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        height: 80%;
        width: 530px;
    }
    
    .divider{
        border-left: 2px solid rgba(0,0,0,0.2);
    }
    
    .users i{
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 0.8rem;
        width: 33px;
        height: 33px;
        border-radius: 50%;
        background-color: rgba(66, 127, 240, 0.3);
        color: #427FF0;
    }
    
    .n{
        font-size: 1rem;
        font-weight: 700;
    }
    
    .l{
        font-size: 0.8rem;
    }
    
    .first{
        display: flex;
        flex-direction: column;
        height: fit-content;
        padding-top: 100px;
        width: 100%;
        font-family: 'Rubik', sans-serif;
        text-align: center;
    }
    
    .first img{
        width: 80%;
        height: auto;
        align-self: center;
    }
    
    .first > div{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .first h1{
        font-weight: 500;
        font-size: 2rem;
        line-height: 2.5rem;
        width: 90%;
        align-self: center;
    }
    
    .first p{
        font-size: 1rem;
        line-height: 1.8rem;
        align-self: center;
    }
    
    .first ul{
        font-size: 14px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        list-style: none;
        text-align: left;
        padding-left: 20px;
    }
    
    .first ul i{
        color: #2FAB73;
    }
    
    .second{
        width: 100%;
        height: fit-content;
        padding: 100px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-family: 'Rubik', sans-serif;
        gap: 30px;
        overflow: hidden;
    }

    .second img{
        width: 30%;
        height: auto;
    }
    
    .second > div{
        display: flex;
        flex-direction: column;
        gap: 35px;
    }
    
    .second > h1{
        font-size: 35px;
    }
    
    .second > p{
        font-size: 16px;
        text-align: center;
    }
    
    .second > div div{
        background-color: rgb(238, 238, 238);
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        height: 550px;
        width: 330px;
        border-radius: 10px;
        border: #427FF0 solid 2px;
        box-shadow: 0 2px 10px 2px rgba(0,0,0,0.2);
    }
    
    .second > div div p{
        font-size: 18px;
        font-weight: 500;
    }
    
    .second ul{
        list-style-type: none;
        font-size: 14px;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .fa-check{
        color: #2FAB73;
    }
    
    .second .fa-xmark{
        color: rgb(248, 61, 61);
        font-size: 1.3rem;
    }
    
    .second button{
        font-family: 'Rubik', sans-serif;
        width: 150px;
        height: 35px;
        background: transparent;
        border: 1px solid #427FF0;
        border-radius: 50px;
        color: #427FF0;
        font-weight: 500;
        font-size: 1rem;
    }
    
    .third{
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-family: 'Rubik', sans-serif;
        gap: 30px;
        text-align: center;
        padding-top: 60px;
        overflow: hidden;
    }

    .third > img{
        width: 90%;
        height: auto;
    }
    
    .third h1{
        font-size: 35px;
        padding: 0 10px;
    }
    .third p{
        font-size: 16px;
        padding: 0 10px;
    } 
    
    .third > div{
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    .third > div > img{
        width: 20%;
        height: auto;
    }


    
    .m1{
        height: 112px;
    }
    
    .m2{
        height: 50px;
    }
    
    .m3{
        height: 208px;
    }
    
    .m4{
        height: 63px;
    }
    
    .m5{
        height: 51px;
    }
    
    .fourth{
        font-family: 'Rubik', sans-serif;
        display: flex;
        flex-direction: column;
        width: 100%;
        height: fit-content;
        align-items: center;
        gap: 50px;
        padding: 70px 0;
        overflow: hidden;
    }
    
    .fourth > h1{
        font-size: 2rem;
        text-align: center;
    }
    
    .fourth > p{
        font-size: 1rem;
        text-align: center;
    }
    
    .fourth > div{
        display: flex;
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    
    .fourth > div > div{
        width: 85%;
        border: #DDDDDD 3px solid;
        padding: 25px;
        border-radius: 7px;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .fourth > div > div > div{
        display: flex;
        align-items: center;
    }
    
    .fourth > div > div > div > img{
        flex: 1;
    }
    
    .name{
        padding-left: 10px;
        flex: 3;
    }
    
    .fourth > div > div > div > p{
        flex: 1;
    }
    
    .fourth i{
        color: #FEA250;
    }
    
    footer{
        font-family: 'Rubik', sans-serif;
        width: 100%;
        height: fit-content;
        background-color: rgb(230, 230, 230);
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        padding: 50px 0;
        overflow: hidden;
    }
    
    footer ul{
        list-style: none;
        display: flex;
        flex-direction: column;
        font-size: 1rem;
        gap: 15px;
    }
    
    .light{
        color: black;
        font-weight: 600;
        padding-bottom: 15px;
    }
    
    footer a{
        text-decoration: none;
        color: #4F5665;
    }
    
    footer > div{
        display: flex;
        align-items: center;
        text-align: center;
        flex-direction: column;
        gap: 20px;
    }
    
    footer small{
        opacity: 0.5;
    }
    
    footer i{
        font-size: 1.4rem;
        color: #427FF0;  
    }
    
    footer h4{
        font-size: 20px;
    }
    
    footer > div > div{
        display: flex;
        gap: 10px;
    }
    
    footer > div > div > div{
        width: 35px;
        height: 35px;
        background-color: white;   
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        filter: drop-shadow(0 2px 2px rgba(0,0,0,0.5));
    }
    
    .fa-facebook-f{
        font-size: 1.2rem;
    }
    
    .fa-twitter, .fa-instagram{
        padding-top: 2px;
    }
    
    span{
        font-weight: 500;
    }

    .footer--mobile{
        display: flex;
        padding-top: 20px;
        width: 100%;
        align-items: center;
        justify-content: space-around;
    }

    .computer{
        display: none;
    }

    @keyframes open{
        from{
            opacity: 0;
        }
        to{
            opacity: 1;
        }
    }

    @keyframes close{
        from{
            opacity: 1;
        }
        to{
            opacity: 0;
        }
    }
} 

