.profile-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.profile-hero-bg-img {
    width: 100%;
}
.profile-container {
    margin: 6rem 0;
    width: 90%;
    display: flex;
    justify-content: space-between;
}

/* left container */
.profile-left-container {
    width: 25%;
}

.profile-settings-menubar{
    display: none;
}
.profile-content-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #FFFFFF;
    border-radius: 15px;
}

.profile-pic-box {
    width: 150px;
    margin: 1.5rem 0;
    position: relative;
}

.profile-pic-box img {
    width: 100%;
    border-radius: 15px;
}

.profile-pic-box span {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    box-shadow: 1px 1px 4px #666;
    bottom: -10px;
    right: -10px;
    cursor: pointer;
}

.profile-list-group {
    border-radius: 25px !important;
    border: none !important;
    overflow: hidden;
    box-shadow: 0px 1px 1px #666;
}

.profile-list-group .list-group-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.active-item {
    color: #FFFFFF;
    background-color: #168072 !important;
}

.active-item span {
    color: #fff !important;
}

.list-group-item {
    cursor: pointer;
}

.rotate-90 {
    transform: rotate(90deg);
    transition: 0.2s;
}

#menuBtn {
    transition: 0.2s;
    color: #666 !important;
}

/* right container */
.profile-right-container {
    width: 73%;
}

.profile-form-container {
    background-color: #FFFFFF;
    margin-top: 1rem;
    border-radius: 15px;
    width: 85%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.profile-form-container h5 {
    padding: 0 1.5rem;
}

.form-flex-box {
    width: 100%;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-grid-box {
    width: 100%;
    padding: 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem;
}

/* form=============== */
.form-flex-box .form-group-box {
    width: 48%;
}

.icon-center {
    padding: 0 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-group-prepend span {
    background: none !important;
    border: none !important;
}

.w-48 {
    width: 48% !important;
}

.w-22 {
    width: 22% !important;
}

.form-grid-box .input-group-prepend {
    padding: 0 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-another-btn-div {
    padding: 1.5rem;
    margin-top: -1.5rem;
}

.add-another-btn {
    padding: 4px 16px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 50px;
    background: none;
    border: 1px solid #eee;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.2s;
}

.add-another-btn:hover {
    transform: scale(1.05);
    transition: 0.2s;
}

.profile-form-container .flex-btn-box {
    margin-top: -1.5rem;
    padding: 1.5rem;
    justify-content: flex-end;
    gap: 1rem;
}

.profile-btn {
    width: 150px;
    padding: 10px !important;
    font-weight: bold !important;
}

.profile-btn:hover {
    color: #FFFFFF !important;
}

@media screen and (max-width: 1660px) {
    .profile-form-container {
        width: 100%;
    }
}

@media screen and (max-width: 1440px) {
    .w-22 {
        width: 24% !important;
    }
}

@media screen and (max-width: 1280px) {
    .w-22 {
        width: 48% !important;
    }
}

@media screen and (max-width: 1080px) {

    /* left container */
    .profile-left-container {
        width: 35%;
    }

    /* right container */
    .profile-right-container {
        width: 62%;
    }

    .form-flex-box{
        flex-direction: column;
    }
    .form-group-box{
        width: 100% !important;
    }

    .profile-right-container h3{
        font-size: 24px;
    }
    .profile-form-container h5{
        font-size: 18px !important;
    }
}

@media screen and (max-width: 768px) {
    .profile-hero-bg-img{
        height: 100px;
    }
    .profile-container {
        margin: 1rem 0;
        flex-direction: column;
        gap: 1.5rem;
    }
    /* left container */
    .profile-left-container {
        width: 100%;
    }

    .profile-settings-menubar{
        display: block;
        width: 100%;
        padding: 1rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    #profileMenu {
        display: none;
    }

    /* right container */
    .profile-right-container {
        width: 100%;
    } 

    .profile-right-container h3{
        font-size: 22px;
    }

}
@media screen and (max-width:500px){
    .profile-right-container h3{
        font-size: 20px;
    }
    .profile-form-container h5{
        font-size: 16px !important;
    }
}