/*
desktop - > 1024px
h1 1.7vw
h2 1.5vw
p,li 1.2vw
a 1vw

*/
/*
tablet - 720 to  1024
h1 2.7vw
p,li 1.7vw
a 1.5vw

mobile - < 720
h1 5vw
p,li 3.5vw
a 3.3vw

a padding same as a fontsize

*/
html,
body {
  padding: 0;
  margin: 0;
}

.emph {
  font-weight: 900;
  font-size: 1.5vw;
}

header {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
header nav {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  font-family: "Inter", sans-serif;
}
header nav .links {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: flex-start;
}
header nav .links a {
  font-size: 0.7vw;
  text-decoration: none;
  color: black;
  padding: 0.5vw;
  box-sizing: border-box;
  display: flex;
  align-items: flex-end;
  white-space: nowrap;
  font-weight: 700;
}
header nav .links a:hover {
  color: rgb(139, 30, 63);
}
header nav .links .choosen_page {
  -webkit-text-decoration: 4px solid underline;
          text-decoration: 4px solid underline;
  text-underline-offset: 5px;
}
header nav .links > ul {
  display: flex;
  flex-direction: row;
}
header nav .links > ul li {
  margin-top: auto;
  margin-bottom: auto;
  list-style: none;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
header nav .links > ul > li {
  margin-left: 1.2vw;
}
header nav .links > ul .multi {
  min-width: -moz-fit-content;
  min-width: fit-content;
}
header nav .links > ul .multi a span:nth-of-type(1) {
  margin-right: 1vw;
}
header nav .links > ul .multi ul {
  position: absolute;
  z-index: 3;
  left: 0;
  width: -moz-fit-content;
  width: fit-content;
  border: 2px solid black;
  flex-direction: column;
  padding: 0;
  background-color: black;
  min-width: 100px;
  display: none;
}
header nav .links > ul .multi ul li {
  text-align: left;
  padding: 0.3vw;
  box-sizing: border-box;
}
header nav .links > ul .multi ul li a {
  color: rgb(255, 255, 255);
  margin-left: 0;
}
header nav .links > ul .multi:hover ul {
  display: block;
}
header nav > a {
  padding: 0;
  height: 10vh;
  padding: 0.5vh;
  box-sizing: border-box;
}
header nav > a img {
  height: 100%;
}
header button {
  display: none;
  cursor: pointer;
}

#mobile_menu {
  display: none;
}

footer {
  width: 100%;
  height: 10vh;
  /*
  display: flex;
  align-items: center;
  justify-content: space-between;
  */
  display: grid;
  grid-template-columns: 10vw 70vw 10vw;
  justify-content: center;
  align-items: center;
  border-top: 2px solid rgb(16, 49, 114);
  font-family: "Inter", sans-serif;
}
footer h1 {
  font-size: 1vw;
  text-align: center;
  color: rgb(16, 49, 114);
  font-weight: 400;
}
footer .social {
  display: flex;
  justify-content: space-around;
}
footer .social a {
  cursor: pointer;
  display: flex;
  justify-content: center;
  text-decoration: none;
  font-size: 3vw;
  margin-left: 3vw;
  padding: 0vw;
  /*
  span {
      color: white;
  }
  &:nth-of-type(1) {
      background-color: #316ff6;
  }
  &:nth-of-type(2) {
      background-color: #0072b1;
  }
  &:nth-of-type(3) {
      background-color: #075e54;
  }*/
}
footer .social a svg {
  width: 2vw;
  height: 2vw;
}
footer .other_links {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
footer .other_links a {
  text-decoration: none;
  font-size: 0.8vw;
  color: rgb(0, 125, 155);
  font-weight: 700;
  padding: 0.3vw;
  box-sizing: border-box;
  /*
  &:nth-of-type(2) {
      border: 2px solid $blue;
      &:hover {
          background-color: $lgreen;
          color: $white;
          border: 2px solid $lgreen;
      }
  }
  */
}

@media only screen and (max-width: 1024px) {
  .emph {
    font-size: 2.7vw;
  }
  header nav {
    display: flex;
    justify-content: space-between;
  }
  header nav .links ul {
    display: none;
  }
  header button {
    display: unset;
    color: black;
    font-size: 3vw;
    background-color: transparent;
    cursor: pointer;
    outline: 0;
    border: 0;
  }
  #mobile_menu {
    flex-direction: column;
    position: fixed;
    align-items: center;
    overflow-y: scroll;
    background-color: rgb(255, 255, 255);
    width: 100%;
    height: 100vh;
    top: 0;
    opacity: 0;
    z-index: 5;
    font-family: "Inter", sans-serif;
  }
  #mobile_menu #close_btn {
    font-size: 2.5vw;
    width: -moz-fit-content;
    width: fit-content;
    position: absolute;
    right: 1vw;
    top: 2vw;
    background-color: transparent;
    color: black;
    cursor: pointer;
    border: 0;
  }
  #mobile_menu #close_btn:hover {
    color: rgb(139, 30, 63);
  }
  #mobile_menu a {
    text-decoration: none;
    font-size: 2vw;
    color: black;
    font-weight: 700;
    width: 100%;
  }
  #mobile_menu a:hover {
    color: rgb(139, 30, 63);
  }
  #mobile_menu > ul {
    display: flex;
    flex-direction: column;
    width: -moz-fit-content;
    width: fit-content;
  }
  #mobile_menu > ul li {
    list-style: none;
    margin-top: 3vh;
  }
  #mobile_menu > ul .multi {
    min-width: -moz-fit-content;
    min-width: fit-content;
    width: 98%;
    margin-bottom: 0;
    height: -moz-fit-content;
    height: fit-content;
    /**/
  }
  #mobile_menu > ul .multi:nth-of-type(1) {
    margin-top: 5vh;
  }
  #mobile_menu > ul .multi button {
    color: black;
    font-size: 2vw;
    background-color: transparent;
    font-weight: 700;
    padding: 0;
    outline: 0;
    border: 0;
    cursor: pointer;
  }
  #mobile_menu > ul .multi button:hover {
    color: rgb(139, 30, 63);
  }
  #mobile_menu > ul .multi a span:nth-of-type(1) {
    margin-right: 1vw;
  }
  #mobile_menu > ul .multi ul {
    z-index: 3;
    left: 0;
    width: 100%;
    display: none;
    margin-left: 0;
    margin-top: 0.5vw;
    margin-bottom: 0;
    flex-direction: column;
    padding: 0;
    border: 2px solid black;
    background-color: black;
    min-width: 200px;
  }
  #mobile_menu > ul .multi ul li {
    text-align: left;
    padding: 1vw;
    box-sizing: border-box;
  }
  #mobile_menu > ul .multi ul li a {
    color: rgb(255, 255, 255);
  }
  #mobile_menu > ul .multi.close ul {
    display: none;
  }
  #mobile_menu > ul .multi.open ul {
    display: block;
  }
  footer {
    min-height: 10vh;
    height: -moz-fit-content;
    height: fit-content;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "b c" "a a";
    align-items: center;
  }
  footer h1 {
    grid-area: a;
    font-size: 2vw;
    margin-top: 2vw;
  }
  footer .social {
    grid-area: b;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    height: 100%;
  }
  footer .social a svg {
    width: 4vw;
    height: 4vw;
  }
  footer .other_links {
    grid-area: c;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2vw;
    margin-bottom: 2vw;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
  }
  footer .other_links a {
    font-size: 1.8vw;
    margin-left: 4vw;
  }
}
@media only screen and (max-width: 720px) {
  .emph {
    font-size: 5.5vw;
  }
  header nav > a {
    height: 8vh;
  }
  header button {
    font-size: 5vw;
  }
  #mobile_menu {
    position: fixed;
    height: 200vh;
  }
  #mobile_menu #close_btn {
    font-size: 5vw;
  }
  #mobile_menu a {
    font-size: 5vw;
  }
  #mobile_menu > ul .multi button {
    font-size: 5vw;
  }
  footer {
    grid-template-areas: "c c" "b b" "a a";
  }
  footer h1 {
    font-size: 4vw;
  }
  footer .social {
    margin-top: 2vw;
    margin-bottom: 2vw;
  }
  footer .social a {
    margin-left: 4vw;
    margin-right: 4vw;
  }
  footer .social a svg {
    width: 8vw;
    height: 8vw;
  }
  footer .other_links {
    justify-content: center;
  }
  footer .other_links a {
    font-size: 4.5vw;
    margin-left: 8vw;
    margin-right: 8vw;
  }
}/*# sourceMappingURL=nav.css.map */