@font-face {
  font-family: "DIN";
  src: url("font/DINBold.eot");
  src: url("font/DINBold.eot?#iefix") format("embedded-opentype"),
    url("font/DINBold.woff2") format("woff2"),
    url("font/DINBold.woff") format("woff"),
    url("font/DINBold.ttf") format("truetype"),
    url("font/DINBold.svg#DINBold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DIN";
  src: url("font/DIN.eot");
  src: url("font/DIN.eot?#iefix") format("embedded-opentype"),
    url("font/DIN.woff2") format("woff2"), url("font/DIN.woff") format("woff"),
    url("font/DIN.ttf") format("truetype"),
    url("font/DIN.svg#DIN") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DINPro";
  src: url("fonts/DINPro-Regular.otf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* @font-face {
  font-family: 'DINPro';
  src: url('fonts/DINPro-Medium.otf');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DINPro';
  src: url('fonts/DINPro-Light.otf');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DINPro';
  src: url('fonts/DINPro-Bold.otf');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: 'DINPro';
  src: url('fonts/DINPro-Black.otf');
  font-weight: bolder;
  font-style: normal;
  font-display: swap;
} */
/* **************************************** */
/* **************************************** */
/* General styles */

:root {
  --red: #ec6523;
  --lightRed: #ee783e;
  --blue: #00adb8;
  --lightBlue: #c6eff1;
  --lightBlue: rgb(204, 239, 241);
  --black: #231f20;
  --white: #fff;
  --lightGray: #f3f3f3;
  --mediumGray: rgb(211, 207, 207);
}

* {
  /* font-family: "Source Sans Pro", sans-serif; */
  font-family: sans-serif;
  font-family: "DINPro", sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  word-break: break-word;
  -webkit-text-size-adjust: 100%;
  line-height: 150%;
}

html {
  font-size: 62.5%;
}

body {
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  font-size: 1.6rem;
}

main {
  margin-top: 10rem;
}

h1 {
  font-size: 4.2rem;
  line-height: 125%;
  padding-bottom: 1rem;
}

h2 {
  font-size: 3.2rem;
  line-height: 125%;
  padding-bottom: 1rem;
}

h3 {
  font-size: 2.8rem;
  line-height: 125%;
  padding-bottom: 1rem;
}

h4 {
  font-size: 2.4rem;
  line-height: 125%;
  padding-bottom: 1rem;
}

.big-p {
  font-size: 2.4rem;
  line-height: 125%;
}

h5 {
  font-size: 2.2rem;
  line-height: 125%;
  padding-bottom: 0.75rem;
}

h6 {
  font-size: 2rem;
  line-height: 125%;
  padding-bottom: 0.5rem;
}

p,
a,
.box-content {
  font-size: 1.8rem;
}

a,
a:visited {
  color: var(--blue);
  text-decoration: none;
}

em,
strong,
label,
input,
::placeholder,
textarea,
select,
option,
ul,
ol,
li,
th,
tr,
td {
  font-size: inherit;
  font-size: 1.6rem;
}

th {
  min-width: 125px;
}

th:first-of-type {
  min-width: 75px;
}

blockquote,
blockquote p,
blockquote a {
  font-weight: 300;
  font-size: 1.8rem;
}

span,
strong,
em {
  font-size: inherit;
  line-height: inherit;
}

main ul,
main ol {
  margin-left: 1.6rem;
}

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

input[type="submit"],
button {
  display: block;
  background-color: transparent;
  padding: 1rem 3rem !important;
  text-decoration: none;
  width: fit-content;
  width: -moz-fit-content;
  color: var(--white) !important;
  background-color: var(--blue);
  font-weight: bold;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  text-align: center;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 1;
  border-radius: 5px;
}

input[type="submit"]:hover,
form button:hover {
  color: var(--white) !important;
  background-color: var(--black) !important;
}

input,
select {
  padding: 1rem;
  border-radius: 0.5rem;
  background-color: inherit;
  margin: 1rem 0;
}

.input-field {
  width: 100%;
}

textarea {
  /* resize: none; */
  width: 100%;
}

iframe {
  border: none !important;
  max-width: 100%;
}

a:focus {
  border: none;
}

body.using-keyboard a:focus,
body.using-keyboard input:focus,
body.using-keyboard textarea:focus,
body.using-keyboard select:focus,
body.using-keyboard button:focus,
body.using-keyboard *:focus {
  border: 4px solid var(--blue) !important;
  outline: var(--blue);
}

main.modal-open {
  position: relative;
}

main.modal-open::after {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  content: "";
  background: rgba(0, 0, 0, 0.7);
}

.menu-open {
  overflow: hidden;
}

.bold {
  font-weight: bold;
}

.center {
  text-align: center;
}

.w-100 {
  width: 100%;
}

.gray-text {
  color: var(--mediumGray);
}
.trp-language-switcher > div{
  border: 0;
}
.trp_language_switcher_shortcode{
  display: flex;
justify-content: center;
align-items: center;
}

@media all and (min-width: 1200px) {
  .current-menu-item > a {
    color: var(--blue) !important;
  }
  #main-menu-inner-wrapper {
    display: flex;
  }
  #main-menu-inner-wrapper ul li {
    position: relative;
  }
  #main-menu-inner-wrapper li .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: max-content;
    list-style: none;
    background: var(--white);
    z-index: 10;
    margin: 0;
    padding: 0;
    border-top: 3px solid var(--blue);
    box-shadow: 0 7px 14px rgba(171, 171, 171, 0.15),
      0 5px 5px rgba(171, 171, 171, 0.15);
  }
  #main-menu-inner-wrapper li .sub-menu li {
    padding: 1.5rem;
    width: 100%;
    margin-left: 0;
  }
  #main-menu-inner-wrapper li .sub-menu a {
    color: var(--black);
  }
  #main-menu-inner-wrapper li .sub-menu a:hover {
    color: var(--red);
  }
  #main-menu-inner-wrapper li.menu-item-has-children:hover > .sub-menu {
    display: block;
  }
  .menu-item-has-children .sub-menu > .menu-item-has-children:hover .sub-menu {
    display: block;
  }
  #main-menu-inner-wrapper li .sub-menu li {
    position: relative;
  }
  #main-menu-inner-wrapper li .sub-menu li .sub-menu {
    position: absolute;
    top: 0;
    left: 0;
    width: max-content;
    transform: translate(-100%, -3px);
  }
  #main-menu-inner-wrapper .mainmenu li a.toggle-icon-holder {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -70%);
  }
  #main-menu-inner-wrapper .mainmenu li .sub-menu a.toggle-icon-holder {
    position: absolute;
    top: 50%;
    left: 0;
    transform: rotate(90deg) translate(-50%, 5px);
  }
}
/* End of eneral styles */
/* **************************************** */
/* **************************************** */
/* **************************************** */
/* **************************************** */
/* Keep footer at bottom */

html,
body {
  width: 100%;
  height: 100%;
}

.content-wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

main {
  width: 100%;
  flex-grow: 1;
}

