@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300;400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");
.styleguide-index {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 25px;
  margin: 25px;
}
.styleguide-index__item {
  padding: 25px;
  background-color: #f0f0f0;
}
.styleguide-index__item a {
  border-bottom: 1px dotted #000;
  color: #000;
}
.styleguide-index__item a:hover {
  color: #666;
  border-color: #666;
}
.styleguide-index__title {
  font-size: 20px;
  text-transform: lowercase;
  margin-bottom: 25px;
}

.styleguide-component {
  margin: 25px;
}
.styleguide-component__item {
  color: #000;
  font-size: 20px;
  margin-bottom: 25px;
}
.styleguide-component__grid {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr;
  grid-column-gap: 25px;
  grid-row-gap: 25px;
}
.styleguide-component__modifier {
  margin-bottom: 0.6666666667rem;
}
.styleguide-component__render {
  display: flex;
  padding: 25px;
  border: 2px dashed #e0e0e0;
  margin-bottom: 25px;
}

.styleguide-nav {
  background-color: #e0e0e0;
  padding: 12.5px 25px;
}
.styleguide-nav a {
  border-bottom: 1px dotted #000;
  margin: 0 0.5rem;
  color: #000;
}
.styleguide-nav a:hover {
  color: #666;
  border-color: #666;
}

.styleguide-breadcrumbs {
  display: flex;
  justify-content: flex-start;
  font-size: 18px;
  background-color: #f0f0f0;
  padding: 12.5px;
}
.styleguide-breadcrumbs a,
.styleguide-breadcrumbs span {
  margin: 0 12.5px;
  color: #000;
}
.styleguide-breadcrumbs a {
  border-bottom: 1px dotted #000;
}
.styleguide-breadcrumbs a:hover {
  color: #666;
  border-color: #666;
}

/* Calculate font size  */
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
html {
  font-size: 62.5%;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: inherit;
  font-style: inherit;
}

a {
  text-decoration: none;
  font-weight: inherit;
  color: inherit;
}
a img {
  border: 0;
}

li {
  list-style: none;
}

fieldset {
  border: 0;
}

button {
  border: 0;
  text-align: left;
  background: transparent;
}

*:focus {
  outline: none;
}

button, input, textarea {
  font: inherit;
}

html {
  overflow-y: scroll;
  font-size: 90%;
}
@media screen and (min-width: 750px) {
  html {
    font-size: 75%;
  }
}
@media screen and (min-width: 1024px) {
  html {
    font-size: 80%;
  }
}
@media screen and (min-width: 1150px) {
  html {
    font-size: 85%;
  }
}
@media screen and (min-width: 1280px) {
  html {
    font-size: 90%;
  }
}
@media screen and (min-width: 1375px) {
  html {
    font-size: 95%;
  }
}
@media screen and (min-width: 1600px) {
  html {
    font-size: 100%;
  }
}
@media screen and (min-width: 1750px) {
  html {
    font-size: 105%;
  }
}
@media screen and (min-width: 2150px) {
  html {
    font-size: 120%;
  }
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #1B2736;
  background-color: #FFFDF7;
}

::-webkit-scrollbar {
  width: 0.6666666667rem;
  background-color: #FFFDF7;
}

::-webkit-scrollbar-thumb {
  background-color: #1B2736;
}

::selection {
  background-color: #1B2736;
  color: #ebebeb;
}

.mobile-menu {
  background-color: #1B2736;
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  transform: translateX(-105%);
  transition: transform 300ms ease-in-out;
}
body.open-menu .mobile-menu {
  transform: translateX(0);
}
.mobile-menu__nav-item {
  width: 100%;
  text-align: center;
  padding: 1rem 2rem;
}
.mobile-menu__nav-item:hover, .mobile-menu__nav-item--active {
  background-color: #FFFDF7;
  color: #1B2736;
}
.mobile-menu__wrapper {
  padding: 8rem 2rem;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: #FFFDF7;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.service {
  text-transform: uppercase;
  font-size: clamp(1rem, 0.6923076923rem + 1.5384615385vw, 1.5rem);
}
.service--variant-0 {
  color: #D96F58;
}

