nav{
    padding: 17px 0 15px;
    background: linear-gradient(90deg, #FAFDFF 39.32%, #F4FFFB 86.54%);
    position: sticky;
    top: 0;
    z-index: 99;
}
.navPages{
    display: flex;
    align-items: center;
    gap: 24px;
}
.navWrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navPages a{
    font-size: 15px;
    line-height: 100%;
    color: #1C3D5A;
}
.navPages a.active {
    font-weight: 700;
    color: #8CA9B1;
}
.navPages a:hover{
    text-decoration: underline;
}
.contactWrapper{
    display: flex;
    align-items: center;
    gap: 12px;
}
.contactWrapper .phoneAnch{
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 15px;
    line-height: 100%;
    color: #1C3D5A;
}
.contactWrapper .phoneAnch:hover{
    opacity: .7;
}
.inquiryBtn{
    padding: 8px 17px;
    background: #8CA9B1;
    border-radius: 5px;    
    font-weight: 700;
    font-size: 15px;
    line-height: 100%;
    color: #fff;
    transition: all ease .2s;
    position: relative;
    overflow: hidden;
}
.inquiryBtn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    transform: skewX(-20deg);
    background-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: 1.75s linear infinite shine;
}
@keyframes shine {
  0% {
    left: -200%;
  }
  100% {
    left: 200%;
  }
}
.inquiryBtn:hover{
    transform: scale(1.04);
}
.menuBtn{
    display: none;
}
.nav-list-wrapper{
    display: none;
}
@media (max-width:991px) {
    .navPages,
    .mobHide{
        display: none;
    }
    .phoneAnch.mobHide{
        display: none;
    }
    .menuBtn{
        display: block;
    }

    .nav-list-wrapper {
        background: linear-gradient(90deg, #FAFDFF 39.32%, #F4FFFB 86.54%);
        display: block;
        position: fixed;
        max-width: 297px;
        width: 100%;
        height: 100vh;
        top: 0;
        right: -297px;
        transition: all 0.3s ease-in-out;
        z-index: 1111;
        border-left: 1px solid #8CA9B1;
    }
    .sidebar-header,
    .navMob-icons {
        display: block;
    }
    .nav-list-wrapper.show {
        right: 0;
    }
    .sidebar-header {
        padding: 20px 20px 38px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .menu-list {
        padding: 10px 0;
        position: relative;
        border-bottom: 1px solid #ddd;
        margin-bottom: 10px;
    }
    .menu-list.list-active {
        background: linear-gradient(
        102.02deg,
        rgba(255, 91, 46, 0.18) 3.15%,
        rgba(245, 134, 62, 0.18) 36.33%,
        rgba(249, 153, 54, 0.18) 69.52%,
        rgba(254, 167, 47, 0.18) 100%
        );
    }
    .menu-list.list-active {
        background: linear-gradient(
        102.02deg,
        rgba(255, 91, 46, 0.18) 3.15%,
        rgba(245, 134, 62, 0.18) 36.33%,
        rgba(249, 153, 54, 0.18) 69.52%,
        rgba(254, 167, 47, 0.18) 100%
        );
    }
    .nav-list .menu-list a span {
        display: inline-block;
        height: 15px;
    }
    .dropdown-item::after {
        content: '';
        position: absolute;
        background-image: url(../images/dropdown-mob-icon.svg);
        width: 12px;
        height: 12px;
        top: 15px;
        right: 15px;
    }
    .dropdown-item:hover::after {
        background-image: url(../images/dropdown-mob-icon.svg);
    }
    .nav-list .menu-list a:hover {
        color: #0e145f;
        text-decoration: none;
    }

    .dropdown-list {
        position: unset;
        padding: 0px 0px;
        top: 0px;
        left: 0px;
    }

    .dropdown-list ul {
        padding: 0 0 0 38px;
        margin-top: 9px;
        list-style: none;
        position: relative;
        display: flex;
        flex-direction: column;
        row-gap: unset;
        column-gap: unset;
        min-width: unset;
        background: unset;
        border: unset;
        border-radius: unset;
    }
    .dropdown-list ul::before {
        content: '';
        position: absolute;
        width: 1px;
        height: calc(100% - 38px);
        background: #ffcdbf;
        left: 23px;
        top: 21px;
    }
    .dropdown-list ul li {
        font-size: 13px;
        font-weight: 400;
        line-height: 17.55px;
        color: #0e145f;
        padding: 8px;
        border-radius: 5px;
        border: 1px solid #feead6;
        margin-bottom: 10px;
        position: relative;
    }
    .dropdown-list ul li:last-child {
        margin-bottom: 0px;
    }
    .dropdown-list ul li::before {
        content: '';
        position: absolute;
        width: 7px;
        height: 7px;
        background: #ffcdbf;
        border-radius: 50%;
        left: -19px;
        top: 14px;
    }
    .menu-list.dropdown-menu {
        padding: 0;
    }
    .menu-list .dropdown-item {
        padding: 10px 15px;
    }
    .dropdown-list ul li.list-active {
        background: linear-gradient(
        102.02deg,
        rgba(255, 91, 46, 0.12) 3.15%,
        rgba(245, 134, 62, 0.12) 36.33%,
        rgba(249, 153, 54, 0.12) 69.52%,
        rgba(254, 167, 47, 0.12) 100%
        );
    }
    .dropdown-list ul li.list-active a {
        color: #ff5b2e;
    }
    .dropdown-list ul li.list-active::before {
        background: #ff5b2e;
    }
    .dropdown-menu:hover .dropdown-list {
        display: none;
    }
    .dropdown-menu:hover .dropdown-item::after {
        transform: unset;
    }
    .dropdown-item.rotate::after {
        background-image: url(../images/dropdown-mob-icon-up.svg);
    }
    .nav-list .menu-list a {
        font-size: 14px;
        font-weight: 500;
        display: flex;
        gap: 10px;
        align-items: center;
    }
    .nav-list {
        list-style: none;
        padding: 0 20px;
    }
    .nav-list li a{
        font-size: 15px;
        line-height: 100%;
        color: #1C3D5A;
    }
    .nav-list .inquiryBtn{
        margin: 40px auto 0;
        display: block;
        text-align: center;
    }
    .navOverlay {
        background: rgba(0, 0, 0, .7);
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        display: none;
        z-index: 99;
    }
    .navOverlay.show{
        display: block;
    }
}