header,
main,
footer {
  flex-shrink: 0;
}
/* End of keep footer at bottom */
/* **************************************** */
/* **************************************** */
/* **************************************** */
/* **************************************** */
/* Header */

header {
  width: 100%;
  box-shadow: 0 7px 14px rgba(171, 171, 171, 0.15),
    0 5px 5px rgba(171, 171, 171, 0.15);
  background-color: var(--white);
  z-index: 10;
  position: absolute;
}

header .header-container {
  height: 10rem;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

header.header-no-trans {
  background-color: var(--white);
}

header.sticky {
  z-index: 997;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: fixed;
  box-shadow: 0 2px 10px rgba(87, 87, 87, 0.31);
  top: 0;
  width: 100%;
  background-color: var(--white);
}

header.sticky .header-container {
  height: 0;
  -moz-animation: slideDown-sticky 0.2s ease-in forwards;
  -webkit-animation: slideDown-sticky 0.2s ease-in forwards;
  -o-animation: slideDown-sticky 0.2s ease-in forwards;
  animation: slideDown-sticky 0.2s ease-in forwards;
  -moz-animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
  -o-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

header.sticky .logo-container,
header.sticky .menu-and-icons-wrapper {
  opacity: 0;
  -moz-animation: fadeIn 0.2s ease-in forwards;
  -webkit-animation: fadeIn 0.2s ease-in forwards;
  -o-animation: fadeIn 0.2s ease-in forwards;
  animation: fadeIn 0.2s ease-in forwards;
  -moz-animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

header.sticky .logo-container #header-logo {
  width: 12.5rem;
}

header.sticky .header-icon-wrapper .header-icon-item .header-icon-text {
  display: none;
}

@keyframes slideDown {
  from {
    height: 0;
  }
  to {
    height: 8rem;
  }
}

@-webkit-keyframes slideDown {
  from {
    height: 0;
  }
  to {
    height: 8rem;
  }
}

@keyframes slideDown-sticky {
  from {
    height: 0;
  }
  to {
    height: 8rem;
  }
}

@-webkit-keyframes slideDown-sticky {
  from {
    height: 0;
  }
  to {
    height: 8rem;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#header-close-search-button {
  display: none;
}

#search-box {
  visibility: hidden;
  height: 0;
  transition: all 0.4s ease;
  width: 100%;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--lightGray);
  z-index: 1;
}

#search-box #search-box-inner-wrapper {
  opacity: 0;
  width: 95%;
  max-width: 75rem;
}

#search-box #search-box-inner-wrapper.open {
  animation: fadeIn 0.3s 0.4s linear forwards;
}

#search-box #search-box-inner-wrapper #search-box-form {
  width: 100%;
  display: flex;
}

#search-box #search-box-inner-wrapper #search-box-form input {
  padding: 1.5rem 2.5rem;
  width: calc(100% - 6.5rem);
  background-color: var(--white);
  border: none;
  border-radius: 0.5rem 0 0 0.5rem;
  margin: 0;
}

#search-box #search-box-inner-wrapper #search-box-form button {
  width: 6.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 3rem;
  background-color: var(--lightRed);
  color: var(--white);
  border: none;
  border-radius: 0 0.5rem 0.5rem 0;
  cursor: pointer;
}

#search-box #search-box-inner-wrapper #search-box-form button i {
  font-size: 2.5rem;
}

#search-box.open {
  -moz-animation: showSearch 0.2s linear forwards;
  -webkit-animation: showSearch 0.2s linear forwards;
  -o-animation: showSearch 0.2s linear forwards;
  animation: showSearch 0.2s linear forwards;
  top: 0;
  position: absolute;
  z-index: 9;
}

body.sticky-body #search-box.open {
  position: fixed;
  top: 8rem;
  z-index: 996;
  -moz-animation: showSearchSticky 0.2s linear forwards;
  -webkit-animation: showSearchSticky 0.2s linear forwards;
  -o-animation: showSearchSticky 0.2s linear forwards;
  animation: showSearchSticky 0.2s linear forwards;
  box-shadow: 0 2px 10px rgba(87, 87, 87, 0.31);
}

body.sticky-body #search-box #search-box-inner-wrapper #search-box-form input {
  padding: 1rem 2rem;
}

body.sticky-body #search-box #search-box-inner-wrapper #search-box-form button {
  padding: 1rem 2rem;
}

body.sticky-body
  #search-box
  #search-box-inner-wrapper
  #search-box-form
  button
  i {
  font-size: 1.6rem;
}

@keyframes showSearch {
  from {
    padding: 0;
    height: 0;
    visibility: hidden;
    top: 0;
  }
  to {
    padding: 2.5rem;
    height: auto;
    visibility: visible;
    top: 10rem;
  }
}

@-webkit-keyframes showSearch {
  from {
    padding: 0;
    height: 0;
    visibility: hidden;
    top: 0;
  }
  to {
    padding: 2.5rem;
    height: auto;
    visibility: visible;
    top: 10rem;
  }
}

@keyframes showSearchSticky {
  from {
    padding: 0;
    height: 0;
    visibility: hidden;
  }
  to {
    padding: 1.5rem 2.5rem;
    height: auto;
    visibility: visible;
  }
}

@-webkit-keyframes showSearchSticky {
  from {
    padding: 0;
    height: 0;
    visibility: hidden;
  }
  to {
    padding: 1.5rem 2.5rem;
    height: auto;
    visibility: visible;
  }
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10rem;
  height: 10rem;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-container #header-logo {
  width: 17.5rem;
  line-height: 0;
}

.header-icon-wrapper {
  display: flex;
  align-items: center;
}

.header-icon-item {
  display: flex;
  flex-flow: column;
  align-items: center;
  color: var(--red);
  margin-left: 1.5rem;
  cursor: pointer;
  text-decoration: none;
}

.header-icon-item i {
  color: var(--red);
  font-size: 2.2rem;
}

.header-icon-item p {
  margin-top: 0.75rem;
  color: var(--red);
  font-size: 1.6rem;
}

.header-login-logout-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.header-login-logout-wrapper #login-button,
.header-login-logout-wrapper #logout-button,
#member-pages-button {
  line-height: 100%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
}

.header-login-logout-wrapper #login-button i,
.header-login-logout-wrapper #logout-button i,
#member-pages-button i {
  margin-right: 0.75rem;
  font-size: 2rem;
}



.header-container .menu-and-icons-wrapper .trp-language-switcher {
  height: 42px;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
}



/* BIG login */
#big-login-form-wrapper {
  width: 100%;
  width: calc(100% - 3rem);
  margin: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 0;
}

/* Login modal */

.modal-box {
  display: flex;
  width: 100%;
  z-index: 10;
  opacity: 0;
  height: 100%;
  position: fixed;
  overflow-x: hidden;
  background-color: rgba(0, 0, 0, 0.8);
  transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  z-index: -1;
}

.modal-box.open {
  opacity: 1;
  z-index: 1000;
}

.login-wrapper {
  width: 100%;
  height: 100vh;
  color: var(--yellow);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 1rem;
}