.service--variant-1 {
  color: #D493DF;
}

.service--variant-2 {
  color: #4D7CA2;
}

.service--variant-3 {
  color: #E5A559;
}

.service--variant-4 {
  color: #508a56;
}

.address {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.address--item {
  display: flex;
  gap: 0.8rem;
}

.cookie-notice {
  position: fixed;
  z-index: 9999;
  background-color: #fff;
  padding: 2rem;
  bottom: 0;
  left: 0;
  right: 0;
}
@media screen and (min-width: 1024px) {
  .cookie-notice {
    left: unset;
    bottom: 2rem;
    right: 2rem;
  }
}
.cookie-notice__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}
.cookie-notice__wrapper > * {
  margin-bottom: 2rem;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .cookie-notice__wrapper > * {
    text-align: left;
  }
}
.cookie-notice__wrapper > *:last-child {
  margin-bottom: unset;
}
.cookie-notice__footer {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 650px) {
  .cookie-notice__footer {
    gap: 2rem;
    flex-direction: row;
    justify-content: center;
  }
}
@media screen and (min-width: 1024px) {
  .cookie-notice__footer {
    justify-content: flex-start;
  }
}
.cookie-notice__link {
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
}
.cookie-notice__link:after {
  content: "";
  display: inline-block;
  background-image: url("data:image/svg+xml;utf8,<svg width='24' xmlns='http://www.w3.org/2000/svg' height='24' fill='none' viewBox='0 0 24 24'><path stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M9.25 4.75H6.75C5.64543 4.75 4.75 5.64543 4.75 6.75V17.25C4.75 18.3546 5.64543 19.25 6.75 19.25H17.25C18.3546 19.25 19.25 18.3546 19.25 17.25V14.75'/><path stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M19.25 9.25V4.75H14.75'/><path stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M19 5L11.75 12.25'/></svg>");
  background-size: cover;
  width: 16px;
  height: 16px;
  margin-left: 0.25em;
}
.cookie-notice__button--essential, .cookie-notice__button--agree {
  text-align: center;
  cursor: pointer;
  border: 1px solid green;
  color: green;
  transform: scale(1);
  transition: transform 300ms ease-in-out;
  padding: 0.6666666667rem 1rem;
}
.cookie-notice__button--essential:hover, .cookie-notice__button--agree:hover {
  transform: scale(1.03);
}
.cookie-notice__button--agree {
  background-color: green;
  color: white;
}

.checkbox {
  /*
  	Config
   */
  position: relative;
  padding-left: 2rem;
  touch-callout: none;
  user-select: none;
}
.checkbox__field {
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  box-sizing: border-box;
  width: 1rem;
  height: 1rem;
  transform: translateY(-50%);
  opacity: 0;
}
.checkbox__label:before, .checkbox__label:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  box-sizing: border-box;
  width: 1rem;
  height: 1rem;
  transform: translateY(-50%);
}
.checkbox__label:before {
  border: 1px solid #ebebeb;
  background-color: #FFFDF7;
  vertical-align: middle;
}
.checkbox__label:after {
  transform: scale(0.1) translateY(-50%);
  background-color: #ebebeb;
  transition: background-color 0.1s, transform 0.15s;
}
.checkbox__label a {
  border-bottom: 1px solid #ebebeb;
}
.checkbox input:checked + label:after {
  transform: scale(1) translateY(-50%);
}

