@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&family=Nunito:wght@500;600;700;800&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.85rem;
  -webkit-text-size-adjust: none;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5 {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
}

h1 {
  font-size: 3.052rem;
  line-height: 3.25rem;
  margin-bottom: 0.75rem;
}

h2 {
  font-size: 2.441rem;
  line-height: 2.625rem;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.953rem;
  line-height: 1.2;
  font-weight: 600;
}

h4 {
  font-size: 1.563rem;
}

h5 {
  font-size: 1.25rem;
  font-weight: 800;
}

.small {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #E53B1A;
  text-transform: uppercase;
}

.nowrap {
  white-space: nowrap;
}

.break {
  word-break: break-all;
}

strong {
  font-weight: 800;
}

a {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-decoration: none;
  color: #E53B1A;
  text-transform: uppercase;
  font-weight: 500;
}

.btn {
  font-size: 0.95rem;
  padding: 0.5rem 1.5rem;
  border: 1px solid #E53B1A;
  display: inline-block;
  border-radius: 2rem;
  margin-top: 2rem;
  transition: all 0.6s ease;
}
.btn:after {
  font-family: "Material Icons";
  content: "\e5e1";
  display: inline-block;
  margin-left: 0.25rem;
  vertical-align: top;
}
.btn:hover {
  background-color: #E53B1A;
  color: white;
}

.dark-btn {
  background-color: white;
  color: #E53B1A;
}
.dark-btn:hover {
  background-color: #E53B1A;
  border: 1px solid white;
}

.btn-full {
  background-color: #E53B1A;
  color: white;
}
.btn-full:hover {
  background-color: white;
  border: 1px solid #E53B1A;
  color: #E53B1A;
}

.back {
  color: #9D9D9D;
  font-size: 0.8rem;
}
.back:before {
  font-family: "Material Icons";
  content: "\e5e0";
  display: inline-block;
  margin-left: 0.25rem;
  vertical-align: top;
}

.icon {
  fill: #E53B1A;
  width: 2em;
  height: 2em;
}

.transition-element {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: white;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease-out;
}

.is-active {
  opacity: 1;
}

.notfound {
  min-height: 85vh;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
}
.notfound h3 {
  color: #E53B1A;
  margin-bottom: 0.5rem;
}
.notfound p {
  margin-bottom: 2rem;
}

header {
  background-color: rgba(237, 237, 244, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  width: 100%;
  min-height: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  font-family: "Nunito", sans-serif;
  z-index: 99;
  transition: all 0.6s ease-out;
}
header .header-container {
  max-width: 1240px;
  padding: 1em;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
}
header .header-container img {
  max-height: 1.75em;
  cursor: pointer;
}
header .header-container .line {
  transition: all 0.6s ease;
}
header .header-container nav {
  position: fixed;
  top: -100vh;
  left: 0;
  height: 60vh;
  width: 100vw;
  padding: 1em;
  transition: top 0.6s ease, opacity 0.3s ease-out;
  opacity: 0;
}
header .header-container nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  list-style: none;
}
header .header-container nav ul li {
  padding: 1rem;
  line-height: 1;
}
header .header-container nav ul li a {
  color: #212529;
  font-size: 1.25rem;
  letter-spacing: 0.03rem;
}
header .header-container nav ul li a.active {
  color: #E53B1A;
}
header .header-container nav ul li a:hover {
  color: #E53B1A;
}
header .header-container #hamburger-icon {
  height: 1em;
  cursor: pointer;
  overflow: visible;
}

header.active {
  min-height: 100%;
  background-color: rgba(237, 237, 244, 0.7);
  transition: all 0.6s ease-out;
}
header.active .line {
  transition: all 0.6s ease;
}
header.active .line1 {
  transform-origin: 50%;
  transform: rotate(-45deg) translate(0rem, 0.5rem);
}
header.active .line3 {
  opacity: 0;
}
header.active .line2 {
  transform-origin: 50%;
  transform: rotate(45deg) translate(0rem, -0.45rem);
}
header.active nav {
  top: 20vh;
  left: 0;
  opacity: 1;
  transition: top 0.6s ease, opacity 0.3s ease-out 0.3s;
}

footer {
  background-color: #212529;
  color: white;
  font-size: 0.85rem;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}
