@charset "UTF-8";

*,
*::before,
*::after {
  box-sizing: inherit;
}

:where(:root) {
  line-height: 1.15;
  box-sizing: border-box;
}

:where(html) {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

:where(body) {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

:where(main) {
  display: block;
}

:where(a) {
  background-color: transparent;
}

/*:where(p, h1, h2, h3, h4, h5, h6) {
  text-wrap: balance;
}*/

:where(button, input, optgroup, select, textarea) {
  line-height: inherit;
  border: 1px solid currentColor;
  font-weight: inherit;
  font-size: inherit;
  font-family: inherit;
  color: inherit;
}

:where(button) {
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  overflow: visible;
  text-transform: none;
  border-radius: 0;
}

:where(button, [type="button"], [type="reset"], [type="submit"]) {
  -webkit-appearance: button;
  padding: 1px 6px;
  cursor: pointer;
}

:where(label, select, summary, [role="button"], [role="option"]) {
  cursor: pointer;
}

:where(input) {
  overflow: visible;
  border-radius: 0;
}

:where(fieldset) {
  margin: 0;
  border: 0;
  padding: 0;
  border: 1px solid currentColor;
}

:where(legend) {
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

:where(progress) {
  display: inline-block;
  vertical-align: baseline;
}

:where(select) {
  text-transform: none;
}

:where(textarea) {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

:where([type="checkbox"], [type="radio"]) {
  box-sizing: border-box;
  padding: 0;
}

:where([type="search"]) {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

:where([type="color"]) {
  background: inherit;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled),
label:has(+ input:disabled)) {
  cursor: not-allowed;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.5;
}

::-webkit-search-decoration,
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

::-moz-focus-inner {
  border: 0;
}

:-moz-focusring {
  outline: 1px dotted ButtonText;
}

:-moz-ui-invalid {
  box-shadow: none;
}

:where(hr) {
  box-sizing: content-box;
  height: 0;
  color: inherit;
  overflow: visible;
}

:where(ol ol, ol ul, ol dl, ul ol, ul ul, ul dl, dl ol, dl ul, dl dl) {
  margin: 0;
}

:where(strong) {
  font-weight: 700;
}

:where(b) {
  font-weight: bolder;
}

:where(audio, video) {
  display: inline-block;
}

:where(audio):not([controls]) {
  display: none;
  height: 0;
}

:where(img) {
  border: 0;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(svg):not(:root) {
  overflow: hidden;
}

:where(table) {
  text-indent: 0;
  border-color: inherit;
}

:where(details) {
  display: block;
}

:where(dialog) {
  background-color: inherit;
  border: solid;
  color: inherit;
  display: block;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

:where(dialog):not([open]) {
  display: none;
}

:where(summary) {
  display: list-item;
}

:where(canvas) {
  display: inline-block;
}

:where(template) {
  display: none;
}

:where([hidden]) {
  display: none;
}

:where([hidden]:not([hidden="until-found"])) {
  display: none !important;
}

:where(:focus-visible) {
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

:where(
.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)
) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* stylelint-disable */

/* stylelint-enable */

/**
* Remove the unit of a length
*
* @param {Number} $number - Number to remove unit from
* @return {Number} - Unitless number
*/

/**
* Returns nth property from css property list
*
* @property {map} $list List
* @property {number} $index Item index
*
* @example
*	$bottom-margin: css-nth(10px 20px 30px 40px, 3); // 30px
*	$bottom-margin: css-nth(10px 20px, 3); // 10px
*/

/**
* Remove nth elements from the list
*
* @property {map} $list List
* @property {number} $index Item index
*
* @example
*	$list: remove-nth(10px 20px 30px 40px, 3); // 10px 20px 40px
*/

/**
* In each $list pair of $breakpoint: $value replaces all values with 'inherit'
* except for one in $index position
*
* 'inherit' value when used with 'margins' or 'paddings' mixin will not produce any output
*
* @example
*	$spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
*
*	$spacer-top-only: breakpointPickCssNth($spacer, 1);
* => (xs: 10px inherit inherit inherit, md: 20px inherit inherit inherit)
*	@include margins($spacer-top-only);
*
*	$spacer-bottom-only: breakpointPickCssNth($spacer, 3);
* => (xs: inherit inherit 12px inherit, md: inherit inherit 20px inherit)
*	@include paddings($spacer-bottom-only);
*/

/**
* In each $list pair of $breakpoint: $value replaces all values with 'inherit'
* except for top (first) and bottom (third) properties
*
* @example
*	$spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
*
*	$spacer-top-bottom: breakpoint-pick-top-bottom($spacer);
* => (xs: 10px inherit 12px inherit, md: 20px inherit 20px inherit)
*	@include margins($spacer-top-bottom);
*/

/**
* In each $list pair of $breakpoint: $value replaces all values with 'inherit'
* except for right (second) and left (fourth) properties
*
* @example
*	$spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
*
*	$spacer-left-right: breakpoint-pick-top-bottom($spacer);
* => (xs: inherit 11px inherit 13px, md: inherit 0 inherit 0)
*	@include margins($spacer-left-right);
*/

/**
* In each $list pair of $breakpoint: $value merges all values skipping 'inherit'
*
* @example
*	$list-a: (xs: 10px inherit 20px inherit, md: 30px inherit);
*	$list-b: (xs: 40px inherit inherit inherit, md: inherit 50px);
*
*	$list-result: breakpointMapMerge($list-a, $list-b);
*	// (xs: 40px inherit 20px inherit, md: 30px 50px);
*/

/**
* Returns deeply nested property from a map
*
* @function mapGetDeep Deep get for sass maps
* @author https://css-tricks.com/snippets/sass/deep-getset-maps/
* @param {Map} $map - Map
* @param {Arglist} $keys - Key chain
*
* @example
*	$paddings: mapGetDeep($grid-containers, default, paddings, xs);
*/

/**
* Mixin for object-fit plugin
*
* @see https://github.com/bfred-it/object-fit-images
* @see components/_background.scss
* @example
*	@include object-fit(contain);
*	@include object-fit(cover, top);
*/

/**
* Split string into a list
*
* @property {string} $string String
* @property {string} $separator Separator
*
* @example
*	$list: str-split("hello+world", "+"); // (hello, world)
*/

/**
* Converts SVG into data url so that this SVG could be used as a
* background image
*
* @example
*	background-image: svgtodataurl("<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100">...</svg>");
*/

/**
* Remove keys from the map
*
* @param {Map} $map - Map from which to remove items
* @param {List} $keys - List of keys which to remove
* @return {Map} - Map without the specified keys
*/

/**
* Качество рендеринга изображений
* В Chrome качество фонового изображения не самое лучшее при использовании background-size
*/

.sprite-blank {
  display: inline-block;
  vertical-align: middle;
  width: 57px;
  height: 59px;
  background: url("../images/sprites.png") 0px 0px/81px 59px no-repeat;
}

.sprite-login {
  display: inline-block;
  vertical-align: middle;
  width: 22px;
  height: 26px;
  background: url("../images/sprites.png") -59px 0px/81px 59px no-repeat;
}

@font-face {
  font-family: "InterVariable";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/InterVariable.woff2") format("woff2");
}

html {
  min-height: 100vh;
  height: 100%;
  min-width: 320px;
  font-family: "InterVariable";
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: #243138;
}

body {
  height: 100%;
  background-color: #fff;
}

a,
button {
  transition: 0.2s;
}

button {
  cursor: pointer;
}

a {
  color: currentColor;
}

svg {
  display: block;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

img {
  vertical-align: top;
  height: auto;
  max-width: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

img[draggable="false"] {
  pointer-events: none;
  -webkit-user-drag: none;
}

figure,
picture {
  display: inline-block;
  margin: 0;
  line-height: 0;
}

figure img,
picture img {
  width: 100%;
}

ol,
ul {
  margin: 0;
  padding: 0;
}

video {
  outline: none;
  width: 100%;
  height: 100%;
}

::-moz-selection {
  background-color: #B3E4FFCC;
  color: #1F5E80;
}

::selection {
  background-color: #B3E4FFCC;
  color: #1F5E80;
}

.background-default {
  background-color: #fff;
  color: #243138;
}

.background-muted {
  background-color: #f5f5f5;
  color: #243138;
}

.background-primary {
  background-color: #1F5E80;
  color: #fff;
}

.background-secondary {
  background-color: #B3E4FFCC;
  color: #fff;
}

.text-default {
  color: #fff;
}

.text-muted {
  color: #f5f5f5;
}

.text-primary {
  color: #1F5E80;
}

.text-secondary {
  color: #B3E4FFCC;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-left {
  text-align: left !important;
}

.text-uppercase {
  text-transform: uppercase;
}

.mt-0 {
  margin-bottom: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.full-width {
  width: 100%;
}

.overflow-hidden {
  overflow: hidden;
}

.clearfix {
  overflow: auto;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.visible-laptop {
  display: none;
}

.hidden-laptop {
  display: block;
}

.list-none {
  list-style-type: none;
}

.custom-scroll-primary {
  position: relative;
  overflow: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.custom-scroll-primary::-webkit-scrollbar {
  display: none;
}

.custom-scroll-primary:after {
  content: "";
  position: absolute;
  top: 0;
  right: 8px;
  width: 1px;
  height: 100%;
  background-image: repeating-linear-gradient(0deg, #d65b58, #d65b58 4px, transparent 4px, transparent 10px, #d65b58 11px), repeating-linear-gradient(90deg, #d65b58, #d65b58 4px, transparent 4px, transparent 10px, #d65b58 11px), repeating-linear-gradient(180deg, #d65b58, #d65b58 4px, transparent 4px, transparent 10px, #d65b58 11px), repeating-linear-gradient(270deg, #d65b58, #d65b58 4px, transparent 4px, transparent 10px, #d65b58 11px);
  background-size: 1px 100%, 100% 1px, 1px 100%, 100% 1px;
  background-position: 0 0, 0 0, 100% 0, 0 100%;
  background-repeat: no-repeat;
}

.custom-scroll-primary > ul {
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.custom-scroll-primary > ul::-webkit-scrollbar {
  display: none;
}

.custom-scroll-primary > ul:before,
.custom-scroll-primary > ul:after {
  content: "";
  position: absolute;
  background-size: contain;
  width: 15px;
  height: 13px;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='enable-background:new 0 0 512 512' viewBox='0 0 1000 1000'%3E%3Cpath fill='%23d65b58' d='M424.972 166.687 44.877 732.229c-40.409 60.125 2.677 140.995 75.119 140.995h760.189c72.442 0 115.527-80.87 75.118-140.995L575.21 166.687c-35.864-53.363-114.373-53.363-150.237 0z'/%3E%3C/svg%3E");
}

.custom-scroll-primary > ul:before {
  top: -2px;
  right: 0;
}

.custom-scroll-primary > ul:after {
  content: "";
  transform: rotate(180deg);
  bottom: -2px;
  right: 2px;
}

.custom-scroll-secondary {
  position: relative;
  overflow: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-right: 20px;
  margin-right: -10px;
}

.custom-scroll-secondary::-webkit-scrollbar {
  display: none;
}

.custom-scroll-secondary:after {
  content: "";
  position: absolute;
  top: 0;
  right: 8px;
  left: auto;
  width: 1px;
  height: 100%;
  background-image: repeating-linear-gradient(0deg, #fff, #fff 4px, transparent 4px, transparent 10px, #fff 11px), repeating-linear-gradient(90deg, #fff, #fff 4px, transparent 4px, transparent 10px, #fff 11px), repeating-linear-gradient(180deg, #fff, #fff 4px, transparent 4px, transparent 10px, #fff 11px), repeating-linear-gradient(270deg, #fff, #fff 4px, transparent 4px, transparent 10px, #fff 11px);
  background-size: 1px 100%, 100% 1px, 1px 100%, 100% 1px;
  background-position: 0 0, 0 0, 100% 0, 0 100%;
  background-repeat: no-repeat;
}

.custom-scroll-secondary > ul {
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.custom-scroll-secondary > ul::-webkit-scrollbar {
  display: none;
}

.custom-scroll-secondary > ul:before,
.custom-scroll-secondary > ul:after {
  content: "";
  position: absolute;
  background-size: contain;
  width: 15px;
  height: 13px;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='enable-background:new 0 0 512 512' viewBox='0 0 1000 1000'%3E%3Cpath fill='%23ffffff' d='M424.972 166.687 44.877 732.229c-40.409 60.125 2.677 140.995 75.119 140.995h760.189c72.442 0 115.527-80.87 75.118-140.995L575.21 166.687c-35.864-53.363-114.373-53.363-150.237 0z'/%3E%3C/svg%3E");
}

.custom-scroll-secondary > ul:before {
  top: -2px;
  right: 0;
  left: auto;
}

.custom-scroll-secondary > ul:after {
  content: "";
  transform: rotate(180deg);
  right: 2px;
  left: auto;
  bottom: -2px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
}

.h1 {
  font-size: 48px;
}

.h2 {
  font-size: 32px;
}

.h3 {
  font-size: 16px;
}

.h4 {
  font-size: 12px;
}

.h5 {
  font-size: 10px;
}

.h6 {
  font-size: 8px;
}

.button {
  background-color: #B3E4FFCC;
  color: #1F5E80;
  border-radius: 28px;
  border: 1px solid #1F5E80;
  padding: 15px 36px;
  text-transform: none;
  font-size: 17px;
  letter-spacing: 0;
  text-decoration: none;
}

.button:focus,
.button:hover,
.button:active {
  color: #B3E4FFCC;
  background-color: #1F5E80;
}

.button--primary {
  font-weight: 700;
  font-style: normal;
  font-family: "OfficinaSansITCPro ExtraBd";
  background-color: #1F5E80;
  color: #fff;
}

.container-sm {
  max-width: 768px;
}

.container-md {
  max-width: 1024px;
}

.container-lg {
  max-width: 1200px;
}

.container {
  max-width: 1366px;
}

[class^="container"] {
  width: 100%;
  padding-right: 30px;
  padding-left: 30px;
  margin-right: auto;
  margin-left: auto;
}

.footer {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(to bottom right, rgba(179, 228, 255, 0.2) 4%, rgba(179, 228, 255, 0.2) 32%, rgba(31, 94, 128, 0) 50%) bottom right/50% 50% no-repeat, linear-gradient(to bottom left, rgba(179, 228, 255, 0.2) 4%, rgba(179, 228, 255, 0.2) 32%, rgba(31, 94, 128, 0) 50%) bottom left/50% 50% no-repeat, linear-gradient(to top left, rgba(179, 228, 255, 0.2) 4%, rgba(179, 228, 255, 0.2) 32%, rgba(31, 94, 128, 0) 50%) top left/50% 50% no-repeat, linear-gradient(to top right, rgba(179, 228, 255, 0.2) 4%, rgba(179, 228, 255, 0.2) 32%, rgba(31, 94, 128, 0) 50%) top right/50% 50% no-repeat;
  height: -moz-fit-content;
  height: fit-content;
  color: #243138;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 18px;
  margin: 0 auto;
  padding-bottom: 123px;
}

.footer__inner .row {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-end;
}

.footer__inner .row .col {
  width: 100%;
  margin-bottom: 20px;
}

.footer__inner .row .col ul {
  list-style: none;
  padding: 0 0 50px 0;
  margin: 0;
}

.footer__inner .row .col ul li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
}

.footer__inner .row .col ul li a {
  color: #243138;
  text-decoration: underline;
  font-size: 16px;
}

.footer__inner .row .col ul li a:focus,
.footer__inner .row .col ul li a:hover,
.footer__inner .row .col ul li a:active {
  color: #F6AB3B;
}

.footer__inner .row .col ul li a.menu--contact {
  font-size: 20px;
}

.footer__inner .row .col ul li a.menu--footer {
  font-size: 18px;
}

.footer__inner .row .col:nth-of-type(1) {
  order: 1;
}

.footer__inner .row .col:nth-of-type(2) {
  order: 3;
}

.footer__inner .row .col:nth-of-type(3) {
  order: 5;
}

.footer__inner .row .col:nth-of-type(4) {
  order: 7;
}

.footer__inner .row .col:nth-of-type(5) {
  order: 2;
}

.footer__inner .row .col:nth-of-type(5) p {
  margin: 0 auto;
}

.footer__inner .row .col:nth-of-type(6) {
  order: 4;
}

.footer__inner .row .col:nth-of-type(7) {
  order: 6;
}

.footer__inner .row .col:nth-of-type(8) {
  order: 8;
}

.footer__inner h4 {
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  padding: 20px 60px;
  background: #1F5E80;
  border-radius: 20px;
  text-align: center;
  margin-block-end: 0;
  max-width: 263px;
  margin: 0px auto 20px auto;
}

.footer__inner a:focus,
.footer__inner a:hover,
.footer__inner a:active {
  color: #1F5E80;
}

.footer__inner h5 {
  color: #1F5E80;
  font-size: 25px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.4;
  margin-block-end: 0;
  margin: 0 auto;
  text-align: center;
  padding: 20px 0;
}

.footer__inner h2 {
  font-weight: 700;
  font-size: 34px;
  line-height: 1;
  margin: 0 auto;
}

.footer__inner p {
  font-size: 16px;
  line-height: 2;
  text-align: center;
  margin-bottom: 30px;
}

.page-wrapper {
  overflow: hidden;
}

.header {
  overflow: hidden;
  background: linear-gradient(to bottom right, rgba(179, 228, 255, 0.05) 4%, rgba(179, 228, 255, 0.2) 32%, rgba(31, 94, 128, 0) 50%) bottom right/50% 50% no-repeat, linear-gradient(to bottom left, rgba(179, 228, 255, 0.05) 4%, rgba(179, 228, 255, 0.2) 32%, rgba(31, 94, 128, 0) 50%) bottom left/50% 50% no-repeat, linear-gradient(to top left, rgba(179, 228, 255, 0.05) 4%, rgba(179, 228, 255, 0.2) 32%, rgba(31, 94, 128, 0) 50%) top left/50% 50% no-repeat, linear-gradient(to top right, rgba(179, 228, 255, 0.05) 4%, rgba(179, 228, 255, 0.2) 32%, rgba(31, 94, 128, 0) 50%) top right/50% 50% no-repeat;
  flex-shrink: 0;
  width: 100%;
  background-size: cover;
}

.header > .container {
  position: relative;
}

.header__inner {
  z-index: 10;
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
}

.header__inner.fixed {
  background-color: transparent;
}

.header__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px;
  max-width: 1360px;
  height: 94px;
  margin: 40px auto 0 auto;
  border-radius: 20px 20px 0 0;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.2);
}

.header__logo {
  z-index: 11;
  position: relative;
  width: 100%;
}

.header__menu-toggle {
  z-index: 10;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  background-color: #fff;
  border-radius: 0 20px 0 0;
  padding: 47px;
}

img.hidden-mobile {
  display: none;
}

img.hidden-tablet {
  display: block;
}

.menu {
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  color: #fff;
  background-color: #1F5E80;
  transform: translateX(-100%);
  transition-property: transform;
  transition-duration: 0.4s;
}

.menu--closed {
  transform: translateX(-100%);
  height: 100%;
  width: 100%;
  color: #243138;
  background-color: #B3E4FFCC;
}

.menu--open {
  transform: translateX(0);
}

.menu__link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  font-family: "InterVariable";
  text-decoration: none;
  letter-spacing: -0.42px;
  text-align: center;
}

.menu__link:after {
  content: attr(data-text);
  height: 0;
  visibility: hidden;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: none;
  font-weight: 700;
  font-style: normal;
  font-family: "InterVariable";
  color: #1F5E80;
}

.menu__link:focus,
.menu__link:hover,
.menu__link:active,
.menu__link.active {
  font-weight: 700;
  font-style: normal;
  font-family: "InterVariable";
  color: #F6AB3B;
}

.menu__list {
  display: flex;
  align-items: center;
  flex-direction: column;
  list-style-type: none;
  gap: 30px;
}

.intro .section-image {
  padding-right: 30px;
  padding-left: 30px;
  margin-bottom: 45px;
}

.menu-toggle-close {
  display: flex;
  width: 42px;
  height: 42px;
  padding: 0;
  margin: 0;
  background: none;
  border: 0;
  display: none;
}

.menu-toggle-close:focus-visible {
  outline: 0;
}

.menu-active .menu-toggle-close {
  display: block;
  position: absolute;
}

.menu-toggle-open {
  display: flex;
  width: 42px;
  height: 42px;
  padding: 0;
  margin: 0;
  background: none;
  border: 0;
  position: absolute;
}

.menu-toggle-open:focus-visible {
  outline: 0;
}

.menu-active .menu-toggle-open {
  display: none;
}

.menu-toggle-open svg {
  width: 28px;
  height: 28px;
  margin: auto;
  fill: #1F5E80;
}

.menu-toggle-close svg {
  width: 24px;
  height: 24px;
  margin: auto;
  stroke: #1F5E80;
}

.navbar__link {
  font-weight: 600;
  text-decoration: none;
}

.navbar__link:focus,
.navbar__link:hover,
.navbar__link:active {
  color: #1F5E80;
}

.navbar__list {
  display: flex;
  align-items: center;
  flex-direction: column;
  list-style-type: none;
  gap: 32px;
}

.section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.two-columns {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding-bottom: 50px;
}

.section-text h2 {
  font-weight: 900;
  color: #1F5E80;
  font-size: 25px;
  line-height: 1.2;
  margin-block-end: 1em;
}

.one-column {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding-bottom: 50px;
}

.one-column .section-text {
  width: 100%;
  padding-top: 67px;
  position: relative;
}

.one-column .section-text h3 {
  margin-block-end: 0;
}

.section-text p {
  width: 100%;
  line-height: 2;
  margin-left: 0;
  margin-top: 0;
  font-size: 16px;
  line-height: 1.7;
}

.section-text a:hover {
  color: #F6AB3B;
}

.section-text__wrap {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 40px;
}

a.link {
  font-weight: bold;
  color: #1F5E80;
  cursor: pointer;
  text-decoration: none;
}

a.link.link--arrow svg {
  display: inline-block;
  margin-left: 1px;
  width: 13px;
  height: auto;
  transition: margin-left 0.3s ease-in-out;
}

a.link:hover.link--arrow svg {
  transition: margin-left 0.3s ease-in-out;
  margin-left: 7px;
}

.section__links {
  display: flex;
  flex-wrap: wrap;
  margin-top: 28px;
  gap: 25px;
}

.section__links .button {
  font-weight: 900;
  width: 100%;
  text-align: center;
}

.textarea {
  padding: 8px 8px;
  border-color: #243138;
  resize: vertical;
}

.intro {
  position: relative;
  z-index: 1;
  padding-top: 0px;
  padding-bottom: 60px;
}

.intro .intro-image {
  border-radius: 0px 0px 100px 20px;
  width: auto;
  margin: 0 auto;
  position: relative;
}

.intro .intro-image:before {
  border-radius: 0px 0px 100px 20px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 27.82%, rgba(0, 0, 0, 0) 100%);
  content: "";
  bottom: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100px;
  z-index: 0;
}

.intro .intro-image img {
  width: 100%;
  height: auto;
  border-radius: 0px 0px 100px 20px;
}

.intro h2.header__text {
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  font-style: normal;
  line-height: 1.4;
  display: block;
  position: absolute;
  left: 30px;
  bottom: 30px;
  z-index: 1;
  margin-block-end: 0;
}

.intro__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.intro-inner__text-wrap-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.intro-inner__text-wrap-details li {
  display: flex;
  font-size: 10px;
  flex-shrink: 0;
  align-items: baseline;
}

.intro-inner__text-wrap-details li p {
  letter-spacing: 3px;
  font-size: 10px;
  width: auto;
  margin-right: 10px;
}

.intro-inner__text-wrap-details li p:last-child {
  font-weight: 500;
  font-family: "OfficinaSanITCMediumItalic";
  color: #1F5E80;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0px;
  margin-right: 0px;
}

.agenda {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #f5f5f5;
}

.agenda__inner {
  display: flex;
  flex-direction: column;
}

.agenda-text {
  display: flex;
  flex-direction: column;
}

.agenda-text .section-text__wrap p {
  margin-bottom: 0;
}

.agenda__inner .section-text::after {
  content: " ";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #e2e2e2;
  margin-bottom: 56px;
}

.agenda__inner .section-image {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #1F5E80;
  border-radius: 100px;
  height: 150px;
  margin-top: auto;
  width: 100%;
  max-width: 300px;
  margin-right: auto;
  margin-left: auto;
}

.agenda__inner .section-image img {
  height: 150px;
  width: 130px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-left: auto;
  margin-top: -25px;
  margin-right: 18px;
}

.agenda__inner .section-image .button {
  position: absolute;
  font-size: 12px;
  padding: 10px 24px 8px;
  bottom: 20px;
  left: 37px;
}

.agenda__inner .section-image h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 100px;
  -moz-column-gap: 5px;
  column-gap: 5px;
  letter-spacing: -0.56px;
  position: absolute;
  top: 30px;
  left: 37px;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.3;
}

.agenda__inner .section-image h3 span {
  font-weight: 700;
  font-style: italic;
  font-family: "ITCOfficinaSerif LT BoldIt", sans-serif;
  color: #1F5E80;
}

.agenda__inner .section-image h3 span:first-child,
.agenda__inner .section-image h3 span:last-child {
  font-family: "OfficinaSanITCBoo";
  color: #243138;
}

.agenda-inner__events-header h3 {
  color: #1F5E80;
  font-size: 24px;
  line-height: 29px;
  font-weight: 700;
  font-style: italic;
  font-family: "ITCOfficinaSerif LT BoldIt", sans-serif;
  margin-bottom: 0;
}

.agenda-inner__events-header p {
  font-size: 15px;
  line-height: 30px;
  margin-top: 0;
  margin-bottom: 0;
}

.agenda-inner__events {
  display: flex;
  flex-direction: column;
}

.agenda-inner__events-header {
  margin-bottom: 50px;
}

.agenda-inner__list {
  margin-bottom: 80px;
}

.agenda-inner__list ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  list-style-type: none;
  height: 250px;
}

.agenda-inner__list ul li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  padding: 26px 0 5px;
  width: 90%;
}

.agenda-inner__list ul li span {
  font-size: 14px;
}

.agenda-inner__list ul li span:first-child {
  color: #1F5E80;
  font-size: 13px;
  line-height: 26px;
  width: 100%;
  font-weight: 700;
}

.agenda-inner__list ul li span:last-child {
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: right;
  font-size: 10px;
  line-height: 26px;
  font-weight: 300;
}

.agenda-inner__list ul li {
  border-bottom: 1px solid #1F5E80;
}

.agenda-inner__list ul li:first-child {
  padding: 10px 0 5px;
}

.agenda-inner__list li {
  padding: 20px 0;
}

.media {
  background-color: #1F5E80;
  padding-top: 80px;
  padding-bottom: 80px;
}

.media__inner .section-text h2 span {
  color: #fff;
}

.media__inner .section-text h2 {
  margin-bottom: 37px;
}

.media__inner .section-text p {
  color: #fff;
}

.media__inner {
  display: flex;
}

.media__inner-cards ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 400px;
  gap: 20px;
}

.media__inner-cards ul li {
  list-style-type: none;
  border-radius: 15px;
}

.media__inner .section-image {
  display: none;
}

.media-text .section-text {
  width: 100%;
}

.media-text .section-text__wrap::before {
  background-color: #fff;
}

.media-text .section-text__wrap {
  margin-bottom: 24px;
}

.logo {
  font-family: "InterVariable";
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
  color: #FFF;
  background-color: #1F5E80;
  border-radius: 20px 0px 0px 0;
  max-height: 94px;
  font-size: 16px;
  padding: 28px 40px;
}

a.header__logo {
  text-decoration: none;
}

.card {
  display: block;
  height: 140px;
  padding: 20px;
  background-color: #f5f5f5;
  border-radius: 15px;
  text-decoration: none;
  width: 250px;
  max-width: 100%;
}

.card p {
  margin: 0;
}

.card__body {
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
  max-width: 170px;
  height: 38px;
  overflow: hidden;
}

.card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 4px;
}

.card__header h3 {
  font-weight: 700;
  font-style: italic;
  font-family: "ITCOfficinaSerif LT BoldIt", sans-serif;
  font-size: 16px;
  line-height: 20px;
  color: #1F5E80;
  margin-bottom: 0;
}

.card__header p {
  font-size: 13px;
  font-weight: 300;
  line-height: 2;
  color: #1F5E80;
}

.card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 3px;
  margin-top: -5px;
}

.card__footer::after {
  content: "";
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='enable-background:new 0 0 512 512' viewBox='0 0 515.283 515.283'%3E%3Cpath fill='%23f05450' d='M372.149 515.283H85.881c-22.941 0-44.507-8.934-60.727-25.155S.001 452.34.001 429.402V143.134c0-22.94 8.934-44.506 25.154-60.726s37.786-25.154 60.727-25.154h114.507c15.811 0 28.627 12.816 28.627 28.627s-12.816 28.627-28.627 28.627H85.881c-7.647 0-14.835 2.978-20.241 8.384s-8.385 12.595-8.385 20.242v286.268c0 7.647 2.978 14.835 8.385 20.243 5.406 5.405 12.594 8.384 20.241 8.384h286.267c7.647 0 14.835-2.978 20.242-8.386 5.406-5.406 8.384-12.595 8.384-20.242V314.895c0-15.811 12.817-28.626 28.628-28.626s28.628 12.816 28.628 28.626v114.507c0 22.94-8.934 44.505-25.155 60.727-16.221 16.22-37.788 25.154-60.726 25.154zm-171.76-171.762c-7.327 0-14.653-2.794-20.242-8.384-11.179-11.179-11.179-29.306 0-40.485L417.544 57.254H314.896c-15.811 0-28.626-12.816-28.626-28.627S299.085 0 314.896 0h171.761a28.542 28.542 0 0 1 19.997 8.144l.002.002.056.056.017.016.044.044.029.029.032.032.062.062.062.062.031.032.029.029a.62.62 0 0 1 .06.061l.056.057.002.002a28.55 28.55 0 0 1 8.144 19.998v171.761c0 15.811-12.817 28.627-28.628 28.627s-28.626-12.816-28.626-28.627V97.739l-237.4 237.399c-5.585 5.59-12.911 8.383-20.237 8.383z'/%3E%3C/svg%3E");
}

.book-inner {
  display: flex;
  flex-direction: column-reverse;
}

.book {
  background-color: #B3E4FFCC;
  padding-top: 76px;
  padding-bottom: 82px;
  overflow: hidden;
}

.book .section-image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #1F5E80;
  border-radius: 160px;
  width: 190px;
  height: 330px;
  margin: 0 auto 80px;
}

.book .section-text__wrap {
  margin-bottom: 38px;
}

.book .section-image img {
  scale: 1.5;
  margin-bottom: -20px;
  margin-right: -15px;
  margin-left: 12px;
  transition-duration: 0.5s;
}

.book .section-image img:hover {
  transform: scale(1.1);
  transition-duration: 0.5s;
}

.book-inner .section-text span {
  font-style: italic;
  line-height: 26px;
}

.section-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 30px;
  justify-items: center;
  width: 100%;
  padding: 0 5%;
}

.icon {
  width: 61px;
  height: 61px;
}

.icon svg {
  fill: transparent;
}

section.navigation {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #1F5E80;
  border-radius: 20px;
  overflow: hidden;
  padding-bottom: 60px;
}

section.navigation svg.parking {
  position: absolute;
  bottom: 5%;
  right: 5%;
  width: auto;
  height: 25%;
  z-index: 1;
  opacity: 1;
}

.navigation__inner {
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  color: #fff;
  padding: 30px 0;
}

.navigation-text {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
}

.navigation-text.mb-40 {
  margin-bottom: 40px;
}

.navigation-text p {
  margin-block-start: 1em;
  margin-block-end: 1em;
}

.navigation-text--fw {
  width: 100%;
  line-height: 2;
  max-width: 100%;
  font-size: 16px;
}

.navigation-text--fw svg {
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  margin-right: 0.4rem;
  vertical-align: top;
}

.text-wrap__left {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.text-wrap__right {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-bottom: 30px;
}

.navigation-image {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  padding-bottom: 30px;
}

.tarieven {
  background: rgba(179, 228, 255, 0.3);
  padding-top: 360px;
  margin-top: -300px;
  padding-bottom: 120px;
}

.tarieven h2 {
  color: #1F5E80;
  font-size: 25px;
  font-weight: 900;
  font-style: normal;
  line-height: 1.4;
  display: block;
  text-align: left;
  margin-block-end: 1em;
}

.tarieven h3 {
  color: #243138;
  font-size: 18px;
}

.tarieven h3.alert svg {
  display: inline-block;
  height: 25px;
  width: auto;
  margin-right: 5px;
  vertical-align: top;
  margin-top: 3px;
}

.tarieven .container .layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 16px;
}

.tarieven .container .layout .image-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin: 2.5rem 0;
}

.tarieven .container .layout .image-row .image-block {
  text-align: center;
}

.tarieven .container .layout .image-row .image-block img {
  width: 100px;
  height: 100px;
  border-radius: 15px;
  -o-object-fit: cover;
  object-fit: cover;
  margin: 0 auto 0.25rem;
}

.tarieven .container .layout .image-row .image-block span {
  color: #243138;
  display: block;
  font-size: 14px;
  font-weight: 700;
  padding-top: 0.5rem;
}

.tarieven .button {
  display: inline-block;
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
  border-radius: 15px;
  background: #F6AB3B;
  border: none;
  padding: 13px 42px;
  cursor: pointer;
  position: relative;
  width: 100%;
  margin-bottom: 60px;
}

.tarieven .button.link--arrow svg {
  display: inline-block;
  margin-left: 1px;
  width: 13px;
  height: auto;
  transition: margin 0.3s ease-in-out;
}

.tarieven .button:hover.link--arrow svg {
  transition: margin 0.3s ease-in-out;
  margin-left: 7px;
  margin-right: -7px;
}

.laadpalen .section-text {
  padding: 60px 0 0px 0;
}

.laadpalen .section-image {
  width: 100%;
  padding: 0;
  margin-top: -1rem;
}

.laadpalen .section-image img {
  border-radius: 20px;
}

.container.voorzieningen {
  margin-top: 10rem;
}

section.voorzieningen {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  background-color: #1F5E80;
  border-radius: 20px;
  color: #fff;
  padding: 4rem 0;
  margin-top: -10rem;
  z-index: -1;
}

section.voorzieningen .container {
  padding: 0 50px;
}

section.voorzieningen h2 {
  color: #fff;
  font-size: 25px;
  font-weight: 900;
  font-style: normal;
  line-height: 1.2;
  display: block;
}

section.voorzieningen .voorzieningen-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 4rem;
}

