.menu-item a.drop {
    background: #005290;
    padding: 10px 30px;
    margin-top: -20px;
    list-style-type: none;
}
.menu-item {
    margin-top: -7px;
    list-style-type: none;
    /* position: absolute; */
}
/* .menu-item:hover {
    height: 200px;
} */
.menu-item a {
    color: #fff;
    text-decoration: none;
}
.sub-menu .menu-item {
  padding: 0.75rem 0;
  background: #1a75ba;
  opacity: 0;
  transform-origin: bottom;
  animation: enter 0.2s ease forwards;
  margin-top: 2px;
  height: auto;
  position: relative;
}
/* .sub-menu:hover {
    display: block !important;
} */
.sub-menu .menu-item:nth-child(1) {
  animation-duration: 0.2s;
  animation-delay: 0s;
}
.sub-menu .menu-item:nth-child(2) {
  animation-duration: 0.3s;
  animation-delay: 0.1s;
}
.sub-menu .menu-item:nth-child(3) {
  animation-duration: 0.4s;
  animation-delay: 0.2s;
}
.sub-menu .menu-item:hover {
  background: #005290;
}
.sub-menu .menu-item a {
  padding: 0 0.75rem;
}
.sub-menu {
    /* position: absolute; */
    width: 100%;
    top: 100%;
    left: 0;
    display: none;
    z-index: 1;
    padding-left: 0px;
    list-style-type: none;
    margin-top: 10px;
}

.menu-item:hover .sub-menu {
    display: block;
}
.dropdown-item { 
    padding: 10px 12px !important;
  background: #1a75ba !important;
  opacity: 0;
  transform-origin: bottom;
  animation: enter 0.2s ease forwards;
  margin-top: 2px;
  height: auto;
  position: relative;
  color: #fff !important;
  font-size: 13px;
    cursor: pointer;
}
.dropdown-item:focus, .dropdown-item:hover {
    background:  #005290 !important;
    color: #fff !important;
}
.dropdown-toggle {
    background: #005290 !important;
padding: 12px 24px 16px !important;
margin-top: -20px;
border-radius: 0px !important;
border: none !important;
box-shadow: none !important;
font-family: 'Montserrat-SemiBold';
text-transform: uppercase;
font-size: 14px !important;
line-height: 6px !important;
}
.dropdown-toggle span {
  font-size: 25px;
  margin-left: 12px;
  position: relative;
  top: 3px;
}
.dropdown-menu {
    border: none !important;
    color: #fff;
    margin: 0;
    padding: 0px;
    background: transparent !important;
}
.dropdown-menu.show {
    transform: translate3d(0px, 18px, 0px) !important;
    width: 100%;
}
.dropdown-toggle::after {
    display: none !important;
}
.dropdown-item:nth-child(1) {
    animation-duration: 0.2s;
    animation-delay: 0s;
  }
  .dropdown-item:nth-child(2) {
    animation-duration: 0.3s;
    animation-delay: 0.1s;
  }
  .dropdown-item:nth-child(3) {
    animation-duration: 0.4s;
    animation-delay: 0.2s;
  }

  @keyframes enter {
    from {
      opacity: 0;
      transform: scaleY(0.98) translateY(10px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
  @keyframes fade {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  .tab-content_section {
    z-index: -1;
    position: relative;
  }

  .line-main {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.line1 {
    display: block;
    content: "";
    width: 12px;
    height: 12px;
    background-color: #005290;
    position: relative;
    transform: rotate(45deg) translateX(-50%);
    left: 3%;
    top: 2px;
    z-index: 111;
    
}
.line2 {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 780px;
    height: 2px;
    margin-top: 3px;
    background: linear-gradient( to right, #c1b9df 0%, white 45%, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0) 55%, white 55%, #c1b9df 100% );
}
.btn-group {
  position: absolute;
right: 25px;
top: -24px;
}

@media (max-width: 600px) {
    .btn-group {
        position: absolute;
        top: -107px;
        right: 0;
    }
    .dropdown-toggle {
        background: #005290 !important;
        padding: 6px 11px;
        font-size: 12px !important;
    }
    .dropdown-menu.show {
        transform: translate3d(8px, 25px, 0px) !important;
        top: -6px !important;
    }
    .dropdown-item {
        font-size: 12px;
    }
}