footer .footer-content {
  max-width: 1240px;
  width: 100%;
  padding: 2rem 1em;
}
footer .footer-content hr {
  margin: 1.5em 0;
}
footer .footer-content .opaque {
  color: #9D9D9D;
}
footer .footer-content .contact {
  text-align: center;
}
footer .footer-content .contact span {
  display: block;
}
footer .footer-content .contact span .opaque {
  margin-bottom: 0.5rem;
}
footer .footer-content .copyright > span {
  line-height: 1.5rem;
}
footer .footer-content .copyright > p a {
  color: white;
  font-weight: 400;
  text-transform: unset;
}

section {
  padding: 4rem 0;
  text-align: center;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}
section .container-section {
  padding: 0 1em;
}
section .container-section img {
  width: 100%;
  max-width: 26em;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  border-radius: 100%;
}
section .container-section .text-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
section .container-section .text-content .text {
  max-width: 26em;
}
section .container-section .small {
  margin-bottom: 0.25rem;
  margin-top: 0.75rem;
}
section .section-centered {
  max-width: 94em;
  width: 100%;
  text-align: center;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}
section.hero-page {
  padding: 0 0 4rem 0;
}
section.hero-page .hero-img {
  min-height: 36em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
section.hero-page .hero-img img {
  border-radius: unset;
}
section.hero-page .hero-text {
  padding: 0 1em;
}
section.squared img {
  border-radius: 1em;
  min-height: 15em;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 26em;
}

.white-text {
  color: white;
}
.white-text .small {
  color: white;
}

@media all and (max-height: 30em) and (orientation: landscape) {
  footer {
    font-size: 0.85rem;
  }
  section {
    padding: 4rem 1em;
    text-align: center;
  }
  section img {
    width: 100%;
    max-width: 18em;
    -o-object-fit: cover;
       object-fit: cover;
    height: auto;
    border-radius: 100%;
  }
  section.hero-page .hero-img {
    min-height: 26em;
  }
}
@media all and (min-width: 50em) and (min-height: 30em) {
  h1 {
    margin-top: 0;
    font-size: 4.209rem;
    line-height: 1;
    margin-bottom: 1rem;
  }
  h2 {
    font-size: 3.157rem;
    line-height: 1;
  }
  h3 {
    font-size: 2.369rem;
    line-height: 1;
  }
  h4 {
    font-size: 1.777rem;
  }
  h5 {
    font-size: 1.333rem;
  }
  .small {
    font-size: 0.8rem;
  }
  header {
    height: auto;
  }
  header .header-container nav {
    position: relative;
    top: unset;
    left: unset;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: unset;
    transition: unset;
    opacity: 1;
  }
  header .header-container nav ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: unset;
    list-style: none;
    gap: 3rem;
  }
  header .header-container nav ul li {
    padding: 0rem;
  }
  header .header-container nav ul li a {
    color: #212529;
    font-size: 1rem;
    transition: all 0.4s ease;
  }
  header .header-container nav ul li a:hover {
    color: #E53B1A;
  }
  header .header-container #hamburger-icon {
    display: none;
  }
  footer .footer-content {
    padding: 1.5em 1em;
  }
  footer .footer-content hr {
    margin: 1em 0;
  }
  footer .footer-content .contact {
    text-align: unset;
  }
  footer .footer-content .contact span {
    margin-bottom: unset;
    display: inline-block;
  }
  footer .footer-content .contact span.opaque {
    padding-right: 1em;
  }
  footer .footer-content .copyright > p {
    margin-top: 0.25rem;
  }
}
@media all and (min-width: 64em) and (min-height: 30em) {
  section {
    padding: 5rem 0;
    text-align: left;
  }
  section .container-section {
    display: flex;
    flex-flow: row nowrap;
    max-width: 1240px;
    width: 100%;
    gap: 1rem;
  }
  section .container-section img {
    flex: 1 1 50%;
    width: 50%;
    max-width: unset;
  }
  section .container-section .text-content {
    flex: 1 1 50%;
    width: 50%;
    max-width: unset;
    align-self: center;
  }
  section .small {
    margin-bottom: 0.25rem;
    margin-top: 0.75rem;
  }
  section .section-centered {
    max-width: 94em;
    width: 100%;
    text-align: center;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
  }
  section .container-section.reverse {
    flex-direction: row-reverse;
  }
  section.hero-page .hero-img {
    min-height: 36em;
  }
  section.hero-page .hero-img img {
    max-width: 38em;
  }
  section.hero-page .hero-text {
    text-align: center;
  }
  section.squared .container-section img {
    opacity: 0;
  }
}/*# sourceMappingURL=master.css.map */