/*
Theme Name: Studio 33
Author: Studio Zaiste
Version: 1.0
*/
@font-face {
  font-family: "Barlow";
  src: local("Barlow Light"), local("Barlow-Light"), url(fonts/Barlow-Light.ttf) format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: local("Barlow LightItalic"), local("Barlow-LightItalic"), url(fonts/Barlow-LightItalic.ttf) format("truetype");
  font-style: italic;
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: local("Barlow Regular"), local("Barlow-Regular"), url(fonts/Barlow-Regular.ttf) format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: local("Barlow Italic"), local("Barlow-Italic"), url(fonts/Barlow-Italic.ttf) format("truetype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: local("Barlow Bold"), local("Barlow-Bold"), url(fonts/Barlow-Bold.ttf) format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: local("Barlow BoldItalic"), local("Barlow-BoldItalic"), url(fonts/Barlow-BoldItalic.ttf) format("truetype");
  font-style: italic;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Prata";
  src: local("Prata Regular"), local("Prata-Regular"), url(fonts/Prata-Regular.ttf) format("truetype");
  font-style: italic;
  font-weight: 700;
  font-display: swap;
}
:root {
  --color-white-1: #ffffff;
  --color-black-1: #000000;
  --color-black-2: #0C1A2C;
  --color-blue-1: #6291FF;
  --color-turquoise-1: #74AFA9;
  --color-shades-1: #707070;
  --color-shades-2: #E8EAC9;
  --color-shades-3: #F0EFEA;
  --color-shades-4: #F7F6F1;
  --font-size-h1: 3.4rem;
  --font-size-h2: 3.4rem;
  --font-size-h3: 2.4rem;
  --font-size-h4: 2.2rem;
  --font-size-h5: 1.6rem;
  --font-size-text-xs: 1.2rem;
  --font-size-text-m: 1.3rem;
  --font-size-text-l: 1.4rem;
  --font-size-text-xl: 1.8rem;
  --font-size-text-xxl: 2.0rem;
  --font-size-text-xxxl: 2.2rem;
}
@media (min-width: 768px) {
  :root {
    --font-size-h1: 4.4rem;
    --font-size-h2: 4.4rem;
    --font-size-h3: 2.6rem;
    --font-size-h4: 2.2rem;
    --font-size-h5: 1.8rem;
    --font-size-text-xs: 1.2rem;
    --font-size-text-m: 1.4rem;
    --font-size-text-l: 1.5rem;
    --font-size-text-xl: 1.8rem;
    --font-size-text-xxl: 1.8rem;
    --font-size-text-xxxl: 3.2rem;
  }
}
@media (min-width: 1920px) {
  :root {
    --font-size-h1: 5.4rem;
    --font-size-h2: 5.4rem;
    --font-size-h3: 2.8rem;
    --font-size-h4: 2.4rem;
    --font-size-h5: 2.1rem;
    --font-size-text-xs: 1.2rem;
    --font-size-text-m: 1.4rem;
    --font-size-text-l: 1.6rem;
    --font-size-text-xl: 2rem;
    --font-size-text-xxl: 2.4rem;
    --font-size-text-xxxl: 4.2rem;
  }
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul, ol {
  list-style: none;
}

html, body {
  min-height: 100vh;
  scroll-behavior: smooth;
  margin: 0;
}

.overflow {
  overflow: hidden;
  height: 100vh;
}

img {
  width: 100%;
  height: auto;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  font-size: 0.625rem;
}
@media (min-width: 1920px) {
  html {
    font-size: 0.695rem;
  }
}

body {
  margin: 0;
  padding: 0;
  font-family: "Barlow", "Arial", sans-serif;
  font-weight: 400;
  font-stretch: normal;
  font-size: 1.4rem;
}

input {
  font-family: "Barlow", "Arial", sans-serif;
  font-weight: 400;
  font-stretch: normal;
}

.row {
  margin: 0 1.5rem;
  max-width: 164rem;
}
@media (min-width: 768px) {
  .row {
    margin: 0 auto;
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (min-width: 992px) {
  .row {
    padding-left: 10rem;
    padding-right: 10rem;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
  }
}

section, #go {
  scroll-margin-top: 10rem;
}

a {
  color: var(--color-blue-1);
  text-decoration: underline;
}

/* Headings */
h1 {
  font-size: var(--font-size-h1);
  font-weight: 300;
}

h2 {
  font-size: var(--font-size-h1);
  font-weight: 400;
}

h3 {
  font-size: var(--font-size-h3);
}

h4 {
  font-size: var(--font-size-h4);
}

h5 {
  font-size: var(--font-size-h5);
}

.studio {
  font-family: "Prata", "Times", sans-serif;
  font-weight: 400;
  font-stretch: normal;
  font-weight: 400;
}

/* header */
.header {
  transition: all ease 0.35s;
  padding: 3rem 0;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-white-1);
}
.header .burger {
  top: 1.5rem;
  right: 1.5rem;
}
.header.on-scroll {
  padding: 1rem 0;
}
.header.on-scroll .burger {
  top: 0;
  right: 1.5rem;
}
.header .navigation {
  overflow: hidden;
}
@media (min-width: 576px) {
  .header .navigation {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
}
@media (min-width: 992px) {
  .header .navigation {
    grid-column-start: 1;
    grid-column-end: 13;
  }
}
.header .navigation--brand {
  font-size: var(--font-size-text-xl);
  font-family: "Prata", "Times", sans-serif;
  font-weight: 400;
  font-stretch: normal;
}
.header .navigation a {
  color: inherit;
  text-decoration: none;
}
.header .navigation ul {
  display: flex;
  transition: all ease 0.5s;
}
@media (max-width: 768px) {
  .header .navigation ul {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 0;
    overflow: hidden;
    height: 100%;
    background: var(--color-white-1);
    flex-direction: column;
    flex-wrap: wrap;
    padding-top: 10rem;
    padding-bottom: 10rem;
    box-shadow: 0 0 3rem rgba(0, 0, 0, 0.2);
  }
}
@media (min-width: 576px) {
  .header .navigation ul {
    margin-left: auto;
  }
}
.header .navigation ul li {
  margin: 1rem;
}
.header .navigation ul li a {
  font-size: var(--font-size-text-l);
}
.header .navigation.active ul {
  width: 70%;
  padding-left: 3rem;
  padding-right: 3rem;
}

.burger {
  width: 4.2rem;
  height: 4.2rem;
  border: 0 none;
  background: transparent;
  position: fixed;
  z-index: 300;
  cursor: pointer;
  transition: all ease 0.3s;
}
.burger::after {
  position: absolute;
  top: 2rem;
  right: 0;
  content: " ";
  width: 3.8rem;
  height: 0;
  border-bottom: solid 0.2rem var(--color-black-1);
  border-radius: 0.1rem;
  transition: all ease 0.3s;
}
.burger::before {
  position: absolute;
  top: 2.8rem;
  right: 0;
  content: " ";
  width: 2.8rem;
  height: 0;
  border-bottom: solid 0.2rem var(--color-black-1);
  border-radius: 0.1rem;
  transition: all ease 0.3s;
}
.burger.close::before {
  transform: rotate(-45deg) translateY(-1rem);
  left: 1.5rem;
  bottom: 2rem;
  width: 3rem;
  border-bottom: solid 0.2rem var(--color-black-1);
}
.burger.close::after {
  transform: rotate(45deg) translateY(-1rem);
  left: 0;
  top: 2.8rem;
  width: 3rem;
  border-bottom: solid 0.2rem var(--color-black-1);
}
@media (min-width: 768px) {
  .burger {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

.swiper-container {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
.swiper-container .swiper-button-next, .swiper-container .swiper-button-prev {
  width: 5rem;
  height: 5rem;
  position: absolute;
  top: calc(50% - 2.5rem);
  cursor: pointer;
  border-top: solid 0.2rem var(--color-white-1);
  border-left: solid 0.2rem var(--color-white-1);
  z-index: 100;
}
.swiper-container .swiper-button-next {
  right: 10%;
  transform: rotate(135deg);
}
@media (min-width: 768px) {
  .swiper-container .swiper-button-next {
    right: 30%;
  }
}
.swiper-container .swiper-button-prev {
  left: 10%;
  transform: rotate(-45deg);
}
@media (min-width: 768px) {
  .swiper-container .swiper-button-prev {
    left: 30%;
  }
}
.swiper-container .swiper-wrapper {
  padding-top: 3rem;
  padding-bottom: 3rem;
  position: relative;
  width: 100%;
  height: auto;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex-direction: row;
  align-items: stretch;
  transition-property: transform;
  box-sizing: content-box;
}
.swiper-container .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: auto;
  position: relative;
  transition-property: transform;
  display: flex;
}
.swiper-container .swiper-slide p {
  align-self: flex-end;
}
.swiper-container .swiper-pagination {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.swiper-container .swiper-pagination .swiper-pagination-bullet {
  margin: 0.25rem;
  display: flex;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  cursor: pointer;
  background: var(--color-shades-3);
}
.swiper-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--color-blue-1);
}

body {
  padding-top: 5rem;
}
@media (min-width: 992px) {
  body {
    padding-top: 10rem;
  }
}

.homepage .hero {
  position: relative;
}
@media (min-width: 992px) {
  .homepage .hero--text {
    grid-column-start: 3;
    grid-column-end: 11;
    overflow: hidden;
  }
}
.homepage .hero--text h1 {
  margin: 6rem 0;
  text-align: center;
  line-height: 120%;
}
.homepage .hero--text h1 strong {
  font-weight: 700;
  color: var(--color-blue-1);
}
.homepage .hero--image {
  position: relative;
}
@media (min-width: 992px) {
  .homepage .hero--image {
    grid-column-start: 1;
    grid-column-end: 13;
  }
}
.homepage .hero--image img {
  display: block;
}
.homepage .hero--image .ar-d {
  position: absolute;
  z-index: 3;
  right: 3rem;
  top: 0;
  transform: translateY(-50%);
}
.homepage .hero::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10%;
  z-index: -1;
  content: "";
  background-color: var(--color-shades-4);
}
.homepage .lead {
  padding: 5rem 5rem 5rem 5rem;
  background-color: var(--color-shades-4);
}
@media (min-width: 992px) {
  .homepage .lead {
    padding: 10rem 0;
  }
}
@media (min-width: 1200px) {
  .homepage .lead {
    padding: 15rem 0;
  }
}
.homepage .lead--text {
  font-size: var(--font-size-text-xxl);
  font-weight: 300;
  overflow: hidden;
}
@media (min-width: 992px) {
  .homepage .lead--text {
    grid-column-start: 2;
    grid-column-end: 9;
  }
}
.homepage .lead--text p {
  margin: 2rem 0;
  line-height: 140%;
}
.homepage .offer {
  padding-bottom: 5rem;
  background-color: var(--color-shades-4);
}
.homepage .offer .offer-tabs {
  position: relative;
}
@media (min-width: 992px) {
  .homepage .offer .offer-tabs .offer--elements-e--desc--file {
    position: absolute;
    top: 1.8rem;
    right: 10rem;
  }
}
.homepage .offer .offer-tabs .btn {
  display: inline-flex;
  margin: 2rem 0;
  padding: 1.5rem 5rem 1.5rem 2rem;
  color: var(--color-white-1);
  text-decoration: none;
  background-color: var(--color-blue-1);
  background-image: url("images/icon-ar-r.svg");
  background-repeat: no-repeat;
  background-position: right 2rem center;
  background-size: 2rem;
  border-radius: 5rem;
  transition: all ease 0.3s;
}
.homepage .offer .offer-tabs .btn:hover {
  background-position: right 1rem center;
}
.homepage .offer--title {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
}
.homepage .offer--title h4 {
  width: 100%;
}
.homepage .offer--title h2 {
  margin-right: 2rem;
}
@media (min-width: 992px) {
  .homepage .offer--title {
    grid-column-start: 1;
    grid-column-end: 13;
  }
}
.homepage .offer--title--nav {
  padding: 0 0 4rem 0;
  width: 100%;
  display: flex;
}
.homepage .offer .offer-nav {
  margin: 0 0 2rem 0;
  display: none;
}
@media (min-width: 992px) {
  .homepage .offer .offer-nav {
    display: block;
  }
}
.homepage .offer .offer-nav h2 {
  position: relative;
  color: var(--color-shades-1);
  font-weight: 700;
  cursor: pointer;
}
.homepage .offer .offer-nav h2:hover {
  color: var(--color-black-1);
}
.homepage .offer .offer-nav h2::after {
  transition: all ease 0.3s;
  content: "";
  position: absolute;
  border-bottom: solid 0.2rem var(--color-black-1);
  bottom: -0.2rem;
  left: 0;
  width: 0;
}
.homepage .offer .offer-nav h2.active {
  color: var(--color-black-1);
}
.homepage .offer .offer-nav h2.active::after {
  right: 0;
  width: 100%;
  border-bottom: solid 0.2rem var(--color-black-1);
}
@media (min-width: 992px) {
  .homepage .offer--elements {
    grid-column-start: 1;
    grid-column-end: 13;
  }
}
.homepage .offer--elements--e {
  transition: all ease 1s;
  margin-bottom: 5rem;
}
@media (min-width: 992px) {
  .homepage .offer--elements--e {
    margin-bottom: unset;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .homepage .offer--elements--e {
    opacity: 0;
    pointer-events: none;
    height: 0;
    overflow: hidden;
  }
}
@media (min-width: 992px) {
  .homepage .offer--elements--e.active {
    opacity: 1;
    pointer-events: all;
    height: auto;
    overflow: unset;
  }
}
.homepage .offer--elements--e--image {
  position: relative;
}
.homepage .offer--elements--e--image img {
  position: sticky;
  top: 3rem;
  display: block;
}
@media (min-width: 992px) {
  .homepage .offer--elements--e--desc {
    grid-column-start: 2;
    grid-column-end: 4;
    padding-left: 7.25rem;
  }
}
.homepage .offer--elements--e--desc h2 {
  margin: 2rem 0;
  font-weight: 700;
}
@media (min-width: 992px) {
  .homepage .offer--elements--e--desc h2 {
    display: none;
  }
}
.homepage .offer--elements--e--desc .item {
  padding: 1.5rem 0;
  border-bottom: solid 0.1rem var(--color-shades-1);
  width: 100%;
}
@media (min-width: 768px) {
  .homepage .offer--elements--e--desc .item:first-child {
    padding-top: 0;
  }
}
.homepage .offer--elements--e--desc .item:last-child {
  border-bottom: 0;
}
@media (min-width: 992px) {
  .homepage .offer--elements--e--desc .item {
    display: flex;
    align-items: flex-start;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .homepage .offer--elements--e--desc .item {
    padding: 2rem 0;
  }
}
.homepage .offer--elements--e--desc span {
  display: block;
  font-size: var(--font-size-text-xxl);
  min-width: 60%;
  padding-right: 2rem;
}
@media (min-width: 992px) {
  .homepage .offer--elements--e--desc span {
    display: unset;
    align-self: flex-start;
  }
}
.homepage .offer--elements--e--desc small {
  padding-top: 1rem;
  display: block;
  font-size: var(--font-size-text-l);
}
@media (min-width: 992px) {
  .homepage .offer--elements--e--desc small {
    display: unset;
    padding-top: 0;
  }
}
@media (min-width: 992px) {
  .homepage .portfolio {
    padding: 10rem 0;
  }
}
.homepage .portfolio::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  max-height: 46rem;
  background-color: var(--color-shades-4);
}
.homepage .portfolio--header {
  padding-bottom: 5rem;
}
@media (min-width: 992px) {
  .homepage .portfolio--header {
    padding-bottom: 10rem;
  }
}

.ar-d {
  display: flex;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: var(--color-blue-1);
  background-image: url("images/icon-ar-d.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30%;
}
@media (min-width: 992px) {
  .ar-d {
    width: 8rem;
    height: 8rem;
  }
}
@media (min-width: 1200px) {
  .ar-d {
    width: 10rem;
    height: 10rem;
  }
}

.portfolio {
  padding: 5rem 0;
  position: relative;
  isolation: isolate;
}
.portfolio--header {
  padding-bottom: 5rem;
}
.portfolio--header h2 {
  font-weight: 700;
}
@media (min-width: 992px) {
  .portfolio--header {
    grid-column-start: 1;
    grid-column-end: 13;
    display: flex;
    flex-direction: row;
  }
}
.portfolio--header p {
  padding: 1rem 0 0 0;
  font-weight: 300;
  line-height: 160%;
  font-size: var(--font-size-text-l);
  max-width: 80%;
}
@media (min-width: 992px) {
  .portfolio--header p {
    max-width: 31.33%;
    margin-left: auto;
  }
}
@media (min-width: 992px) {
  .portfolio--elements {
    grid-column-start: 1;
    grid-column-end: 13;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    display: grid;
    align-items: stretch;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}
.portfolio--elements--e {
  padding-bottom: 5rem;
  font-weight: 400;
  line-height: 160%;
  font-size: var(--font-size-text-l);
}
.portfolio--elements--e a {
  transition: all ease 0.3s;
  display: block;
  overflow: hidden;
  color: inherit;
  text-decoration: inherit;
}
.portfolio--elements--e--image {
  aspect-ratio: 4/2.95;
  overflow: hidden;
}
.portfolio--elements--e--image img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.portfolio--elements--e p {
  padding: 1rem 0;
}
.portfolio--elements--e strong {
  display: block;
}

.references h2 {
  margin-bottom: 2rem;
  font-weight: 700;
}
@media (min-width: 992px) {
  .references--elements {
    grid-column-start: 1;
    grid-column-end: 13;
  }
}
.references--elements--e {
  padding: 5rem 4rem 4rem 4rem;
  border: solid 0.1rem var(--color-shades-2);
  position: relative;
}
.references--elements--e::before {
  content: "";
  width: 8.5rem;
  height: 5rem;
  background-image: url("images/icon-q.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 4rem;
  top: -1.5rem;
}
.references--elements--e p {
  font-size: var(--font-size-text-l);
  line-height: 160%;
  max-width: 80%;
}
.references--elements--e p strong {
  padding-top: 0.5rem;
  display: block;
}

.contact-form span {
  display: block;
  box-sizing: border-box;
}
.contact-form input[type=text], .contact-form input[type=email], .contact-form input[type=tel], .contact-form textarea {
  font-family: "Barlow", "Arial", sans-serif;
  font-weight: 400;
  font-stretch: normal;
  padding: 0.75rem 0;
  margin: 0.5rem 0;
  font-size: var(--font-size-text-xl);
  font-weight: 400;
  width: 100%;
  border-top: 0;
  border-right: 0;
  border-bottom: solid 0.1rem var(--color-shades-1);
  border-left: 0;
  background-color: transparent;
  outline: none;
}
.contact-form input[type=text]:focus, .contact-form input[type=email]:focus, .contact-form input[type=tel]:focus, .contact-form textarea:focus {
  border-bottom-color: var(--color-turquoise-1);
  background-color: var(--color-white);
}
.contact-form input[type=text].wpcf7-not-valid, .contact-form input[type=email].wpcf7-not-valid, .contact-form input[type=tel].wpcf7-not-valid, .contact-form textarea.wpcf7-not-valid {
  border-bottom-color: red;
}
.contact-form textarea {
  transition: all ease 0.3s;
  height: 4.5rem;
  resize: vertical;
  min-height: 4.5rem;
  max-height: 15rem;
}
.contact-form textarea:focus, .contact-form textarea:active {
  height: 12rem;
}
.contact-form--cta {
  margin: 2rem 0 0 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.contact-form--cta .wpcf7-submit {
  margin-left: auto;
}
.contact-form label {
  margin-right: 3rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.contact-form label input {
  margin-right: 1rem;
}
.contact-form input[type=submit], .contact-form .wpcf7-submit {
  transition: all ease 0.3s;
  padding: 1.2rem 4.5rem 1.2rem 2rem;
  font-size: var(--font-size-text-xl);
  font-weight: 400;
  color: var(--color-white-1);
  background-color: var(--color-blue-1);
  background-image: url("images/icon-ar-r.svg");
  background-repeat: no-repeat;
  background-position: right 1.8rem center;
  background-size: 2rem;
  border-radius: 5rem;
  border: 0 none;
  cursor: pointer;
}
.contact-form input[type=submit]:hover, .contact-form input[type=submit]:focus, .contact-form input[type=submit]:active, .contact-form .wpcf7-submit:hover, .contact-form .wpcf7-submit:focus, .contact-form .wpcf7-submit:active {
  background-position: right 1.2rem center;
}
.contact-form .wpcf7-not-valid-tip {
  display: none;
}

.screen-reader-response {
  display: none;
}

.footer {
  overflow: hidden;
  position: relative;
  z-index: 50;
  isolation: isolate;
  margin: 7rem 0 0 0;
  padding: 0 0 5rem 0;
  background-color: var(--color-shades-4);
}
@media (min-width: 992px) {
  .footer {
    padding: 5rem 0;
  }
}
.footer--cover {
  margin-bottom: 4rem;
}
@media (min-width: 992px) {
  .footer--cover {
    margin-bottom: unset;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 50%;
  }
  .footer--cover img {
    display: flex;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top center;
       object-position: top center;
  }
}
@media (min-width: 992px) {
  .footer--info {
    grid-column-start: 2;
    grid-column-end: 6;
  }
}
.footer--person {
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.footer--person--img {
  margin-right: 1rem;
  overflow: hidden;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer--person--img img {
  width: 9rem;
  height: 9rem;
  display: block;
}
.footer--person--desc {
  margin-top: -0.5rem;
  font-size: var(--font-size-text-l);
  line-height: 160%;
}
.footer--person--desc strong {
  font-size: var(--font-size-text-xxxl);
  line-height: 100%;
  display: block;
}
.footer--desc {
  margin: 2rem 0 4rem 0;
  font-size: var(--font-size-text-l);
  line-height: 160%;
}
.footer--contact {
  margin: 4rem 0 2rem 0;
  font-size: var(--font-size-text-m);
  line-height: 140%;
}
.footer--contact--pp {
  margin: 1rem 0;
}
.footer--contact--pp a {
  color: inherit;
}

.pages--static {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media (min-width: 992px) {
  .pages--header {
    grid-column-start: 3;
    grid-column-end: 11;
  }
}
.pages--header h1 {
  margin: 3rem 0 2rem 0;
  text-align: center;
}
.pages--header h1 strong {
  font-weight: 700;
}
.pages--hero {
  margin: 3rem 0;
  position: relative;
}
@media (min-width: 992px) {
  .pages--hero {
    grid-column-start: 2;
    grid-column-end: 12;
  }
}
.pages--hero .ar-d {
  position: absolute;
  z-index: 3;
  right: 3rem;
  top: 0;
  transform: translateY(-50%);
}
@media (min-width: 992px) {
  .pages p, .pages h1, .pages h2, .pages h3, .pages h4, .pages h5, .pages ol, .pages ul, .pages blockquote {
    grid-column-start: 3;
    grid-column-end: 11;
  }
}
.pages h2, .pages h3, .pages h4, .pages h5 {
  margin: 1rem 0 0.5rem 0;
}
.pages h1 strong {
  display: block;
  text-align: center;
}
.pages h2 {
  font-size: var(--font-size-h2);
}
.pages h3 {
  font-weight: 400;
  font-size: var(--font-size-h3);
}
.pages h4 {
  font-size: var(--font-size-h4);
}
.pages h5 {
  font-size: var(--font-size-h5);
}
.pages p {
  margin: 2rem 0;
  font-size: var(--font-size-text-l);
  line-height: 1.8;
}
.pages ul {
  list-style: disc;
}
.pages ol {
  list-style: decimal;
}
.pages ul, .pages ol {
  margin: 0.5rem 0 2rem 0;
}
.pages ul li, .pages ol li {
  margin: 0.5rem 0 0.5rem 2rem;
}
.pages cite {
  margin: 1.5rem 0;
  display: block;
  padding: 1.5rem;
  background: var(--color-shades-4);
}
.pages blockquote {
  margin: 2rem 0;
  padding: 1rem 1rem 1rem 3rem;
  border-left: solid 0.5rem var(--color-turquoise-1);
}
.pages blockquote p, .pages blockquote cite {
  margin: 0;
  font-size: var(--font-size-text-xl);
}
.pages .wp-block-columns, .pages figure.wp-block-image {
  margin: 1.5rem 0;
}
@media (min-width: 992px) {
  .pages .wp-block-columns, .pages figure.wp-block-image {
    grid-column-start: 2;
    grid-column-end: 12;
  }
}
.pages .wp-block-columns .wp-block-image {
  margin: 1.5rem 0;
}

.pages-form {
  margin: 5rem 0 0 0;
  padding: 3rem;
  background: var(--color-shades-4);
  border-bottom: solid 0.5rem var(--color-turquoise-1);
}
@media (min-width: 992px) {
  .pages-form {
    grid-column-start: 5;
    grid-column-end: 9;
  }
}
.pages-form h3 {
  font-weight: 700;
  margin-bottom: 4rem;
}/*# sourceMappingURL=style.css.map */