#top_menu {
  background: linear-gradient(90deg, #162E96 0%, #152052 100%);
  height: 50px;
  display: flex;
  align-items: center;
}
#top_menu .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top_menu_left a {
  color: #FFC60F;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 14px;
  margin-right: 50px;
}
.top_menu_left a img{
  margin-right: 10px;
}
.top_menu_left{
  display: flex;
  align-items: center;
}
.top_menu_right a {
  color: #FFC60F;
  font-size: 18px;
  margin-left: 30px;
  transition: all .5s linear;
}
/* .top_menu_right a:hover{
transform: rotateY(360deg);
transition: all .5s linear;
} */
.top_menu_right {
  display: flex;
  align-items: center;
}

/*=============== HEADER & NAV ===============*/
.header {
  /* position: fixed; */
  width: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 999;
  height: 80px;
  display: flex;
  align-items: center;
}
.nav {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__close, .nav__toggle {
  display: flex;
  color: #273b94;
  font-size: 26px;
  cursor: pointer;
}
.hide_menu{
  display: none;
}
/* Navigation for mobile devices */
@media screen and (max-width: 969px) {
  .hide_menu{
    display: block;
  }
  .header {
      height: 60px!important;
      border-bottom: 1px solid #0000000d!important;
  }
  .nav__logo img {
      width: 120px;
  }
  .nav__social{
      display: none!important;
  }
  .nav__list{
      row-gap: 0!important;
  }
  .header{
      position: fixed;
  }
  .nav__menu {
      position: fixed;
      left: -100%;
      top: 0;
      background-color: #001244;
      width: 260px;
      height: 100%;
      padding: 0;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: left .4s;
  }
  .nav__item {
      transform: translateX(-150px);
      visibility: hidden;
      transition: transform .4s ease-out, visibility .4s;
      padding: 15px 20px;
      border-bottom: 1px solid #ffffff1d;
  }
  .nav__link {
      font-size: 16px!important;
      color: #fff!important;
  }
  .nav__list {
      padding: 50px 0px!important;
  }
  .nav__item:nth-child(1) {
    transition-delay: .1s;
  }
  .nav__item:nth-child(2) {
    transition-delay: .2s;
  }
  .nav__item:nth-child(3) {
    transition-delay: .3s;
  }
  .nav__item:nth-child(4) {
    transition-delay: .4s;
  }
  .nav__item:nth-child(5) {
    transition-delay: .5s;
  }
  .nav__item:nth-child(6) {
      transition-delay: .6s;
    }
    .nav__item:nth-child(7) {
      transition-delay: .7s;
    }
    .nav__item:nth-child(8) {
      transition-delay: .8s;
    }
    .nav__item:nth-child(9) {
      transition-delay: .9s;
    }
    .nav__item:nth-child(10) {
      transition-delay: .10s;
    }
}

.nav__list, 
.nav__social {
  display: flex;
}

.nav__list {
  flex-direction: column;
  row-gap: 3rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav__link {
  font-size: 15px;
  display: inline-block;
  color: rgb(22, 40, 120);
  font-weight: 500;
  text-transform: capitalize;
  text-decoration: none;
  padding: 0px 0.5em;
  transition: all .5s linear;
}
.nav__item a:hover {
  color: #ffbb00!important;
  transition: all .5s linear;
}

.nav__link span {
  position: relative;
  transition: margin .4s;
}

/* Animation link on hover */


.nav__link:hover span::after {
  width: 100%;
}

/* Sibling fade animation */
/* .nav__list:has(.nav__link:hover) .nav__link:not(:hover) {
  opacity: .4;
} */

.nav__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  color: #fff;
}

.nav__social-link {
  color: var(--white-color);
  font-size: 1.5rem;
  transition: transform .4s;
}

.nav__social-link:hover {
  transform: translateY(-.25rem);
}

/* Show menu */
.show-menu {
  left: 0;
}

/* Animation link when displaying menu */
.show-menu .nav__item {
  visibility: visible;
  transform: translateX(0);
}

/*=============== BREAKPOINTS ===============*/
/* For large devices */
@media screen and (min-width: 970px) {


  .nav__toggle, 
  .nav__close {
    display: none;
  }
  .nav__list {
    flex-direction: row;
    column-gap: 15px;
  }

  .nav__menu {
    display: flex;
    align-items: center;
    column-gap: 3.5rem;
  }
	.nav__list .active a {
    color: #f0c21c;
}
}

.apply_btn {
  border: 0;
  background: #FFC60F;
  padding: 10px 20px;
  border-radius: 8px;
  color: #152569;
  font-size: 15px;
  font-weight: 600;
  margin-right: 20px;
  text-transform: capitalize;
  position: relative;
  overflow: hidden;
  transition: all .5s linear;
}
.apply_btn:hover{
background: rgb(39, 59, 148);
color: #fff;
transition: all .5s linear;
}
.apply_btn::after {
content: "";
position: absolute;
inset: -50%;
background: linear-gradient(45deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.566), rgba(255, 255, 255, 0) 60%);
animation: shark-wrap 3.5s infinite;
transform: translateX(-100%);
}

@keyframes shark-wrap {
to {
  transform: translateX(100%);
}
}
.nav_contact {
  color: rgb(255, 255, 255);
  font-size: 15px;
  font-weight: 500;
  background: rgb(39, 59, 148);
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  text-transform: capitalize;
  font-weight: 500;
  transition: all .5s linear;
}
.nav_contact:hover {
background: #ffc60f;
color: #051a54;
text-decoration: none;
transition: all .5s linear;
}