#login-inner-wrapper {
  position: relative;
  padding: 3rem 5rem;
  margin: 5rem 0rem;
  width: 100%;
  max-width: 600px;
  border-radius: 0.5rem;
  color: var(--darkgrey);
  background-color: var(--white);
  display: flex;
  flex-direction: column;
}

.login-text-wrapper {
  display: flex;
  /* justify-content: space-between; */
  /* align-items: center; */
}

#close-login-button {
  position: absolute;
  top: 1rem;
  right: 2rem;
}

#login-form-button {
  margin-top: 1.5rem;
  padding: 1.5rem 2.5rem;
}

#forgot-password-wrapper {
  padding-top: 2rem;
}
/****** Forgot password modal **********/

.modal-box-forgot-password {
  display: flex;
  width: 100%;
  z-index: 10;
  opacity: 0;
  height: 100%;
  position: fixed;
  overflow-x: hidden;
  background-color: rgba(0, 0, 0, 0.8);
  transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  z-index: -1;
}

.modal-box-forgot-password.open {
  opacity: 1;
  z-index: 1000;
}

.forgot-password-wrapper {
  width: 100%;
  height: 100vh;
  color: var(--yellow);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 1rem;
}

#forgot-password-inner-wrapper {
  position: relative;
  padding: 3rem 5rem;
  margin: 5rem 0rem;
  width: 100%;
  max-width: 600px;
  border-radius: 0.5rem;
  color: var(--darkgrey);
  background-color: var(--white);
  display: flex;
  flex-direction: column;
}

#close-forgot-password-button {
  position: absolute;
  top: 1rem;
  right: 2rem;
}
/****** End of forgot password modal **********/
/* End of header */
/* **************************************** */
/* **************************************** */
/* **************************************** */
/* **************************************** */
/* Main menu */

.menu-and-icons-wrapper {
  display: flex;
  justify-content: center;
}

#header-menu-button {
  display: none;
}

#close-menu-button {
  display: none;
}

.mainmenu {
  display: flex;
}

.mainmenu li {
  list-style-type: none;
  padding: 2rem 0 2rem 1rem;
}

.mainmenu li a {
  text-decoration: none;
  padding: 1rem;
  text-transform: uppercase;
  color: var(--black);
  font-size: 1.4rem;
  /* font-weight: bold; */
  transition: all 0.4s ease;
}

.mainmenu li a:hover {
  color: var(--red);
}
/* End of main menu */
/* **************************************** */
/* **************************************** */


/*********************************************/
/* Eu coufounding logo */
.eu-cofunded-logo-wrapper {
  display: flex;
  position: absolute;
  top: 100px;
  left: 1%;
  z-index: 5;
}
.eu-cofunded-logo-wrapper a {
  width: 14rem;
  line-height: 0;
}

/* end Eu coufounding logo */
/********************************************/



/* **************************************** */
/* **************************************** */
/* Footer */

footer {
  height: auto;
  padding: 7.5rem 10rem;
  background-color: var(--black);
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  width: 100%;
  position: relative;
}

.foooter-inner-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#footer-logo {
  display: flex;
}

#footer-logo img {
  width: 25rem;
}

#footer-left {
  padding: 2.5rem 5rem;
}

#footer-right {
  padding: 2.5rem 5rem;
  border-left: 2px solid var(--white);
}

#footer-right a,
#footer-right p {
  color: var(--white);
}
/* End of footer */
/* **************************************** */
/* **************************************** */
/* **************************************** */
/* **************************************** */
/* News */

.box-latest-news {
  width: 100%;
  margin: 0;
  padding: 3.5rem 0;
  background-color: var(--lightBlue);
}

.box-news-headline {
  color: var(--blue);
  text-align: center;
  padding: 0 2.5rem 2rem 2.5rem;
}

.newslist-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.box-news-50 {
  text-decoration: none;
  width: 50%;
  width: calc(50% - 3rem);
  margin: 1.5rem;
  display: flex;
  background-color: var(--white);
}

.box-news-50:hover .box-image-container .box-image {
  transform: scale(1.1);
}

.box-news-50 .box-image-container {
  width: 33.33%;
  overflow: hidden;
  position: relative;
}

.box-news-50 .box-image-container .box-image {
  height: 100%;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 0.4s ease;
}

.box-news-50 .box-content {
  width: 66.66%;
  color: var(--black);
  padding: 2.5rem;
}

#all-news-link {
  margin: 2rem auto 0 auto;
}

#get-more-news {
  margin: 1.5rem auto;
}

#all-news-loader {
  display: none;
}

.sk-folding-cube {
  margin: 1.5rem auto;
  width: 2rem;
  height: 2rem;
  position: relative;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

.sk-folding-cube .sk-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.sk-folding-cube .sk-cube:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--blue);
  -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
  animation: sk-foldCubeAngle 2.4s infinite linear both;
  -webkit-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

.sk-folding-cube .sk-cube2 {
  -webkit-transform: scale(1.1) rotateZ(90deg);
  transform: scale(1.1) rotateZ(90deg);
}

.sk-folding-cube .sk-cube3 {
  -webkit-transform: scale(1.1) rotateZ(180deg);
  transform: scale(1.1) rotateZ(180deg);
}

.sk-folding-cube .sk-cube4 {
  -webkit-transform: scale(1.1) rotateZ(270deg);
  transform: scale(1.1) rotateZ(270deg);
}

.sk-folding-cube .sk-cube2:before {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.sk-folding-cube .sk-cube3:before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.sk-folding-cube .sk-cube4:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

@-webkit-keyframes sk-foldCubeAngle {
  0%,
  10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%,
  75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%,
  100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}

@keyframes sk-foldCubeAngle {
  0%,
  10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%,
  75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%,
  100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}

.single-news {
  width: 100%;
  width: calc(100% - 3rem);
  max-width: 950px;
  margin: 3rem auto;
}

.single-news h2,
.single-news h3,
.single-news h4,
.single-news h5,
.single-news h6 {
  padding-top: 2.5rem;
}

.single-news p {
  margin: 0 0 2.5rem 0;
}

.single-news-date {
  margin: 1.5rem 0;
  margin: 1.5rem auto;
}

.single-news-headline {
  margin: 1.5rem 0;
  /* margin:1.5rem auto; */
  padding-bottom: 0;
}

.single-news-category {
  margin: 1.5rem 0;
  font-weight: bold;
  color: var(--green);
  font-size: 2.2rem;
}

.single-news-image {
  margin: 1.5rem 0;
  width: 100%;
}

.single-news-content {
  margin: 1.5rem 0;
}
/* End of news */
/* **************************************** */
/* **************************************** */
/* **************************************** */
/* **************************************** */
/* Standard text pages */

.top-img-text-page {
  width: 100%;
}

.text-page-content {
  margin: 1.5rem 0;
  width: 100%;
  width: calc(100% - 3rem);
  max-width: 750px;
  padding: 2.5rem 0;
}

.text-page-content h1,
.text-page-content h2,
.text-page-content h3,
.text-page-content h4,
.text-page-content h5,
.text-page-content h6 {
  padding-top: 2.5rem;
}

.text-page-content p {
  margin-bottom: 2rem;
}

.text-page-content table {
  border-collapse: collapse;
  max-width: 100% !important;
  width: auto !important;
}

.text-page-content table td,
.text-page-content table th {
  /* border: 1px solid var(--lightGray); */
  padding: 0 0 0 2.5rem;
}
/* .text-page-content table tr:nth-child(even) {
  background-color: var(--lightGray);
} */
/* .text-page-content table tr:hover {
  background-color: var(--gray);
} */

.text-page-content table th {
  padding: 0.5rem 0;
  text-align: left;
  color: var(--blue);
}
/* End of standard text pages*/
/* **************************************** */
/* **************************************** */
/* **************************************** */
/* **************************************** */
/* Search page */

.searchform-wrapper {
  padding: 5rem 0;
  width: 100%;
  width: calc(100% - 3rem);
  margin: 1.5rem;
}

.searchform-wrapper h1 {
  padding-bottom: 1.5rem;
}

.searchform-wrapper #searchform {
  width: 100%;
  display: flex;
  align-items: center;
}