.button {
  /*
  	Config
   */
  display: inline-block;
  padding: 0.4em 2.6em;
  white-space: nowrap;
  cursor: pointer;
  color: #1B2736;
  border: 2px solid #1B2736;
  border-radius: 50px;
  position: relative;
}
.button:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5px;
  width: 30px;
  height: 30px;
  background-color: #1B2736;
  border-radius: 50%;
  transition: left 300ms ease-in-out;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='16' viewBox='0 0 24 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 7C0.447715 7 0 7.44772 0 8C0 8.55228 0.447715 9 1 9L1 7ZM23.7071 8.70711C24.0976 8.31658 24.0976 7.68342 23.7071 7.29289L17.3431 0.928932C16.9526 0.538408 16.3195 0.538408 15.9289 0.928932C15.5384 1.31946 15.5384 1.95262 15.9289 2.34315L21.5858 8L15.9289 13.6569C15.5384 14.0474 15.5384 14.6805 15.9289 15.0711C16.3195 15.4616 16.9526 15.4616 17.3431 15.0711L23.7071 8.70711ZM1 9L23 9V7L1 7L1 9Z' fill='%23F4F7FB'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
}
.button--alt {
  border-color: #FFFDF7;
  color: #FFFDF7;
}
.button--alt:after {
  background-color: #FFFDF7;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20.68 12.69'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %231b2736; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='m.86,5.48c-.48,0-.86.39-.86.86s.39.86.86.86v-1.72Zm19.57,1.47c.34-.34.34-.88,0-1.22L14.95.25c-.34-.34-.88-.34-1.22,0-.34.34-.34.88,0,1.22l4.87,4.87-4.87,4.87c-.34.34-.34.88,0,1.22.34.34.88.34,1.22,0l5.48-5.48ZM.86,7.21h18.96v-1.72H.86v1.72Z'/%3E%3C/svg%3E");
}

.button:hover:after {
  left: calc(100% - 5px - 30px);
}

.company-name {
  /*
  	Config
   */
  color: #ebebeb;
}

.field {
  /*
  	Config
   */
  display: block;
  width: 100%;
  padding: 0.5714285714rem;
  padding-left: 1rem;
  border: 0;
  border-radius: 0;
  border: 1px solid #1B2736;
  color: #1B2736;
  background-color: #FFFDF7;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
}
.field::-ms-expand {
  display: none;
}
.field::placeholder {
  color: #1B2736;
}
.field:active, .field:focus {
  border-color: #ebebeb;
}
.field--negative {
  border: none;
}

.hamburger {
  /*
  	Config
   */
  display: block;
  width: 2.5rem;
  padding: 1.1428571429rem 0;
  cursor: pointer;
  position: relative;
  z-index: 11;
}
@media screen and (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}
.hamburger__line {
  display: block;
  width: 100%;
  height: 2px;
  margin: 0.3333333333rem 0;
  opacity: 1;
  transition: opacity 0.75s;
  background-color: #1B2736;
  transition: background-color 300ms ease-in-out;
}
body.open-menu .hamburger__line {
  background-color: #FFFDF7;
}
.hamburger__top-line {
  margin-top: 0;
}
body.open-menu .hamburger__top-line {
  opacity: 0;
}
.hamburger__bottom-line {
  margin-bottom: 0;
}
body.open-menu .hamburger__bottom-line {
  opacity: 0;
}

.icon {
  /*
  	Config
   */
  display: block;
  width: 1.3333333333rem;
  height: 1.3333333333rem;
}
@media screen and (min-width: 650px) {
  .icon {
    width: 1.1428571429rem;
    height: 1.1428571429rem;
  }
}
.icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: #1B2736;
}
.icon--dim svg {
  fill: #ebebeb;
}

.icon-button {
  /*
  	Config
   */
  display: inline-block;
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 50%;
  border: 1px solid #1B2736;
}
.icon-button--dim {
  border-color: #ebebeb;
}

.label {
  /* for reference */
}

.logo {
  /*
  	Config
   */
  display: block;
  width: 8rem;
}
.logo svg {
  display: block;
  width: 100%;
  fill: #1B2736;
}

