* {
  margin: 0;
  border: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  min-height: 100%;
  padding-top: 120px;
  scroll-behavior: smooth;
  background-color: #ebebeb;
}
@media all and (max-width: 1000px) {
  html {
    padding-top: 110px;
  }
}
@media all and (max-width: 800px) {
  html {
    padding-top: 100px;
  }
}
@media all and (max-width: 600px) {
  html {
    padding-top: 125px;
  }
}
body {
  width: 100%;
  height: 100%;
  font-family: 'museo', serif;
  font-size: 170%;
  line-height: 1.3em;
  font-weight: 500;
  color: #1d1d1b;
  margin: 0 auto;
  overflow-x: hidden;
}
@media all and (max-width: 800px) {
  body {
    font-size: 150%;
    font-size: 140%;
  }
}
h1,
h2 {
  font-size: 1.4em;
  line-height: 1.1em;
  font-weight: 900;
  margin-bottom: 1.3em;
/*@media all and (max-width widthExtraSmall)
    font-size 1.2em*/
}
h3 {
  font-size: 1.125em;
  line-height: 1.1em;
  font-weight: 700;
/*@media all and (max-width widthExtraSmall)
    font-size 1em*/
}
a,
a:hover,
a:active,
a:focus,
a:visited,
a:target {
  text-decoration: none;
  color: inherit;
  outline: none;
}
li {
  list-style: none;
}
p {
  margin-bottom: 1.3em;
}
section p a,
footer p a {
  position: relative;
}
section p a::after,
footer p a::after {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;
  right: 0;
  top: 28px;
  width: 100%;
  height: 2px;
  margin: 0 auto;
  background-color: #aaa;
  transition: background-color 0.2s linear;
}
section p a:hover::after,
footer p a:hover::after {
  background-color: #e94d14;
}
.flexRow {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.flexCol {
  display: flex;
  flex-direction: column;
}
.grid {
  display: grid;
}
.bgImg {
  background-size: cover;
  background-position: center;
}
.bgDarkBlue {
  color: #fff;
  background-color: #1f3a4d;
}
.bgBlack {
  color: #fff;
  background-color: #1d1d1b;
}
.bgWhite {
  background-color: #fff;
}
.maxWidth {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
header {
  width: 100%;
  height: 120px;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  padding: 15px 40px;
  background-color: #ebebeb;
  margin: 0 auto;
  transition: all 0.2s ease-in-out;
  z-index: 1000;
}
header #goTop {
  height: 100%;
  position: relative;
  left: -12px;
  transition: all 0.2s ease-in-out;
}
header #goTop img {
  height: 100%;
}
header > div {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
header > div div {
  align-items: flex-end;
}
header li {
  position: relative;
  top: 0;
  transition: top 0.2s ease-in-out;
}
header #menu,
header #languages {
  position: relative;
  bottom: -8px;
  font-size: 0.625em;
  font-weight: 400;
  color: #333;
}
header #menu a,
header #languages a {
  display: block;
}
header #menu li a {
  padding: 5px 15px 5px;
  transition: color 0.2s linear;
}
header #menu li a:hover,
header #menu li a.active {
  color: #e94d14;
}
header #menu li:last-of-type a {
  padding-right: 0;
}
header #languages {
  font-weight: 700;
}
header #languages li a {
  padding: 7px 0 5px 30px;
}
header #languages li a:before {
  content: '';
  display: inline-block;
  width: 1px;
  height: 22px;
  position: relative;
  left: -30px;
  top: 5px;
  background-color: #333;
}
header.smallerHeader {
  height: 80px;
  padding: 7px 40px;
  box-shadow: 0 3px 10px 0 rgba(29,29,27,0.15);
}
header.smallerHeader li {
  top: -8px;
}
@media all and (max-width: 1200px) {
  header {
    padding: 15px 30px;
  }
  header.smallerHeader {
    padding: 7px 30px;
  }
}
@media all and (max-width: 1000px) {
  header {
    height: 110px;
    padding: 10px 30px;
  }
  header.smallerHeader {
    height: 70px;
  }
}
@media all and (max-width: 800px) {
  header {
    height: 100px;
    padding: 10px 20px;
  }
  header #menu li a {
    padding: 5px 10px 5px;
  }
  header #languages li a {
    padding: 5px 0 5px 20px;
  }
  header #languages li a:before {
    left: -20px;
  }
  header.smallerHeader {
    height: 60px;
    padding: 7px 20px;
  }
  header.smallerHeader #goTop {
    left: -7px;
  }
}
@media all and (max-width: 600px) {
  header {
    height: auto;
    padding: 5px 20px 0;
  }
  header > div {
    flex-direction: column;
    align-items: center;
  }
  header #goTop {
    height: 80px;
  }
  header #menu {
    bottom: 0;
  }
  header #menu li a {
    padding-top: 10px;
  }
  header #menu li:first-of-type a {
    padding-left: 0;
  }
  header #menu li:last-of-type a {
    padding-right: 10px;
  }
  header.smallerHeader {
    height: auto;
    padding-bottom: 0;
  }
  header.smallerHeader #goTop {
    height: 60px;
  }
  header.smallerHeader #menu li a {
    padding-top: 15px;
  }
}
#container {
  justify-content: space-between;
  width: 100%;
  max-width: calc(1920px + (2 * 40px));
  padding: 0 40px 80px;
  margin: 0 auto;
}
@media all and (max-width: 1200px) {
  #container {
    padding: 0 30px 50px;
  }
}
@media all and (max-width: 800px) {
  #container {
    padding: 0 20px 40px;
  }
}
#claim > div:first-of-type {
  padding: 120px 230px 120px 115px;
}
#claim > div:last-of-type {
  grid-template-columns: 1fr 2fr;
}
#claim > div:last-of-type .bgImg:first-of-type {
  aspect-ratio: 1/1;
}
#claim > div:last-of-type .bgImg:last-of-type {
  aspect-ratio: 2/1;
}
#claim p {
  margin-bottom: 0;
}
@media all and (max-width: 1200px) {
  #claim > div:first-of-type {
    padding: 100px 60px 100px 30px;
  }
}
@media all and (max-width: 800px) {
  #claim > div:first-of-type {
    padding: 60px 60px 60px 20px;
  }
}
@media all and (max-width: 600px) {
  #claim > div:last-of-type {
    grid-template-columns: 1fr;
  }
  #claim > div:last-of-type .bgImg:first-of-type {
    display: none;
  }
  #claim > div:last-of-type .bgImg:last-of-type {
    aspect-ratio: 2/1;
  }
}
#intro {
  padding: 80px 230px 80px 115px;
}
#intro.homepage {
  grid-template-columns: 1fr 2fr;
  padding: 80px 0;
}
#intro.homepage .bgImg {
  display: block;
  aspect-ratio: 3/4;
  background-color: #add8e6;
}
#intro.homepage div {
  padding-left: 40px;
}
@media all and (max-width: 1200px) {
  #intro {
    padding: 50px 0 40px 0;
  }
  #intro.homepage {
    display: block;
    padding: 60px 0;
  }
  #intro.homepage .bgImg {
    width: 400px;
    float: left;
    margin-right: 20px;
  }
  #intro.homepage div {
    padding-left: 0;
  }
}
@media all and (max-width: 1000px) {
  #intro {
    padding: 60px 0 60px 0;
  }
  #intro.homepage {
    padding: 50px 0;
  }
  #intro.homepage .bgImg {
    width: 300px;
  }
}
@media all and (max-width: 800px) {
  #intro {
    padding: 50px 0 50px 0;
  }
  #intro.homepage {
    padding: 40px 0;
  }
  #intro.homepage .bgImg {
    width: 300px;
  }
}
@media all and (max-width: 600px) {
  #intro {
    padding: 40px 0 40px 0;
  }
  #intro.homepage {
    display: flex;
    flex-direction: column;
  }
  #intro.homepage .bgImg {
    width: 100%;
    margin-bottom: 20px;
  }
}
#members {
  grid-template-columns: repeat(3, 1fr);
  column-gap: 10px;
  padding-bottom: 80px;
}
#members .member {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  aspect-ratio: 1/1;
}
#members .member span {
  font-size: 0.65em;
  color: #fff;
  text-align: right;
  padding: 0 20px 5px 0;
}
@media all and (max-width: 600px) {
  #members {
    display: flex;
    flex-direction: column;
  }
  #members span {
    margin-bottom: 10px;
  }
}
#sponsorContainer {
  padding: 50px 0;
}
#sponsorContainer .sponsor {
  display: grid;
  grid-template-columns: 1fr 4fr;
  column-gap: 50px;
  align-content: start;
  background-color: #fff;
  padding: 50px;
  margin-bottom: 15px;
  transition: background-color 0.2s linear;
}
#sponsorContainer .sponsor img {
  width: 100%;
}
#sponsorContainer .sponsor div {
  font-size: 0.85em;
  line-height: 1.45em;
}
#sponsorContainer .sponsor div p:last-of-type {
  margin-bottom: 0;
}
#sponsorContainer .sponsor:last-of-type {
  margin-bottom: 0;
}
#sponsorContainer .sponsor:hover {
  background-color: rgba(255,255,255,0.5);
}
#sponsorContainer .sponsor #gallery {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  row-gap: 5px;
  column-gap: 5px;
  margin-top: 40px;
}
#sponsorContainer .sponsor #gallery a {
  display: block;
  aspect-ratio: 1/1;
  position: relative;
}
#sponsorContainer .sponsor #gallery a span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center;
}
@media all and (max-width: 1200px) {
  #sponsorContainer .sponsor {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    column-gap: 30px;
  }
  #sponsorContainer .sponsor img {
    max-width: 400px;
    margin-bottom: 40px;
  }
  #sponsorContainer .sponsor .smallLink {
    text-align: center;
  }
  #sponsorContainer .sponsor #gallery {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media all and (max-width: 800px) {
  #sponsorContainer .sponsor #gallery {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media all and (max-width: 600px) {
  #sponsorContainer .sponsor {
    padding: 50px 20px;
  }
  #sponsorContainer .sponsor #gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
