.jd-mega {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .25s ease;
    z-index: 100;
}

.has-mega:hover .jd-mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.jd-mega-container {
    display: flex;
    min-height: 280px;
}

.jd-col-left {
    width: 30%;
    background: #fff;
    border-right: 1px solid #eee;
}

.jd-col-left ul {
    list-style: none;
    padding: 15px;
}

.jd-col-left li {
    padding: 12px;
    cursor: pointer;
    font-weight: 500;
}

.jd-col-left li.active,
.jd-col-left li:hover {
    background: var(--third-color);;
    color: #000;
}

.jd-col-right {
    width: 70%;
    padding: 20px;
    background: #fff;
}

.jd-content  {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap: 1rem;
}

.jd-content.active {
    display: flex;
    
}

.jd-content .jdc-list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-row-gap: 20px;
    row-gap: 20px;
}

.jd-content .jdc-list a {
    display: flex;
    width: auto;
    cursor: pointer;
    border: 1px solid var(--border);
    background-color: #e4e6eb;
    border-radius: 8px;
    align-items: center;
    justify-content: space-between;
    padding: 7px 14px;
    line-height: normal;
    gap: 1rem;
}

.jd-content .jdc-list a:hover {
    background-color: #00357a;
    color: #fff;
}

.jd-content .jdc-list a:hover svg rect{
    fill: #fff;
}

.jd-content .jdc-list a:hover svg path{
    fill: #00357a;
}

.jdc-bottom{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
}

.jdc-bottom a {
    display: flex;
    width: auto;
    cursor: pointer;
    background-color: var(--secondary-color);
    border-radius: 50px;
    align-items: center;
    justify-content: space-between;
    min-width: 115px;
    padding: 7px 8px 7px 24px;
    gap: 2rem;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;

}
.jdc-bottom a svg path{
    fill: var(--secondary-color);
}
.jdc-bottom a:hover{
    background-color: var(--primary-color);
}
.jdc-bottom a:hover svg path{
    fill: var(--primary-color);
}

.has-one .jd-col-right{
    width: 100%;
}


/*menu mobile*/

.menu_mb_wrapper{
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    z-index: 999999999;
}

.menu_mb_wrapper.active{
    display: block;
}

.menu_mb{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.menu_mb .top{
    padding: 1rem 0;
}

.menu_mb .body {
    overflow: auto;
}

.menu_mb .top .head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.menu_mb .top .head img{
    width: 13rem;
    height: auto;
}

.menu_mb .bottom{
    border-top: 1px solid #fff;
    padding: 1rem 0;
}

.menu_mb .bottom .links{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    -webkit-column-gap: 22px;
    column-gap: 22px;
    row-gap: 22px;
    -webkit-row-gap: 22px;
}

.menu_mb .bottom .links .item{
    font-size: 20px;
    line-height: normal;
    font-weight: 500;
    color: #fff;
}

 .mb-mega-menu{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

 .mb-meg-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px 12px;
    background: #696AB0;
    border-radius: 10px;
}

 .mb-meg-header .meg-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    color: #fff;
}


.mb-sub-menu{
    display: none;
}

.back-sub-menu{
    margin-top: 1rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.back-sub-menu .title{
    font-size: 26px;
    color: #fff;
    font-weight: 600;
}

.mbs-items{
   display: flex;
   flex-direction: column;
   gap: 15px; 
   margin-bottom: 2rem;
}

.jd-item{
    padding: 2rem 0;
    white-space: nowrap;
}

.jd-item a{
    
}