.photo {
  display: block;
  width: 100%;
  position: relative;
}
.photo img {
  display: block;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.photo:after {
  content: "";
  position: absolute;
  top: 15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background-color: #A3BFD6;
}
.photo--variant-0:after {
  background-color: rgba(217, 111, 88, 0.3);
}

.photo--variant-1:after {
  background-color: rgba(212, 147, 223, 0.3);
}

.photo--variant-2:after {
  background-color: rgba(77, 124, 162, 0.3);
}

.photo--variant-3:after {
  background-color: rgba(80, 138, 86, 0.3);
}

.photo--variant-4:after {
  background-color: rgba(229, 165, 89, 0.3);
}

.primary-nav-item {
  /*
  	Config
   */
  position: relative;
  display: inline-block;
  color: #1B2736;
}
.primary-nav-item--active {
  color: red;
}

.primary-nav-item--dim {
  color: #ebebeb;
}

.textarea {
  /*
  	Config
   */
  display: block;
  width: 100%;
  height: 100%;
  min-height: 7rem;
  padding: 0.5714285714rem;
  padding-left: 1rem;
  border: 0;
  border-radius: 0;
  border: 1px solid #1B2736;
  resize: none;
  color: #1B2736;
  background-color: #FFFDF7;
  transition: border-color 0.3s;
}
.textarea:active, .textarea:focus {
  border-color: #ebebeb;
}
.textarea::placeholder {
  color: #1B2736;
}

.title {
  /*
  	Config
   */
  display: block;
  font-family: "Noto Sans", sans-serif;
  font-size: clamp(2rem, 1.6923076923rem + 1.5384615385vw, 2.5rem);
  color: #1B2736;
}
.title--secondary {
  font-size: clamp(1.5rem, 1.1923076923rem + 1.5384615385vw, 2rem);
}

.title--dim {
  color: #ebebeb;
}

.tnt-credit {
  /*
  	Config
   */
  display: block;
  width: 4.5rem;
}
.tnt-credit svg {
  display: block;
  width: 100%;
  height: auto;
}
.tnt-credit svg > * {
  fill: #ebebeb;
}

.wysiwyg {
  /*
  	Config
   */
}
.wysiwyg p, .wysiwyg ul {
  margin-bottom: 2rem;
}
.wysiwyg p:last-child, .wysiwyg ul:last-child {
  margin-bottom: 0;
}
.wysiwyg ul, .wysiwyg ol {
  margin-left: 1.3333333333rem;
}
.wysiwyg ul li,
.wysiwyg ol li {
  padding-left: 0.6666666667rem;
  list-style: square;
}
.wysiwyg ul li:last-child,
.wysiwyg ol li:last-child {
  margin-bottom: 0;
}
.wysiwyg a {
  border-bottom: 1px solid #1B2736;
}
.wysiwyg strong {
  font-weight: bold;
}
.wysiwyg em {
  font-style: italic;
}

.address-item {
  /*
  	Config
   */
  color: #1B2736;
}
.address-item__link {
  display: inline-block;
  color: #ebebeb;
  border-bottom: 1px solid transparent;
}

.address-item-list {
  display: block;
  width: 100%;
}
.address-item-list__item {
  margin: 2rem 0;
}
.address-item-list__item:first-child {
  margin-top: 0;
}
.address-item-list__item:last-child {
  margin-bottom: 0;
}

.banner {
  /*
  	Config
   */
  display: flex;
  width: 100%;
  height: 30vh;
  min-height: 20rem;
  background-size: cover;
  background-position: center center;
}
@media screen and (min-width: 650px) {
  .banner {
    height: 30vh;
    min-height: 35rem;
  }
}

.breadcrumbs {
  /*
  	Config
   */
  display: flex;
  align-items: center;
  color: #1B2736;
}
.breadcrumbs__item {
  position: relative;
  display: block;
  padding-left: 1rem;
  margin-left: 1rem;
}
.breadcrumbs__item:nth-last-child(n+3), .breadcrumbs__item:nth-last-child(n+4) {
  display: none;
}
.breadcrumbs__item:first-child {
  display: block;
  padding-left: 0;
  margin-left: 0;
}
.breadcrumbs__item:first-child:after {
  display: none;
}
.breadcrumbs__item:after {
  content: "";
  position: absolute;
  top: 0.15em;
  left: 0;
  bottom: 0.15em;
  width: 1px;
  background-color: #1B2736;
}
@media screen and (min-width: 1024px) {
  .breadcrumbs__item:nth-last-child(n+3), .breadcrumbs__item:nth-last-child(n+4) {
    display: block;
  }
}

.button-group {
  display: flex;
  flex-wrap: wrap;
}
.button-group__item {
  display: flex;
  margin: 0 0.5rem;
}
.button-group__item:first-child {
  margin-left: 0;
}
.button-group__item:last-child {
  margin-right: 0;
}

.card {
  position: relative;
  display: block;
  width: 100%;
  cursor: pointer;
  padding: 1rem;
  border: 1px solid #1B2736;
}
.card__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.card__footer {
  margin-top: 0.5rem;
}
.card__photo {
  margin-bottom: 1rem;
}
.card-grid {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.card-grid__header {
  margin-bottom: 3rem;
}
.card-grid__main {
  display: grid;
  grid-gap: 2.5rem;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}
.card-grid__item {
  display: flex;
}
.card-grid__footer {
  margin-top: 2rem;
}

.card-list {
  width: 100%;
}
.card-list__item {
  margin: 2rem 0;
}
.card-list__item:first-child {
  margin-top: 0;
}
.card-list__item:last-child {
  margin-bottom: 0;
}

.content-block {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 2rem;
}
@media screen and (min-width: 650px) {
  .content-block {
    padding: 0;
  }
}
.content-block__column {
  width: 100%;
  margin-bottom: 3rem;
}
.content-block__column > * {
  margin: 4rem 0;
}
.content-block__column > *:first-child {
  margin-top: 0;
}
.content-block__column > *:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .content-block__column {
    margin-bottom: 0;
  }
}
.content-block__column-left {
  width: 50%;
  padding-right: 2rem;
}
.content-block__column-right {
  width: 50%;
  padding-left: 2rem;
}

.fieldset {
  display: block;
  width: 100%;
  color: #1B2736;
}
.fieldset__label {
  margin-bottom: 0.5rem;
}
.fieldset--required .fieldset__label > label {
  position: relative;
}
.fieldset--required .fieldset__label > label:after {
  content: "(*)";
  position: absolute;
  right: -1.3333333333rem;
}
.fieldset__input {
  /* for reference */
}

.fieldset-group {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.fieldset-group__item {
  display: flex;
  flex: 1 1 100%;
  margin-bottom: 2rem;
}
.fieldset-group__item:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 650px) {
  .fieldset-group__item {
    flex: 1 1 auto;
    margin: 0 1.3333333333rem;
  }
  .fieldset-group__item:first-child {
    margin-left: 0;
  }
  .fieldset-group__item:last-child {
    margin-right: 0;
  }
}

.form {
  display: block;
  width: 100%;
}
.form__header {
  margin-bottom: 2rem;
}
.form__content > * {
  margin-bottom: 2rem;
}
.form__content > *:last-child {
  margin-bottom: 0;
}
.form__footer {
  margin-top: 2rem;
}

.icon-group {
  display: flex;
  flex-wrap: wrap;
}
.icon-group__item {
  margin: 0 0.4rem;
}
.icon-group__item:first-child {
  margin-left: 0;
}
.icon-group__item:last-child {
  margin-right: 0;
}

.media-grid {
  display: block;
  width: 100%;
}
.media-grid__item {
  display: block;
  width: 100%;
  margin-bottom: 2rem;
}
.media-grid__item:last-child {
  margin-bottom: 0;
}

.message {
  /*
  	Config
   */
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0.5rem 0.8rem 2rem;
  background-color: #ebebeb;
}
.message__text a {
  color: #1B2736;
  border-bottom: 1px solid #1B2736;
}
.message__footer {
  margin-left: 2rem;
}

.pagination {
  /**
  	Config
   */
  display: flex;
  align-items: center;
}
.pagination__previous {
  margin-right: 1.3333333333rem;
  cursor: pointer;
}
.pagination__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.6rem;
  height: 1.6rem;
  margin: 0 0.2rem;
  transition: color 0.25s, background-color 0.2s;
}
.pagination__item:first-child {
  margin-left: 0;
}
.pagination__item:last-child {
  margin-right: 0;
}
.pagination__item > * {
  padding: 0.25rem;
}
.pagination__item:hover, .pagination__item:active {
  color: #FFFDF7;
  background-color: #ebebeb;
}
.pagination__active-item {
  color: #FFFDF7;
  background-color: #ebebeb;
}
.pagination__next {
  margin-left: 1.3333333333rem;
  cursor: pointer;
}

