@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

html, body {
  scroll-behavior: smooth;
}

body, html {
  background: #202020;
  position: relative;
  overflow-x: hidden;
  width: 100vw;
}

html, body {
  height: 100%;
  overflow-x: hidden;
}

header {
  height: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
}
header .logo {
  font-size: 2em;
}
header .logo a {
  color: #fff;
  text-decoration: none;
}
header .right {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 30px;
}
header .right .language-switch a {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .right .language-switch a img {
  height: 40px;
  width: 60px;
  border-radius: 5px;
}
header .socials {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 10px;
}
header .socials .icon {
  height: 51px;
  width: 51px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: 1px solid transparent;
  transition: 0.25s ease;
}
header .socials .icon svg, header .socials .icon img {
  height: 25px;
  width: 25px;
  color: #000;
}
header .socials .icon:hover {
  outline: 1px solid #fff;
}

@media only screen and (max-width: 900px) {
  header .logo {
    font-size: 1.5em;
  }
  header nav {
    gap: 1.75rem;
  }
  header nav a {
    font-size: 0.9em;
  }
  header nav a::after {
    bottom: -3px;
  }
}
@media only screen and (max-width: 700px) {
  header {
    padding: 20px 5%;
    flex-flow: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
  }
  header .logo {
    font-size: 25px;
    display: none;
  }
  header .right {
    align-items: end;
    justify-content: space-between;
    width: 100%;
    gap: 15px;
  }
  header .right .language-switch {
    order: 2;
  }
  header .right .language-switch a img {
    height: 31px;
    width: 40px;
  }
  header .socials {
    gap: 10px;
  }
  header .socials .icon {
    height: 35px;
    width: 35px;
  }
  header .socials .icon svg, header .socials .icon img {
    height: 19px;
    width: 19px;
  }
  header nav {
    display: none;
  }
  header .ham {
    display: flex;
  }
  .offcanvas {
    display: flex;
  }
}
.btn {
  border: none;
  background: none;
}
.btn a {
  font-size: 1em;
  border: 3px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: #000;
  border-radius: 15px;
  text-decoration: none;
  padding: 0.75em 1.5em;
  font-weight: 500;
  transition: 0.2s ease;
  background: #fff;
  cursor: pointer;
}
.btn a svg {
  height: 1.25em;
  width: 1.25em;
  stroke-width: 2.5;
}
.btn:hover a {
  outline: 1px solid #fff;
}

footer {
  padding: 5rem 7.5%;
  background: #181818;
}
footer .footer__content {
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: space-between;
  align-items: start;
}
footer .footer__content .left {
  width: 40%;
}
footer .footer__content .left h2 {
  font-size: 3.5em;
  color: #fff;
  margin-bottom: 1rem;
}
footer .footer__content .left p {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  line-height: 1.75em;
}
footer .footer__content .right {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 1.15rem;
}
footer .footer__content .right a {
  text-decoration: none;
  color: #fff;
  font-size: 1.25em;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 1px;
}
footer .footer__content .right a svg {
  height: 1.35em;
  width: 1.35em;
  color: #fff;
  stroke-width: 3;
}

@media only screen and (max-width: 1300px) {
  footer .footer__content .left h2 {
    font-size: 2.5em;
  }
  footer .footer__content .left p {
    font-size: 0.85em;
  }
  footer .footer__content .right {
    justify-content: center;
  }
  footer .footer__content .right a {
    font-size: 1.1em;
  }
}
@media only screen and (max-width: 850px) {
  footer .footer__content .left h2 {
    font-size: 2em;
  }
  footer .footer__content .left p {
    font-size: 0.7em;
  }
  footer .footer__content .right a {
    font-size: 1em;
  }
}
@media only screen and (max-width: 700px) {
  footer .footer__content {
    flex-flow: column;
    row-gap: 4rem;
  }
  footer .footer__content .left {
    width: 100%;
  }
}
#gdpr__parent {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1.5rem 0 1rem;
}
#gdpr__parent input {
  height: auto;
  width: auto;
  cursor: pointer;
}
#gdpr__parent label {
  color: #fff;
  cursor: pointer;
}
#gdpr__parent label a {
  color: #fff;
}

@media only screen and (max-width: 700px) {
  #gdpr__parent {
    padding: 0;
  }
  #gdpr__parent label {
    font-size: 0.8em;
  }
}
h1 {
  font-size: 4em;
  text-align: center;
  font-weight: 600;
  margin-top: 4rem;
  padding: 0 15%;
  color: #fff;
}

.validity {
  text-align: center;
  font-size: 1.5em;
  font-weight: 500;
  margin-top: 0.25rem;
}

.content {
  padding: 2.5rem 15%;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 3rem;
}
.content section h2 {
  font-size: 2em;
  margin-bottom: 0.5rem;
  color: #fff;
}
.content section ul {
  padding-left: 20px;
}
.content section p, .content section ul li {
  line-height: 1.75em;
  color: #fff;
}
.content section p a, .content section ul li a {
  color: #fff;
}

@media only screen and (max-width: 1300px) {
  h1 {
    font-size: 2.5em;
  }
  .validity {
    font-size: 1.25em;
  }
  .content section h2 {
    font-size: 1.65em;
  }
  .content section p {
    font-size: 0.9em;
  }
}
@media only screen and (max-width: 850px) {
  h1 {
    font-size: 2em;
  }
  .validity {
    font-size: 1em;
  }
  .content {
    padding: 2rem 10% 3rem;
    gap: 2rem;
  }
}
@media only screen and (max-width: 700px) {
  header {
    width: 100vw;
    height: 5rem;
    justify-content: space-between;
  }
  header img {
    height: 2.5rem;
  }
  header nav {
    gap: 0.5rem;
  }
  header nav a {
    font-size: 0.5em;
  }
  h1 {
    font-size: 1.75em;
    padding: 0 10%;
  }
  .content section h2 {
    font-size: 1.35em;
  }
  .content section p, .content section ul li {
    font-size: 0.75em;
  }
}/*# sourceMappingURL=style.css.map */