.searchform input {
  padding: 2rem;
  width: 100%;
  width: calc(100% - 10rem);
  border: none;
  margin: 2rem 0;
  border-radius: 5px 0 0 5px;
}

.searchform button {
  display: flex;
  align-items: center;
  background-color: var(--blue);
  padding: 2.5rem 3rem;
  border: none;
  cursor: pointer;
  border-radius: 0 5px 5px 0;
}

.searchform button span {
  font-size: 2rem;
  color: var(--white);
  margin-right: 2rem;
}

.searchform button i {
  font-size: 2.2rem;
  color: var(--white);
}

#search-result-headline {
  color: var(--blue);
}

.search-result-wrapper {
  padding: 5rem 0;
  width: 100%;
  width: calc(100% - 3rem);
  margin: 1.5rem;
}

.get-more-results-wrapper {
  margin: 5rem 0;
}

.search-result {
  width: 100%;
  padding: 2.5rem 0;
  border-bottom: 2px solid var(--lightGray);
}

.search-result .post-type {
  color: var(--mediumGray);
  font-weight: bold;
}

.search-result .post-title {
  padding: 1rem 0;
}

.search-result .search-result-content {
  margin-bottom: 2rem;
}

.search-result .search-result-link {
  color: var(--red);
  display: flex;
  align-items: center;
  text-decoration: none;
}

.search-result .search-result-link span {
  margin-right: 0.5rem;
}

.hide-result {
  display: none;
}

#total-actual-rows {
  visibility: hidden;
}
/* End of search page */
/* **************************************** */
/* **************************************** */
/* COOKIES */

#cookie-info {
  position: fixed;
  z-index: 999;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0px -4px 3px rgba(87, 87, 87, 0.208);
  display: none;
}

#cookie-wrapper {
  position: relative;
}

#cookie-text {
  max-width: 75%;
}

#cookie-text p a {
  font-size: 1.6rem;
}

#cookie-content {
  max-width: 1520px;
  margin: 0 auto;
  padding: 1.5rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#cookie-content .btn-black-trans {
  width: -moz-max-content;
  width: max-content;
  margin-left: 2.5rem;
  padding: 1rem 1.5rem;
  font-size: 1.6rem;
}

#cookie-info p {
  font-size: 1.6rem;
}

.partner-logos-wrapper {
  width: 100%;
  width: calc(100% - 3rem);
  margin: 1.5rem;
  display: flex;
  flex-wrap: wrap-reverse;
  justify-content: center;
  align-items: center;
}

.box-partner-logo {
  width: 16.66%;
  width: calc(16.66% - 5rem);
  margin: 1.5rem 2.5rem;
  transition: all 0.4s ease;
}

.box-partner-logo:hover {
  transform: scale(1.1);
}

#good-examples-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  /* width: calc(100% - 3rem);
  margin: 1.5rem; */
}

#good-examples-loader {
  display: none;
}

#get-more-good-examples {
  margin: 0 auto;
}

#good-examples-category-wrapper {
  width: 100%;
  padding: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

#good-examples-category-wrapper a {
  padding: 0.5rem 1rem;
  color: var(--black);
  transition: all 0.4s ease;
}

#good-examples-category-wrapper a:hover {
  color: var(--red);
}

#good-examples-category-wrapper a.cat-selected {
  font-weight: bold;
}
/* #good-examples-category-wrapper a:first-of-type {
  padding-left: 0;
} */

#get-more-good-examples-wrapper {
  width: 100%;
}

.tiny {
  font-size: 1.4rem;
}

.semi-tiny {
  font-size: 1.6rem;
}

.cat-divider {
  padding: 0.5rem 0;
}

.pagination-wrapper {
  width: 100%;
  width: calc(100% - 3rem);
  margin: 1.5rem;
  padding: 2.5rem 0;
  display: flex;
  justify-content: flex-start;
}

.pagination-wrapper li {
  margin-right: 1rem;
  list-style-type: none;
}

.pagination-wrapper li a,
.pagination-wrapper li a:visited {
  color: var(--blue);
  text-decoration: none;
}

.pagination-wrapper li.active a,
.pagination-wrapper li.active {
  color: var(--black);
  font-weight: bold;
}

.good-example-100 {
  width: 100%;
  margin: 1.5rem;
  width: calc(100% - 3rem);
  display: flex;
  flex-wrap: wrap;
  max-width: 120rem;
  padding-bottom: 5rem;
}

.good-example-header {
  width: 100%;
  padding: 2.5rem 0;
}

.good-example-main {
  width: 75%;
  padding: 0 2.5rem 0 0;
}

.good-example-main img {
  margin-bottom: 2.5rem;
}

.good-example-main hr {
  margin-top: 2.5rem;
  border: none;
  border-top: 2px solid var(--lightGray);
}

.good-example-info {
  width: 25%;
  padding: 0 2.5rem;
}

.good-example-info .info-row {
  margin-bottom: 1.5rem;
}

.good-example-info .social-links-wrapper {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}

.good-example-info .social-links-wrapper i {
  color: var(--blue);
  font-size: 3rem;
  margin-right: 0.5rem;
}
/* Tighten text masses */

.text-page-content .event-content,
.text-page-content .project-title,
.text-page-content .project-category,
.text-page-content .ingress,
.text-page-content .box-100-toggle,
.text-page-content .page-text,
.single-news .single-news-date,
.single-news .single-news-headline,
.single-news .single-news-category,
.single-news .single-news-content {
  max-width: 750px;
}
/* 2022-04-12 */

.booking-wrapper {
  width: 100%;
}

.booking-head {
  width: 100%;
  padding: 1rem 2.5rem;
  text-align: center;
}

.booking-inner-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
}
#datepicker-form {
  width: 75%;
  width: calc(75% - 1.5rem);
  margin-right: 1.5rem;
  margin: 0;
}

.bookable-items-wrapper {
  width: 25%;
  width: calc(25% - 1.5rem);
  margin-left: 1.5rem;
}

.blue-head {
  width: 100%;
  padding: 1.5rem;
  margin-bottom: 3rem;
  text-align: center;
  background-color: var(--lightBlue);
}

