* {
    margin: 0; padding: 0;
    font-family: 'Open Sans', sans-serif;
}

body {
    /* padding-top: 58px; */
}

hr {
    margin-bottom: 0;
}

.userImg {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    border: 1px solid #152b49;
}

.userImg img {
    height: 100%;
    width: 100%;
    border-radius: 50%;
    object-fit: cover;
}

footer {
    /* background-color: #152b49; */
}

.main-container {
    /* padding: 50px 100px; */
    padding: 25px 20px;
}

.bg-main {
    /* background: url("https://melage.dedicateddevelopers.us/storage/media/83/conversions/banner-large.png") top center no-repeat; */
    background: url(../images/banner.jpg) top center no-repeat;
    background-size: cover;

}

.main-container h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #152b49;
    margin-bottom: 30px;
}

.main-container input,
.main-container select {
    width: 100%;
    border: 1px solid #152b49;
    padding: 10px;
    border-radius: 0;
    box-shadow: none;
    background-color: transparent;
}

.main-container .btn {
    border: 1px solid #152b49;
    background: #152b49;
    color: white;
    width: 168px;
    height: 46px;
    text-transform: uppercase;
    font-size: 12px;
    border-radius: 0;
}
.main-container .btn:hover {
    background-color: #ffffff;
    color: #bc9b5d;
}

.nav-fix {
    position: fixed;
    top: 75px;
}

.uploadImg {
    height: 250px;
    width: 250px;
    border-radius: 50%;
    border: 1px solid #152b49;
    display: flex;
    margin: 0 auto 30px auto;
    position: relative;
}

.uploadImg img {
    height: 100%;
    width: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.uploadIc {
    width: 60px;
    height: 60px;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #152b49;
    cursor: pointer;
}
.uploadIc input[type="file"]{
    height: 100%;
    width: 100%;
    opacity: 0;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
}
.dashboard-menu .nav-item,
.dashboard-menu .nav-item:hover {
    border: 0 !important;
}
.dashboard-menu .nav-link,
.navbar-light .dashboard-menu.navbar-nav .nav-link:hover {
    /* color: rgba(0,0,0,.55) !important; */
}
.dashboard-menu .nav-link.active {
    color: #bc9b5d !important;
}

@media (max-width: 992px) {
    .main-container {
        padding: 20px;
    }
    .nav-fix {
        position: relative;
        top: 0;
    }
}
