/*-----------------------
  header start
-------------------------*/
body {
  overflow-x: hidden;
}

.header__section {
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 20;
  background-color: white;
  transition: padding .3s ease;
  box-shadow: 2px 7px 16px -4px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 2px 7px 16px -4px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 2px 7px 16px -4px rgba(0, 0, 0, 0.15);
}

.header__section.sticky {
  padding: 5px 0;
}

.header__section .header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1290px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
  z-index: 1;
}

.header__left {
  display: flex;
  align-items: center;
}

.header__logo {
  width: 60px;
}

.header__right-main {
  display: flex;
  align-items: center;
}

/* ----------------- */

.header__search {
  margin-left: 80px;
}

.header__search-btn {
  display: none;
  align-items: center;
  color: #262626;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  height: 52px;
}

.header__search-btn.active {
  display: flex;
}

.header__search-menu {
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: top .2s ease;
}
.header__search-menu-bg{
  width: 100%;
  height: 100vh;
  background-color: rgba(23, 17, 0, 0.664);
  position: absolute;
  top: 0;
  left: 0;
}

.header__search-menu.active {
  top: 72px;
  opacity: 1;
  visibility: visible;
}
.header__search-menu.sticky{
  top: 67px;
}


.header__search-menu-wrap {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 17px 30px;
  column-gap: 20px;
  margin: 0 auto;
  position: relative;
}

.header__search-item {
  display: flex;
  align-items: center;
}

.list__sidebar-select {
  position: relative;
  background-color: white;
  z-index: 999;
}

.active__select-item {
  display: flex;
  align-items: center;
  column-gap: 8px;
  height: 48px;
  border: 1px solid #ddd;
  font-size: 16px;
  padding: 0 10px;
  border-radius: 4px 0 0 4px;
}

.select__menu-list {
  position: absolute;
  top: 100%;
  left: 0;
  border: 1px solid #ddd;
  padding: 4px 0;
  background-color: white;
  opacity: 0;
  visibility: hidden;
}

.select__menu-list.active {
  opacity: 1;
  visibility: visible;
}

.select__menu-list button {
  padding: 4px 14px;
  width: 100%;
  text-align: left;
  background-color: white;
  font-size: 16px;
}

.select__menu-list button:hover {
  background-color: #E4E5E7;
}

.header__search-close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(218, 228, 223, 0.63);
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

/* ---------------- */
.header__search-input {
  position: relative;
}

.header__search-input-main {
  max-width: 338px;
  width: 100%;
  height: 48px;
  background-color: white;
  border: none;
  outline: none;
  border-radius: 4px;
  /* border-radius: 0 4px 4px 0; */
  border: 1px solid #ddd;
  padding: 0 24px 0 52px;
  color: #262626;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2
}

.header__search-btn .header__search-input-main {
  border-left: 0;
  border-radius: 0 4px 4px 0;
}

.header__search-input svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 14px;
}

.header__search-menu .header__btn {
  border-radius: 4px !important;
}


/* ---------------- */
.header__btns {
  display: flex;
  align-items: center;
  column-gap: 30px;
}

.header__btn {
  border-radius: 10px;
  background: #009348;
  height: 48px;
  padding: 0 20px;
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.header__shop-btn {
  position: relative;
  background: transparent;
  margin-right: 30px;
}

.header__shop-btn p {
  position: absolute;
  color: #fff;
  display: flex;
  justify-content: center;
  background-color: #FF4242;
  height: 14px;
  min-width: 14px;
  padding: 4px;
  padding-top: 1px;
  font-size: 9px;
  font-weight: 500;
  border-radius: 50%;
  top: -4px;
  margin-bottom: 0;
  right: -4px;
}

.header__lang-btn {
  background-color: transparent;
  height: 52px;
}

.header__lang-menu {
  position: relative;
  margin-right: 30px;
}

.header__lang-menu-list {
  position: absolute;
  border-radius: 4px;
  border: 1px solid #E4E5E7;
  background: #FFF;
  box-shadow: 0px 16px 32px -5px rgba(0, 0, 0, 0.05);
  width: 155px;
  padding: 8px 0;
  z-index: 10;
  top: 120%;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: top .4s ease-in-out;
}

.header__lang-menu:hover .header__lang-menu-list {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.header__lang-menu-item a {
  display: block;
  padding: 4px 20px;
  color: #171100;
  font-size: 18px;
  font-weight: 500;
}

.header__lang-menu-item a:hover {
  background: #e6ebf0;
  color: #00A34A;
}

.header__course-menu {
  position: relative;
  margin-right: 20px;
}

.header__course-menu-btn {
  background-color: transparent;
  height: 52px;
}

.header__course-menu-btn svg {
  margin-left: 8px;
}

.header__course-menu-list {
  position: absolute;
  z-index: 11;
  top: 120%;
  right: 0;
  display: flex;
  align-items: start;
  opacity: 0;
  visibility: hidden;
  transition: top .4s ease-in-out;
  min-width: 180px;

  background-color: #fffcfc;
  border: 1px solid #d0dce9;
}

.header__course-menu-main {
  position: relative;
  width: 100%;
}

.header__course-menu:hover .header__course-menu-list {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.menu__list-col {
  padding: 10px 0;
}

.menu__list-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #262626;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  padding: 6px 20px;
}

.menu__list-item a:hover {
  color: #4099D4;
}

.menu__list-item a:hover path {
  stroke: #4099D4;
}

.menu__list-col-title {
  color: #262626;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  padding: 6px 14px 6px 24px;
}

.menu__list-col.submenu {
  display: none;
}

.menu__list-item:hover .menu__list-col.submenu {
  display: block;
  position: absolute;
  left: 310px;
  background-color: white;
  top: 0;
  height: 100%;
  border-left: 0;
}

.menu__list-col.popular {
  display: none;
  min-width: 260px !important;
}

.submenu .menu__list-item:hover .menu__list-col.popular {
  display: block;
  position: absolute;
  left: 310px;
  background-color: white;
  top: -1px;
  height: calc(100% + 2px);
  border-left: 0;
}

.profile__menu-list {
  position: absolute;
  right: 0;
  background-color: white;
  border: 1px solid #dde;
  width: 230px;
  padding: 10px 15px;
  opacity: 0;
  visibility: hidden;
  transition: all .2s ease;
  top: 120%;
}

.header__course-menu:hover .profile__menu-list {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.profile__list-col {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}

.profile__list-item {
  display: flex;
  align-items: center;
  column-gap: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #ddd;
}

.profile__list-item:last-child {
  border-bottom: 0;
}

.profile__list-item img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #ddd;
}

.profile__list-item a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-size: 15px;
  color: #1f1c1c;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.profile__list-item svg {
  width: 34px;
  height: 34px;
}

.profile__list-item a svg {
  width: 10px;
}

.header__toggle-btn {
  display: none;
}

.header__lang-btn .header__lang-text {
  margin-right: 6px;
  font-weight: 500;
}

.mob__trans-bg {
  position: absolute;
  inset: 0;
  height: 100vh;
  background-color: rgba(23, 17, 0, 0.87);
  z-index: 999;
  display: none;
  top: -5px;
}

.mob__trans-bg.active {
  display: block;
}
.header__right-close-btn{
  display: none;
}

@media only screen and (max-width: 991px) {
  .header__toggle-btn {
    min-width: 25px;
    background-color: transparent;
    display: block;
  }

  .header__course-menu-list {
    position: relative;
    display: none;
  }

  .header__course-menu.active .header__course-menu-list {
    display: block;
    width: 100%;
    margin: 0 auto;
  }

  .header__right{
    width: 100%;
    height: 100vh;
    position: absolute;
    inset: 0;
    top: -5px;
    overflow: hidden;
    background-color: #171100d0;
    opacity: 0;
    visibility: hidden;
    transition: all .8s ease;
    z-index: 9999;
  }
  .header__right.active{
    opacity: 1;
    visibility: visible;
    transition: all .0s ease;
  }

  .header__right-main {
    position: absolute;
    display: block;
    background-color: white;
    top: -5px;
    right: -100%;
    height: 100vh;
    border: 1px solid #ddd;
    border-top: 0;
    border-right: 0;
    z-index: 9999000;
    max-width: 400px;
    width: 100%;
    overflow-y: auto;
    transition: all .3s ease;
  }

  .header__right.active .header__right-main{
    right: 0;
  }

  .header__right-close-btn {
    background-color: transparent;
    padding-top: 15px;
    padding-left: 15px;
    margin-bottom: 20px;
    display: block;
  }

  .menu__list-col {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .header__course-menu-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ddd;
    padding: 0 15px;
  }

  .header__lang-btn {
    width: 100%;
  }

  .header__section {
    padding: 5px 0;
    z-index: 99;
    position: fixed;
  }

  .header__btns {
    margin-right: 0px;
    justify-content: end;
    margin-top: 10px;
  }

  .header__lang-menu {
    position: relative;
    margin-right: 0px;
  }

  .header__lang-btn span {
    display: block;
  }

  .header__search {
    margin: 0 auto 0;
    margin-left: 20px;
    margin-right: 20px;
  }

  .header__search-close {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(218, 228, 223, 0.63);
    position: absolute;
    top: calc(100% + 5px);
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .profile__menu-list {
    z-index: 1;
  }

  .header__lang-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .header__lang-menu-list {
    position: relative;
    margin: 0 auto;
    display: none;
  }

  .header__lang-menu-item {
    text-align: center;
  }

  .header__lang-menu.active .header__lang-menu-list {
    display: block;
  }

  .header__btns {
    justify-content: center;
  }

  .profile__menu-list {
    position: relative;
    display: none;
    margin: 0 auto;
  }

  .header__course-menu.active .profile__menu-list {
    display: block;
  }

  .profile__list-item a {
    width: auto;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;

  }

  .menu__list-item {
    border-bottom: 1px solid #ddd;
    width: 100%;
    padding: 4px 15px;
  }

  .menu__list-item a {
    text-align: center;
    display: block;
  }

  .menu__list-item:last-child {
    border-bottom: 0;
  }

  .menu__list-col {
    padding: 0;
  }

  .header__course-menu-list {
    opacity: 1;
    visibility: visible;
  }

  .profile__menu-list {
    width: 100%;
  }

  .profile__menu-list {
    padding: 0;
  }

  .profile__list-col {
    row-gap: 0;
  }

  .profile__list-item {
    padding: 8px 15px;
  }

  .menu__list-item a {
    text-align: left;
    padding: 6px 0;
  }

  .header__lang-menu-list {
    opacity: 1;
    visibility: visible;
  }

  .profile__menu-list {
    opacity: 1;
    visibility: visible;
  }

  .header__btns {
    margin-bottom: 20px;
  }
  .header__course-menu {
    margin-right: 0;
  }
}

@media only screen and (max-width: 475px) {
  .header__toggle-btn {
    min-width: 20px;
  }

  .header__logo {
    min-width: 45px;
  }
}

/*-----------------------
  header end
-------------------------*/

.karmadown .dropdown-item {
  display: flex;
  align-items: center;
  column-gap: 5px;
}

.karmadown .dropdown-item span {
  color: #1f1c1c;
}

.information-form-con {
  padding-top: 20px !important;
}

.download__cv-btn {
  margin-top: 20px;
  color: #fff;
  background-color: #009348;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  padding: 10px 10px;
  width: 100%;
  font-size: 14px;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.download__cv-btn:hover {
  background-color: #198754;
  color: white;
}

/* ----------------------------- */
.header__notification-menu{
  position: relative;
}
.header__notification-btn {
  position: relative;
  height: 52px;
  
}

.header__notification-btn{
  background-color: transparent;
  border: none;
  outline: none;
  margin-right: 20px;
}
.header__notification-btn svg{
  margin-top: -2px;
}
.notif__count{
  position: absolute;
  right: -5px;
  top: -5px;
  color: white;
  font-size: 10px;
  background-color: #009348;
  padding: 0 4px;
  border-radius: 4px;
}

.header__notification-menu-list {
  position: absolute;
  z-index: 11;
  top: 120%;
  right: 0;
  display: flex;
  align-items: start;
  opacity: 0;
  visibility: hidden;
  transition: top .4s ease-in-out;
  min-width: 180px;
  background-color: white;
  border: 1px solid #d0dce9;
}
.header__notification-menu:hover .header__notification-menu-list {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.header__notification-menu-main{
  width: 100%;
}

.notification-item {
  padding: 10px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}

.notification-item:last-child {
  border-bottom: none;
}

.no-notifications {
  text-align: center;
  font-size: 14px;
  color: #aaa;
}

.header__notification-menu-main li button{
  background-color: transparent;
  padding: 2px 15px;
  border: none;
  outline: none;
}
.header__notification-menu-main li:nth-child(2){
  margin-top: 10px;
}
.header__notification-menu-main li:last-child{
  margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  .header__notification-menu{
    display: none;
  }
}