.blue-head h4 {
  color: var(--blue);
  margin: 0;
  padding: 0;
}

.bookable-items-head {
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
}

.bookable-items-head .box-toggle {
  display: none;
}

.box-100-toggle-wrapper {
    width:100%;
}

.date-picker-wrapper {
  width: 100%;
  padding: 2.5rem;
  /* border-bottom: 1px solid var(--red); */
  border: 2px solid var(--blue);
  border-bottom: none;
  border-radius: 5px 5px 0 0;
}

.time-picker-wrapper {
  width: 100%;
  padding: 2.5rem;
  background-color: var(--lightBlue);
  border-radius: 0 0 5px 5px;
  border: 2px solid var(--blue);
  border-top: 1px solid var(--blue);
}

.time-picker-inner-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}

.time-picker-wrapper input[type="submit"] {
  background-color: var(--red);
  margin-top: 1.5rem;
}

#time-picker-loader {
  display: none;
}

#time-picker-loader.open {
  display: block;
}

#time-picker-loader .sk-chase-dot:before {
  background-color: var(--black);
}

.select-outer-wrapper {
  display: flex;
}

.select-wrapper {
  margin-right: 2.5rem;
}

.select-wrapper label {
  font-weight: bold;
  font-size: 1.4rem;
}

.select-wrapper select {
  margin-top: 0.5rem;
  padding: 1rem;
  border-radius: 5px;
  background-color: var(--white);
  border: 1px solid var(--mediumGray);
  font-size: 1.4rem;
}

.booking-table-area-wrapper {
  width:100%;
  position: relative;
}

#booking-table-area {
  width: 100%;
}

#booking-table-loader {
  display: none;
}

#booking-table-loader.open {
  display: block;
}

#booking-table-loader .sk-chase-dot:before {
  background-color: var(--black);
}

.booking-table-wrapper,
#sticky-table-wrapper {
  width: 100%;
  overflow-x: auto;
}


#sticky-table-wrapper {
  display: none;
}

#sticky-table-wrapper.show {
  display: table;
  position: fixed;
  top: 8rem;
  z-index: 2;
  background: #fff;
  width: 100%;
  max-width: 1450px;
}

#booking-head-abs {
  position: absolute;
  top:0;
  left:0;
  height:4rem;
  width:100%;
}

#booking-table,
#sticky-table {
  border-collapse: collapse;
  width: 100%;
}

#booking-table td,
#booking-table th,
#sticky-table td,
#sticky-table th {
  /* border-left: 1px solid #ddd;
  border-right: 1px solid #ddd; */
  border: 1px solid #ddd;
  padding: 1rem;
}

#booking-table td,
#sticky-table td {
  cursor: pointer;
}

#booking-table tr:nth-child(even) {
  background-color: #f2f2f2;
}

#booking-table th,
#sticky-table th {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  text-align: center;
  /* background-color: var(--lightGray); */
  color: var(--black);
}

#booking-table .time-row,
#sticky-table .time-row {
  /* background-color: var(--lightGray); */
  text-align: center;
  width: 75px;
  color: var(--black);
  cursor: default;
}

#booking-table .invisible,
#sticky-table .invisible {
  color: var(--white) !important;
}

.available-slot {
  background-color: #3dd954;
  background-color: var(--blue);
}

.unavailable-slot {
  background-color: #e05364;
  background-color: #f3f3f3;
}

.passed-time {
  background-color: #ccc;
  cursor: default !important;
}

.passed-time span {
  position: relative;
  z-index: 2;
}

.passed-time {
  position: relative;
  text-align: center;
}

.passed-time:before,
.passed-time:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.passed-time:before {
  background: linear-gradient(
    to top right,
    transparent calc(50% - 1px),
    rgb(186, 185, 185) 50%,
    transparent calc(50% + 1px)
  );
}
/* .passed-time:after {
  background: linear-gradient(to left top, transparent calc(50% - 1px), rgb(186, 185, 185) 50%, transparent calc(50% + 1px) );
} */

.prepicked-slot {
  border-left: 5px solid #3dd954;
}

.booking-modal-layer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.747);
  background-color: #002427d9;;
  
  z-index: 999;
  overflow-x: hidden;
}

.booking-modal::-webkit-scrollbar {
  width: 0;
  background: transparent;
}

.booking-modal-layer.open {
  display: block;
}

.booking-modal::-webkit-scrollbar {
  display: none;
}

.booking-modal {
  max-width: 80rem;
  min-width: 25rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 5rem;
  border-radius: 0.5rem;
  background-color: var(--white);
  box-shadow: 0 7px 14px rgba(48, 48, 48, 0.1), 0 5px 5px rgba(90, 90, 90, 0.1);
  max-height: 90%;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

#booking-error-list {
  margin-left: 2.5rem;
  margin-top: 1.5rem;
}

#booking-error-list li {
  margin-bottom: 0.5rem;
  color: #e05364;
}

#booking-headline,
#fullbooked-modal-headline {
  margin-bottom: 1rem;
}

#booking-list {
  padding-left: 2.5rem;
}

#close-booking-modal {
  position: absolute;
  top: 0;
  right: 0;
  padding: 2rem;
  font-size: 2rem;
  color: var(--red);
  cursor: pointer;
}

#booking-modal-form {
  margin-top: 2rem;
}

#booking-modal-form label {
  width: 100%;
}

#booking-modal-form select,
#booking-modal-form textarea {
  width: 100%;
  margin: 1rem 0 2rem 0;
  padding: 1rem;
  border-radius: 5px;
  background-color: var(--white);
  border: 1px solid var(--mediumGray);
}

#booking-modal-form textarea {
  min-height: 10rem;
  resize: none;
}

#booking-modal-form input[type="submit"] {
  margin-top: 1.5rem;
}

input[type="submit"] {
  /* -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none; */
  -webkit-transition: color 0.4s ease, background-color 0.4s ease;
  -moz-transition: color 0.4s ease, background-color 0.4s ease;
  -ms-transition: color 0.4s ease, background-color 0.4s ease;
  -o-transition: color 0.4s ease, background-color 0.4s ease;
  transition: color 0.4s ease, background-color 0.4s ease;
}

#close-fullbooked-modal {
  margin-top: 2rem;
}
/* MODAL LOADER */

#booking-modal-loader {
  display: none;
}

#booking-modal-loader.open {
  display: block;
}

.sk-chase {
  width: 40px;
  height: 40px;
  position: relative;
  animation: sk-chase 2.5s infinite linear both;
  margin: 20px auto;
}

.sk-chase-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  animation: sk-chase-dot 2s infinite ease-in-out both;
}

.sk-chase-dot:before {
  content: "";
  display: block;
  width: 25%;
  height: 25%;
  background-color: var(--blue);
  border-radius: 100%;
  animation: sk-chase-dot-before 2s infinite ease-in-out both;
}

.sk-chase-dot:nth-child(1) {
  animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2) {
  animation-delay: -1s;
}

.sk-chase-dot:nth-child(3) {
  animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4) {
  animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5) {
  animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6) {
  animation-delay: -0.6s;
}

