.mycontent{
    display: flex;
    flex-direction: column;
    width: 100%;
}

.content-header{
    display: flex;
    width: 100%;
    height: 100px;
    background-color: #e5dfc8;
    align-items: center;
}

.cont-left{
    display: flex;
    width: 50%;
    padding: 10px;
    color: #005514;
    justify-content: center;
    font-size: 2.1rem;
}

.cont-right{
    display: flex;
    width: 50%;
    justify-content: center;
}


.breadcrumb-item{
    text-decoration: none;
    font-size: .8rem;
    color: #005514;
}

.breadcrumb-item a{
    color: #005514;
    text-decoration: none;
}

.content-main{
    display: flex;
    width: 100%;
    min-height: 600px;
    padding: 3% 5%;
}

.main-left{
    display: flex;
    flex-direction: column;
    width: 60%;
    gap: 5%;
}

.main-card{
    display: flex;
    width: 90%;
    flex-direction: column;
    gap: 10px;
}

.main-card h3{
    font-size: 1.9rem;
    font-weight: 600;
    opacity: .8;
}

.main-details{
    display: flex;
    flex-direction: column;
    width: 100%;
}

.main-details p{
    font-size: 1.1rem;
    text-align: justify;
}

.main-right{
    display: flex;
    width: 30%;
}

.list-group{
    width: 100%;
}

.myactive2{
    background-color: #005514;
    color: #fdc800;
}

.mylist-group-item-action{
    display: flex;
    align-items: center;
    padding: 15px 10px;
    justify-content: space-between;
}
.mylist-group-item-action:hover{
    color: #2aad48;
}

.emblemImg{
    display: flex;
    align-self: center;
}

.ceo-section{
    display: flex;
    flex-direction: row;
    gap: 4%;
}

.ceo-section img{
    display: flex;
    width: 200px;
    height: 200px;
}

.ceo-details{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ceo-details span{
    font-size: 14px;
    opacity: .8;
}

.ceo-social{
    display: flex;
    width: 100%;
}

.ceo-social a{
    display: flex;
    border: 1px solid rgba(43, 42, 42, 0.745);
    text-decoration: none;
    padding: 8px;
    border-radius: 5px;
    transition: .5s;
    color: rgba(43, 42, 42, 0.745);
}


.ceo-social a:hover{
    background-color: #fdc800;
    border-color: #fdc800;
    color: white;
}

.ceo-text{
    margin-top: 4%;
}

@media only screen and (max-width: 420px) {
    .mycontent{
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    .content-header{
        display: flex;
        width: 100%;
        height: 90px;
        background-color: #e5dfc8;
        align-items: center;
    }
    
    .cont-left{
        display: flex;
        width: 100%;
        padding: 10px;
        color: #005514;
        justify-content: center;
        font-size: 1.4rem;
    }
    
    .cont-right{
        display: none;
        width: 50%;
        justify-content: center;
    }
    
    
    .breadcrumb-item{
        text-decoration: none;
        font-size: .8rem;
        color: #005514;
    }
    
    .breadcrumb-item a{
        color: #005514;
        text-decoration: none;
    }
    
    .content-main{
        display: flex;
        flex-direction: column-reverse;
        width: 100%;
        min-height: 600px;
        padding: 3% 5%;
    }
    
    .main-left{
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 5%;
    }
    
    .main-card{
        display: flex;
        width: 90%;
        flex-direction: column;
        gap: 10px;
    }
    
    .main-card h3{
        font-size: 1.4rem;
        font-weight: 600;
        opacity: .8;
    }
    
    .main-details{
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    .main-details p{
        font-size: 1.1rem;
        text-align: justify;
    }
    
    .main-right{
        display: flex;
        width: 99%;
        margin: 4% 0;
    }
    
    .list-group{
        width: 100%;
    }
    
    .myactive2{
        background-color: #005514;
        color: #fdc800;
    }
    
    .mylist-group-item-action{
        display: flex;
        align-items: center;
        padding: 15px 10px;
        font-size: .8rem;
        justify-content: space-between;
    }
    .mylist-group-item-action:hover{
        color: #fdc800;
    }   
}