/* Header Navigation */
.header {
  margin-top: 16px;
  min-height: 50px;
  position: relative;
  z-index: 5;
}

.header-main {
  text-align: center;
}

.header-disclaimer {
  background-color: transparent;
  backdrop-filter: blur(10px);
  color: #0A1D2E;
  border: none;
  font-size: 9px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
}
/* .header-disclaimer.inner-page {
  background-color: #d4dcf1;
} */

.header-disclaimer.no-logo {
  padding: 0 20px 10px 0;
}

.header-disclaimer img {
  width: 20px;
  height: 20px;
}

.header-disclaimer .txt {
  margin-left: 12px;
  font-weight: 700;
  color: #ffffff;
}

.header-container {
  padding: 10px 16px;
  width: 100%;
  background-color: #0A1D2E;
  border: none;
  border-radius: 16px;
}

.header-logo {
  display: inline-block;
  width: 150px;
  height: 35px;
  font-size: 0;
}

.header-logo img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.header-main.all .header-logo img {
  margin-top: -20px;
}

.nav-toggle {
  position: absolute;
  z-index: 8;
  bottom: 12px;
  right: 15px;
  background: transparent;
  border: none;
  display: none;
}

.nav-toggle .line {
  fill: #F3EFE6;
  transition: y 300ms ease-in 300ms, rotate 300ms ease-in, opacity 0ms 300ms;
  transform-origin: center;
}

.nav-toggle[aria-expanded=true] .line {
  transition: y 300ms ease-in, rotate 300ms ease-in 300ms, opacity 0ms 300ms;
  fill: #B522C1;
}

.nav-toggle[aria-expanded=true] :is(.top, .bottom) {
  y: 15px;
}

.nav-toggle[aria-expanded=true] .top {
  rotate: 45deg;
}

.nav-toggle[aria-expanded=true] .middle {
  opacity: 0;
}

.nav-toggle[aria-expanded=true] .bottom {
  rotate: -45deg;
}

.header-nav {
  background: #1d546b;
  color: #F3EFE6;
  position: absolute;
  top: 0;
  right: 0;
  padding-top: 60px;
  padding-bottom: 50px;
  width: 0;
  overflow: auto;
  z-index: -1;
  transition: 350ms ease;
  border-radius: 16px;
}

.header-nav.solo {
  padding-top: 50px;
}

.header-nav.all {
  padding-top: 90px;
}

.header-nav.mob-active {
  width: 100%;
}

