@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap');

:root {
  --primary-font: "Lato", sans-serif;
  --site-max-width: 1500px;
  --site-padding: 24px;
  --site-border-radius: 12px;
  --menu-background: rgba(255, 255, 255, 0.62);
  --accent-color: #EB6F1A;
  --accent-color-text: #FFFFFF;
  --button-color: #EB6F1A;
  --button-color-hover: #EB6F1A;
  --button-text-color: #FFFFFF;
  --background-color: #FFFFFF;
  --section-gray: #F0EFF1;
  --text-color: #000000;
  --gray-color: #5C5C5C;
  --footer-text-color: #FFFFFF;
  --footer-background: #000000;
  --color-1: #499cd2;
  --color-2: #7cbcb4;
  --color-3: #ebaa43;
  --color-4: #d16f33;
}

body {
  font-family: var(--primary-font);
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  color: var(--text-color);
  background-color: var(--background-color);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 900;
  text-transform: uppercase;
  margin: 0.9em 0 0.6em 0;
  line-height: 1.4em;
}

h1, h2 {
  font-size: 1.8em;
}

.h1-quote {
  font-size: 1.6em;
}

.h1-quote::before,
.h1-quote::after {
  content: "«";
  margin-right: 4px;
  font-size: 3.5em;
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  transform: translateY(-0.65em);
  height: 0;
  overflow: visible;
}

.h1-quote::after {
  content: "»";
  margin-left: 4px;
}

.h1-quote.color-1::after, .h1-quote.color-1::before { color: var(--color-1); }
.h1-quote.color-2::after, .h1-quote.color-2::before { color: var(--color-2); }
.h1-quote.color-3::after, .h1-quote.color-3::before { color: var(--color-3); }
.h1-quote.color-4::after, .h1-quote.color-4::before { color: var(--color-4); }

h3 {
  font-size: 1.35em;
}

.h3-underline {
  display: inline-block;
  border-bottom: 9px solid var(--button-color);
  padding-bottom: 4px;
  font-weight: 600;
}

.h3-underline.color-1 { border-color: var(--color-1); }
.h3-underline.color-2 { border-color: var(--color-2); }
.h3-underline.color-3 { border-color: var(--color-3); }
.h3-underline.color-4 { border-color: var(--color-4); }

.h3-underline + p {
  margin-top: 7px;
}

a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 100ms, border-color 200ms, background-color 300ms;
}

ul,
p {
  line-height: 1.85em;
  margin: 1.5em 0;
}

p.large {
  font-size: 1.45em;
  line-height: 1.3em;
}

.button-wrapper {
  clear: both;
  text-align: center;
  padding: 7% 0;
}

.button {
  display: inline-block;
  padding: 18px;
  background-color: var(--button-color);
  color: var(--button-text-color);
  font-weight: 600;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
}

.button:hover {
  color: var(--button-text-color);
  background-color: var(--button-color-hover)
}

.button-gray {
  background-color: #EFEFF0;
  color: var(--text-color);
  text-transform: none;
  font-weight: 400;
  font-size: 1.2em;
  padding: 9px 18px;
  line-height: 1.1em;
}

#header {
  position: relative;
  width: 100%;
  z-index: 9999;
  transition: all 200ms;
}

.page-cover #header {
  position: absolute;
}

#header .menu-toggle {
  display: none;
  position: absolute;
  z-index: 10001;
  right: var(--site-padding);
  bottom: 9px;
  width: 48px;
  height: 48px;
  background: url("../img/menu-icon.d332897221fd.png") no-repeat 50% 50%;
  cursor: pointer;
}

#header.is-active .menu-toggle {
  background-image: url("../img/menu-close-icon.6fabbff1396c.png");
}

.header-inner {
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: var(--site-padding);
}

.header-inner:after {
  content: "";
  display: block;
  clear: left;
}

.logo {
  float: left;
  margin-right: var(--site-padding);
}

.logo img {
  max-width: 100%;
  width: 185px;
  height: auto;
}

#mainnav {
  text-align: left;
  margin-top: 18px;
}

