.ambu {
    animation: blink 1s linear infinite;
    width: 31px;
}

@keyframes blink {
    0% {
        opacity: 1;
        /* color: white; */
    }

    50% {
        opacity: 0.2;
        /* color: red; */
    }

    100% {
        opacity: 1;
        /* color: white; */
    }
}

header nav {
    position: relative;
    z-index: 99;
    width: 100%;
    background-color: white;
    transition: all 0.5s ease;
}

header nav.fixed-top {
    box-shadow: 0px 2px 4px 0px rgb(96 96 96 / 13%);
}

header nav .wrapper {
    position: relative;
    height: 54px;
    line-height: 54px;
}

.wrapper .logo img {
   
    width:170px;
    margin-top: 136px;
}

.wrapper .nav-links {
    display: inline-flex;
}

.nav-links li a {
    font-weight: 500;
    padding: 9px 20px;
    transition: all 0.3s ease;
    color: #0a3f6b;
    font-size:14px;
}

.nav-links li a:hover {
    color: #0a3f6b;
}

.nav-links .mobile-item {
    display: none;
}

.nav-links .drop-menu {
    position: absolute;
    background: #f1f5ff;
    width: 210px;
    line-height: 35px;
    top: 85px;
    opacity: 0;
    visibility: hidden;
    font-weight: 500;
    box-shadow: 0 1px 4px rgb(0 0 0 / 13%);
}

.nav-links .menu_1 {
    width: 314px;
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
    transition: all 0.3s ease;
    top: 70px;
    opacity: 1;
    visibility: visible;
}

.drop-menu li {
    transition: all 0.5s ease;
}

.drop-menu li:hover {
    background-color: #d3e3ff;
}

.drop-menu li a {
    width: 100%;
    display: block;
    padding: 0 0 0 15px;
    border-radius: 0px;
    transition: all 0.5s ease;
}

.drop-menu li a:hover {
    padding-left: 18px;
}

.mega-box {
    position: absolute;
    left: 0;
    width: 100%;
    /* padding: 0 30px; */
    top: 85px;
    opacity: 0;
    visibility: hidden;
}

.mega-box .content {
    background: #f1f5ff;
    padding: 25px 20px;
    /* display: flex; */
    width: 100%;
    /* justify-content: space-between; */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.mega-box .content .row {
    /* width: calc(25% - 30px); */
    line-height: 24px;
}

.mega-box .content .text_body p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mega-box .content .text_body .btn1 {
    font-size: 16px !important;
    padding: 5px 29px;
}

/* .content .row .mega-links {
    margin-left: -40px;
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.row .mega-links li {
    padding: 0 20px;
}

.row .mega-links li a {
    padding: 0px;
    padding: 0 20px;
    color: #d9d9d9;
    font-size: 17px;
    display: block;
}

.row .mega-links li a:hover {
    color: #f2f2f2;
} */

.mega-box .content .row li {
    margin-bottom: 7px !important;
}

.mega-box .content .row li a:hover {
    padding-left: 18px;
}

.wrapper .btn {
    color: #fff;
    font-size: 20px !important;
    cursor: pointer;
    display: none;
}

.wrapper .btn.close-btn {
    position: absolute;
    right: 14px;
    top: 10px;
}

nav input {
    display: none;
}