.main_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(16, 97, 70, 1);
  position: fixed;
  width: 86%;
  margin: auto;
  left: 0;
  top: 2vw;
  right: 0;
  padding: 0.8vw 2.2vw 0.8vw 1vw;
  border-radius: 20px;
  z-index: 10;
  transition: all 0.6s ease-in-out;
}
.logo a img {
  width: 100%;
}
.nav {
  margin-right: 9.5vw;
}
.nav li {
  display: inline-flex;
  margin-right: 1vw;
  position: relative;
}
.nav li:last-child {
  margin-right: 0;
}
.nav li a {
  color: #fff;
  font-size: 1.2vw;
  font-weight: 400;
  transition: all 0.7s ease;
  padding-bottom: 2px;
}
.search-wrap {
  display: flex;
  align-items: center;
  grid-gap: 2vw;
}

.search-wrap .lang a {
  color: #fff;
  font-size: 1.146vw;
  font-weight: 400;
  font-family: system-ui;
  transition: all 0.7s ease;
}

.search-box a svg {
  width: 28px;
  height: 28px;
}

.main_header .logo {
  width: 23%;
}

.main_header.scrollUp {
  transform: translateY(-150px);
}

.main_header.full-header {
  width: 100%;
  border-radius: 0;
  top: 0;
}
.main_header.inner-header {
  background: #fff;
  width: 100%;
  top: 0;
  padding: 1.3vw 2.5vw;
  border-radius: 0;
}

.main_header.inner-header .nav li a {
  color: #363636;
}
/*.main_header.inner-header .logo {*/
/*  width: 21%;*/
/*}*/
.nav {
  margin-left: 3vw;
  margin-right: 0;
  flex: 1;
}
.nav li a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: rgba(200, 224, 126, 1);
  transition: transform 0.5s;
  transform: scale(0);
  transform-origin: right;
}
.main_header.inner-header .nav li.active > a,
.nav li.active > a,
.nav li:hover > a {
  color: rgba(200, 224, 126, 1);
}
.main_header.inner-header .nav li a:hover {
    color: rgba(200, 224, 126, 1);
}
.nav li.active a:before,
.nav li:hover a:before {
  transform: scale(1);
  transform-origin: left;
}
.search-box a svg {
  fill: #fff;
  transition: all 0.7s ease;
}
.main_header.inner-header .search-wrap .lang a {
  color: #363636;
}
.main_header.inner-header .search-box a svg {
  fill: #363636;
}
.search-wrap .lang a:hover {
  color: rgba(200, 224, 126, 1);
}

.search-box a:hover svg {
  fill: rgba(200, 224, 126, 1);
}

.main_header.inner-header .search-wrap .lang a:hover {
  color: rgba(200, 224, 126, 1);
}
.main_header.inner-header .search-box a:hover svg {
  fill: rgba(200, 224, 126, 1);
}

.main_header.white-header {
  background: transparent;
  width: 100%;
  top: 0;
  padding: 1.3vw 2.5vw;
  border-radius: 0;
}

/* search css */
.search {
  position: relative;
}

.search a {
}

.search a svg {
  transition: all 0.6s ease-in-out;
  fill: #fff;
}

.search a:hover svg {
  fill: var(--purple);
  transform: scale(1.1);
}

.search-box-main {
  position: fixed;
  background: #106146;
  width: 100%;
  height: 0;
  left: 0;
  top: -100%;
  z-index: -1;
  display: block;
  opacity: 0;
  transition: all 0.8s ease-in-out;
  visibility: hidden;
  transition: all 1s cubic-bezier(0.9, 0.01, 0, 1);
  overflow: hidden;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: unset;
}

.search-box-main.active {
  z-index: 9;
  opacity: 1;
  visibility: visible;
  top: 0;
  height: 100vh;
}

.search-box-main .inner {
  width: 100%;
  padding: 0 7vw 0 3vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.search-box-main .search-input-holder {
  border-color: rgba(255, 255, 255, 0.3);
}

.search-box-main .search-input-holder button svg {
  transition: all 0.5s ease;
}

.search-box-main .search-input-holder button svg:hover {
}

.not-search-result {
  display: flex;
  align-items: center;
  margin-bottom: 5vw;
  width: 50%;
}

.not-search-result .left {
  width: 120px;
}

.not-search-result .left button {
  line-height: 1;
}

.not-search-result .left button svg {
  width: 100px;
  stroke: rgba(79, 0, 140, 1);
  transition: all 0.5s ease;
  height: 100px;
}

.not-search-result .right {
  flex: 1;
}

.not-search-result p {
  line-height: 1.2;
  padding: 0 20vw 0 0;
}

.search-page-main {
  padding: 13.5vw 16vw 5vw;
}

.search-input-holder {
  position: relative;
  border-bottom: 2px solid rgba(217, 217, 217, 0.5);
  display: flex;
  justify-content: space-between;
  margin: 0 0 3vw;
}

.search-input-holder input {
  position: relative;
  background: transparent;
  border: none;
  box-shadow: none;
  font-size: 4.5vw;
  line-height: 1;
  border-radius: 0;
  font-weight: 400;
  padding: 0;
  padding-right: 2vw;
  color: rgba(255, 255, 255, 0.5);
}

.search-input-holder input:focus {
  color: rgba(255, 255, 255, 0.3);
  background: transparent;
}

.search-input-holder input::placeholder {
  color: rgba(255, 255, 255, 0.3);
  opacity: 1;
}

.search-input-holder input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.search-input-holder input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.search-input-holder a {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  padding-bottom: 1vw;
}

.search-input-holder a svg {
  transition: all 0.5s ease;
  width: 30px;
  height: 30px;
}

.search-input-holder a:hover svg {
}

.search-lists ul li {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}

.search_swiper .searchSwiper {
  overflow: inherit;
  height: auto;
}

.search_swiper .searchSwiper .swiper-slide {
  display: initial;
}

.not-search-result ul li {
  display: inline-block;
}

.not-search-result ul li:last-child a {
  margin: 0;
}
.not-search-result ul li a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 2vw;
}