.nav-items {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.header-nav .nav-items {
  gap: 20px;
}

.nav-link {
  font-size: 14px;
  font-weight: 400;
  color: #F3EFE6;
}

.nav-link:hover {
  color: #4dd9da;
}

.header-nav .nav-link {
  font-size: 16px;
  vertical-align: middle;
  line-height: normal;
}

.nav-link.active {
  color: #4dd9da;
}

/* Header Content */
.header-content {
  text-align: center;
  width: 100%;
  max-width: 545px;
  margin: 11px auto 0;
}

.data-container {
  color: #0A1D2E;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  background-color: #4dd9da;
  border-radius: 6px;
  margin-bottom: 12px;
  padding: 5px 8px;
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
}

.header-title {
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 26px;
}

.header-subtitle {
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  margin-bottom: 12px;
  font-size: 11px;
  line-height: normal;
  display: none;
}

/* Icons Block */
.icons-block {
  width: 100%;
  max-width: 582px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin: 0 auto 20px;
}

.icon {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  gap: 4px;
  text-transform: capitalize;
}

.icon span {
  display: block;
  font-weight: 700;
  font-size: 10px;
  color: #FFFFFF;
}

.icon svg {
  width: 18px;
  height: 18px;
  fill: #4dd9da;
}

.icon.second svg {
  width: 21px;
  height: 21px;
}

.icon.third svg {
  width: 21px;
  height: 21px;
}

@media (min-width: 412px) {
  .icon span {
    font-size: 11px;
  }
}

@media (min-width: 600px) {
  .header-content {
    max-width: 568px;
  }

  .footer-nav .nav-items {
    flex-direction: row;
  }

  .nav-toggle {
    display: block;
  }
}

@media (min-width: 768px) {
  .header-subtitle {
    display: block;
  }

  .header {
    min-height: 70px
  }

  .header-main {
    text-align: left;
  }

  .header-logo {
    width: 150px;
  }

  .header-container {
    padding: 22px 33px;
  }

  .nav-toggle {
    bottom: 23px;
    right: 30px;
  }

  .nav-toggle .hamburger {
    width: 30px;
  }

  .header-nav {
    padding-top: 100px;
  }

  .header-nav.all {
    padding-top: 110px;
  }

  .header-nav .nav-items {
    margin-left: 50px;
    gap: 25px;
  }

  .header-nav .nav-link {
    font-size: 20px;
  }

  .header-content {
    /* text-align: left; */
    margin: 21px auto;
  }

  .data-container {
    font-size: 21px;
    margin-bottom: 18px;
  }

  .header-title {
    font-size: 32px;
    margin-bottom: 14px;
  }

  .header-subtitle {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .icons-block {
    justify-content: flex-start;
    gap: 25px;
    margin: 0 auto 24px;
  }

  .icon {
    gap: 10px;
  }

  .icon span {
    font-size: 16px;
  }

  .icon svg {
    width: 24px;
    height: 24px;
  }
}

@media (min-width: 1024px) {
  .header-content {
    max-width: 963px;
  }

  .header-title {
    font-size: 40px;
  }

  .header-subtitle {
    font-size: 22px;
  }

  .icons-block {
    max-width: 700px;
  }

  .icon span {
    font-size: 18px;
  }

  .icon svg {
    fill: #4dd9da;
  }

  .icon.first svg {
    width: 21px;
    height: 21px;
  }

  .icon.second svg {
    width: 25px;
    height: 25px;
  }

  .icon.third svg {
    width: 30px;
    height: 30px;
  }

  .icon span {
    font-size: 21px;
  }
}

@media (min-width: 1280px) {
  .header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .header-container {
    padding: 22px 60px;
  }

  .header-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /* gap: 5px 50px; */
  }

  .header-main.no-logo {
    justify-content: center;
  }

  .nav-toggle {
    display: none;
  }

  .header-nav {
    position: static;
    width: 100%;
    padding-top: 0;
    height: unset;
    background: transparent;
    padding-bottom: 0;
    min-height: unset;
  }

  .header-nav.all {
    padding-top: 0;
  }

  .header-nav.no-logo {
    padding-top: 0;
  }

  .header-nav .nav-items {
    flex-direction: row;
    flex-wrap: wrap;
    margin-left: 0;
  }

  .header-nav .nav-link {
    font-size: 16px;
    font-weight: 700;
  }

  .header-content {
    margin: 41px auto;
  }

  .header-disclaimer {
    font-size: 12px;
    padding: 0 25px 7px;
  }

  .separator {
    width: 40%;
  }

  .header-logo {
    margin-right: 250px;
  }

  .header-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-width: 500px;
  }

  .header-nav.no-logo {
    justify-content: center;
  }

  .nav-menu {
    gap: 90px;
  }

  .header-nav .nav-items {
    margin-left: 0;
    padding-left: 0;
  }

  .data-container {
    font-size: 21px;
    padding: 4px 24px;
    margin-bottom: 24px;
  }

  .header-title {
    font-size: 56px;
    margin-bottom: 16px;
  }

  .header-subtitle {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .icons-block {
    max-width: 800px;
    justify-content: space-between;
  }

  .icon {
    gap: 20px;
  }

  .icon.first svg {
    width: 28px;
    height: 28px;
  }

  .icon.second svg {
    width: 32px;
    height: 32px;
  }

  .icon.third svg {
    width: 36px;
    height: 36px;
  }

  .icon span {
    font-size: 21px;
  }

}

@media (min-width: 1320px) {
  .header-container {
    padding: 22px 80px;
  }

  .header-logo {
    margin-right: 255px;
  }
}
