* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat';
}

/* NAVBAR */
.navbar-mobile {
    display: flex;
}

.navbar-desktop {
    display: none;
}

/* WHO WE ARE */
.who {
    text-align: center;
    align-items: center;
}

.who img {
    width: 80%;
    margin-bottom: -40px;
}

.who p {
    text-align: justify;
    margin-top: 15px;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 50px;
}

/* HOW / STEPS */
.how {
    text-align: center;
    align-items: center;
    margin-top: 20px;
}

.how h1 {
    margin-left: 15px;
    margin-right: 15px;
}

/* STEP ONE */
.step-one img {
    width: 50%;
}

.step-one p {
    margin-top: 15px;
    text-align: justify;
    padding-left: 30px;
    padding-right: 30px;
}

/* STEP TWO */
.step-two h2 {
    text-align: center;
    margin-left: 15px;
    margin-right: 15px;
}

.step-two img {
    width: 50%;
}

.step-two p {
    text-align: justify;
    margin-top: 15px;
    padding-left: 30px;
    padding-right: 30px;
}

/* STEP THREE */
.step-three img {
    width: 50%;
}

.step-three p {
    text-align: justify;
    margin-top: 15px;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 50px;
}

/* CONTACT */
.contact {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 40px;
}

.contact p {
    margin-top: 7px;
    margin-bottom: 25px;
    margin-left: 20px;
    margin-right: 20px;
}

.contact a {
    color: black;
    text-decoration: none;
    background-color: white;
    border: 1px solid white;
    color: #000;
    padding: 10px 20px;
    border-radius: 20px;
    transition: 0.3s;
}

.contact a:hover {
    color: white;
    background-color: black;
    border: 1px solid white;
}

@media (min-width: 768px) {
    .navbar-desktop {
        display: none;
    }

    .navbar-mobile {
        display: flex;
    }

    .who img {
        width: 40%;
    }

    /* FOOTER */
    .footer-mobile img {
        width: 20%;
    }

}

@media (min-width: 1200px) {
    .navbar-mobile {
        display: none;
    }

    .navbar-desktop {
        display: flex;
    }

    .who {
        margin-top: 50px;
    }

    .who img {
        width: 20%;
        margin-bottom: -50px;
    }

    .who p {
        padding-left: 300px;
        padding-right: 300px;
        margin-bottom: 50px;
    }

    /* HOW / STEPS */

    /* STEP ONE */
    .step-one img {
        width: 15%;
    }

    .step-one p {
        padding-left: 300px;
        padding-right: 300px;
        margin-bottom: 50px;
    }

    /* STEP TWO */
    .step-two img {
        margin-top: 50px;
        width: 15%;
    }

    .step-two p {
        padding-left: 300px;
        padding-right: 300px;
        margin-bottom: 50px;
    }

    /* STEP THREE */
    .step-three img {
        margin-top: 50px;
        width: 15%;
    }

    .step-three p {
        padding-left: 300px;
        padding-right: 300px;
        margin-bottom: 60px;
    }

    /* FOOTER */
    .footer-mobile img {
        width: 10%;
    }

}