/*megamenu start*/
.rad-megamenu {
    cursor: pointer;
    transition: 0.2s;
    width: 151px;
    height: 40px;
    background-color: #0C1B43;
    border-radius: var(--kp-rad2);
    color: #ffffff;
    gap: 4px;
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
}
.rad-megamenu .ata-mega-menu {
    background-color: #ffffff;
    position: absolute;
    top: 55px;
    right: 0;
    transition: all 0.2s ease-in-out;
    width: 1320px;
    height: 452px;
    border-radius: var(--kp-rad1);
    box-shadow: 0px 0px 16px 0px #BED4E74A;
    padding: 25px;
    transform: translateY(15px);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.rad-megamenu .ata-mega-menu__right {
    background-color: #F0F5FA;
    width: 200px;
    height: 404px;
    border-radius: var(--kp-rad1);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 25px 10px;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.rad-megamenu .ata-mega-menu__right ::-webkit-scrollbar {
    display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.rad-megamenu .ata-mega-menu__right {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}
.rad-megamenu:not(:hover) .ata-mega-menu {
    opacity: 0;
    visibility: hidden;
    z-index: -9;
}
.rad-megamenu:hover .ata-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    z-index: 999;
}
.rad-megamenu .ata-mega-menu__level1 {
    padding: 0 10px;
    width: 168px;
    height: 40px;
    border-radius: var(--kp-rad2);
    display: flex;
    align-items: center;
    background-color: transparent;
    font-size: 14px;
    font-weight: 600;
    line-height: 28px;
    color: #0C1B43;
    margin-bottom: 10px;
    transition: var(--kp-del);
    position: relative;
}
.rad-megamenu .ata-mega-menu__level1::before {
    position: absolute;
    content: "";
    width: 4px;
    height: 40px;
    top: 0;
    right: -15px;
    border-radius: 16px 0px 0px 16px;
    background-color: inherit;
}
.rad-megamenu .ata-mega-menu__level1:hover,
.rad-megamenu .ata-mega-menu__level1.rad-active {
    background-color: #e76941;
    color: #ffffff;
    transform: translateX(-5px);
}
.ata-mega-menu__left {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    max-width: 530px;
}
.rad-megamenu .ata-mega-menu__panel {
    width: 100%;
    height: 100%;
    overflow: auto;
    display: none;
    justify-content: flex-start;
    gap: 24px;
    padding-right: 42px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.ata-mega-menu__panel.rad-active{
    display: flex;
}
.ata-mega-menu__group {
    width: 47%;
}
.ata-mega-menu__level2{
    color: #0C1B43;
    font-size: 16px;
    font-weight: 600;
    line-height: 32px;
    position: relative;
    margin-right: 12px;
}
.ata-mega-menu__level2::before {
    position: absolute;
    content: "";
    width: 4px;
    height: 25px;
    border-radius: 1px;
    background-color: #E76941;
    right: -12px;
    top: -1px;
}
.ata-mega-menu__level3 {
    display: flex;
    flex-direction: column;
}
.ata-mega-menu__level3 a {
    color: #959EB1;
    font-size: 14px;
    line-height: 28px;
    font-weight: 400;
    transition: 0.4s;
}
.ata-mega-menu__level3 a:hover {
    color: #E76941;
}
.megamenu-box {
    width: 511px;
    height: 404px;
    border-radius: var(--kp-rad1);
    background-color: #F0F5FA;
    padding: 25px;
}
.megamenu-box div {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    overflow: auto;
    height: 294px;
    align-content: flex-start;
    gap: 12px;
}
.megamenu-box a {
    width: 82px;
    height: 82px;
    border-radius: var(--kp-rad2);
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #D5E6F6;
    color: #0C1B43;
    font-size: 14px;
    font-weight: 400;
    line-height: 12px;
    margin-bottom: 12px;
    transition: var(--kp-del);
    border: 3px solid transparent;
    justify-content: center;
    padding-bottom: 10px;
}
.megamenu-box a:hover {
    border: 3px solid #E76941;
}
.megamenu-box a svg, .megamenu-box a img {
    width: 40px;
    height: 25px;
    aspect-ratio: 1/1;
}
.megamenu-box h3 {
    color: #0C1B43;
    text-align: center;
}
/*megamenu end*/
@media(max-width: 1399px) {
    /*megamenu res start*/
    .rad-megamenu .ata-mega-menu {
        width: 1024px;
    }
    .megamenu-box {
        width: 246px;
    }
    /*megamenu res end*/
}