.mainmenu {
  float: left;
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1.15em;
}

.mainmenu li {
  display: block;
  text-align: left;
}

.mainmenu li span.link {
  cursor: default;
}

.mainmenu li.level-0 {
  position: relative;
  display: inline-block;
  margin: 0;
}

.mainmenu li .link {
  position: relative;
  display: block;
  color: var(--text-color);
  padding: 8px 0;
}

.mainmenu li.level-0 {
  margin-right: var(--site-padding);
}

.mainmenu li.level-0:last-child {
  margin-right: 0;
}

.mainmenu li.level-0 > .link {
  border-bottom: 5px solid transparent;
  padding-top: 0;
  padding-bottom: 8px;
}

.mainmenu li.level-0 > .link:hover,
.mainmenu li.level-0.is-active > .link,
.mainmenu li.level-0.is-selected > .link {
  color: var(--text-color);
  border-color: var(--button-color);
}

.mainmenu li > .link:hover,
.mainmenu li.is-active > .link,
.mainmenu li.is-selected > .link {
  color: var(--button-color);
}

.mainmenu .submenu {
  display: none;
  padding: 28px;
  border-radius: var(--site-border-radius);
  margin: 0;
  line-height: 1.15em;
  z-index: 9999;
}

.mainmenu li.level-0 > .submenu {
  border-top: 8px solid transparent;
  width: 480px;
  position: absolute;
  background-color: var(--menu-background);
  top: calc(100% + 8px);
}

.mainmenu li.level-0:nth-last-child(-n+3) > .submenu {
  right: -11em;
}

.mainmenu li.level-1 {
  display: block;
}

.mainmenu li.level-1 .link:hover {
  color: var(--button-color);
}

.mainmenu li.level-1 > .submenu {
  position: absolute;
  top: 28px;
  right: 36px;
  padding: 18px;
  background-color: rgba(46, 95, 164, 0.06);
  height: calc(100% - 56px);
  box-sizing: border-box;
  width: 260px;
}

.header-socials {
  list-style: none;
  padding: 0;
  margin: 0.5em 0 0 0;
  display: block;
  text-align: right;
}

.header-socials li {
  display: inline-block;
  margin-right: 6px;
  line-height: 0;
}

.header-socials li:last-child {
  margin-right: 0;
}

.header-socials li a {
  display: block;
}

.header-socials li a img {
  width: 2em;
  height: auto;
}

/* Section */
section {
  overflow: auto;
}