.primary-nav {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  gap: 2rem;
}
.primary-nav__item {
  cursor: pointer;
  position: relative;
}
.primary-nav__item:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background-color: #1B2736;
  transition: width 300ms ease-in-out;
}
.primary-nav__item--active:after, .primary-nav__item:hover:after {
  width: 100%;
}

.text-block {
  display: block;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.text-block__content {
  display: flex;
  flex-direction: column;
}
.text-block--with-background {
  background-color: #d6e1e7;
  padding: 2rem;
  border-radius: 20px;
  position: relative;
}
.text-block--with-background:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #A3BFD6;
  right: -15px;
  top: 15px;
  border-radius: 20px;
  z-index: -1;
}

.photo-text {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 15px;
}
.photo-text__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.photo-text__body a {
  width: max-content;
}
.photo-text__content {
  display: flex;
  gap: 4rem;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .photo-text__content {
    flex-direction: row;
  }
}
@media screen and (min-width: 1024px) {
  .photo-text__content--reverse {
    flex-direction: row-reverse;
  }
}
.photo-text__content > * {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .photo-text__content > * {
    width: 50%;
  }
}

.wrap {
  position: relative;
  flex-grow: 1;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}
@media screen and (min-width: 1024px) {
  .wrap {
    padding: 0 6.6666666667%;
  }
}
@media screen and (min-width: 1500px) {
  .wrap {
    padding: 0 10%;
  }
}
@media screen and (min-width: 650px) {
  .wrap--small {
    padding: 0 11.6666666667%;
  }
}
@media screen and (min-width: 1500px) {
  .wrap--small {
    padding: 0 17.5%;
  }
}

