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

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

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
.personal-block{
    margin-top: 35px;
}
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
.resume-container .left{
    text-align: left;
}
.resume-container .left h3{
    text-align: left;
    margin-bottom: 15px;
}
.resume-container .left .resume-icon{
    margin-bottom: 15px;
}
.resume-items:last-child{
    margin-bottom: 0px;
}

}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
.container-footer{
    align-items: center;
    flex-direction: column;
    padding: 0;
}
.col-md-footer{
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-wrap-footer{
    margin: 0;
    padding: 0;display: flex;
    align-items: center;
    justify-content: center;
}
.social-wrap-footer ul{
    display: flex;
    padding: 0;
    justify-content: center;
    align-items: center;
}
}

/* 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) {

}