@charset "UTF-8";
/*
Theme Name: gregermax multimedia
Theme URI: https://greger.me
Author: Maximilian Greger
Author URI: https://greger.me
Version: 0.1
Requires at least: 5.0
Tested up to: 5.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jff
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
:root {
  --t-blue: #008ACE;
  --t-blue--dark: #142249;
}

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

html,
body {
  scroll-behavior: smooth;
}

body,
button,
input,
select,
textarea {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

body {
  background: #fff;
  color: #333;
  font-size: 19px;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: inherit;
  text-transform: uppercase;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

h1 {
  font-size: 2rem;
  color: var(--t-blue);
}

h2 {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--t-blue);
}

h1 + h2 {
  margin-top: -1rem;
  text-transform: none;
  color: inherit;
}

p {
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: 600;
}

a {
  color: var(--t-blue);
  text-underline-offset: 3px;
  transition: all 0.2s;
}
a:hover, a:focus {
  color: var(--t-blue--dark);
  text-decoration-thickness: 2px;
}

ul,
ol {
  margin: 1em 0 1em 2em;
  padding: 0;
}

li {
  margin-bottom: 0.5em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.btn {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.btn:not(:first-child) {
  margin-top: 3rem;
}
.btn:not(:last-child) {
  margin-bottom: 3rem;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

button,
input[type=submit],
.btn a {
  background: var(--t-theme);
  color: #fff;
  border: none;
  padding: 10px 30px;
  border-radius: 99px;
  cursor: pointer;
  font-size: 1em;
  transition: background 0.2s ease-out;
  text-decoration: none;
  display: block;
  text-transform: uppercase;
}

button:hover,
input[type=submit]:hover,
.btn a:hover {
  background: var(--t-theme--dark);
}

input[type=text],
input[type=email],
input[type=password],
input[type=search],
input[type=url],
input[type=number],
input[type=tel],
input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month],
input[type=week],
input[type=color],
textarea,
select {
  background-color: #f5f5f5;
  padding: 0.4em 0.6em;
  font-size: 1em;
  margin-bottom: 3px;
}

hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 2em 0;
}

.site-main > :first-child:not(.has-background) {
  margin-top: 4rem;
}

.content-width {
  width: 800px;
  max-width: calc(100% - 4em);
  margin-left: auto;
  margin-right: auto;
}

.content-width-wide {
  width: 1800px;
  max-width: calc(100% - 4em);
  margin-left: auto;
  margin-right: auto;
}

.site__header {
  background: #fff;
  border-bottom: 2px solid var(--t-blue);
  position: relative;
}
.site__header__wrapper {
  padding: 1rem 0;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-end;
}
.site__header__cta {
  display: flex;
  gap: 3px;
}
.site__header__btn {
  background-color: var(--t-blue);
  color: #fff;
  height: 30px;
  display: block;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site__header__btn:not(.square) {
  padding: 0 10px;
}
.site__header__btn.square {
  aspect-ratio: 1/1;
}
.site__header__btn:hover, .site__header__btn:focus {
  background-color: var(--t-blue--dark);
  color: #fff;
}
.site__header__nav {
  flex-grow: 1;
  font-size: 16px;
}
.site__header__nav ul,
.site__header__nav li {
  list-style: none;
  margin: 0;
  display: block;
}
.site__header__nav a {
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
}
.site__header__nav #primary-menu {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  flex-grow: 1;
  max-width: 1000px;
  margin: auto;
}
.site__header__nav #primary-menu ul.sub-menu {
  position: absolute;
  background-color: var(--t-blue);
  color: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 5vw;
  left: 0;
  right: 0;
  transform: translateY(10px);
  z-index: 10;
  opacity: 0;
  display: flex;
  visibility: hidden;
  transition: all 0.3s ease;
}
.site__header__nav #primary-menu li.open ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(16px);
}
.site__header__nav #primary-menu .primary-menu-color {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 5px;
}
.site__header__nav #primary-menu li.current-menu-item > a {
  font-weight: 600;
}
.site__header__nav #primary-menu li.child-menu-back > a {
  color: var(--t-blue);
}
.site__header__nav #primary-menu li.child-menu-back > a::before {
  content: "← ";
}
.site__header__burger {
  border-radius: 0;
  padding: 0;
  aspect-ratio: 1/1;
  width: 50px;
  position: absolute;
  bottom: -50px;
  right: 0;
  z-index: 300;
  transition: all 0.3s ease;
  background-color: var(--t-blue);
}
.site__header__burger:hover {
  background-color: var(--t-blue--dark);
}
.site__header__burger span {
  height: 2px;
  background-color: #fff;
  display: block;
  position: absolute;
  left: 5px;
  right: 5px;
  transition: all 0.3s ease;
}
.site__header__burger span:nth-child(1) {
  top: calc(33% - 1px);
}
.site__header__burger span:nth-child(2) {
  top: calc(50% - 1px);
}
.site__header__burger span:nth-child(3) {
  top: calc(67% - 1px);
}
.site__header__burger.active {
  background-color: var(--t-blue--dark);
  transform: translateY(-50px);
}
.site__header__burger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: calc(50% - 1px);
}
.site__header__burger.active span:nth-child(2) {
  opacity: 0;
}
.site__header__burger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: calc(50% - 1px);
}
.site__header__mobile {
  position: absolute;
  width: 100%;
  overflow: hidden;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out;
}
.site__header__mobile__wrap {
  width: 100%;
  transition: all 0.3s ease;
  overflow: auto;
  background-color: var(--t-blue);
  color: #fff;
  text-transform: uppercase;
  padding: 0.5rem 2rem;
  transform: translateX(-100%);
}
.site__header__mobile.open {
  opacity: 1;
  visibility: visible;
}
.site__header__mobile.open .site__header__mobile__wrap {
  transform: translateX(0);
}
.site__header__mobile a {
  color: inherit;
  text-decoration: none;
}
.site__header__mobile__nav ul,
.site__header__mobile__nav li {
  display: block;
  margin: 0;
  list-style: none;
  position: relative;
}
.site__header__mobile__nav li.menu-item-has-children > a::after {
  content: "→";
  position: absolute;
  right: 0;
  width: 15px;
  aspect-ratio: 1/1;
  transition: all 0.3s ease-out;
}
.site__header__mobile__nav li.menu-item-has-children > a.active::after {
  transform: rotate(90deg);
}
.site__header__mobile__nav #primary-menu-mobile li > a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #fff;
}
.site__header__mobile__nav #primary-menu-mobile .sub-menu {
  display: none;
}
.site__header__mobile__nav #primary-menu-mobile .sub-menu li > a {
  padding-left: 30px;
}
.site__header__mobile__nav #primary-menu-mobile .sub-menu li > a:last-child a {
  border-bottom: none;
}
.site__header__mobile__cta {
  border-top: 1px solid #fff;
  padding: 10px 0;
  margin-top: 5rem;
  display: flex;
  justify-content: space-between;
}
.site__header__mobile__cta__btns {
  display: flex;
  gap: 10px;
}

@media screen and (max-width: 1200px) and (min-width: 993px) {
  .site__header__logo__svg {
    width: 100px;
    height: auto;
  }
}
@media screen and (max-width: 992px) {
  .site__header__wrapper {
    justify-content: center;
  }
  .site__header__cta {
    display: none;
  }
  .site__header__nav {
    display: none;
  }
}
@media (min-width: 993px) {
  .site__header__mobile,
  .site__header__burger {
    display: none;
  }
}
.block__line {
  padding: 1rem 0;
  background-color: var(--t-theme);
}
.block__line__wrapper {
  display: flex;
  justify-content: space-between;
  font-size: 1.5rem;
}
.block__line__wrapper div,
.block__line__wrapper a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: inherit;
}

@media screen and (max-width: 992px) {
  .block__line__wrapper {
    flex-direction: column;
  }
  .block__line__wrapper > :first-child {
    font-size: 1.5rem;
  }
  .block__line__wrapper > :last-child {
    margin-top: 1rem;
    font-size: 1rem;
    border-top: 1px solid #fff;
    padding-top: 1rem;
  }
}
.block__header__swiper {
  width: 100%;
  height: 500px;
}
.block__header__swiper__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.block__header__headline {
  background-color: var(--t-theme);
  min-height: 68.8px;
  margin-top: 10px;
}
.block__header__headline h2 {
  color: #fff;
  max-width: calc(100% - 2em);
  padding: 20px 0;
  margin-bottom: 0;
  font-size: 2rem;
  text-align: left;
  text-transform: uppercase;
}
.block__header__sliderheadline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 20px;
  max-width: 1840px;
  z-index: 100;
  color: #fff;
  font-size: clamp(2rem, 5vw, 4rem);
}
.block__header__slider {
  position: relative;
}
.block__header__slider .swiper-pagination-bullet-active {
  background: #fff;
}
.block__header__slider .swiper-button-next,
.block__header__slider .swiper-button-prev {
  color: #fff;
}
.block__header__wrapper.has-links {
  display: flex;
  gap: 10px;
}
.block__header__wrapper.has-links .block__header__slider {
  width: calc(100% - 410px);
}
.block__header__wrapper.has-links .block__header__slider .block__header__swiper {
  height: 600px;
}
.block__header__wrapper.has-links .block__header__links {
  width: 400px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 0 0 400px;
}
.block__header__wrapper.has-links .block__header__links__btn {
  flex: 1 1 15rem;
  padding: 20px;
  color: #fff;
  text-decoration: none;
  font-size: 1.6rem;
  text-transform: uppercase;
  line-height: 1.2;
  display: flex;
  align-items: flex-end;
  position: relative;
}
.block__header__wrapper.has-links .block__header__links__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--t-theme);
  opacity: 0.7;
  z-index: -1;
  transition: all 0.2s ease-out;
}
.block__header__wrapper.has-links .block__header__links__btn:hover::after {
  opacity: 0;
}
.block__header__wrapper.has-links .block__header__links__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

:not(.has-background) + .block__header,
.has-background + .block__header:not(.has-background) {
  margin: 6rem auto 0 auto;
}

@media (max-width: 992px) {
  .block__header__swiper {
    height: 300px;
  }
  .block__header__headline h2 {
    text-align: center;
  }
  .block__header__wrapper.has-links {
    flex-direction: column;
  }
  .block__header__wrapper.has-links .block__header__slider,
  .block__header__wrapper.has-links .block__header__links {
    width: 100%;
  }
  .block__header__wrapper.has-links .block__header__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .block__header__wrapper.has-links .block__header__links__btn {
    font-size: 1rem;
    height: 150px;
  }
}
.block__text h1 {
  color: var(--t-blue);
}
.block__text h1 a,
.block__text h2 a,
.block__text h3 a,
.block__text h4 a,
.block__text h5 a,
.block__text h6 a {
  text-decoration: none;
}
.block__text h1 img,
.block__text h2 img,
.block__text h3 img,
.block__text h4 img,
.block__text h5 img,
.block__text h6 img {
  display: inline-block;
}
.block__text.has-background {
  padding: 4rem 0;
}
.block__text table {
  border-collapse: collapse;
  width: 100%;
  text-align: left;
}
.block__text table tr {
  border-bottom: 1px solid var(--t-blue);
}
.block__text table th {
  font-weight: 500;
  text-transform: uppercase;
}
.block__text table th,
.block__text table td {
  padding: 10px 5px;
}
.block__text table:not(:first-child) {
  margin-top: 2rem;
}
.block__text table:not(:last-child) {
  margin-bottom: 2rem;
}

:not(.has-background) + .block__text,
.has-background + .block__text:not(.has-background) {
  margin: 4rem auto 0 auto;
}

.block__service.has-background {
  padding: 4rem 0;
}
.block__service__item {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.block__service__item:nth-child(odd) {
  flex-wrap: wrap-reverse;
}
.block__service__item__image {
  flex: 1 1 200px;
}
.block__service__item__text {
  flex: 1 1 500px;
}
.block__service__item__link {
  display: block;
  text-align: right;
}
.block__service__item__link:hover svg path {
  fill: var(--t-blue);
}

:not(.has-background) + .block__service,
.has-background + .block__service:not(.has-background) {
  margin: 4rem auto 0 auto;
}

ul.table-list,
.table-list li {
  margin: 0;
  list-style: none;
  display: block;
  text-transform: uppercase;
}

.table-list li {
  padding: 5px 0;
  border-bottom: 1px solid var(--t-blue);
}
.table-list li:first-child {
  border-top: 1px solid var(--t-blue);
}

.block__columns.has-background {
  padding: 4rem 0;
}
.block__columns__grid {
  display: grid;
  gap: 50px;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
}
.block__columns__image {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1 !important;
}
.block__columns__item h3 {
  color: var(--t-blue);
}
.block__columns__item__btn {
  position: relative;
  padding: 20px;
  color: #fff;
  text-decoration: none;
  aspect-ratio: 1/1;
}
.block__columns__item__btn h3 {
  color: inherit;
}
.block__columns__item__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--t-theme);
  opacity: 0.7;
  z-index: 2;
  transition: all 0.2s ease-out;
}
.block__columns__item__btn > * {
  position: relative;
  z-index: 10;
}
.block__columns__item__btn:hover {
  background-color: var(--t-theme--dark);
  color: #fff;
}

:not(.has-background) + .block__columns,
.has-background + .block__columns:not(.has-background) {
  margin: 4rem auto 0 auto;
}

.block__tiles.has-background {
  padding: 4rem 0;
}
.block__tiles__grid {
  display: grid;
  gap: 50px 20px;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
}
.block__tiles__title {
  margin-bottom: 2rem;
}
.block__tiles__tile {
  text-decoration: none;
  color: inherit;
}
.block__tiles__tile:hover {
  color: inherit;
}
.block__tiles__tile__image {
  position: relative;
}
.block__tiles__tile__title {
  position: absolute;
  left: 10px;
  bottom: 10px;
  line-height: 1.2;
  color: var(--t-theme);
  font-size: 1.5rem;
}
.block__tiles__tile__description {
  padding: 15px 10px 0 10px;
  font-size: 0.8rem;
}

:not(.has-background) + .block__tiles,
.has-background + .block__tiles:not(.has-background) {
  margin: 4rem auto 0 auto;
}

.block__txtimg.has-background {
  padding: 4rem 0;
}
.block__txtimg__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.block__txtimg__caption {
  padding: 15px 10px 0 10px;
  font-size: 0.8rem;
  display: block;
}
.block__txtimg__headline {
  color: var(--t-blue);
}
.block__txtimg__text {
  grid-column: span 2;
}
.block__txtimg__text p {
  margin-bottom: 0.5rem;
}
.block__txtimg__text p:last-child {
  margin-bottom: 0;
}
.block__txtimg__text h1,
.block__txtimg__text h2,
.block__txtimg__text h3,
.block__txtimg__text h4,
.block__txtimg__text h5,
.block__txtimg__text h6,
.block__txtimg__text p {
  margin-bottom: 0.5rem;
}
.block__txtimg__image img,
.block__txtimg__image video {
  display: block;
  height: auto;
  width: 100%;
}
.block__txtimg.magnet .block__txtimg__text {
  align-self: flex-end;
}
.block__txtimg.image_right.magnet .block__txtimg__text {
  margin-left: auto;
  text-align: right;
}

:not(.has-background) + .block__txtimg,
.has-background + .block__txtimg:not(.has-background) {
  margin: 4rem auto 0 auto;
}

@media (max-width: 700px) {
  .block__txtimg__wrapper {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }
  .block__txtimg__image {
    order: -1;
  }
  .block__txtimg__text {
    order: 0;
    grid-column: span 1;
    text-align: left !important;
    align-self: auto !important;
    margin-left: 0 !important;
  }
}
.block__single_service.has-background {
  padding: 4rem 0;
}
.block__single_service__wrapper {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
}
.block__single_service__caption {
  padding: 15px 10px 0 10px;
  font-size: 0.8rem;
  display: block;
}
.block__single_service__text {
  display: flex;
  align-items: flex-end;
}
.block__single_service ul {
  width: 100%;
}
.block__single_service__headline {
  color: var(--t-blue);
}
.block__single_service__image img {
  width: 100%;
}

:not(.has-background) + .block__single_service,
.has-background + .block__single_service:not(.has-background) {
  margin: 4rem auto 0 auto;
}

.block__icons.has-background {
  padding: 4rem 0;
}
.block__icons__grid {
  display: grid;
  gap: 50px 20px;
  grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
  text-align: center;
}
.block__icons__text {
  margin-top: 3rem;
}
.block__icons__item__icon {
  max-width: 100px;
  max-height: 100px;
  width: auto;
  height: auto;
  margin: 2rem auto 0 auto;
  display: block;
}
.block__icons__item__text {
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: var(--t-blue);
}

:not(.has-background) + .block__icons,
.has-background + .block__icons:not(.has-background) {
  margin: 4rem auto 0 auto;
}

.block__gallery.has-background {
  padding: 4rem 0;
}
.block__gallery__grid {
  display: grid;
  gap: 50px;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
}
.block__gallery__items__2 {
  grid-template-columns: 1fr;
}
.block__gallery__items__2 {
  grid-template-columns: 1fr 1fr;
}
.block__gallery__items__3 {
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
}
.block__gallery__items__4 {
  grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
}
.block__gallery__items__5 {
  grid-template-columns: repeat(auto-fit, minmax(min(120px, 100%), 1fr));
}
.block__gallery__image {
  max-width: 100%;
  display: block;
  margin: auto;
}
.block__gallery__video {
  width: 100%;
  height: auto;
  display: block;
}

:not(.has-background) + .block__gallery,
.has-background + .block__gallery:not(.has-background) {
  margin: 4rem auto 0 auto;
}

.block__contact.has-background {
  padding: 4rem 0;
}
.block__contact__wrapper {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
}
.block__contact__tile {
  background-color: #fff;
  padding: 20px;
}
.block__contact:not(.has-background) .block__contact__tile {
  background-color: #f5f5f5;
}
.block__contact__btn a {
  margin-left: 40%;
  padding: 5px 50px 5px 20px;
  background-color: var(--t-theme);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.8rem;
  display: inline-block;
}
.block__contact__btn a:hover {
  background-color: var(--t-theme--dark);
  color: #fff;
}

:not(.has-background) + .block__contact,
.has-background + .block__contact:not(.has-background) {
  margin: 4rem auto 0 auto;
}

.block__benefits.has-background {
  padding: 4rem 0;
}
.block__benefits__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
}
.block__benefits__item {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 200px;
  padding: 20px;
  color: #fff;
  text-transform: uppercase;
  display: flex;
  align-items: flex-end;
}
.block__benefits__item:hover {
  color: var(--t-blue);
}
.block__benefits__item:hover::after {
  opacity: 0;
}
.block__benefits__item__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 1;
}
.block__benefits__item span {
  position: relative;
  z-index: 5;
}
.block__benefits__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--t-theme);
  opacity: 0.7;
  z-index: 2;
  transition: all 0.2s ease-out;
}
.block__benefits .swiper-slide:nth-child(odd) .block__benefits__item::after {
  background-color: var(--t-theme--dark);
}
.block__benefits .swiper-button-next,
.block__benefits .swiper-button-prev {
  color: #fff;
}

:not(.has-background) + .block__benefits,
.has-background + .block__benefits:not(.has-background) {
  margin: 4rem auto 0 auto;
}

.site__footer {
  background-color: var(--t-blue--dark);
  color: #fff;
  padding-top: 4rem;
  position: relative;
}
.site__footer__wrapper {
  display: grid;
  gap: 50px 20px;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
}
.site__footer a {
  text-decoration: none;
  color: inherit;
}
.site__footer .site__footer__wave {
  width: 100%;
  display: block;
  height: auto;
  background-color: #fff;
}
.site__footer .site__footer__wave .st0,
.site__footer .site__footer__wave .st1,
.site__footer .site__footer__wave .st2,
.site__footer .site__footer__wave .st3,
.site__footer .site__footer__wave .st4,
.site__footer .site__footer__wave .st5,
.site__footer .site__footer__wave .st6,
.site__footer .site__footer__wave .st7,
.site__footer .site__footer__wave .st8,
.site__footer .site__footer__wave .st9,
.site__footer .site__footer__wave .st10,
.site__footer .site__footer__wave .st11,
.site__footer .site__footer__wave .st12,
.site__footer .site__footer__wave .st13,
.site__footer .site__footer__wave .st14 {
  fill: none;
}
.site__footer .site__footer__wave .st15 {
  fill: var(--t-blue--dark);
}
.site__footer .site__footer__wave .st1 {
  stroke-width: 8.2px;
}
.site__footer .site__footer__wave .st1,
.site__footer .site__footer__wave .st2,
.site__footer .site__footer__wave .st3,
.site__footer .site__footer__wave .st4,
.site__footer .site__footer__wave .st5,
.site__footer .site__footer__wave .st6,
.site__footer .site__footer__wave .st7,
.site__footer .site__footer__wave .st8,
.site__footer .site__footer__wave .st9,
.site__footer .site__footer__wave .st10,
.site__footer .site__footer__wave .st11,
.site__footer .site__footer__wave .st12,
.site__footer .site__footer__wave .st13,
.site__footer .site__footer__wave .st14 {
  stroke: #fff;
  stroke-miterlimit: 10;
}
.site__footer .site__footer__wave .st2 {
  stroke-width: 5.3px;
}
.site__footer .site__footer__wave .st3 {
  stroke-width: 9.2px;
}
.site__footer .site__footer__wave .st4 {
  stroke-width: 6.3px;
}
.site__footer .site__footer__wave .st5 {
  stroke-width: 11.2px;
}
.site__footer .site__footer__wave .st6 {
  stroke-width: 16.1px;
}
.site__footer .site__footer__wave .st7 {
  stroke-width: 17.1px;
}
.site__footer .site__footer__wave .st8 {
  stroke-width: 7.2px;
}
.site__footer .site__footer__wave .st9 {
  stroke-width: 13.2px;
}
.site__footer .site__footer__wave .st10 {
  stroke-width: 10.2px;
}
.site__footer .site__footer__wave .st11 {
  stroke-width: 12.2px;
}
.site__footer .site__footer__wave .st12 {
  stroke-width: 15.1px;
}
.site__footer .site__footer__wave .st13 {
  stroke-width: 14.1px;
}
.site__footer .site__footer__wave .st14 {
  stroke-width: 4.3px;
}
.site__footer .site__footer__wave .st16 {
  fill: var(--t-theme);
}
.site__footer .site__footer__logo {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 10;
  max-width: 30%;
  height: auto;
}
.site__footer .site__footer__logo .st0 {
  fill: #15234a;
}
.site__footer .site__footer__logo .st1 {
  fill: #0082c8;
}

:not(.has-background) + .site__footer,
.has-background + .site__footer:not(.has-background) {
  margin: 4rem auto 0 auto;
}

.block__search__form {
  display: flex;
  margin: auto;
  border-radius: 99px;
}
.block__search__form input {
  width: 100%;
  margin-bottom: 0;
}
.block__search__form button {
  border-radius: 0;
  padding: 0 10px;
}
.block__search__results {
  margin-top: 2rem;
  list-style: none;
  margin: 0;
  display: block;
}
.block__search__results__item {
  list-style: none;
  display: block;
  background-color: #f5f5f5;
  margin: 1rem 0;
  padding: 20px;
}
.block__search__results__item a {
  text-decoration: none;
}

:not(.has-background) + .block__search,
.has-background + .block__search:not(.has-background) {
  margin: 4rem auto 0 auto;
}

.block__navigation {
  border-top: 2px solid var(--t-theme);
  border-bottom: 2px solid var(--t-theme);
}
.block__navigation__wrapper {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  overflow: auto;
  max-width: 800px;
  margin: auto;
}
.block__navigation__wrapper a {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 1rem 0;
  white-space: nowrap;
}

:not(.has-background) + .block__navigation,
.has-background + .block__navigation:not(.has-background) {
  margin: 4rem auto 0 auto;
}

.wpcf7 form .form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 20px;
}
.wpcf7 form .form-grid:not(:first-child) {
  margin-top: 20px;
}
.wpcf7 form .form-grid:not(:last-child) {
  margin-bottom: 20px;
}
.wpcf7 form:not(:first-child) {
  margin-top: 3rem;
}
.wpcf7 form:not(:last-child) {
  margin-bottom: 3rem;
}
.wpcf7 form label {
  display: block;
}
.wpcf7 form input[type=text],
.wpcf7 form input[type=email],
.wpcf7 form input[type=password],
.wpcf7 form input[type=search],
.wpcf7 form input[type=url],
.wpcf7 form input[type=number],
.wpcf7 form input[type=tel],
.wpcf7 form input[type=date],
.wpcf7 form input[type=time],
.wpcf7 form input[type=datetime-local],
.wpcf7 form input[type=month],
.wpcf7 form input[type=week],
.wpcf7 form input[type=color],
.wpcf7 form textarea,
.wpcf7 form select {
  display: block;
  width: 100%;
}
.wpcf7 form .wpcf7-not-valid-tip {
  font-size: 0.6rem;
}
.wpcf7 form .wpcf7-submit {
  margin: auto;
  margin-top: 3rem;
  padding: 10px 10vw;
}
.wpcf7 form .wpcf7-response-output {
  margin: 2rem 0;
  padding: 20px;
  border-color: var(--t-blue);
}/*# sourceMappingURL=style.css.map */