section.voorzieningen .voorzieningen-text .text-wrap__left {
  flex-direction: column;
  width: auto;
  gap: 10px;
}

section.voorzieningen .voorzieningen-text .text-wrap__left .row {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

section.voorzieningen .voorzieningen-text .text-wrap__left .row .col {
  padding-right: 1rem;
}

section.voorzieningen .voorzieningen-text .text-wrap__left .row .key {
  font-weight: 400;
  min-width: 300px;
}

section.voorzieningen .voorzieningen-text .text-wrap__left .row .value {
  width: auto;
  font-weight: 700;
}

section.voorzieningen .voorzieningen-text .text-wrap__right {
  flex-direction: column;
  font-size: 16px;
  font-weight: 700;
  width: auto;
}

section.voorzieningen .voorzieningen-text .text-wrap__right .col {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

section.voorzieningen .voorzieningen-text .text-wrap__right .col .row {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}

section.voorzieningen .voorzieningen-text .text-wrap__right .col .row svg {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
}

section.voorzieningen .text-wrap__full {
  flex: 1 1 100%;
  font-size: 16px;
  line-height: 1.7;
  padding: 4rem 0 0 0;
  text-wrap: balance;
}

section.voorzieningen .text-wrap__full svg {
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  margin-right: 0.4rem;
  vertical-align: top;
}

hr {
  height: 1px;
  background: #1F5E80;
  border: none;
  width: 100%;
  margin: 60px auto;
}

@media (min-width: 0) {
  .hidden-xs {
    display: none;
  }
}

@media (min-width: 360px) {
  .card {
    width: 300px;
  }
}

@media (min-width: 576px) {
  .hidden-sm {
    display: none;
  }
}

@media (min-width: 768px) {
  .hidden-md {
    display: none;
  }

  [class^="container"] {
    padding-right: 100px;
    padding-left: 100px;
  }

  .footer__inner .row {
    flex-flow: row wrap;
    align-items: flex-end;
    gap: 23px 0;
  }

  .footer__inner .row .col ul {
    padding: 0;
  }

  .footer__inner .row .col ul li {
    font-size: 18px;
    line-height: 1.5;
  }

  .footer__inner .row .col ul li a {
    font-size: 18px;
  }

  .footer__inner .row .col ul li a.menu--contact {
    font-size: 26px;
  }

  .footer__inner h4 {
    font-size: 28.5px;
    margin: 0 auto;
    text-align: left;
  }

  .footer__inner h5 {
    margin: 0;
    font-size: 40px;
    padding: 0;
  }

  .footer__inner p {
    max-width: 370px;
    font-size: 18px;
    margin: 0;
  }

  .header__wrap {
    background: #fff;
    border-radius: 25px;
    margin: 40px auto;
    height: 94px;
    max-width: 100%;
  }

  .header__menu {
    padding: 0 40px;
  }

  .header__menu-toggle {
    border-radius: 20px;
  }

  .menu {
    padding-top: 120px;
  }

  .section-text h2 {
    font-size: 39px;
  }

  .section-text p {
    width: 85%;
    line-height: 1.7;
  }

  .section__links {
    gap: 50px;
  }

  .section__links .button {
    max-width: 222px;
    width: auto;
    padding-right: 40px;
    padding-left: 40px;
  }

  .intro .intro-image {
    border-radius: 20px 20px 100px 20px;
  }

  .intro .intro-image:before {
    height: 200px;
  }

  .intro .intro-image img {
    border-radius: 20px 20px 100px 20px;
  }

  .intro h2.header__text {
    font-size: 28.5px;
    left: 62px;
    bottom: 40px;
    margin-block-end: 0;
  }

  .logo {
    font-size: 28.5px;
    padding: 33px 40px;
    border-radius: 20px 0px 0px 20px;
  }

  .book .section-image {
    width: 250px;
    height: 500px;
  }

  .section-icons {
    gap: 50px 70px;
  }

  .icon {
    width: 122px;
    height: 122px;
  }

  section.navigation svg.parking {
    bottom: 3%;
    right: 8%;
  }

  .navigation-text {
    font-size: 18px;
    line-height: 1.7;
    flex-direction: row;
  }

  .navigation-text--fw {
    line-height: 2;
    max-width: 80%;
  }

  .text-wrap__left {
    padding: 15px 0;
  }

  .text-wrap__right {
    padding: 15px 0;
  }

  .navigation-image {
    padding: 60px;
  }

  .tarieven {
    padding-top: 400px;
    margin-top: -300px;
    padding-bottom: 60px;
  }

  .laadpalen .section-text {
    padding: 4rem 5rem 2rem 0;
  }

  section.voorzieningen h2 {
    font-size: 40px;
    padding-bottom: 20px;
  }

  section.voorzieningen .voorzieningen-text .text-wrap__left .row {
    flex-flow: row nowrap;
  }

  section.voorzieningen .voorzieningen-text .text-wrap__right {
    font-size: 22px;
  }

  section.voorzieningen .voorzieningen-text .text-wrap__right .col .row svg {
    height: 48px;
    width: auto;
    margin-top: 10px;
    margin-bottom: -5px;
  }

  section.voorzieningen .voorzieningen-text .text-wrap__right .col .row svg.etmaal {
    height: 42px;
  }
}

@media (min-width: 768px) and (min-width: 1025px) {
  section.voorzieningen .voorzieningen-text .text-wrap__right .col .row svg.laadpunt {
    margin: 0 15px 0 0px;
  }

  section.voorzieningen .voorzieningen-text .text-wrap__right .col .row svg.rolstoel {
    margin: 0 15px 0 0;
  }

  section.voorzieningen .voorzieningen-text .text-wrap__right .col .row svg.etmaal {
    margin: 0 15px 18px 0;
  }
}

@media (min-width: 768px) and (min-width: 1200px) {
  section.voorzieningen .voorzieningen-text .text-wrap__right .col .row svg.laadpunt {
    margin: 0 20px 0px 0px;
  }

  section.voorzieningen .voorzieningen-text .text-wrap__right .col .row svg.rolstoel {
    margin: 0 20px 0px 0px;
  }

  section.voorzieningen .voorzieningen-text .text-wrap__right .col .row svg.etmaal {
    margin: 0 20px 18px 0;
  }
}

@media (min-width: 768px) and (min-width: 1600px) {
  section.voorzieningen .voorzieningen-text .text-wrap__right .col .row svg.laadpunt {
    margin: 15px 20px 0px 0px;
  }

  section.voorzieningen .voorzieningen-text .text-wrap__right .col .row svg.rolstoel {
    margin: 15px 20px 0px 0px;
  }

  section.voorzieningen .voorzieningen-text .text-wrap__right .col .row svg.etmaal {
    margin: 15px 20px 0 0;
  }
}

@media (min-width: 992px) {
  .hidden-lg {
    display: none;
  }
}

@media (min-width: 1024px) {
  [class^="container"] {
    padding-right: 140px;
    padding-left: 140px;
  }
}

@media (min-width: 1025px) {
  html {
    font-size: 18px;
  }

  .visible-laptop {
    display: block;
  }

  .hidden-laptop {
    display: none;
  }

  .custom-scroll-secondary {
    left: 0;
    right: auto;
    padding-right: 0;
    margin-right: 0;
  }

  .custom-scroll-secondary:after {
    right: auto;
    left: 8px;
  }

  .custom-scroll-secondary > ul:before {
    left: 2px;
  }

  .custom-scroll-secondary > ul:after {
    left: 0;
  }

  .button {
    font-size: 14px;
    line-height: 18px;
  }

  [class^="container"] {
    padding-right: 80px;
    padding-left: 80px;
  }

  .footer__inner {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .footer__inner .row .col {
    width: 50%;
  }

  .footer__inner .row .col:nth-of-type(1) h4 {
    margin-left: 0;
  }

  .footer__inner .row .col:nth-of-type(2) {
    width: 0%;
  }

  .footer__inner .row .col:nth-of-type(3) {
    order: 2;
  }

  .footer__inner .row .col:nth-of-type(3) h5 {
    text-align: center;
  }

  .footer__inner .row .col:nth-of-type(4) {
    width: 0%;
    order: 4;
  }

  .footer__inner .row .col:nth-of-type(5) p {
    text-align: left;
    margin-left: 0;
  }

  .footer__inner .row .col:nth-of-type(5) {
    order: 3;
  }

  .footer__inner .row .col:nth-of-type(6) {
    order: 6;
  }

  .footer__inner .row .col:nth-of-type(6) ul li {
    text-align: left;
    margin-left: 0;
  }

  .footer__inner .row .col:nth-of-type(7) {
    text-align: center;
    order: 4;
  }

  .footer__inner h2 {
    font-size: 39px;
    margin: 0;
  }

  .header__inner {
    z-index: 10;
    position: absolute;
    top: 0;
  }

  .header__wrap {
    max-width: calc(100% - 80px);
  }

  .header__logo {
    width: 30%;
  }

  .header__menu {
    width: 70%;
    padding: 0 40px;
  }

  .header__menu-toggle {
    display: none;
  }

  img.hidden-mobile {
    display: block;
    width: 100%;
    height: auto;
  }

  img.hidden-tablet {
    display: none;
  }

  .menu {
    position: relative;
    transform: translateX(0);
    background-color: transparent;
    color: #243138;
    padding: 0;
  }

  .menu__link {
    font-size: 18px;
  }

  .menu__list {
    flex-direction: row;
    gap: 85px;
  }

  .intro .section-image {
    padding-right: 0;
    padding-left: 0;
    margin-bottom: 0;
  }

  .navbar__list {
    flex-direction: row;
  }

  .section-text {
    width: 50%;
    padding-top: 67px;
    position: relative;
  }

  .section-image {
    width: 100%;
  }

  .section-text h2 {
    font-size: 39px;
  }

  .one-column .section-text {
    width: 100%;
    padding: 67px 10%;
  }

  .section-text p {
    width: 100%;
    margin-left: 0px;
    font-size: 18px;
    line-height: 1.7;
  }

  .section-text__wrap {
    margin-bottom: 80px;
    gap: 20px;
    max-width: 85%;
  }

  .intro {
    padding-top: 173px;
  }

  .intro .intro-image {
    margin: 0 auto;
    width: 100%;
  }

  .intro .intro-image:before {
    border-radius: 0px 0px 100px 20px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 27.82%, rgba(0, 0, 0, 0) 100%);
    height: 266px;
  }

  .intro .intro-image img {
    width: 100%;
    height: auto;
  }

  .intro h2.header__text {
    left: 117px;
    bottom: 28px;
    font-size: 40px;
  }

  .intro__inner {
    justify-content: flex-start;
  }

  .intro-inner__text-wrap-details {
    margin-left: -46px;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .agenda {
    padding-top: 140px;
    padding-bottom: 60px;
  }

  .agenda .section-text::before {
    top: 42%;
  }

  .agenda__inner {
    flex-direction: row;
    gap: 120px;
  }

  .agenda-text {
    width: 74%;
  }

  .agenda__inner .section-text {
    width: 100%;
    padding-left: 0;
    padding-top: 17px;
  }

  .agenda__inner .section-image {
    flex-direction: column;
    padding-top: 105px;
    border-radius: 152px;
    width: 330px;
    height: 566px;
    overflow: hidden;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .agenda__inner .section-image img {
    height: auto;
    margin: 0;
    width: 92%;
    margin-top: auto;
  }

  .agenda__inner .section-image .button {
    visibility: hidden;
    position: static;
    font-size: 13px;
    padding: 12px 40px;
  }

  .agenda__inner .section-image:hover .button {
    visibility: visible;
  }

  .agenda__inner .section-image h3 {
    display: block;
    font-size: 28px;
    position: static;
    max-width: 100%;
    margin-bottom: 24px;
  }

  .agenda-inner__events-header h3 {
    font-size: 28px;
    line-height: 33px;
    margin-bottom: 0;
  }

  .agenda-inner__events-header p {
    font-size: 13px;
    line-height: 26px;
  }

  .agenda-inner__events {
    flex-direction: row;
    gap: 25px;
  }

  .agenda-inner__events-header {
    max-width: 160px;
    margin-bottom: 0;
  }

  .agenda-inner__list {
    width: 100%;
    margin-bottom: 0;
  }

  .agenda-inner__list ul {
    height: 168px;
    padding-left: 6px;
    padding-right: 48px;
  }

  .agenda-inner__list ul li {
    width: auto;
  }

  .agenda-inner__list ul li span:first-child {
    width: 170px;
  }

  .agenda-inner__list ul li span:last-child {
    width: 74px;
  }

  .media {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .media__inner .section-text h2 {
    margin-bottom: 35px;
  }

  .media__inner-cards ul {
    padding-left: 90px;
    gap: 20px 40px;
  }

  .media__inner .section-image {
    display: block;
    width: 30%;
  }

  .media-text {
    width: 70%;
    padding-left: 80px;
  }

  .media-text .section-text {
    padding-top: 0px;
  }

  .media-text .section-text__wrap {
    margin-bottom: 70px;
    padding-left: 90px;
  }

  .logo {
    padding: 14px 12vw 14px 80px;
  }

  .card {
    padding: 25px 20px 30px 30px;
    height: 168px;
  }

  .card__body {
    max-width: 150px;
    height: 58px;
  }

  .book-inner {
    flex-direction: row;
  }

  .book {
    padding-top: 32px;
    padding-left: 14px;
    padding-bottom: 98px;
  }

  .book .section-image {
    margin: 100px 0 0 0;
    width: 26%;
    margin-top: 100px;
    height: 506px;
    position: relative;
  }

  .book .section-text {
    margin-right: 122px;
  }

  .book .section-text__wrap {
    margin-bottom: 32px;
  }

  .book .section-image img {
    position: absolute;
    right: -42px;
    left: 0;
    margin: 0 auto;
    bottom: 95px;
    scale: 1.5;
  }

  .section-icons {
    justify-content: flex-end;
    width: 50%;
    gap: 30px;
  }

  .navigation-image {
    padding: 80px;
  }

  .tarieven {
    padding-top: 300px;
    margin-top: -300px;
    padding-bottom: 0px;
  }

  .tarieven h2 {
    padding: 90px 90px 70px 90px;
    font-size: 40px;
    -webkit-hyphens: auto;
    hyphens: auto;
    text-align: center;
    margin-block-end: 0;
  }

  .tarieven h3 {
    font-size: 22px;
  }

  .tarieven .container .layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: 0.45fr auto 0.45fr;
    gap: 0;
    padding: 0 20px 10rem 20px;
  }

  .tarieven .container .layout .block {
    text-align: left;
    position: relative;
    font-size: 16px;
  }

  .tarieven .container .layout .block::before,
  .tarieven .container .layout .block::after {
    content: "";
    position: absolute;
    background: rgba(179, 228, 255, 0.8);
    z-index: 0;
  }

  .tarieven .container .layout .block::before {
    width: 2px;
    height: 100%;
    top: 0;
    left: 100%;
    transform: translateX(-50%);
  }

  .tarieven .container .layout .block::after {
    height: 2px;
    width: 100%;
    left: 0;
    top: 100%;
    transform: translateY(-50%);
  }

  .tarieven .container .layout .block * {
    position: relative;
    z-index: 1;
  }

  .tarieven .container .layout .top-left {
    padding: 4rem 5rem 4rem 0;
    grid-column: 1;
    grid-row: 1;
    height: 570px;
  }

  .tarieven .container .layout .top-left::before,
  .tarieven .container .layout .top-left::after {
    display: block;
  }

  .tarieven .container .layout .top-right {
    padding: 4rem 0 4rem 5rem;
    grid-column: 3;
    grid-row: 1;
    height: 570px;
  }

  .tarieven .container .layout .top-right::after {
    display: block;
  }

  .tarieven .container .layout .top-right::before {
    display: none;
  }

  .tarieven .container .layout .top-right .image-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    margin: 2.5rem 0 0 0;
  }

  .tarieven .container .layout .top-right .image-row .image-block {
    text-align: center;
  }

  .tarieven .container .layout .top-right .image-row .image-block img {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    -o-object-fit: cover;
    object-fit: cover;
    margin: 0 auto 0.25rem;
  }

  .tarieven .container .layout .top-right .image-row .image-block span {
    color: #243138;
    display: block;
    font-size: 14px;
    font-weight: 700;
    padding-top: 1rem;
  }

  .tarieven .container .layout .bottom-left {
    padding: 4rem 5rem 4rem 0;
    grid-column: 1;
    grid-row: 3;
  }

  .tarieven .container .layout .bottom-left::before {
    display: block;
  }

  .tarieven .container .layout .bottom-left::after {
    display: none;
  }

  .tarieven .container .layout .bottom-right {
    padding: 4rem 0 4rem 5rem;
    grid-column: 3;
    grid-row: 3;
  }

  .tarieven .container .layout .bottom-right::before,
  .tarieven .container .layout .bottom-right::after {
    display: none;
  }

  .tarieven .container .layout .bottom-right h2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .tarieven .container .layout .bottom-right h2 .icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }

  .tarieven .button {
    width: 310px;
    margin-bottom: 0;
  }

  .laadpalen .section-text {
    padding: 4rem 5rem 4rem 0;
  }

  .laadpalen .section-image {
    width: 50%;
    padding-top: 9rem;
    margin-top: -15rem;
  }

  .container.voorzieningen {
    margin-top: -8rem;
  }

  section.voorzieningen .container {
    padding: 0 40px;
  }

  section.voorzieningen .voorzieningen-text {
    flex-direction: row;
    align-items: center;
  }

  section.voorzieningen .text-wrap__full {
    font-size: 18px;
  }
}

@media (min-width: 1025px) and (min-width: 1200px) {
  .footer__inner .row .col:nth-of-type(3) h5 {
    text-align: left;
  }

  .tarieven .container .layout .top-right .image-row .image-block span {
    font-size: 16px;
  }
}

@media (min-width: 1025px) and (min-width: 1025px) {
  .footer__inner .row .col:nth-of-type(8) ul li {
    text-align: center;
  }
}

@media (min-width: 1200px) {
  .hidden-xl {
    display: none;
  }

  .h1 {
    font-size: 96px;
  }

  .h2 {
    font-size: 64px;
  }

  .h3 {
    font-size: 32px;
  }

  .h4 {
    font-size: 24px;
  }

  .h5 {
    font-size: 20px;
  }

  .h6 {
    font-size: 16px;
  }

  [class^="container"] {
    padding-right: 40px;
    padding-left: 40px;
  }

  .footer__inner .row .col ul li {
    text-align: left;
  }

  .footer__inner .row .col:nth-of-type(1) {
    width: 30%;
  }

  .footer__inner .row .col:nth-of-type(2) {
    width: 20%;
    order: 2;
  }

  .footer__inner .row .col:nth-of-type(3) {
    width: 20%;
    order: 3;
  }

  .footer__inner .row .col:nth-of-type(4) {
    width: 25%;
    text-align: right;
    order: 4;
  }

  .footer__inner .row .col:nth-of-type(5) {
    width: 30%;
    order: 5;
  }

  .footer__inner .row .col:nth-of-type(6) {
    width: 20%;
    order: 6;
  }

  .footer__inner .row .col:nth-of-type(7) {
    width: 25%;
    text-align: left;
    order: 7;
  }

  .footer__inner .row .col:nth-of-type(8) {
    width: 25%;
  }

  .footer__inner .row .col:nth-of-type(8) ul li {
    text-align: right;
  }

  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  section.navigation {
    flex-direction: row-reverse;
    padding-bottom: 0;
  }

  section.navigation svg.parking {
    bottom: 8%;
    left: 37%;
    height: 38%;
    right: unset;
  }

  .navigation__inner {
    flex-direction: column;
    align-items: left;
    justify-content: flex-start;
    padding: 90px 0;
  }

  .navigation-text--fw {
    line-height: 1.7;
  }

  .text-wrap__left {
    width: 50%;
    flex-direction: row;
    font-size: 22px;
    padding-bottom: 0;
  }

  .text-wrap__right {
    width: 50%;
    font-size: 22px;
    padding: 0 70px 0 0;
  }

  .navigation-image {
    right: 0;
    top: 0;
    height: auto;
    padding: 60px;
  }

  .tarieven .container .layout .block {
    font-size: 18px;
  }

  .laadpalen .section-image {
    width: 45%;
    padding-top: 9rem;
    margin-top: -15rem;
    padding-right: 5%;
  }

  section.voorzieningen .voorzieningen-text .text-wrap__right .col .row svg {
    margin-top: 10px;
    margin-bottom: -5px;
  }
}

@media (min-width: 1366px) {
  .media__inner-cards ul li {
    width: calc(50% - 20px);
  }
}

@media (min-width: 1400px) {
  .hidden-xxl {
    display: none;
  }
}

@media (min-width: 1600px) {
  .footer__inner {
    padding-top: 0px;
    padding-bottom: 150px;
    width: 118%;
    margin: 7% -9%;
    max-width: 1520px;
  }

  .header__wrap {
    max-width: 1360px;
  }

  .menu__link {
    font-size: 20px;
  }

  .intro .intro-image {
    margin: 0 -9%;
    width: 118%;
    max-width: 1520px;
  }

  .logo {
    padding: 30px 60px;
  }

  section.navigation {
    width: 118%;
    margin: 0 -9%;
    max-width: 1520px;
    flex-direction: row;
  }

  .navigation__inner {
    width: 50%;
  }

  .navigation-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 0;
  }

  .laadpalen .section-image {
    width: 50%;
    padding-right: 0;
  }

  section.voorzieningen {
    width: 118%;
    margin: 0 -9%;
    max-width: 1520px;
    font-size: 18px;
  }

  hr {
    width: 118%;
    margin: 7% -9%;
    max-width: 1520px;
  }
}

@media (max-width: 370px) {
  .logo {
    font-size: 16px;
    padding: 28px 40px;
  }
}

@media (min-width: 371px) and (max-width: 519px) {
  .logo {
    font-size: 22px;
    padding: 22px 20vw 22px 40px;
  }
}

@media (min-width: 520px) and (max-width: 767px) {
  .logo {
    font-size: 28.5px;
    padding: 33px 40px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }

  html {
    scroll-behavior: smooth;
  }
}

@media (min-resolution: 192dpi) {
  .sprite-blank {
    background-image: url("../images/sprites@2x.png");
  }

  .sprite-login {
    background-image: url("../images/sprites@2x.png");
  }
}

@media (min-height: 667px) {
  .menu__list {
    gap: 70px;
  }
}
/*# sourceMappingURL=main.css.map */

/* insert DT */
.section-text__wrap ol {
    margin-top: -15px !important;
    margin-block-end: 1em;
}

.section-text__wrap ol li {
    font-size: 16px;
    margin-left: 20px;
}

@media (min-width: 1025px) {
    .section-text__wrap ol {
        margin-top: -38px !important;
    }
    .section-text__wrap ol li {
        font-size: 18px;
    }    
}