.sk-chase-dot:nth-child(1):before {
  animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2):before {
  animation-delay: -1s;
}

.sk-chase-dot:nth-child(3):before {
  animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4):before {
  animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5):before {
  animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6):before {
  animation-delay: -0.6s;
}

@keyframes sk-chase {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes sk-chase-dot {
  80%,
  100% {
    transform: rotate(360deg);
  }
}

@keyframes sk-chase-dot-before {
  50% {
    transform: scale(0.4);
  }
  100%,
  0% {
    transform: scale(1);
  }
}
/* END OF MODAL LOADER */

.checked-circle {
  width: 10rem;
  height: 10rem;
  margin: 2.5rem auto 5rem auto;
  border-radius: 50%;
  background-image: linear-gradient(
    to bottom right,
    var(--blue),
    var(--lightBlue)
  );
  position: relative;
}

.checked-circle::after {
  position: absolute;
  content: "";
  top: 2rem;
  left: 3.5rem;
  width: 2rem;
  height: 4rem;
  border: solid white;
  border-width: 0 1rem 1rem 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}


.member-bookings {
  width: 100%;
  margin: 2.5rem 0;
}

.booking-box {
  width: 100%;
  border: 2px dotted #ccc;
  padding: 2.5rem;
  margin: 1rem 0;
}

.member-cancel-booking {
  margin-top: 1.5rem;
}

.box-update-member-form {
  width: 100%;
}

#submit-activity-event-form:disabled {
  background-color: var(--mediumGray);
  background-image: none !important;
  color: var(--white);
  cursor: not-allowed;
}


/* webone-check-box */
.checkbox-container {
  display: block;
  position: relative;
  /* padding-left: 5rem; */
  margin-bottom: 1.2rem;
  cursor: pointer;
  font-size: 1.4rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 3rem;
  width: 3rem;
  /* background-color: #eee; */
  background-color: #eee;
  border-radius: 0.5rem;
}
.checkbox-container:hover input~.checkmark {
  background-color: rgb(218, 218, 218);
}

.checkbox-container input:checked~.checkmark {
  background-image: linear-gradient(to bottom right, rgb(0, 196, 0), rgb(41, 247, 41));
}

.checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked~.checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  top: 0.54rem;
  left: 1.14rem;
  width: 0.54rem;
  height: 1.26rem;
  border: solid white;
  border-width: 0 0.4rem 0.4rem 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.confirm-terms-wrapper {
  margin: 2.5rem 0;
  display: flex;
  justify-content: space-between;
  width: 100% !important;

  align-items: center;
  width: 100% !important;
  padding: 1rem 0 !important;


}

.register-terms-confirm {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.register-terms-text {
  width: 100% !important;
  width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.webone-check-box {
  width: 1px !important;
  padding-top: 28px !important;
}
.confirm-terms-wrapper .checkbox-container input~.checkmark {
  background-color: rgb(218, 218, 218);
}

.confirm-terms-wrapper .checkbox-container:hover input~.checkmark {
  background-color: rgb(218, 218, 218);
}

.confirm-terms-wrapper .checkbox-container input:checked~.checkmark {
  /* background-color: var(--darkPink); */
  background-image: none;
  background-color: rgb(0, 196, 0);
}

.confirm-terms-wrapper .checkbox-container .checkmark:after {
  top: 0.54rem;
  left: 1.14rem;
  width: 0.54rem;
  height: 1.26rem;
  /* border: solid rgb(0, 196, 0); */
  border: solid #ffffff;
  border-width: 0 0.4rem 0.4rem 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}


#activity-events-form .form-event-extra-info {
  width: 100%;
  padding-left: 40px;
  padding-bottom: 20px;
}
#activity-events-form .form-event-extra-info p {
  font-size: 15px;
}



@media all and (max-width: 768px) {
  .booking-modal {
    max-width: 90%;
    min-width: 90%;
  }
}

#booking-modal-image-wrapper {
  width: 100%;
}

#booking-modal-image-wrapper img {
  margin: 1rem 0;
}

#booking-modal-info {
  margin: 1rem 0;
  color: #333;
}

/* #booking-modal-info p {
  font-size: 1.4rem;
} */


/* event and activity */

/* single-event-activity-event-slider-text-div */
.single-event-activity-event-slider-text-div h1 {
  position: relative;
}
.single-event-activity-event-slider-text-div h1::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  filter: blur(10px);
  background: inherit;
  background-color: rgba(82, 82, 82, 0.3);
  z-index: -1;
  filter        : blur(10px);
  -moz-filter   : blur(10px);
  -webkit-filter: blur(10px);
  -o-filter     : blur(10px);

  left: 50%;
  transform: translate(-50%, 0%);
  top: 0;
}

.form-outer-wrapper {
  width: 100%;
}

.form-outer-wrapper.box-100-form h3 {
  margin: 0 auto;
  padding: 0;
}

.activity-events-form-mandatory-text {
  margin-top: 1rem;
  font-size: medium;
}

/* input-number-participant */
.input-number-participant {
  max-width: 8rem;
}

.form-thank-you-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem !important;
  margin: 0 auto;
  border: 1px solid #ccc;
  background-color: #c7fbea;


}

.form-error-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 4rem;
  margin: 2rem 0;
  border: 2px solid #500000;

}














/* **************************************** */
/* **************************************** */
/* Responsive */

