﻿/*  CSS of Shop Page */

/* Sections  */


/* Banner Section */
.main-section-container{
    background-image: url(../../images/profile/profile-main-section-banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 10rem;
}

#main-section .profile-image {
    height: 18rem;
    width: 18rem;
}

/* Media Query for Banner Section */

/* applies to medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    #main-section .profile-image {
        height: 13rem;
        width: 13rem;
    }
}

/* applies to x-small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    #main-section .profile-image {
        height: 9rem;
        width: 9rem;
    }
}


/* Body Section */

#body-section .hdg-3 {
    left: 20px;
}

/* End Of Sections  */