.block {
  padding-bottom: 2rem;
}

.content-section {
  display: block;
  width: 100%;
  margin-bottom: 4rem;
}
.content-section:first-child {
  margin-top: 2rem;
}
.content-section:last-child {
  margin-bottom: 0;
}
.content-section__header {
  margin-bottom: 2rem;
}
.content-section__content--columns {
  display: flex;
  gap: 2rem;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .content-section__content--columns {
    flex-direction: row;
  }
}
.content-section__content--columns > * {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .content-section__content--columns > * {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .content-section__content--reverse {
    flex-direction: row-reverse;
  }
}
.content-section__content > * {
  margin-bottom: 2rem;
}
.content-section__content > *:last-child {
  margin-bottom: 0;
}
.content-section__footer {
  margin-top: 2rem;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: #d6e1e7;
  margin-top: 2rem;
}
.footer__logo {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer__logo div.text {
  font-size: 0.8rem;
}
.footer__content {
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media screen and (min-width: 1024px) {
  .footer__content {
    flex-direction: row;
    align-items: flex-start;
  }
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .footer__nav {
    align-items: flex-start;
  }
}
.footer__nav-item {
  cursor: pointer;
  position: relative;
  width: max-content;
}
.footer__nav-item:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background-color: #1B2736;
  transition: width 300ms ease-in-out;
}
.footer__nav-item--active:after, .footer__nav-item:hover:after {
  width: 100%;
}
.footer__address .address {
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1024px) {
  .footer__address .address {
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.footer__credits {
  display: flex;
  gap: 2rem;
  width: 100%;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 1rem;
}

.header {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin: 2rem 0;
}
.header__logo {
  position: relative;
  z-index: 11;
}
.header__logo path {
  transition: fill 300ms ease-in-out;
}
body.open-menu .header__logo path {
  fill: #FFFDF7;
}
.header__nav, .header__cta {
  display: none;
}
@media screen and (min-width: 1024px) {
  .header__nav, .header__cta {
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */
