/* Header Navigation */
.header {
  margin-top: 15px;
  position: relative;
  z-index: 5;
}

.header-disclaimer {
  background: #FF5F00;
  color: #FFFFFF;
  border: none;
  padding: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-disclaimer img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.header-disclaimer .txt {
  font-size: 11px;
  font-weight: 700;
  color: #FFFFFF;
}

.header-container {
  padding: 0 5px;
  width: 100%;
  background-color: transparent;
  border: none;
  border-radius: 16px;
}

.header-main {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  display: flex;
  width: 120px;
  height: 25px;
  font-size: 0;
}
.header-flag {
  width: 22px;
  height: 22px;
}
.header-logo img,
.header-flag img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}
/* Header Content */
.header-hero {
  margin: 0 auto;
  padding: 18px 0 27px;
}

.header-content {
  text-align: center;
  width: 100%;
  max-width: 545px;
  margin: 0 auto;
}

.header-title {
  color: #FFFFFF;
  font-family: "Roboto Flex";
  font-weight: 700;
  margin-bottom: 27px;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: -0.72px;
}

.header-subtitle {
  display: none;
}

/* Icons Block */
.icons-block {
  width: 100%;
  max-width: 582px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin: 0 auto;
}

.icons-block .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  gap: 4px;
  text-transform: capitalize;
}

.icons-block .icon.flag.desktop-only {
  display: none;
}

.icons-block .icon span {
  display: block;
  font-weight: 700;
  font-size: 11px;
  color: #FFFFFF;
}

.icons-block .icon img {
  width: auto;
  height: 18px;
  display: inline-block;
  margin-right: 6px;
}

@media (min-width: 600px) {
  .header-content {
    max-width: 568px;
  }

  .nav-toggle {
    display: block;
  }
}

@media (min-width: 768px) {
  .header-subtitle {
    display: block;
    color: #FFFFFF;
    font-family: "Roboto Flex";
    font-weight: 500;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: normal;
  }

  .header-main {
    text-align: left;
  }

  .header-logo {
    width: 150px;
  }

  .header-container {
    padding: 22px 33px 0;
  }

  .header-title {
    font-size: 26px;
    margin-bottom: 14px;
  }

  .header-subtitle {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .icons-block {
    gap: 25px;
  }
  .icons-block .icon {
    gap: 10px;
  }
  .icons-block .icon img {
    height: 24px;
  }
  .icons-block .icon.flag.desktop-only {
    display: flex;
  }
  .icons-block .icon.flag img {
    height: 33px; 
  }
  

}

@media (min-width: 1024px) {
  .header-content {
    max-width: 963px;
  }

  .header-title {
    font-size: 32px;
  }

  .header-subtitle {
    font-size: 20px;
    margin-bottom: 18px;
  }

  .header-hero {
    padding: 30px 0 70px;
  }

  .icons-block {
    max-width: 820px;
  }

  .icons-block .icon span {
    font-size: 14px;
  }

}

@media (min-width: 1280px) {
  .header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .header-container {
    padding: 22px 0 0;
  }

  .header-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .header-disclaimer {
    font-size: 12px;
    padding: 10px 25px;
  }

  .separator {
    width: 40%;
  }

  .header-logo {
    margin-right: 250px;
  }

  
  .header-title {
    font-size: 45px;
  }

  .header-subtitle {
    margin-bottom: 24px;
  }

  .icons-block .icon {
    gap: 22px;
  }

  .icons-block .icon.first svg {
    width: 28px;
    height: 28px;
  }

  .icons-block .icon.second svg {
    width: 32px;
    height: 32px;
  }

  .icons-block .icon.third svg {
    width: 36px;
    height: 36px;
  }

  .icons-block .icon span {
    font-size: 16px;
  }
}
