/*==========  Desktop First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
    .left_resume {
        text-align: left;

    }
    .left_resume h3, .left_resume .resume_icons{
        text-align: center;
        margin-bottom: 10px;

    }
    .right_resume h3, .right_resume .resume_icons{
        text-align: center;
        margin-bottom: 10px;

    }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
    .resume_container {
        padding: 0 16px;
    }
    .top_wraper .logo_text p {
        font-size: 2.5vw;
    }
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
    .top_wraper .logo_text h1 {
        font-size: 1.5em;
         }

    .main_footer .social_wrap {
        float: left;
        margin-top: 20px;
        padding-left: 0;
    }

    .main_footer .social_wrap ul{
        padding-left: 0;
        width: 100%;
    }

}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {

}


/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {

}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {

}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {

}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {

}

 /* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {

}