section.section-image {
  padding-top: 10%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

section.section-white {
  background-color: var(--background-color);
}

section.section-gray {
  background-color: var(--section-gray);
}

section.section-image .text:first-child {
  opacity: 0.77;
}

section .text {
  max-width: 900px;
  margin: 4em auto 0 auto;
  padding: 0 var(--site-padding);
  text-align: center;
}

section .text p {
  text-align: justify;
}

section .text.full-width {
  max-width: var(--site-max-width);
  margin-top: 0;
  margin-bottom: 0;
}

section .text .highlight {
  color: var(--button-color);
  font-weight: 900;
  font-size: 1.1em;
}

/* Map */
section .maps {
  display: flex;
  max-width: 1500px;
  justify-content: center;
  margin: 0 auto 6em auto;
  gap: 48px;
  padding: 0 var(--site-padding);
}

section .maps .map {
  width: 50%;
}

section .maps .map .text {
  padding: 0;
  margin: 0;
}

section .maps .map .text .map-address {
  margin: 2em 0 0.5em 0;
  height: 150px;
}

section .maps .map-canvas {
  width: 100%;
  height: 480px;
  margin-top: 1em;
  border-radius: 7px;
}

/* Image */
section .image-container {
  line-height: 0;
}

section .image-container.format-original {
  text-align: center;
}

section .image-container.format-original .image {
  max-width: 100%;
}

section .image-container.format-landscape .image {
  width: 100%;
}

section .image {
  height: auto;
}

section .image-cover {
  position: relative;
  height: 100vh;
  min-height: 480px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  background-attachment: fixed;
}

section .image-cover .image-title-wrapper {
  padding: 2em 3em;
  margin: 0 auto;
  position: absolute;
  opacity: 0;
  right: -100%;
  bottom: 25%;
  background-color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  transition: right 1.2s ease, opacity 1.6s ease;
  text-align: justify;
  border-radius: calc(var(--site-border-radius) / 2) 0 0 calc(var(--site-border-radius) / 2);
}

section .image-cover.visible .image-title-wrapper {
  opacity: 1;
  right: 0;
}

section .image-cover.show-menu .image-title-wrapper {
  opacity: 0;
  right: -100%;
}

section .image-cover.visible .image-title-wrapper strong {
  font-weight: 900;
}

section .image-cover .image-title {
  display: block;
  font-size: 1.3em;
  color: #575757;
  line-height: 1.4em;
  text-transform: uppercase;
}

section .image-cover .image-subtitle {
  margin: 0;
  line-height: 1em;
}

section .image-submenu-wrapper {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

section .image-submenu {
  display: flex;
  justify-content: center;
  align-items: stretch;
  text-align: center;
  gap: var(--site-padding);
}

section .image-submenu .child {
  opacity: 0;
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 70vh;
  background-color: rgba(255, 255, 255, 0.8);
  padding: var(--site-padding);
  box-sizing: border-box;
  border-radius: var(--site-border-radius);
  transition: opacity 0.8s ease, background-color 300ms ease;
  transition-delay: 0.1s;
  pointer-events: none;
}

section .image-submenu .child:hover {
  background-color: rgba(255, 255, 255, 0.89);
}

section .image-submenu .child-title {
  display: block;
  width: 100%;
  padding-bottom: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0.9em 0 0.6em 0;
  line-height: 1.2em;
  font-size: 1.4em;
  border-bottom: 9px solid var(--gray-color);
}

section .image-submenu .color-1 .child-title { border-color: var(--color-1) }
section .image-submenu .color-2 .child-title { border-color: var(--color-2) }
section .image-submenu .color-3 .child-title { border-color: var(--color-3) }
section .image-submenu .color-4 .child-title { border-color: var(--color-4) }

section .show-menu .image-submenu .child {
  opacity: 1;
  pointer-events: auto;
}

/* Team List */
section .team-list {
  max-width: var(--site-max-width);
  margin: 0 auto 2em auto;
  padding: 0 var(--site-padding);
}

section .team-list .team-member-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 4em 1.5em;
}

section .team-list .team-member {
  position: relative;
  line-height: 0;
  border-radius: calc(var(--site-border-radius) / 2);
}

section .team-list .team-member.has-content {
  cursor: pointer;
}

section .team-list .team-member .team-member-title {
  display: block;
  font-weight: 400;
  font-size: 1em;
  margin: 0;
  padding: 0 24px 24px 12px;
  text-transform: none;
  position: absolute;
  bottom: 0;
  color: #FFFFFF;
  left: 0;
  z-index: 10;
  line-height: 1.2em;
}

section .team-list .team-member .team-member-title .team-member-role {
  display: block;
  font-size: 0.8em;
  line-height: 1em;
}

section .team-list .team-member.has-content:before {
  content: "+";
  display: block;
  font-weight: 100;
  color: #FFFFFF;
  font-size: 1.3em;
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 10;
  line-height: 1em;
}

section .team-list .team-member:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 60%;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 80%);
  z-index: 5;
  border-radius: calc(var(--site-border-radius) / 2);
}


section .team-list .team-member .team-member-photo {
  width: 100%;
  height: 100%;
  border-radius: calc(var(--site-border-radius) / 2);
}

section .team-list .team-content-wrapper {
  display: none;
  max-width: 900px;
  margin: 4em auto;
}

section .team-list .team-content-wrapper .team-content {
  text-align: justify;
}

section .team-list .team-member .team-member-content {
  display: none;
}

section .team-list .team-content:after {
  content: "";
  display: block;
  clear: left;
}

section .team-list .team-content .team-member-title {
  color: var(--button-color);
}

