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

* {
  -webkit-touch-callout: none;
}

html, body {
  scroll-behavior: smooth;
}

body {
  background: #F6F1EB;
}

h2.h2 {
  font-size: 65px;
  font-weight: 400;
  color: #3E3E3E;
  line-height: 1.1em;
  letter-spacing: -2%;
  font-family: "Montserrat", sans-serif;
}
h2.h2.center {
  text-align: center;
}

@media only screen and (max-width: 1650px) {
  h2.h2 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 1300px) {
  h2.h2 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 900px) {
  h2.h2 {
    font-size: 33px;
  }
}
@media only screen and (max-width: 700px) {
  h2.h2 {
    font-size: 27px;
  }
}
header {
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
}
header .logo a {
  color: #3E3E3E;
  text-decoration: none;
  font-size: 30px;
  font-weight: 500;
}
header nav {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 3.5rem;
}
header nav a {
  color: #3E3E3E;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}
header nav a::after {
  content: "";
  height: 2px;
  width: 0;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background: #3E3E3E;
  transition: 0.25s ease;
}
header nav a:hover::after, header nav a.active::after {
  width: 70%;
}
header .btn a {
  font-size: 18px;
}
header .ham {
  display: none;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
}
header .ham svg {
  height: 35px;
  width: 35px;
  color: #3E3E3E;
  stroke-width: 2.5;
}
header .logout__btn {
  background: none;
  border: none;
}
header .logout__btn a {
  color: #000;
  text-decoration: none;
}
header .logout__btn a svg {
  color: #000;
  height: 30px;
  width: 30px;
}

.offcanvas {
  display: none;
  justify-content: center;
  align-items: center;
  flex-flow: column wrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  transition: 0.5s ease-in-out;
  z-index: 401;
  background: rgba(62, 62, 62, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.offcanvas #close__offcanvas {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
}
.offcanvas #close__offcanvas svg {
  height: 35px;
  width: 35px;
  color: #fff;
  stroke-width: 2.5;
}
.offcanvas a {
  display: block;
  width: 80%;
  text-align: center;
  color: #fff;
  padding: 1rem 0;
  font-size: 1em;
  text-decoration: none;
  border-bottom: 2px solid #fff;
}
.offcanvas a:last-child {
  border-bottom: none;
}
.offcanvas .offcanvas-active {
  text-decoration: underline;
}

@media only screen and (max-width: 1300px) {
  header {
    padding: 0 5%;
    height: 85px;
  }
  header .logo a {
    font-size: 25px;
  }
  header nav {
    gap: 30px;
  }
  header nav a {
    font-size: 16px;
  }
  header .btn a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1300px) {
  header {
    padding: 0 5%;
    height: 85px;
  }
  header .logo a {
    font-size: 25px;
  }
  header nav {
    display: none;
  }
  header .btn {
    display: none;
  }
  header .ham {
    display: flex;
  }
  .offcanvas {
    display: flex;
  }
}
@media only screen and (max-width: 700px) {
  header {
    padding: 0 5%;
    height: 70px;
  }
  header .logo a {
    font-size: 20px;
  }
  header nav {
    display: none;
  }
  header .ham {
    display: flex;
  }
  .offcanvas {
    display: flex;
  }
}
.btn {
  border: none;
  background: none;
}
.btn.secondary a {
  background: transparent;
  border: 2px solid #3E3E3E;
  color: #3E3E3E;
}
.btn.secondary:hover a {
  outline: 1px solid #3E3E3E;
}
.btn a {
  font-size: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: #fff;
  border-radius: 200px;
  text-decoration: none;
  padding: 0.65em 2em;
  font-weight: 500;
  transition: 0.2s ease;
  background: #B8B9A5;
  outline: 1px solid transparent;
}
.btn a svg {
  height: 1.25em;
  width: 1.25em;
}
.btn:hover a {
  outline: 1px solid #B8B9A5;
}

footer {
  padding: 5rem 5%;
  background: #3E3E3E;
}
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: 55%;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
footer .footer__content .left h2 {
  font-size: 3.5em;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 400;
}
footer .footer__content .left p, footer .footer__content .left a {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  line-height: 1.75em;
}
footer .footer__content .left p {
  max-width: 500px;
}
footer .footer__content .left img {
  height: 250px;
}
footer .footer__content .left a {
  text-decoration: none;
}
footer .footer__content .left a[href^=tel] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: inherit;
}
footer .footer__content .right {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 1.15rem;
}
footer .footer__content .right h3 {
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  font-weight: 400;
}
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: #B8B9A5;
  stroke-width: 3;
}

@media only screen and (max-width: 1550px) {
  footer .footer__content .left {
    width: 60%;
    gap: 25px;
  }
  footer .footer__content .left img {
    height: 200px;
  }
  footer .footer__content .left p {
    max-width: 400px;
  }
}
@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 img {
    height: 175px;
  }
  footer .footer__content .left p {
    font-size: 0.7em;
  }
  footer .footer__content .right h3 {
    font-size: 2em;
  }
  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%;
    flex-flow: column;
  }
  footer .footer__content .left h2 {
    font-size: 25px;
  }
  footer .footer__content .left p {
    font-size: 14px;
  }
  footer .footer__content .right h3 {
    font-size: 25px;
  }
}
#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: #3E3E3E;
  cursor: pointer;
}
#gdpr__parent label a {
  color: #3E3E3E;
}

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

.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;
}
.content section ul {
  padding-left: 20px;
}
.content section p, .content section ul li {
  line-height: 1.75em;
}
.content section p a, .content section ul li a {
  color: #000;
}

@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, .content section ul li {
    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 */