@media all and (max-width: 1200px) {
  .header-container {
    padding: 0 5rem;
  }
  /* footer {
    padding: 5rem;
  } */
  /* **************************************** */
  /* **************************************** */
  /* Main menu */
  #main-menu-inner-wrapper {
    display: block;
  }
  #main-menu {
    visibility: hidden;
    position: fixed;
    top: 0;
    right: -100%;
    width: 0;
    height: 100%;
    background-color: var(--red);
    z-index: 998;
    overflow-y: scroll;
    padding-bottom: 200px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    box-shadow: 0 7px 14px rgba(171, 171, 171, 0.15),
      0 5px 5px rgba(171, 171, 171, 0.15);
  }
  @keyframes mainmenu {
    0% {
      right: -100%;
      visibility: hidden;
      width: 0;
    }
    1% {
      right: -55rem;
      width: 55rem;
      visibility: visible;
    }
    100% {
      right: 0;
      width: 55rem;
      visibility: visible;
    }
  }
  @-webkit-keyframes mainmenu {
    0% {
      right: -100%;
      visibility: hidden;
      width: 0;
    }
    1% {
      right: -55rem;
      width: 55rem;
      visibility: visible;
    }
    100% {
      right: 0;
      width: 55rem;
      visibility: visible;
    }
  }
  .header-icon-wrapper {
    display: flex;
  }

  #header-search-button{
    margin-left: 0;
  }
  #header-menu-button {
    display: block;
  }
  #close-menu-button {
    display: block;
  }
  .mainmenu {
    display: block;
  }
  #main-menu::-webkit-scrollbar {
    display: none;
  }
  #main-menu.open {
    animation: mainmenu 0.3s linear forwards;
  }
  @keyframes mainmenuClose {
    0% {
      right: 0;
      visibility: visible;
      width: 55rem;
    }
    99% {
      right: -55rem;
      width: 0;
      visibility: visible;
    }
    100% {
      right: -100%;
      width: 0;
      visibility: hidden;
    }
  }
  @-webkit-keyframes mainmenuClose {
    0% {
      right: 0;
      visibility: visible;
      width: 55rem;
    }
    99% {
      right: -55rem;
      width: 0;
      visibility: visible;
    }
    100% {
      right: -100%;
      width: 0;
      visibility: hidden;
    }
  }
  #main-menu.closed {
    animation: mainmenuClose 0.3s linear forwards;
    visibility: visible;
  }
  body.menu-open main,
  body.menu-open footer {
    /* margin-right:75%; */
    position: relative;
    /* filter: blur(3px);
  -webkit-filter: blur(3px); */
  }
  /*
  body.menu-open header::after,
  body.menu-open main::after,
  body.menu-open footer::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    content: "";
    z-index: 997;
  }
*/
  #main-menu #close-menu-button {
    position: absolute;
    top: 0;
    right: 0;
    padding: 2.5rem;
    cursor: pointer;
  }
  #main-menu #close-menu-button i {
    color: var(--white);
    font-size: 2.5rem;
  }
  #main-menu-inner-wrapper {
    /* position: relative; */
    width: 100%;
    height: 100%;
    margin-top: 7.5rem;
    border-top: 0.2rem solid var(--lightRed);
  }
  #main-menu-inner-wrapper .mainmenu li {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 2px solid var(--lightRed);
  }
  #main-menu-inner-wrapper .mainmenu li a {
    color: var(--white);
    font-weight: bold;
    text-decoration: none;
    font-size: 1.8rem;
    padding: 1.5rem 2.5rem;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    width: 100%;
  }
  #main-menu-inner-wrapper .mainmenu li.menu-item-has-children a {
    width: 80%;
  }
  #main-menu-inner-wrapper
    .mainmenu
    li.menu-item-has-children
    a.toggle-icon-holder {
    width: 20%;
    display: flex;
    justify-content: flex-end;
  }
  #main-menu-inner-wrapper .mainmenu li a.toggle-icon-holder {
    padding: 0 2.5rem;
  }
  /* #main-menu-inner-wrapper .mainmenu li.menu-item-has-children a {
  width: 80%;
} */
  #main-menu-inner-wrapper .mainmenu li:hover,
  #main-menu-inner-wrapper .mainmenu > li .sub-menu li:hover {
    background-color: var(--lightRed);
  }
  #main-menu-inner-wrapper .mainmenu > li .sub-menu li {
    background-color: var(--lightRed);
  }
  #main-menu-inner-wrapper .mainmenu > li .sub-menu li:last-of-type {
    border-bottom: none !important;
  }
  #main-menu-inner-wrapper .mainmenu > li .sub-menu li a {
    padding-left: 4rem;
    font-weight: normal;
  }
  #main-menu-inner-wrapper .mainmenu > li ul {
    /* display: none; */
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    overflow: hidden;
  }
  #main-menu-inner-wrapper .mainmenu > li ul:not(.show-lis) {
    display: none;
  }
  #main-menu-inner-wrapper .mainmenu > li .sub-menu li .sub-menu a {
    padding-left: 5rem;
  }
  #main-menu-inner-wrapper .mainmenu li ul.show-lis {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    border-top: 0.2rem solid var(--lightRed);
  }
  #main-menu-inner-wrapper .toggle-icon {
    color: var(--white);
    font-size: 2rem;
    /* margin-right: 2.5rem; */
    cursor: pointer;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  #main-menu-inner-wrapper .la-arrow-up {
    color: var(--white);
  }
  #main-menu-inner-wrapper .mainmenu li:hover .la-arrow-up,
  #main-menu-inner-wrapper .mainmenu > li .sub-menu li:hover .la-arrow-up {
    color: var(--white);
  }
  #main-menu-inner-wrapper .no-border {
    border: none !important;
  }
  /* End of main menu */
  /* **************************************** */
  /* **************************************** */
  .box-news-50 {
    flex-wrap: wrap;
  }
  .box-news-50 .box-image-container {
    width: 100%;
    padding-top: 0;
    height: auto;
    min-height: 25rem;
  }
  .box-news-50 .box-content {
    width: 100%;
  }
  .box-partner-logo {
    width: 20%;
    width: calc(20% - 5rem);
  }

  .booking-inner-wrapper {
    flex-wrap: wrap;
    flex-flow: column-reverse;
  }
  #datepicker-form {
    width: 100%;
    margin:0 0 1.5rem 0;
  }

  .bookable-items-wrapper {
    width: 100%;
    margin:1.5rem 0 0 0;
  }


  .bookable-items-head {
      margin-bottom:1rem;
  }

  .bookable-items-head .box-toggle {
    display: block;
    cursor: pointer;
  }

  .bookable-items-head .box-toggle .la-angle-up {
    display: none;
  }

  .bookable-items-head .box-toggle .las {
   font-size:2.2rem;
  }

.datepicker-head {
    margin-top:1.5rem;
    text-align: left;
}

.box-100-toggle-wrapper {
    display:none;
}

#box-100-toggle-wrapper.open {
    display:block;
}

}

@media all and (max-width: 960px) {
  footer {
    padding: 7.5rem 5rem;
  }
  .foooter-inner-wrapper {
    flex-wrap: wrap;
  }
  #footer-logo img {
    width: 20rem;
  }
  #footer-left {
    width: 100%;
    padding: 0;
    padding-bottom: 2.5rem;
  }
  #footer-right {
    width: 100%;
    padding: 0;
    border: none;
  }
  .box-news-50 {
    width: 100%;
    /* width: calc(100% - 3rem); */
    margin: 1.5rem 0;
  }
  .box-news-50 .box-image-container {
    width: 33.33%;
    padding-top: 0;
    height: auto;
    min-height: 20rem;
  }
  .box-news-50 .box-content {
    width: 66.66%;
    display: flex;
    flex-flow: wrap column;
    align-self: center;
  }
  .box-partner-logo {
    width: 25%;
    width: calc(25% - 5rem);
  }
  .good-example-main {
    width: 100%;
    padding: 0;
  }
  .good-example-info {
    width: 100%;
    padding: 2.5rem 2.5rem 5rem 0;
  }
}

