.header {
  width: 100%;
  padding: 52px 0;
  position: fixed;
  top: 0;
  /* -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px); */
  -webkit-transition: all var(--time) ease-in-out;
  transition: all var(--time) ease-in-out;
  z-index: 9;
}

.header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.header-sticky {
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.79);
}

.header.slow {
  height: 100%;
}

.white-logo,
.normal-logo {
  display: none;
}

.white-logo{
  position: relative;
  z-index:99;
}

.header:not(.slow) .white-logo {
  display: none;
}

.slow .white-logo,
.header:not(.slow) .normal-logo {
  display: block;
}

/* ------------------------------------------------------------ */

.menu-ul {
  display: flex;
  flex-wrap: wrap;
  padding-left: 6px;
}

.menu-ul li {
  position: relative;
}

.menu-ul li:hover::after {
  width: 50px;
}

.menu-ul li::after {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  bottom: -15px;
  left: 0;
  background: #fff;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.menu-ul a {
  text-transform: capitalize;
}

.menu-ul a:hover,
.header .current_page_item > a,
.header .current-menu-item > a {
  color: #00ffff;
}

.mobile-icon {
  width: 10px;
  height: 7px;
  margin-left: 5px;
  position: relative;
  top: 3px;
  cursor: pointer;
  transition: transform 0.35s ease-in-out;
  will-change: transform;
}

/* ------------------------------------------------------------ */

.sub-menu {
  width: 170px;
  background: #fff;
  padding: 15px;
  border: 1px solid #ddd;
  transform: translateY(20px);
  transition: opacity 0.35s ease-out, visibility.35s ease-out,
    top 0.35s ease-out, transform 0.35s ease-in-out;
}

.sub-menu li + li {
  margin: 10px 0 0 0;
}

.header li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(10px);
}

/* ------------------------------------------------------------ */

.menu-icon {
  width: 60px;
  height: 60px;
  z-index: 9;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  -webkit-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: all var(--time) ease-in-out;
  transition: all var(--time) ease-in-out;
  border-radius: 0 4px 4px 0;
}

.menu-icon > div {
  position: relative;
  width: 25px;
  height: 23px;
}

.menu-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 25px;
  background: #ffffff;
  border-radius: 4px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: all var(--time) ease-in-out;
  transition: all var(--time) ease-in-out;
}

.menu-icon span:nth-child(1) {
  top: 0;
}

.menu-icon span:nth-child(2),
.menu-icon span:nth-child(3) {
  top: 10px;
}

.menu-icon span:nth-child(4) {
  top: 20px;
}

.menu-icon.open span:nth-child(1) {
  top: 10px;
  width: 0;
  left: 50%;
}

.menu-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menu-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.menu-icon.open span:nth-child(4) {
  top: 10px;
  width: 0;
  left: 50%;
}

.menu-icon.open span {
  background: #00ACBA;
}

.menu-icon.open {
  background: #d9d9d9;
  border-radius: 50%;
}

@media (min-width: 768px) {
  .sub-menu {
    position: absolute;
    left: 0;
    top: 100%;
    opacity: 0;
    visibility: hidden;
  }
}

.nav-bar {
  position: fixed;
  width: 100%;
  z-index: 8;
  background: url(../images/menu.jpg) no-repeat;
  background-size: cover;
  top: 0;
  height: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  -webkit-transition: all var(--time) ease-in-out;
  transition: all var(--time) ease-in-out;
}

.header .slow {
  height: 100%;
}

.menu-ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
  flex-direction: column;
}

.menu-ul li {
  padding: 0;
}

.menu-ul li + li {
  margin-top: 30px;
}

.menu-ul a {
  font-size: 26px;
  line-height: 30px;
  color: #ffffff;
  font-weight: 400;
  width: fit-content;
  display: inline-block;
}

.sub-menu {
  width: 100%;
  padding: 0;
  display: none;
  border: none;
  margin-bottom: 15px;
}

.sub-menu li {
  margin: 0;
}

.sub-menu li a {
  font-size: 14px;
}

.sub-menu li + li {
  margin: 10px 0 0 0;
}

.mobile-icon {
  position: absolute;
  right: 0;
  top: 0;
}

.header li .mobile-icon.active {
  transform: scaleY(-1);
}

.site-logo.change img {
  filter: brightness(10);
}

.nav-bar-inside {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  height: 100%;
  position: relative;
}

/* -------------------------------------------- */

.nav-content-main {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.nav-main {
  margin-top: 16%;
  width: 40%;
}

.header-content {
  width: 40%;
  margin-top: 20%;
}

.header-content h2 {
  color: #fff;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.3;
}

.header-content ul {
  margin-top: 25px;
}

.header-content ul li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  display: block;
}

.header-content ul li a {
  color: #fff;
  font-size: 19px;
  line-height: 30px;
  font-weight: 400;
}

.header-content ul li a:hover {
  color: #00ffff;
}

.nav-icon {
  color: #fff;
  font-size: 26px;
  line-height: 26px;
  position: absolute;
  left: 0;
}

.header-bottom-social {
  position: absolute;
  bottom: 80px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 0px 15px;
}

.header-bottom-social ul {
  display: flex;
  flex-wrap: wrap;
  column-gap: 5px;
  margin-left: auto;
}

.header-bottom-social ul li {
  width: 38px;
  height: 38px;
}

.header-bottom-social ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 20px;
  width: 100%;
  height: 100%;
  background-color: #000;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}

.header-bottom-social ul li a:hover {
  background: #00ffff;
}

.header-bottom-social::after {
  content: "";
  width: calc(100% - 200px);
  height: 1px;
  background-color: #bde0e0;
  top: 50%;
  left: 0;
  position: absolute;
}

@media (max-width: 1680px) {
  .header:not(.header-sticky) {
    padding: 40px 0;
  }

  .menu-ul li + li {
    margin-top: 20px;
  }

  .menu-ul li::after {
    bottom: -7px;
  }

  .menu-ul a {
    font-size: 22px;
  }
}

@media (max-width: 1400px) {
  .header:not(.header-sticky) {
    padding: 25px 0;
  }
}

@media (max-width: 1000px) {
  .header:not(.header-sticky) {
    padding: 15px 0;
  }

  .header-sticky {
    padding: 12px 0;
  }

  .menu-icon {
    width: 50px;
    height: 50px;
  }

  .header-content h2 {
    font-size: 20px;
  }

  .menu-ul a {
    font-size: 18px;
  }

  .menu-ul li + li {
    margin-top: 12px;
  }

  .menu-ul li::after {
    bottom: -2px;
  }
}

@media (max-width: 767px) {
  .menu-icon {
    width: 45px;
    height: 45px;
  }

  .menu-ul li {
    text-align: center;
  }

  .menu-ul li::after {
    right: 0;
    margin: auto;
  }

  .site-logo img,
  .footer-logo img {
    max-width: 160px;
  }

  .header-content {
    display: none;
  }

  .nav-main {
    margin-top: 120px;
    width: 100%;
  }

  .menu-ul a {
    font-size: 20px;
  }

  .header-bottom-social ul {
    margin-right: auto;
  }

  .header-bottom-social::after {
    display: none;
  }

  .header-bottom-social {
    bottom: 50px;
  }
}