section .team-list .team-content .team-member-image {
  float: left;
  display: block;
  width: 100%;
  max-width: 370px;
  height: 560px;
  border-radius: var(--site-border-radius);
  background-size: cover;
  background-repeat: no-repeat;
  margin-right: 6%;
  margin-bottom: 1.5em;
}

section .team-list .team-content .text {
  padding: 0;
  margin: 0 auto;
  text-align: justify;
}

section .team-list .team-content p:first-of-type {
  margin-top: 0;
}

section .team-plugin .team-member {
  width: 100%;
}

section .team-plugin .team-member:before {
  color: #BFBFBF;
  font-size: 60px;
  line-height: 1em;
}

section .team-plugin .team-content .team-member-image {
  max-width: 100%;
  height: auto;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--text-color);
  padding: 0 var(--site-padding);
  box-sizing: border-box;
}

section .team-plugin .team-content-wrapper {
  max-width: 1100px;
}

section .flex-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
  max-width: var(--site-max-width);
  padding: 0 var(--site-padding);
  box-sizing: border-box;
  margin: 1.5em auto;
}

section .flex-row > .text {
  flex: 1;
  padding: 0;
  margin: 0;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

section .flex-row > .text.visible {
  opacity: 1;
  transform: translateY(0);
}

section .flex-row > .text p {
  margin-bottom: 0;
}

section .flex-row > .text h3 {
  margin: 0;
  text-transform: none;
  font-weight: 600;
}

section .flex-row > .text h3.light {
  margin: 0;
  color: #CCCCCC;
  font-size: 4em;
  font-weight: 400;
  line-height: 1em;
}

section .counter-container {
  display: flex;
  justify-content: space-between;
  gap: 6rem 3rem;
  max-width: var(--site-max-width);
  padding: 0 var(--site-padding);
  box-sizing: border-box;
  margin: calc(4% + 2em) auto calc(6% + 2em) auto;
}

section .counter-container .counter .subtitle {
  display: block;
  text-transform: uppercase;
  color: #a6a6a6;
  font-weight: 900;
  font-size: 2em;
  height: 1.2em;
  text-align: left;
}

section .counter-container .counter .number {
  display: block;
  font-weight: 900;
  color: var(--accent-color);
  font-size: 10em;
  text-align: center;
}

section .counter-container .counter .title {
  display: block;
  font-size: 2em;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
}

/* Maps */
.contact-wrapper {
  display: flex;
  max-width: 1300px;
  justify-content: center;
  margin: 0 auto;
  gap: var(--site-padding);
  padding: 0 var(--site-padding);
}

.contact-wrapper.show-map {
  margin-bottom: 4em;
}

.contact-wrapper .map-canvas {
  width: 50%;
  border-radius: 7px;
  min-height: 60vh;
}

.contact-wrapper .forms {
  width: 50%;
  background-color: #F0EFF0;
  border-radius: var(--site-border-radius);
  padding: var(--site-padding);
  box-sizing: border-box;
}

.contact-wrapper .forms p {
  margin-top: 0;
  font-size: 1.3em;
  line-height: 1.3em;
}

/* Video */

.video {
  position: relative;
  margin: 4em auto;
  max-width: 1100px;
  aspect-ratio: 16 / 9;
  border: 8px solid transparent;
}

.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--site-border-radius);
}

/* Gallery */

section .gallery-wrapper {
  max-width: var(--site-max-width);
  margin: 0 auto 4em auto;
  padding: 0 8px;
}

section .gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 9vw;
  gap: 16px;
}

section .gallery-image {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #DDDDDD;
  border-radius: var(--site-border-radius);
  grid-row: span 3;
  z-index: 5;
}

section .gallery-image:nth-of-type(5n + 1) { grid-column: span 3; }
section .gallery-image:nth-of-type(5n + 2) { grid-column: span 3; }
section .gallery-image:nth-of-type(5n + 3) { grid-column: span 2; grid-row: span 4; }
section .gallery-image:nth-of-type(5n + 4) { grid-column: span 3; grid-row: span 4; }
section .gallery-image:nth-of-type(5n + 5) { grid-column: span 1; grid-row: span 4; }

