:root {
  --primary: #424C6F;
  --secondary: #f77e4b;
}

#header-container {
  max-width: 100% !important;
  width: 100%;
}

header {
  padding: 0 1rem;
  display: grid;
  place-items: center;
}
header ul {
  list-style: none;
  margin: 0;
  padding: 0;
  grid-auto-flow: column;
}
header ul li {
  padding: 0;
  margin: 0 0.5rem;
}
header > ul > li a {
  text-decoration: none;
  text-align: center;
  display: inline-block;
  color: rgb(232, 230, 227);
  font-size: 1.125rem;
}

#header-left {
  padding-left: 10%;
  padding-right: 10%;
  display: inline-flex;
  align-items: center;
}

#header-right {
  margin-left: auto;
  margin-right: 1%;
  display: flex;
  align-items: center;
}

#header-banner {
  color: rgb(232, 230, 227);
  width: 100%;
  background-color: var(--primary);
  background-image: linear-gradient(to right, #424c6f, rgba(66, 76, 111, 0.9333333333), rgba(66, 76, 111, 0.6)), url("../../assets/images/banner.png");
  background-position: right;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgb(238, 238, 238);
  padding: 10px 0;
  min-height: 100px;
  z-index: 999;
}

#header-dropdown {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  justify-content: space-between;
  height: 65px;
  grid-column-gap: 10px;
  font-size: 14px;
  align-items: baseline;
}
#header-dropdown #country-drop-label {
  grid-column: 1;
  grid-row: 1;
  height: 24px;
  justify-content: flex-end;
  display: flex;
}
#header-dropdown #countries-drop {
  grid-column: 2;
  grid-row: 1;
}
#header-dropdown #countries-drop button {
  font-size: 14px;
  color: black;
  font-family: Montserrat, sans-serif;
}
#header-dropdown #language-drop-label {
  grid-column: 1;
  grid-row: 2;
  height: 24px;
  justify-content: flex-end;
  display: flex;
  font-family: Montserrat, sans-serif;
}
#header-dropdown #language-drop {
  grid-column: 2;
  grid-row: 2;
}
#header-dropdown #language-drop button {
  font-size: 14px;
  color: black;
  font-family: Montserrat, sans-serif;
}
#header-dropdown .dropdown {
  display: flex;
  flex-direction: row;
}
#header-dropdown .dropdown .dropbtn {
  padding: 0;
}

#countries-drop-resp {
  display: none;
}

:dir(rtl) {
  /** Interpolation of min is required by scss preprocessing */
}
:dir(rtl) #header-left {
  margin-right: 10%;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}
:dir(rtl) #header-right {
  padding-left: min(10%, 20px);
  padding-right: 10%;
  display: inline-flex;
  margin-left: 10%;
}
:dir(rtl) #header-banner {
  transform: scaleX(-1);
}
:dir(rtl) #header-banner-content {
  transform: scaleX(-1);
}

img {
  max-width: 100%;
  height: auto;
}

#header-logo {
  width: 120px;
  min-height: 10px;
  float: left;
  margin: 3px;
  padding: 3px;
}

#header-nav {
  display: flex;
  margin-left: 30px;
  margin-right: 20px;
  justify-content: center;
  align-items: center;
}

#header-nav-link {
  padding: 5px;
  border-radius: 3px;
  text-decoration: none;
  color: black;
  border-left: 5px solid var(--primary);
  border-right: 5px solid transparent;
  transition: all 0.2s ease-in-out;
}

#header-nav-link:hover {
  background-color: var(--primary);
  color: white;
}

.otherlang .countries {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 70%;
  margin: auto;
  padding-left: 100px;
}
.otherlang .countries .section .list {
  display: flex;
  flex-flow: row wrap;
  justify-content: start;
}
.otherlang .countries .section .list .country {
  margin-bottom: 10px;
  margin-left: 20px;
  margin-right: 20px;
  width: 170px;
  display: flex;
  align-items: center;
}

#header-return {
  font-size: 14px;
  margin: min(auto, 10%);
  text-decoration: none;
  color: white;
  border: 2px solid var(--primary);
  background-color: var(--primary);
  border-radius: 12px;
  display: inline-block;
  position: relative;
  margin-left: 50px;
  margin-bottom: auto;
  text-align: center;
  padding: 5px;
  max-width: 175px;
  transition: all 0.2s ease-in-out;
}

#header-return:hover {
  background-color: unset;
  color: black;
}

.title {
  padding: 20px 10%;
  margin: 0;
}

.menu {
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all 0.35s ease-in;
  will-change: padding, background, border-bottom-color;
  width: 100%;
  left: 0;
  top: 0;
  border-bottom: 1px solid transparent;
  border-bottom-color: transparent;
  border-bottom-color: rgba(0, 0, 0, 0.1);
  z-index: 52;
  display: flex;
}

/* logo */
@font-face {
  font-family: "Material Symbols Outlined";
  font-style: normal;
  font-weight: 400;
  src: url("../../assets/fonts/fonts.woff") format("woff");
}
.material-symbols-outlined {
  font-family: "Material Symbols Outlined", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-feature-settings: "liga";
  -moz-osx-font-smoothing: grayscale;
}

#open-btn {
  position: fixed;
  top: 28px;
  left: 20px;
  display: none;
}

#header .close {
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 25px;
  display: none;
}