/* start header */

header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 2000;
  margin-bottom: 20px;
}
header .container {
  min-height: 97px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: fixed;
  background-color: white;
  height: 72px;
  width: 100%;
  padding: 0px 125px;
  transition: 0.3s;
  z-index: 9999;
}

header .logo img {
  height: 60px;
}
header nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  height: 72px;
  width: 100%;
  padding: 0px 56px;
  transition: 0.3s;
}
header nav.show {
  max-height: 90vh;
  overflow-y: auto;
}

header nav ul {
  display: flex;
}
header nav ul li a,
.get-started a {
  color: black;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
  padding: 0px 10px;
  position: relative;
  z-index: 2;
}
.blue-button a {
  color: white;
  text-decoration: none;
}
.get-started a {
  font-weight: 600;
}
header .container .active,
header a:hover {
  color: #3879f0;
}
header .get-started button a:hover,
.blue-button:hover {
  color: white;
  text-shadow: 0px 0px 20px rgba(255, 255, 255, 1);
}
.blue-button {
  align-items: center;
  background-color: #3879f0;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  min-height: 34px;
  min-width: 0px;
  overflow: hidden;
  padding: 0 3px;
}

header nav .form {
  width: 40px;
  height: 30px;
  position: relative;
  margin-left: 30px;
  border-left: 1px solid white;
}
/* Header media */
@media (max-width: 992px) {
  header nav {
    display: none !important;
    position: static;
    padding: 0;
  }
  header .container {
    display: flex;
    padding: 0px 20px;
  }
  header .container .head-media {
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
  }
  header nav.show {
    display: block !important;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background-color: white;
  }

  header nav ul {
    flex-direction: column;
    margin-left: 0;
  }

  header nav ul li {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
  }

  .menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
  }

  .menu-icon span {
    display: block;
    height: 4px;
    background: black;
    border-radius: 2px;
  }
}

@media (max-width: 992px) {
  header nav {
    display: none !important;
  }

  header nav.show {
    display: block !important;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background-color: white;
    margin-top: 25px;
  }
}
@media (max-width: 992px) {
  header nav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    background-color: #ffffff;
    width: 100%;
    position: absolute;
    top: 72px;
    left: 0;
    z-index: 999;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
  }

  header nav ul {
    flex-direction: column;
    padding: 15px 20px;
  }

  header nav ul li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
  }

  header nav.show {
    max-height: 1000px;
  }

  .menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
    gap: 4px;
  }

  .menu-icon span {
    display: block;
    height: 3px;
    background: black;
    border-radius: 2px;
    transition: 0.3s;
  }
}
@media (max-width: 460px) {
  header .container {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 15px;
    height: auto;
  }

  header .logo img {
    height: 45px;
    margin-bottom: 10px;
  }

  header .head-media {
    width: 100%;
    justify-content: space-between;
  }

  .blue-button {
    min-height: 36px;
    font-size: 14px;
    padding: 5px 10px;
  }

  .menu-icon {
    width: 22px;
    height: 18px;
    gap: 3px;
  }

  .menu-icon span {
    height: 2.5px;
  }

  header nav.show {
    top: 100%;
  }

  header nav ul li {
    padding: 10px 0;
  }
}
@media (max-width: 465px) {
  header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    height: auto;
  }

  .logo img {
    height: 35px;
  }

  .menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    gap: 3px;
  }

  .menu-icon span {
    height: 3px;
    background: black;
    border-radius: 2px;
  }

  .head-media {
    display: flex;
    gap: 5px;
  }

  .get-started a {
    font-size: 12px;
  }

  .blue-button {
    font-size: 12px;
    padding: 5px 10px;
  }

  .blue-button a {
    color: white;
  }

  header .container {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
  }

  header nav {
    top: 100% !important;
  }
}
.top-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 10px 20px;
}

.logo {
  height: 57px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

/* end header */