@media all and (max-width: 768px) {
  h1 {
    font-size: 3.4rem;
  }
  h2 {
    font-size: 3rem;
  }
  h3 {
    font-size: 2.6rem;
  }
  h4 {
    font-size: 2.3rem;
  }
  h5 {
    font-size: 2.1rem;
  }
  h6 {
    font-size: 1.9rem;
  }
  p,
  a {
    font-size: 1.4rem;
  }
  .big-p {
    font-size: 1.8rem;
  }
  em,
  strong {
    font-size: inherit;
  }
  label,
  input,
  ::placeholder,
  textarea,
  select,
  option,
  ul,
  ol,
  li,
  th,
  tr,
  td {
    font-size: inherit;
    font-size: 1.4rem;
  }
  blockquote,
  blockquote p,
  blockquote a {
    font-size: 1.8rem;
  }
  main {
    margin-top: 8rem;
  }
  header .header-container {
    padding: 0 2rem;
    height: 8rem;
  }
  .logo-container #header-logo {
    width: 13.5rem;
  }
  .header-icon-item {
    margin-left: 2.5rem;
  }
  .header-icon-item i {
    font-size: 2rem;
  }
  .header-icon-item p {
    font-size: 1.6rem;
  }
  #search-box.open {
    -moz-animation: showSearchMobile 0.2s linear forwards;
    -webkit-animation: showSearchMobile 0.2s linear forwards;
    -o-animation: showSearchMobile 0.2s linear forwards;
    animation: showSearchMobile 0.2s linear forwards;
  }
  @keyframes showSearchMobile {
    from {
      padding: 0;
      height: 0;
      visibility: hidden;
      top: 0;
    }
    to {
      padding: 2.5rem;
      height: auto;
      visibility: visible;
      top: 8rem;
    }
  }
  @-webkit-keyframes showSearchMobile {
    from {
      padding: 0;
      height: 0;
      visibility: hidden;
      top: 0;
    }
    to {
      padding: 2.5rem;
      height: auto;
      visibility: visible;
      top: 8rem;
    }
  }
  #search-box #search-box-inner-wrapper #search-box-form input {
    padding: 1rem 2rem;
  }
  #search-box #search-box-inner-wrapper #search-box-form button {
    padding: 1rem 2rem;
  }
  #search-box #search-box-inner-wrapper #search-box-form button i {
    font-size: 1.6rem;
  }
  .searchform button {
    padding: 2.1rem;
  }
  @keyframes mainmenuMobile {
    0% {
      right: -100%;
      visibility: hidden;
      width: 0;
    }
    1% {
      right: -100%;
      width: 75%;
      visibility: visible;
    }
    100% {
      right: 0;
      width: 75%;
      visibility: visible;
    }
  }
  @-webkit-keyframes mainmenuMobile {
    0% {
      right: -100%;
      visibility: hidden;
      width: 0;
    }
    1% {
      right: -100%;
      width: 75%;
      visibility: visible;
    }
    100% {
      right: 0;
      width: 75%;
      visibility: visible;
    }
  }
  #main-menu.open {
    animation: mainmenuMobile 0.3s linear forwards;
  }
  #main-menu-inner-wrapper .mainmenu li a {
    padding: 1.5rem;
    font-size: 1.4rem;
  }
  #main-menu-inner-wrapper .toggle-icon {
    font-size: 2rem;
  }
  #main-menu-inner-wrapper .mainmenu > li .sub-menu li a {
    padding-left: 2rem;
  }
  #main-menu #close-menu-button i {
    font-size: 2rem;
  }
  #main-menu #close-menu-button {
    padding: 2.5rem;
  }
  footer {
    padding: 7.5rem 2rem;
  }
  .text-page-content {
    margin: 1.5rem 0;
    padding: 0;
    width: 100%;
  }
  /* COOKIES */
  #cookie-content {
    padding: 2.5rem 3rem;
    flex-wrap: wrap;
  }
  #cookie-text {
    max-width: unset;
    width: 100%;
  }
  #cookie-content p {
    font-size: 1.4rem;
  }
  #cookie-content .btn-black-trans {
    font-size: 1.4rem;
    margin: 1.5rem auto 0 auto;
  }
  .single-news {
    width: 100%;
    margin: 1.5rem 0;
  }
  .partner-logos-wrapper {
    width: 100%;
    margin: 1.5rem 0;
  }
  .box-partner-logo {
    width: 33.33%;
    width: calc(33.33% - 5rem);
  }
  .box-latest-news {
    width: 100%;
    margin: 1.5rem 0;
    padding: 2.5rem 0;
  }
  .tiny {
    font-size: 1.2rem;
  }
  .semi-tiny {
    font-size: 1.4rem;
  }


  .activity-events-form-mandatory-text {
    margin-top: 1rem;
    font-size: 1.4rem;
  }


  .register-terms-text {
    padding-left: 40px !important;
  }


  .eu-cofunded-logo-wrapper {
    display: flex;
    position: absolute;
    top: 77px;
    left: 2%;
    z-index: 5;
  }
  .eu-cofunded-logo-wrapper a {
    width: 8rem;
    line-height: 0;
}

}

@media all and (max-width: 550px) {
  h1 {
    font-size: 2.4rem;
  }
  h2 {
    font-size: 2.2rem;
  }
  h3 {
    font-size: 2rem;
  }
  h4 {
    font-size: 1.8rem;
  }
  h5 {
    font-size: 1.7rem;
  }
  h6 {
    font-size: 1.6rem;
  }
  .header-container {
    padding: 0 2rem;
    height: 6rem;
  }
  .logo-container #header-logo {
    width: 10rem;
  }
  header.sticky .logo-container #header-logo {
    width: 10rem;
  }
  .header-icon-item {
    margin-left: 1.75rem;
  }
  .header-icon-item i {
    font-size: 1.8rem;
  }
  .header-icon-item p {
    font-size: 1.4rem;
  }
  @keyframes mainmenuTiny {
    0% {
      right: -100%;
      visibility: hidden;
      width: 0;
    }
    1% {
      right: -80%;
      width: 80%;
      visibility: visible;
    }
    100% {
      right: 0;
      width: 80%;
      visibility: visible;
    }
  }
  @-webkit-keyframes mainmenuTiny {
    0% {
      right: -100%;
      visibility: hidden;
      width: 0;
    }
    1% {
      right: -80%;
      width: 80%;
      visibility: visible;
    }
    100% {
      right: 0;
      width: 80%;
      visibility: visible;
    }
  }
  #main-menu.open {
    animation: mainmenuTiny 0.3s linear forwards;
  }
  @keyframes mainmenuCloseMobile {
    0% {
      right: 0;
      visibility: visible;
      width: 80%;
    }
    99% {
      right: -80%;
      width: 0;
      visibility: visible;
    }
    100% {
      right: -80%;
      width: 0;
      visibility: hidden;
    }
  }
  @-webkit-keyframes mainmenuCloseMobile {
    0% {
      right: 0;
      visibility: visible;
      width: 80%;
    }
    99% {
      right: -80%;
      width: 0;
      visibility: visible;
    }
    100% {
      right: -80%;
      width: 0;
      visibility: hidden;
    }
  }
  #main-menu.closed {
    animation: mainmenuCloseMobile 0.3s linear forwards;
    visibility: visible;
  }
  /* footer {
    padding: 5rem 2rem;
  } */
  .box-news-50 {
    flex-wrap: wrap;
  }
  .box-news-50 .box-image-container {
    width: 100%;
    padding-top: 0;
    min-height: 25rem;
  }
  .box-news-50 .box-content {
    width: 100%;
  }
  .box-partner-logo {
    width: 50%;
    width: calc(50% - 5rem);
  }
}
/* End of responsive */
/* **************************************** */
/* **************************************** */
