.nav_menu_items:nth-child(6){
  border: 1px solid var(--primary_color);
  padding: 10px 0px;
  border-radius: 30px;
}
.mega-dropdown {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  position: absolute;
  z-index: 10;
  background: white;
  width: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mega-dropdown.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.animated-button {
  background: linear-gradient(-30deg, #20B486 50%, #20B486 50%);
  padding: 6px 18px;
  display: inline-block;
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
  overflow: hidden;
  color: white;
  font-size: 18px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 7px;
  /* box-shadow: rgba(2, 2, 2, 0.233) 3px 3px; */
}

.animated-button::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #8592ad;
  opacity: 0;
  -webkit-transition: .2s opacity ease-in-out;
  transition: .2s opacity ease-in-out;
}

.animated-button:hover::before {
  opacity: 0.2;
}

.animated-button span {
  position: absolute;
}

.animated-button span:nth-child(1) {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(8, 20, 43, 0)), to(#1954f7));
  background: linear-gradient(to left, rgba(8, 20, 43, 0), #1f1f1f);
  -webkit-animation: 2s animateTop linear infinite;
          animation: 2s animateTop linear infinite;
}

@-webkit-keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

.animated-button span:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(8, 20, 43, 0)), to(#1954f7));
  background: linear-gradient(to top, rgba(8, 20, 43, 0), #1f1f1f);
  -webkit-animation: 2s animateRight linear -1s infinite;
          animation: 2s animateRight linear -1s infinite;
}

@-webkit-keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

.animated-button span:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(8, 20, 43, 0)), to(#1954f7));
  background: linear-gradient(to right, rgba(8, 20, 43, 0), #1f1f1f);
  -webkit-animation: 2s animateBottom linear infinite;
          animation: 2s animateBottom linear infinite;
}

@-webkit-keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

.animated-button span:nth-child(4) {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(8, 20, 43, 0)), to(#1954f7));
  background: linear-gradient(to bottom, rgba(8, 20, 43, 0), #1f1f1f);
  -webkit-animation: 2s animateLeft linear -1s infinite;
          animation: 2s animateLeft linear -1s infinite;
}

@-webkit-keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

.scrollbar::-webkit-scrollbar {
  width: 10px;
  height: 16px;
}

/* Track */
.scrollbar::-webkit-scrollbar-track {
  border-radius: 100vh;
  background: #cbd5e0;
}

/* Handle */
.scrollbar::-webkit-scrollbar-thumb {
  background: #2269b1;
  border-radius: 100vh;
}

/* Handle on hover */
.scrollbar::-webkit-scrollbar-thumb:hover {
  background: #2269b1;
}


@media (max-width: 1280px){
  .animated-button {
    background: linear-gradient(-30deg, #20B486 50%, #20B486 50%);
    padding: 5px 20px;
    display: inline-block;
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
    overflow: hidden;
    color: white;
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    /* box-shadow: rgba(2, 2, 2, 0.233) 3px 3px; */
  }
}
@media screen and (max-width: 991px){
  .responsive_top_bar_container{
    background-color: var(--primary_color);
    padding: 10px 0px;
  }
  
}
.clip-right-angle {
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
}
