/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
   
    .headerArea{
        display: none;
    }

    .contentArea{
        display: flex;
        flex-flow: column wrap;
       
    }

    .contentText{
        width: 100%;
        margin-left: 0px;
        order: 2;
        display: flex;
        flex-flow: column wrap;
        align-items: center;
        justify-content: center;
    }

    .text1{
        margin-top: 0px;
        padding-top: 20px;
        font-size: 20px;
    }

    .text2{
        font-size: 40px;
    }

    .text3{
        font-size: 13px;
    }

    .learnbtn{
        font-size: 10px;
    }


    .linkIcon{
        margin-left: 0px;
    }


    .imageArea{
        width: 100%;
        order: 1;
    }

}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) and (max-width:768px) {
    .headerArea{
        display: none;
    }

    .contentArea{
        display: flex;
        flex-flow: column wrap;

    }

    .contentText{
        width: 100%;
        margin-left: 0px;
        order: 2;
        display: flex;
        flex-flow: column wrap;
        align-items: center;
        justify-content: center;
    }

    .text1{
        margin-top: 0px;
        padding-top: 20px;
        font-size: 26px;
    }

    .text2{
        font-size: 50px;
    }

    .text3{
        font-size: 16px;
    }

    .learnbtn{
        font-size: 14px;
    }


    .linkIcon{
        margin-left: 0px;
    }


    .imageArea{
        width: 80%;
        order: 1;
        margin: auto;
    }


}