section .gallery-image::before  {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  border-radius: var(--site-border-radius);
  transition: background-color 300ms;
  z-index: 10;
}

section .gallery-image:hover::before  {
  background-color: rgba(0, 0, 0, 0.33);
}

section .gallery-image .image-title {
  position: absolute;
  bottom: 18px;
  left: 18px;
  font-size: 1.2em;
  text-transform: uppercase;
  color: #FFFFFF;
  opacity: 0;
  transition: opacity 300ms;
  z-index: 15;
}

section .gallery-image:hover .image-title {
  opacity: 1;
}

section .gallery-image .gallery-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
}

section .gallery-image.clickable {
  cursor: pointer;
}

section .gallery-image.clickable .image-title {
  font-weight: 600;
  opacity: 1;
  left: 0;
  font-size: 1.5em;
  text-align: center;
  width: 100%;
  padding: 0 12px;
  box-sizing: border-box;
}

section .gallery-image.clickable::after {
  content: "+";
  position: absolute;
  right: 20px;
  bottom: 12px;
  color: #FFFFFF;
  font-weight: 900;
  font-size: 2.5em;
  line-height: 1em;
  z-index: 15;
  opacity: 0;
  transition: opacity 300ms;
}

section .gallery-image.clickable:hover::after {
  opacity: 1;
}

section .gallery-wrapper.grid-4 {
  max-width: 1100px;
}

section .grid-4 .gallery-image:nth-of-type(5n + 13),
section .grid-4 .gallery-image:nth-of-type(5n + 9),
section .grid-4 .gallery-image:nth-of-type(5n + 5),
section .grid-4 .gallery-image:nth-of-type(5n + 1) { grid-column: span 2; grid-row: span 4; }

section .grid-4 .gallery-image:nth-of-type(5n + 14),
section .grid-4 .gallery-image:nth-of-type(5n + 10),
section .grid-4 .gallery-image:nth-of-type(5n + 6),
section .grid-4 .gallery-image:nth-of-type(5n + 2) { grid-column: span 4; grid-row: span 3; }

section .grid-4 .gallery-image:nth-of-type(5n + 15),
section .grid-4 .gallery-image:nth-of-type(5n + 11),
section .grid-4 .gallery-image:nth-of-type(5n + 7),
section .grid-4 .gallery-image:nth-of-type(5n + 3) { grid-column: span 4; grid-row: span 3; }

section .grid-4 .gallery-image:nth-of-type(5n + 16),
section .grid-4 .gallery-image:nth-of-type(5n + 12),
section .grid-4 .gallery-image:nth-of-type(5n + 8),
section .grid-4 .gallery-image:nth-of-type(5n + 4) { grid-column: span 2; grid-row: span 2; }

/* Image Text */

section .image-text {
  display: flex;
  gap: 1em;
  margin: 1em 0;
}

section .image-text .item-image {
  width: 40%;
  background-size: cover;
  min-height: 320px;
}

section .image-text .item-text {
  width: 60%;
  display: flex;
  padding: 2em 6em;
  align-items: center;
  gap: 3em;
  justify-content: start;
  box-sizing: border-box;
}

section .image-text:nth-child(odd) .item-image {
  order: 1;
}

section .image-text:nth-child(odd) .item-text {
  color: #454545;
  background-color: #eeeeee;
  justify-content: end;
}

