*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "proxima_novaregular";
  src: url("../fonts/proximanova-reg-webfont.woff2") format("woff2"),
       url("../fonts/proximanova-reg-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}



a {
  text-decoration: none;
  color: inherit;
}

.content-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  height: 100vh;
  min-height: 800px;
  background-color: #002639;
  z-index: 1;
  font-family: "proxima_novaregular", sans-serif;
}

@media only screen and (max-width: 767px) {
  .content-main {
    display: block;
    height: auto;
    min-height: unset;
    align-items: unset;
    justify-content: unset;
    padding: 30px 0;
    width: 100%;
  }

  .content-main .grid {
    padding: 0 15px;
  }

  .content-main__upper__inner .logo img,
  .content-main__upper__inner .logo svg {
    width: 100%;
    max-width: 140px;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .content-main__upper__wording__subtitle {
    font-size: 15px;
    margin-top: 20px;
  }

  .content-main__disclaimer {
    font-size: 12px;
    margin-top: 18px !important;
  }
}

.content-main .grid {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  display: block;
  padding: 0 20px;
}

.content-main__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url("../images/bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.content-main__bg::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, #000, transparent 80%);
}

.content-main__flex {
  position: relative;
  width: 100%;
}

.content-main__upper {
  overflow: hidden;
}

.content-main__upper__wording {
  color: #fff;
}

.content-main__upper__wording__subtitle {
  /* font-weight: 600; */
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  max-width: 900px;
  line-height: 1.45;
  text-align: left;
}

.content-main__upper__wording__subtitle p + p {
  margin-top: 16px;
}

.content-main__upper__wording__subtitle a {
  text-decoration: underline;
  
}

.content-main__disclaimer {
  font-size: 14px;
  margin-top: 24px !important;
  opacity: 0.95;
}

.content-main__upper__inner .logo {
  margin-bottom: 30px;
}

.content-main__upper__inner .logo img,
.content-main__upper__inner .logo svg {
  width: 100px;
}

@media only screen and (min-width: 1200px) {
  .content-main__upper__inner .logo img,
  .content-main__upper__inner .logo svg {
    width: 130px;
  }
}

.language-switcher {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.language-switcher__btn {
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.language-switcher__btn img {
  width: 34px;
  height: 24px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.language-section--hidden {
  display: none;
}