#partners {
  padding: 80px 230px 80px 115px;
}
#partners #partnersContainer {
  grid-template-columns: repeat(3, 1fr);
  column-gap: 40px;
  row-gap: 40px;
}
#partners #partnersContainer a {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 40px;
}
#partners #partnersContainer img {
  max-width: 100%;
  max-height: 100%;
}
#contacts {
  padding: 80px 50px 80px 115px;
}
#contacts div {
  grid-template-columns: 1fr 2fr;
  column-gap: 40px;
}
#contacts div:first-of-type {
  margin-bottom: 80px;
}
#contacts p {
  margin-bottom: 0;
}
#contacts a {
  color: #aaa;
}
@media all and (max-width: 1200px) {
  #contacts div {
    grid-template-columns: 1fr;
  }
  #contacts div:first-of-type {
    margin-bottom: 60px;
  }
}
@media all and (max-width: 1000px) {
  #contacts {
    padding: 60px 50px;
  }
  #contacts div {
    display: block;
  }
  #contacts div:first-of-type {
    margin-bottom: 50px;
  }
}
@media all and (max-width: 800px) {
  #contacts {
    padding: 50px 30px;
  }
  #contacts div:first-of-type {
    margin-bottom: 40px;
  }
}
@media all and (max-width: 600px) {
  #contacts {
    padding: 40px 20px;
  }
  #contacts div:first-of-type {
    margin-bottom: 30px;
  }
}
#map {
  aspect-ratio: 3/1;
  margin-bottom: 15px;
}
#map iframe {
  width: 100%;
  height: 100%;
}
@media all and (max-width: 1200px) {
  #map {
    aspect-ratio: 2/1;
  }
}
footer {
  align-items: center;
  justify-content: center;
  background-color: #1d1d1b;
  padding: 80px 40px;
}
footer div {
  align-items: center;
  width: 100%;
  max-width: calc(1920px + (2 * 40px));
}
footer ul {
  justify-content: center;
}
footer ul:first-of-type,
footer ul:nth-of-type(2) {
  font-size: 0.65em;
}
footer ul:first-of-type li,
footer ul:nth-of-type(2) li {
  padding: 0 20px;
}
footer ul:first-of-type li:before,
footer ul:nth-of-type(2) li:before {
  content: '';
  display: inline-block;
  position: relative;
  top: 3px;
  left: -20px;
  width: 1px;
  height: 18px;
  background-color: #fff;
}
footer ul:first-of-type li:first-of-type:before,
footer ul:nth-of-type(2) li:first-of-type:before {
  display: none;
}
footer ul:first-of-type li a,
footer ul:nth-of-type(2) li a {
  display: inline-block;
}
footer ul:first-of-type {
  margin-bottom: 80px;
}
footer ul:nth-of-type(2) {
  margin-bottom: 20px;
}
footer ul:last-of-type {
  font-size: 0.5em;
}
@media all and (max-width: 1200px) {
  footer {
    padding: 60px 40px;
  }
}
@media all and (max-width: 800px) {
  footer {
    padding: 30px 30px;
  }
}
@media all and (max-width: 600px) {
  footer {
    padding: 30px 20px;
  }
  footer ul:first-of-type {
    flex-direction: column;
    margin-bottom: 40px;
  }
  footer ul:first-of-type li {
    text-align: center;
  }
  footer ul:first-of-type li:before {
    display: none;
  }
}
.smallLink {
  display: block;
  font-size: 0.7em;
  color: #aaa;
}
.smallLink.withMarginTop {
  margin-top: 30px;
}
.smallLink::before {
  content: url("../icons/globe.svg");
  display: inline-block;
  width: 30px;
  height: auto;
  position: relative;
  top: 10px;
  margin-right: 5px;
  background-repeat: no-repeat;
}
/*# sourceMappingURL=assets/css/main.css.map */