section .color-1 .image-text:nth-child(odd) .item-text { background-color: #d0eaf6; }
section .color-2 .image-text:nth-child(odd) .item-text { background-color: #cce5e2; }
section .color-3 .image-text:nth-child(odd) .item-text { background-color: #f6d8a9; }
section .color-4 .image-text:nth-child(odd) .item-text { background-color: #f0c5aa; }

section .image-text:nth-child(even) .item-text {
  color: var(--text-color);
  background-color: #dedede;
}

section .image-text .item-text .counter {
  display: block;
  font-weight: 900;
  color: #FFFFFF;
  font-size: 12em;
  text-align: center;
  visibility: hidden;
}

section .has-counter .image-text .item-text .counter {
  visibility: visible;
}

section .image-text .item-text .content {
  font-size: 1.3em;
  line-height: 1.5em;
  max-width: 520px;
  text-align: justify;
}

section .article-list-plugin {
  margin-bottom: 4em;
}

section .section-box-wrapper {
  max-width: calc(var(--site-max-width) + 100px);
  margin: 0 auto;
  padding: 0 var(--site-padding);
}

section .section-box {
  border-radius: var(--site-border-radius);
  padding: var(--site-padding);
  background-color: var(--section-gray);
}

/* Forms */
.forms .form-field {
  margin-bottom: 1em;
}

.forms label {
  display: block;
  margin-bottom: 6px;
}

.forms .form-field.CheckboxInput,
.forms .form-field select,
.forms .form-field textarea,
.forms .form-field input:not([type="checkbox"]) {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--text-color);
  background-color: transparent;
  color: var(--text-color);
  display: block;
  padding: 6px 0;
}

.forms .form-field input[type="file"] {
  border-bottom: 0;
}

.forms .form-field textarea {
  border-bottom: 0;
  resize: vertical;
  height: 180px;
  min-height: 180px;
}

.forms .errorlist {
  list-style: none;
  padding: 0;
  margin: 0;
  color: red;
}

.forms .form-recaptcha {
  text-align: center;
}

.forms .form-recaptcha .g-recaptcha {
  display: inline-block;
}

.forms .form-sent p {
  text-align: center;
  margin: 2em 1em;
}

.forms .button {
  background-color: transparent;
  color: var(--text-color);
  border: 1px solid var(--text-color);
  min-width: 11em;
}

.forms .button:hover {
  color: var(--button-text-color);
  background-color: var(--text-color);
}

/* Contact Page */
.contact-page section .team-list {
  max-width: 1200px;
}

.contact-page section .text.full-width {
  max-width: 1200px;
}

.contact-address h3 {
  margin-bottom: 0;
}

.contact-address p {
  margin-top: 0;
}

.contact-address p:not(.phone) {
  margin-bottom: 0.75em
}

.contact-address .phone {
  margin-bottom: 2.5em
}

.contact-address .phone img {
  width: auto;
  height: 20px;
  vertical-align: middle;
  pointer-events: none;
  user-select: none;
  margin-right: 6px;
}

/* Footer */
footer {
  background: var(--footer-background);
}

footer .footer-inner {
  max-width: 964px;
  margin: 0 auto;
  padding: 0 18px;
  overflow: hidden;
}

.footer-links {
  padding-bottom: calc(var(--site-padding) / 2);
  border-bottom: 1px solid var(--footer-text-color);
}

.footer-links h2 {
  color: var(--footer-text-color);
  margin: 1.5em 0 2em 0;
  font-weight: 600;
  font-size: 1.1em;
}

.footer-links .footer-links-content .text {
  display: flex;
  justify-content: center;
  gap: 12%;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 1.15em;
}

.footer-links li {
  margin: 6px 0;
}

.footer-links a {
  color: var(--footer-text-color);
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-links .footer-socials {
  list-style: none;
  padding: 2em 0 0 0;
  margin: 0;
  display: flex;
  color: #c1bbb2;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.footer-links .footer-socials .column-title {
  margin-right: 6px;
}

.footer-links .footer-socials li a {
  display: block;
  line-height: 0;
}

.footer-links .footer-socials li a img {
  width: 1.5em;
  height: auto;
}

footer .credit {
  padding: 1% 0;
  text-align: center;
}

footer .credit .credit-text,
footer .credit .credit-logo {
  display: inline-block;
  vertical-align: middle;
}

footer .credit .credit-text {
  font-size: 0.8em;
  color: var(--footer-text-color);
}

footer .credit .credit-logo {
  display: inline-block;
  margin: 15px 3px;
  width: 164px;
  height: 32px;
  background: no-repeat url("../img/myo-concept.08c39a72ac73.png");
  background-size: contain;
}