.logo-white {
    filter: brightness(0) invert(1);
}

.search {
  transition: all .7s ease;
  opacity: 1;
  visibility: visible;
}

.search-close-icon,
.search-icon {
    width: 27px;
    height: 27px;
    position: absolute;
    left: 0;
    transition: all 0.5s ease-in-out;
}

.search-close-icon {
    opacity: 0;
    visibility: hidden;
}

.search-icon {
    top: 5px;
    left: 5px;
}

.search-close-icon span {
    width: 100%;
    height: 3px;
    background: #4a4a49;
    display: block;
    margin-bottom: 6px;
    position: relative;
    left: 0;
    transition: all 0.5s ease-in-out;
}

.main_header .search-box.shows .search-close-icon span:first-child {
    transform: rotate(45deg);
}

.main_header .search-box.shows .search-close-icon span:last-child {
    transform: rotate(135deg);
    margin: -9px 0 -2px;
    left: 0;
    width: 100%;
}
.main_header .search-box.shows{

}
.main_header .search-box.shows .search-close-icon {
    opacity: 1;
    visibility: visible;
}
.main_header .search-box.shows .search {
  opacity: 0;
  visibility: hidden;
}
.not-search-result ul li a:hover {
    color: #fff;
}
.main_header .search-box.shows .search-close-icon span {
    background: #fff;
}

.main_header {
    padding-top: 0;
    padding-bottom: 0;
}

.main_header .logo {
    padding-top: 0.8vw;
    padding-bottom: 0.8vw;
}

.nav li .item {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.sub_menu {
    position: absolute;
    left: 0;
    width: auto;
    background: #fff;
    top: 100%;
    transition: all .4s ease-in-out;
    padding: 0;
    visibility: hidden;
    opacity: 0;
    transform: translate(50px, 0px);
    border-top: 0;
    top: 100%;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    width: auto;
}

.sub_menu ul {
    flex-direction: column;
    align-items: start;
}

.sub_menu ul li {
    margin: 0;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    display: inline-block;
    line-height: 1.2;
    width: 100%;
    border-bottom: 1px solid rgba(245, 245, 245, 1);
}

.sub_menu ul li a {
    font-size: 1vw !important;
    margin-bottom: 1vw;
    line-height: 1.2;
    color: rgba(68, 68, 68, 1);
    white-space: nowrap;
    padding: 1vw 1.6vw;
    display: block;
    margin-bottom: 0;
}

.sub_menu ul li:last-child {
    margin: 0;
}

.nav li svg {
    transition: all .4s ease-in-out;
    margin-left: 10px;
    fill:white
}

.nav li:hover svg {
    transform: rotate(180deg);
}

.nav li:hover .sub_menu {
    transform: translate(0px, 0px);
    visibility: inherit;
    opacity: 1;
}

.sub_menu ul li a:before {
    display: none;
}

.sub_menu ul li:last-child {
    border: 0;
}

.nav li {
    height: 100%;
    align-items: center;
}

.nav li a {
    position: relative;
}

.main_header.inner-header .nav li svg {
    fill: #363636
}
.main_header.inner-header {
    padding-top: 0;
    padding-bottom: 0
}

.main_header.inner-header .logo {
    padding-top:1.3vw;
    padding-bottom: 1.3vw;
}
.main_header.white-header .sub_menu,
.main_header.inner-header .sub_menu {
    top: 80%;
}

.nav-mb ul li .item {
    display:flex;
    align-items:center
}
.nav-mb ul li svg {
    transition: all .4s ease-in-out;
    margin-left: 25px;
    fill: white;
    width: 18px;
    height: 18px;
}
.nav-mb ul li .item .arrow.active svg {
    transform: rotate(180deg);
}
.nav-mb ul .sub_menu {
    position: relative;
    left: 0;
    width: auto;
    background: transparent;
    top: 0;
    transition: all .4s ease-in-out;
    padding: 0;
    visibility: visible;
    opacity: 1;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    width: auto;
    display: none;
}
.main_header.white-header {
    padding: .5vw 2.5vw;
}

.search-box-main .inner {
    padding-top: 12vw;
    justify-content: flex-start;
}
.not-search-result {
    margin-bottom: 2vw;
}

/*for search*/
.search_list {
    width: 100%;
    margin: auto;
}

.search_list .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search_list .top h2 {
    font-size: 1.2vw;
    color: #fff;
}

.search_list .top img {
}

.search_list .list_full {
    margin-top: 0;
}

.search_list .list_full h3 {
    margin: 0;
    color: #F8FAFC;
    font-size: .9vw;
    font-weight: 200;
    margin-bottom: 2vw;
}

.search_list .list_full a {
    display: block;
    margin-bottom: 1vw;
    font-size: 1.1vw;
    color: rgba(255, 255, 255, 0.5);
    padding: 0;
    border-radius: 10px;
    transition: all .6s ease-in-out;
}

.search_list .list_full a:hover {
    color: #fff;
}

.list_full {
    height: 40vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.list_full::-webkit-scrollbar {
    width: 6px;
}

.list_full::-webkit-scrollbar-track {
    background: transparent;
}

.list_full::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
}

.list_full::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.8);
}

.list_full {
    scroll-behavior: smooth;
}
.loading_state {
    color: rgba(255, 255, 255, 0.5)
}

.empty_state {
    color:rgba(255, 255, 255, 0.5)
}