@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

@view-transition {
  navigation: auto;
}

@media (prefers-reduced-motion: no-preference) {
  ::view-transition-old(root) {
    animation: fade .5s ease-in-out forwards;
  }

  ::view-transition-new(root) {
    animation: fade .5s ease-in-out reverse;
  }
}

@keyframes fade {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

:root {
  --font-family-base: "Rubik", sans-serif;
  --font-size-base: 18px;
  --line-height-base: 1.5;
  
  --font-family-heading: "Lexend", sans-serif;

  --background-color: #fff;

  --text-color: #232323;
  --link-color: #032f67;

  --pal-0: #232323; /* text dark */
  --pal-1: #ffffff; /* text light */
  --pal-2: #032f67; /* dark blue */
  --pal-3: #d2e6ff; /* light blue */
  --pal-4: #d2d9e3; /* grey blue */
  --pal-5: #f7ab4a; /* yellow */
  --pal-11: #9314aa; /* purple */
  --pal-12: #0dacd1; /* bleu */
  --pal-13: #f8a006; /* orange */
  --pal-14: #6da813; /* green */

  --content-width: 1100px;
  --wide-diff: calc(var(--content-width) - var(--wide-width));
  --wide-width: 1440px;
}

body {
  min-height: 100vh;
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--font-color);
  background-color: var(--background-color);
  overflow-x: hidden;
  font-optical-sizing: auto;
  font-style: normal;  
}

body.disable-scroll{
  overflow: hidden;
}

::selection {
  background: var(--pal-2);
  color: #fff;
}

h1, h2, h3, h4, h5, h6{
  font-family: var(--font-family-heading);
  font-optical-sizing: auto;
  font-style: normal;
  margin-top: 0.2em;
  text-wrap: balance;
}

h1{
  margin-bottom: 10px;
  font-size: 50px;
  font-weight: 300;
  line-height: 1.3
}

h2{
  margin-bottom: 10px;
  padding-bottom: 20px;
  font-size: 38px;
  font-weight: 300;
  line-height: 1.3;
  position: relative
}

h3{
  margin-bottom: 10px;
  font-size: 35px;
  font-weight: 300;
  line-height: 1.3
}

h4{
  margin-bottom: 10px;
  font-size: 27px;
  font-weight: 300;
  line-height: 1.3
}

h5{
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3
}

h6{
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
}

strong{
  font-weight: bold;
}

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

a:hover{
  color: var(--text-color);
}

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

.wp-block-image.aligncenter {
  text-align: center;
  margin: 0 auto;
}

.wp-block-image.alignleft{

}

.wp-block-image.alignright{

}

.wp-block-columns{
  gap:25px;
}

.wp-block-buttons{
  display: flex;
}

.wp-block-button__link{

}

.wp-block-cover__inner-container .wp-block-columns:last-child{
  margin-bottom: 0;
}

.wp-block-cover h1,
.wp-block-cover h2,
.wp-block-cover h3,
.wp-block-cover h4,
.wp-block-cover h5,
.wp-block-cover h6{
  margin: 0;
  padding: 0;
}


.wp-block-cover .wp-block-cover__inner-container,
.wp-block-cover-image .wp-block-cover__inner-container {
  max-width: var(--content-width);
}

.wp-block-group .wp-block-group__inner-container{
  max-width: var(--content-width);
  margin: auto;
}

.wp-block-media-text.is-image-fill .wp-block-media-text__media {

}

.wp-block-media-text .wp-block-media-text__content {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.wp-embed-aspect-16-9 iframe{
  height: auto;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.wp-block-embed__wrapper{
  width: 100%;
  aspect-ratio: 16 / 9;
}

/*
.wp-block-group .wp-block-group .wp-block-group{
  margin-top: 2rem;
  columns: 2;
  column-gap: 3rem;
}

.wp-block-group .wp-block-group .wp-block-group .wp-block-group__inner-container p:first-of-type{
  margin-top: 0;
  padding-top: 0;
}
*/

.wp-block-group .wp-block-group .wp-block-group .wp-block-heading{
  column-span: all;
  column-fill: balance;
  margin-bottom: 1rem;
}

.wp-block-group.mfh .wp-block-cover__inner-container{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
}

.wp-block-group.mfh .wp-block-cover, 
.wp-block-group.mfh .wp-block-cover-image{
  min-height: 150px;
}

.wp-block-group.mfh .wp-block-cover__inner-container p{
}

.wp-block-group.mfh .wp-block-cover:nth-of-type(1) .wp-block-cover__inner-container p{
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 100;
}

.wp-block-group.mfh .wp-block-cover:nth-of-type(2) .wp-block-cover__inner-container p{
  text-transform: uppercase;
  background: #fff;
  color: var(--pal-0);
  padding: 10px 20px;
  border-radius: 20px;
  white-space: nowrap;
  margin: 0;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.wp-block-group.mfh .wp-block-cover:nth-of-type(2) .wp-block-cover__inner-container p:hover{
  transform: scale(1.05);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
  height: 5px;
  background-image: url(../images/sep_line.svg);
  background-position: center;
  background-size: 100%;
  background-repeat: repeat-y;
  width: 50%;
  border: 0px;
}

.field--name-body .wp-block-cover.alignfull:nth-of-type(1) .has-text-align-center{
  text-wrap: balance;
}

main .field--name-body p:not(.has-text-align-center):not(.has-text-align-left):not(.has-text-align-right) {
  text-align: justify;
}

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

.alignfull{
  transform: translateX(calc(50% - 50vw));
  height: auto;
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: calc(100vw);
}

.alignwide{
  height: auto;
  position: relative;
  max-width: 90vw;
  width: var(--wide-width);
  margin-left: calc(50% - ( var(--wide-width) / 2 ) );
  margin-right: calc(50% - ( var(--wide-width) / 2 ) );
}

.alignfull .alignwide{
  margin: 0 auto;
  transform: unset;
}

@media (max-width: 1440px) {
  .alignwide {
    margin-left: calc(50% - 45vw );
    margin-right: calc(50% - 45vw );
    max-width: 90vw;
    width: 90vw;
  }
}

.layout-container {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.layout-container:before{
  content: "";
  position: absolute;
  display: inline-block;
  top: 0px;
  left: 0;
  width: 100%;
  height: 200px;
  z-index: -1;
  background-color: var(--pal-2);
}

main{
  flex: 1;
}

.container{
  width: 1100px;
  max-width: 90%;
  margin: 0 auto;
}

.container-fw{
  width: 100%;
}

.container-w{
  width: 1440px;
  margin: 0 auto;
  max-width: 90%;
}

.container-n{
  width: 800px;
  max-width: 90%;
  margin: 0 auto;
}

.maintenance-page{
  position: relative;
  background-size: cover;
  background-position: bottom center;
  text-align: center;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
  background-color: var(--pal-2);
  color: var(--background-color);
}

.maintenance-page .layout-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.maintenance-page .layout-container:before{
  /*
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgb(255,255,255,0.4);
  backdrop-filter: blur(5px);
  */
}

.maintenance-page .layout-container .layout-inner{
  position: relative;
  max-width: 90%;
  width: 600px;
  display: inline-block;
  z-index: 1;
}

.maintenance-page header{
  width: 100%;
  text-align: center;
  margin: 1em auto 0.5em auto;
  display: inline-block;  
}

.maintenance-page header img{
  width: 300px;
}

.maintenance-page main{
  margin: 1em auto;
  display: inline-block;
  width: 500px;
}

.maintenance-page h1{
  font-size: 40px;
  margin-top: 0;
  line-height: 1.1em;
}


.maintenance-page .social-icons {
  margin: 2em 0 0 0;
}

.maintenance-page .social-icon svg {
  width: 42px;
  height: 42px;
  fill: var(--background-color);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.maintenance-page .social-icon:hover svg {
  fill: var(--pal-5);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

ul.tabs{
  margin: 2em auto;
  padding: 0;
  list-style: none;
  text-align: center;
}

ul.tabs li{
  display: inline-block;
  text-transform: uppercase;
  font-size: 90%;
}

ul.tabs li a{
  display: inline-block;
  padding: 10px 16px;
  letter-spacing: 1px;
  border: 1px solid #676767;
  color: var(--text-color);
  margin: 5px;
}

ul.tabs li a:hover,
ul.tabs li.is-active a{
  display: inline-block;
  color: #fff;
  background-color: var(--text-color);
  border: 1px solid var(--text-color);
}

.gb,
.wp-block-button__link,
input.webform-button--submit{
  display: inline-block;
  padding: 0px 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: var(--pal-2);
  color: var(--background-color);
  box-shadow: unset;
  border: 0;  
  white-space: nowrap;
  line-height: 35px;
  vertical-align: middle;
  border-radius: 20px;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
  overflow: hidden;
  position: relative;
}

.gb:hover,
.wp-block-button__link:hover,
input.webform-button--submit:hover{
  background-color: var(--pal-5);
  color: var(--background-color);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.gb span.c-icon,
.gb span.chevron-right,
.gb span.chevron-left,
.gb span.chevron-down{
  filter: invert(1);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.gb:hover span.c-icon,
.gb:hover span.chevron-right,
.gb:hover span.chevron-left,
.gb:hover span.chevron-down{
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.gbi{
  display: inline-block;
  padding: 0px 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: var(--pal-5); 
  color: var(--background-color);
  box-shadow: unset;
  border: 0;  
  white-space: nowrap;
  line-height: 35px;
  vertical-align: middle;
  border-radius: 20px;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
  overflow: hidden;
  position: relative;
}

.gbi:hover{
  background-color: var(--pal-2);
  color: var(--background-color);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.gbi span.c-icon,
.gbi span.chevron-right,
.gbi span.chevron-left,
.gbi span.chevron-down{
  filter: invert(1);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.gbi:hover span.c-icon,
.gbi:hover span.chevron-right,
.gbi:hover span.chevron-left,
.gbi:hover span.chevron-down{

  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}


.btn-large{
  padding: 0px 20px;
  line-height: 55px;
  border-radius: 30px;
  font-size: 120%;
}

#header{
  background-color: var(--pal-2);
  color: var(--pal-1);

  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
}

#header:after{
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  display: inline-block;
  width: 50vw;
  height: 5px;
  background-image: url(../images/sep_line.svg);
  background-position: center;
  background-size: 100%;
  background-repeat: repeat-y;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#header.stick{
  top: -95px;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#header.stick:after{
  bottom: 0px;
  height: 0px;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.toolbar-horizontal #header{
  top: 52px;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.toolbar-horizontal #header.stick{
  top: calc(52px - 95px);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.toolbar-vertical #header {
  top: 39px;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.toolbar-vertical  #header.stick {
  top: calc(39px - 95px);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.gin--navigation .gin-secondary-toolbar--frontend {
  z-index: 210;
}

#top-bar{
  color: var(--background-color);
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  width: 100%;
}

#top-bar a{
  color: var(--background-color);
}

#menu-logo{
  display: inline-block;
  vertical-align: top;
  flex: 1;
  height: 95px;
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
}

.toolbar-horizontal #menu-logo{
  margin-left: 1em;
}

#menu-logo a{
  position: relative;
  display: inline-block;
  vertical-align: top;
  color: var(--pal-1);  
}

#menu-logo a img{
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 250px;
}

#main-menu{
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  position: relative;
}

#main-menu:before{
  content: "";
  position: absolute;
  display: inline-block;
  left: 0;
  top: 0;
  height: 55px;
  width: 100vw;  
  background-color: rgba(255,255,255,0.2);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  z-index: -1;
}

#main-menu .container-w{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  justify-content: space-between;
}

#main-menu ul.menu{
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 0.5em;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.stick #main-menu ul.menu {
  gap: 0px;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#main-menu ul.menu li{
  display: inline-block;
  position: relative;
}

#main-menu ul.menu li.menu-item > a {
  display: inline-block;
  padding: 0px 15px;
  line-height: 55px;
  text-decoration: none;
  letter-spacing: 1px;
  color: var(--background-color);
  text-transform: uppercase;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#main-menu ul.menu li.menu-item > a.is-active,
#main-menu ul.menu li.menu-item > a:hover {
  background-color: var(--pal-5);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#main-menu ul.menu ul.menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  flex-direction: column;
  background-color: #fff;
  min-width: 200px;
  z-index: 200;
  padding: 0;
  margin: 0;
}

#main-menu ul.menu li.menu-item:hover > ul.menu {
  display: flex;
  gap:0;
  background-color: var(--pal-3);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#main-menu ul.menu ul.menu li.menu-item > a {
  line-height: unset;
  padding: 15px 10px;
  color: var(--pal-0);
  background-color: var(--pal-3);
  white-space: nowrap;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#main-menu ul.menu ul.menu li.menu-item > a:hover {
  color: var(--pal-5);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0); 
}

#s-menu-logo{
  display: inline-block;
  vertical-align: top;
  height: 55px;
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
  justify-content: flex-start;
  opacity: 0;
  margin-right: 1em;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0); 
  width: 140px;
  display: none;
}

.stick #s-menu-logo{
  display: inline-block;
  opacity: 1;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0); 
}

#s-menu-logo a{
  position: relative;
  display: inline-block;
  vertical-align: top;
  color: var(--pal-1);  
}

#s-menu-logo a img{
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 120px;
}

#s-menu-ab{
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
  opacity: 0;
  height: 55px;
  margin-left: 1em;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-end;
  align-items: center;
  white-space: nowrap;
  width: 140px;
  display: none;
}

.stick #s-menu-ab{
  display: inline-block;
  opacity: 1;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0); 
}

#s-menu-ab a{
  display: inline-block;
  padding: 0px 15px;
  text-transform: uppercase;
  letter-spacing: 0px;
  line-height: 35px;
  vertical-align: middle;
  background-color: var(--pal-5);
  color: var(--background-color);
  border-radius: 20px;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#s-menu-ab a:hover{
  background-color: var(--background-color);
  color: var(--pal-2);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#s-menu-ab a svg{
  width: 1em;
  margin-left: 0.2em;
  margin-top: -2px;
  height: 1em;
  fill: var(--background-color);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
  line-height: 35px;
  vertical-align: middle;  
}

#s-menu-ab a:hover svg{
  fill: var(--pal-2);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0); 
}

.region-primary-menu{
  flex: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.social-icons{
  margin: 1em 0;
}

.social-icon{
  display: inline-block;
}

.social-icon svg{
  height: 35px;
  fill: var(--text-color);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.social-icon:hover svg{
  fill: var(--text-color);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#menu-ab{
  margin-left: 1.5em;
  white-space: nowrap;
}

#menu-ab a{
  display: inline-block;
  padding: 0px 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 35px;
  vertical-align: middle;
  background-color: var(--pal-5);
  color: var(--background-color);
  border-radius: 20px;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#menu-ab a:hover{
  background-color: var(--background-color);
  color: var(--pal-2);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#menu-ab a svg{
  width: 1em;
  margin-left: 0.2em;
  margin-top: -2px;
  height: 1em;
  fill: var(--background-color);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
  line-height: 35px;
  vertical-align: middle;  
}

#menu-ab a:hover svg{
  fill: var(--pal-2);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0); 
}

#menu-social{
  margin-left: 2em;
}

#menu-social .social-icons{
  margin: 0;
  display: flex;
  flex-direction: row;
}

#menu-social a{
  display: inline-block;
  vertical-align: top;
  margin-left: 1.5em;
}

#menu-social a:first-child{
  margin-left: 0em; 
}


#menu-social a svg{
  fill: var(--background-color);
  margin-top: -2px;
  vertical-align: middle;
  height: 35px;
  width: 35px;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#menu-social a:hover svg{
  fill: var(--pal-5);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#menu-contact{
  margin-left: 1.5em;
}

#menu-contact{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}

#menu-contact a{
  display: inline-block;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#menu-contact a:hover{
  color: var(--pal-5);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#menu-contact-icon{

}

#menu-contact-icon svg{
  height: 35px;
  fill: var(--background-color);
  display: inline-block;
  margin-top: -2px;
  vertical-align: middle;  
}

#menu-contact-data{
  line-height: 1.4em;
  margin-left: 0.5em;
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  justify-content: center;  
}

#menu-oh{
  margin-left: 1.5em;
}

#menu-oh,
#menu-oh a{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#menu-oh a:hover{
  color: var(--pal-5);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#menu-oh-icon{

}

#menu-oh a #menu-oh-icon svg{
  height: 35px;
  fill: var(--background-color);
  display: inline-block;
  margin-top: -2px;
  vertical-align: middle;  
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#menu-oh a:hover #menu-oh-icon svg{
  fill: var(--pal-5);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0); 
}

#menu-oh-data{
  line-height: 1.4em;
  margin-left: 0.5em;
}

.oh-row{
  /*white-space: nowrap;*/

}

.oh-days{
  font-weight: 600;
  /*display: inline-block;*/
  text-transform: uppercase;

}

.oh-time{
  /*display: inline-block;*/
}

#menu-a11y{
  margin-left: 1.5em;
}

#menu-a11y a{
  display: inline-block;
}

#menu-a11y a svg{
  height: 35px;
  fill: var(--pal-5);
  display: inline-block;
  margin-top: -2px;
  vertical-align: middle;  
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#menu-a11y a:hover svg{
  fill: var(--background-color);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0); 
}

#menu-search-open{
  margin-left: 1.5em;
}

#menu-search-open a{
  display: inline-block;
  background: #fff;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;  
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0); 
}

#menu-search-open a:hover{
  background: var(--pal-5);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0); 
}

#menu-search-open a svg{
  height: 20px;
  fill: var(--pal-2);
  display: inline-block;
  margin-top: -2px;
  vertical-align: middle;  
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#menu-search-open a:hover svg{
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0); 
}

.region-highlighted .messages{
  margin: 2em auto;
  width: calc(100% - 4em);
  padding: 1em 2em;
}

.region-highlighted .messages a{
  color: #fff;
}

.region-highlighted .messages ul{
  list-style: none;
  padding-left: 0;
}

.messages{
  margin: 1em auto;
  padding: 1em 2em;
  width: 100%;
}

.messages--webform .button--dismiss {
  display: none;
}

.messages.messages--info {
  color: #589ac5;
  background-color: #122b3c;
  border-color: #122b3c;
}

.messages.messages--info .messages__header {
  background: none;
}

.messages.messages--info .messages__header:before {
  background-color: #589ac5;
  -webkit-mask-image: url("../images/sprite.svg#info-view");
          mask-image: url("../images/sprite.svg#info-view");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center left;
          mask-position: center left;
}

.messages.messages--info .button--dismiss .icon-close:link {
  background-color: #589ac5;
}

.messages.messages--status {
  color: #32cea4;
  background-color: #145242;
}

.messages.messages--status .messages__header:before {
  background-color: #32cea4;
  -webkit-mask-image: url("../images/sprite.svg#status-view");
          mask-image: url("../images/sprite.svg#status-view");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center left;
          mask-position: center left;
}

.messages.messages--status .button--dismiss .icon-close:link {
  background-color: #32cea4;
}

.messages.messages--warning {
  color: #efcf64;
  background-color: #605328;
}

.messages.messages--warning .messages__header:before {
  background-color: #efcf64;
  -webkit-mask-image: url("../images/sprite.svg#warning-view");
          mask-image: url("../images/sprite.svg#warning-view");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center left;
          mask-position: center left;
}

.messages.messages--warning .button--dismiss .icon-close:link {
  background-color: #efcf64;
}

.messages--error {
  color: #f39b9d;
  background-color: #583333;
}

.messages--error .messages__header:before {
  background-color: #f39b9d;
  -webkit-mask-image: url("../images/sprite.svg#error-view");
          mask-image: url("../images/sprite.svg#error-view");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center left;
          mask-position: center left;
}

.messages--error .button--dismiss .icon-close:link {
  background-color: #f39b9d;
}

nav.breadcrumb ol{
  list-style: none;
}

nav.breadcrumb ol li{
  display: inline-block;
}

footer{
  position: relative;
  color:rgba(255,255,255,0.8);
  font-size: 80%;
  background-color: var(--pal-0);
  letter-spacing: 1px;
  text-transform: uppercase;
}

footer > div{
  margin-top: 2em;
  margin-bottom: 2em;
  display: flex;
}

#footer-left,
#footer-right{
  margin: 1em 0;
}

#footer-left p,
#footer-right p{
  padding: 0;
  margin: 0;
}

#footer-left a,
#footer-right a{
  padding: 5px 10px;
}

#footer-left{
  width: 50%;
  display: inline-block;
  vertical-align: top;
}

#footer-right{
  width: 50%;
  display: inline-block;
  vertical-align: top;

  text-align: right;
}

footer a{
  color: rgba(255,255,255,1);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

footer a:hover{
  color: var(--pal-5);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#pre-footer{
  padding-top: 2em;
  padding-bottom: 1em;
  margin-top: 5vh;
  background-color: var(--pal-2);
  color: rgba(255,255,255,1);
}

#pre-footer > div{
  display: flex;
  justify-content: space-between;
}

#pre-footer .pre-footer-blocks:nth-child(1){
  margin-left: 0;
}

#pre-footer .pre-footer-blocks:nth-child(2){
  margin-right: 0;
}

#pre-footer a{
  color:rgba(255,255,255,1);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#pre-footer a:hover{
  color: rgba(0,0,0,1);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#pre-footer .social-icons{
  text-align: right;
  display: inline-block;
  margin: 0;
}

#pre-footer .social-icon{
  background-color: #fff;
  border-radius: 30px;
  padding: 10px;
  margin: 0 0.5em;
  vertical-align: top;
  width: 35px;
  text-align: center;
}

#pre-footer .social-icon svg{
  vertical-align: top;
  fill: var(--pal-2);
}

#pre-footer .social-icon:hover svg{
  fill: var(--pal-5); 
}

.pre-footer-block{
  /* max-width: calc(100% / 3); */
  flex: 1;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;  
}

#pre-footer-top{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  justify-content: flex-start;
  gap: 2em;
  width: 100%;
  padding-bottom: 1em;
  margin-bottom: 1em;
  border-bottom: 1px solid rgba(255,255,255,0.8);
}

#pre-footer-one{

}

#pre-footer-two{

}

#pre-footer-three{

}

#pre-footer ul.menu{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: flex-start;  
}

#pre-footer ul.menu li{
  display: inline-block;
}

#pre-footer ul.menu li a{
  font-size: 20px;
  padding: 5px 10px;
  display: inline-block;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#pre-footer ul.menu li a:hover{
  color: var(--pal-5);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#pre-footer ul.menu ul.menu{
  display: none;
}

#footer-contact{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  padding-left: 2em;
  margin-left: 2em;
  border-left: 1px solid rgba(255, 255, 255, 0.8);
  justify-content: flex-start;
}

.footer-contact-col{
  flex: 1;
}

#footer-contact a{
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#footer-contact a:hover{
  color: var(--pal-5);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#footer-logo{
  display: flex;
  height: 60px;
  flex-direction: row;
  align-content: center;
  align-items: center;
}

#footer-logo a{
  position: relative;
  display: inline-block;
  vertical-align: top;  
}

#footer-logo a img{
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: auto;
  height: 60px;
}

#footer-d24-logo{
  display: flex;
  height: 60px;
  flex-direction: row;
  align-content: center;
  align-items: center;
  flex: 1;
}

#footer-d24-logo a{
  position: relative;
  display: inline-block;
  vertical-align: top;  
}

#footer-d24-logo a svg{
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: auto;
  height: 40px;
  fill: #fff;
}

.scrolltop svg{
  width: 26px;
  height: 26px;
}

.scrolltop{
  cursor: pointer;
  position: fixed;
  right: 1em;
  bottom: 1em;
  z-index: 50;
  display: inline-block;
  background-color: #fff;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
  border-radius: 50%;
}

.scrolltop:hover{
  background-color: var(--pal-2);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.scrolltop svg{
  vertical-align: top;
  width: 22px;
  height: 22px;
  padding: 1em;
  fill: #000;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.scrolltop:hover svg{
  fill: #fff;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#sliding-popup{
  background-color: var(--text-color);
  color: var(--background-color);
  width: 100%;
}

.eu-cookie-compliance-message {
  float: unset;
  max-width: 80%;
  flex: 1;
  margin: 0;
}

.eu-cookie-compliance-content {
  margin: 1em auto;
  width: 1370px;
  max-width: 90%;
  display: inline-block;
  text-align: left;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  flex: 1;
  justify-content: space-between;
}

.eu-cookie-compliance-buttons {
  float: unset;
  max-width: 30%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  align-content: center;
  margin: 0;
}

#popup-text h3{
  font-size: 22px;
  margin: 0;
  margin-bottom: 0.4em;
  text-wrap: balance;
  letter-spacing: -0.5px;
  font-weight: 600;
}

#popup-text p{
  font-size: 16px;
  font-weight: normal;
  margin: 0;
  display: inline-block;
}

#popup-buttons button{
  text-shadow: unset;
  background-image: unset;
  font-size: 18px;
  line-height: 32px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5em 1em;
  background-color: rgba(255,255,255,1);
  color: rgba(0,0,0,1);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
  box-shadow: unset;
  border: 0;  
  font-weight: normal;
  white-space: nowrap;
  border-radius: 32px;
  border: 1px solid #000;
  margin: 0.5em;  
}

#popup-buttons button.agree-button{
}

#popup-buttons button.decline-button{
  background-color: rgba(195,195,195,1);
}

#popup-buttons button:hover{
  background-color: var(--link-color)!important;
  color: rgba(255,255,255,1);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#sliding-popup button.find-more-button{
  background-color: unset;
  color: #fff;
  font-weight: bold;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
  border: 0;
  font-size: 16px;
  text-transform: uppercase;
}

#sliding-popup button.find-more-button:hover{
  color: var(--link-color);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.pswp__img--placeholder{
  display: none!important;
}

.pswp_img {
  max-height: 100vh !important;
  width: auto !important;
  position: static !important;
}

.pswp__zoom-wrap {
  display: flex !important;
  justify-content: center;
  align-items: center;
  /*transform: none !important;*/
}

#mobile-menu{
  max-width: 90%;
  width: 400px;
  margin: 2em 0;
}

#mobile-menu-open{
  display: none;
}

#mobile-menu-open a{
  cursor: pointer;
  width: 75px;
  text-align: center;
  line-height: 95px;
  margin-right: 1em;
  display: inline-block;
}

#mobile-menu-open a svg{
  height: 35px;
  fill: #fff;
  margin-top: -2px;
  vertical-align: middle;
}

#s-mobile-menu-open{
  display: none;
}

#s-mobile-menu-open a{
  cursor: pointer;
  width: 55px;
  text-align: center;
  line-height: 55px; 
  margin-right: 1em;
  display: inline-block;
}

#s-mobile-menu-open a svg{
  height: 35px;
  fill: #fff;
  margin-top: -2px;
  vertical-align: middle;
}

#s-menu-contact{
  margin-left: 1.5em;
}

#s-menu-contact{
  color: var(--background-color);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}

#s-menu-contact a{
  color: var(--background-color);
  display: inline-block;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#s-menu-contact a:hover{
  color: var(--pal-5);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#s-menu-contact-icon{

}

#s-menu-contact-icon svg{
  height: 35px;
  fill: var(--background-color);
  display: inline-block;
  margin-top: -2px;
  vertical-align: middle;  
}

#s-menu-contact-data{
  line-height: 1.4em;
  margin-left: 0.5em;
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  justify-content: center;  
}

#s-menu-oh{
  margin-left: 1.5em;
}

#s-menu-oh,
#s-menu-oh a{
  color: var(--background-color);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#s-menu-oh a:hover{
  color: var(--pal-5);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#s-menu-oh-icon{

}

#s-menu-oh a #s-menu-oh-icon svg{
  height: 35px;
  fill: var(--background-color);
  display: inline-block;
  margin-top: -2px;
  vertical-align: middle;  
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#s-menu-oh a:hover #s-menu-oh-icon svg{
  fill: var(--pal-5);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0); 
}

#s-menu-oh-data{
  line-height: 1.4em;
  margin-left: 0.5em;
}

#s-menu-social{
  margin-left: 2em;
}

#s-menu-social .social-icons{
  margin: 0;
  display: flex;
  flex-direction: row;
}

#s-menu-social a{
  display: inline-block;
  vertical-align: top;
  margin-left: 1.5em;
}

#s-menu-social a:first-child{
  margin-left: 0em; 
}


#s-menu-social a svg{
  fill: var(--background-color);
  margin-top: -2px;
  vertical-align: middle;
  height: 35px;
  width: 35px;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#s-menu-social a:hover svg{
  fill: var(--pal-5);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#s-menu-search-open{
  margin-left: 1.5em;
}

#s-menu-search-open a{
  display: inline-block;
  background: #fff;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;  
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0); 
}

#s-menu-search-open a:hover{
  background: var(--pal-5);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0); 
}

#s-menu-search-open a svg{
  height: 20px;
  fill: var(--pal-2);
  display: inline-block;
  margin-top: -2px;
  vertical-align: middle;  
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#s-menu-search-open a:hover svg{
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0); 
}

#s-menu-a11y{
  margin-left: 1.5em;
}

#s-menu-a11y a{
  display: inline-block;
}

#s-menu-a11y a svg{
  height: 35px;
  fill: var(--pal-5);
  display: inline-block;
  margin-top: -2px;
  vertical-align: middle;  
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#s-menu-a11y a:hover svg{
  fill: var(--background-color);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0); 
}

#s-menu-contact,
#s-menu-oh,
#s-menu-social,
#s-menu-search-open,
#s-menu-a11y{
  display: none;
}

#search-overlay,
#mobile-overlay{
  background-color: rgb(3 47 103 / 80%);
  color: var(--background-color);
  position: fixed;
  z-index: 500;
  top: 0;
  transform: scale(1.2);
  left: 0;
  width: 100%;
  height: 100vh;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
  transform-origin: center center;
  backdrop-filter: blur(2px);
}

#search-overlay.active,
#mobile-overlay.active{
  visibility: visible!important;
  transform: scale(1.0);
  opacity: 1!important;
  top: 0;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
  transform-origin: center center;
  backdrop-filter: grayscale(0.4) blur(15px);
}

#search-wrapper,
#mobile-menu-wrapper{
  display: flex;
  width: 100%;
  height: 100vh;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  align-content: center; 
  position: relative;
}

#mobile-menu-wrapper ul.menu{
  width: 400px;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

#mobile-menu-wrapper ul.menu li{
  display: inline-block;
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 0;
}

#mobile-menu-wrapper ul.menu li a{
  color: #fff;
  font-size: 26px;
  letter-spacing: 1px;
  padding: 5px 0px;
  display: inline-block;
}

#mobile-menu-wrapper ul.menu li ul{
  display: none;
}

#search-close,
#mobile-menu-close{
  width: 48px;
  height: 48px;
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}

#search-close svg,
#mobile-menu-close svg{
  fill: var(--background-color);
  width: 48px;
  height: 48px;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
  overflow: visible;
}

#search-close a:hover svg,
#mobile-menu-close a:hover svg{
  fill: var(--pal-5);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#mobile-menu-wrapper .social-icons {
  display: flex;
  margin: 0;
  padding: 0;
  gap: 2em;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}

#mobile-menu-wrapper .social-icons a svg{
  fill: var(--background-color);
  width: 48px;
  height: 48px;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
  overflow: visible;
}

#mobile-menu-wrapper .social-icons a:hover svg{
  fill: var(--pal-5);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#mobile-overlay-branding{
  max-width: 100%;
  width: 400px;
  text-align: center;
}

#mobile-overlay-branding-wrapper{
  text-align: center;
  max-width: 80%;
}

#mobile-overlay-branding svg{
  width: 100%;
  fill: #fff;
  max-width: 90%;
}

#search-wrapper .search-block-form{

}

#cover{
  margin-top: 150px;
  margin-bottom: 10vh;
  min-height: 100px;
  position: relative;
  background-color: var(--pal-2);
  overflow: hidden;

  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}

#cover .cover-img{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  height: 100%;  
}

#cover .title-wrapper{
  position: relative;
  width: 100%;
  z-index: 15;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  padding: 2em 0;
}

#cover .title-wrapper h1.page-title{
  line-height: 100px;
  margin-top: 0;
  margin-bottom: 0;
  color: var(--background-color);
  /*text-transform: uppercase;*/
  font-weight: 200;
  letter-spacing: 2px;
  text-align: center;
  font-size: 70px;
  /*margin-top: 2em;*/
}

#cover .cover-desc{
  color: var(--background-color);
  text-align: center;
  font-size: 120%;
  text-transform: uppercase;
  letter-spacing: 1px;
  max-width: 50%;
  text-wrap-style: balance;
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
  font-weight: 100;
}

#cover.cover-w-bg{
  min-height: 50vh;
}

#cover.cover-wo-bg{

}

#cover .cover-img .container-fw{
  height: 100%;
  width: 100%;
  display: inline-block;
}

#cover .cover-img .views-element-container,
#cover .cover-img .views-element-container > div,
.view-cover,
.view-cover .view-content,
.view-cover .views-row,
.view-cover .views-field-field-belyegkep,
.view-cover .views-field-field-belyegkep .field-content,
.region-cover{
  height: 100%;
  width: 100%;
  display: inline-block;
}

#cover .contextual{
  display: none!important;
}

.cover-empty{
  height: 100%;
  min-height: 200px;
  display: inline-block;
  width: 100%;
  position: absolute;
}

.view-cover .views-field-field-belyegkep .field-content{
  height: 100%;  
}

.view-cover .views-field-field-belyegkep .field-content > div{
  height: 100%;
  width: 100%;
  background-position: center;
  background-size: cover;
  position: relative;
}

.view-cover .views-field-field-belyegkep .field-content > div:before{
  background-color: var(--pal-2);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  content: "";
  display: inline-block;
  mix-blend-mode: color;
}

.view-cover .views-field-field-belyegkep .field-content > div:after{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  content: "";
  display: inline-block;
  background: linear-gradient(10deg,rgba(3, 47, 103, 1) 20%, rgba(3, 47, 103, 0) 100%);
}

.view-szakember-lista,
.view-szakember-lista-szakterulethez{

}

.view-szakember-lista .view-content,
.view-szakember-lista-szakterulethez .view-content{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 3em;
}

.view-szakember-lista .views-row,
.view-szakember-lista-szakterulethez .views-row{
  text-align: center;
  width: calc(100% / 4 - 2.5em);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  justify-content: flex-start;  
  min-width: 280px;
}

.view-szakember-lista .views-field-field-belyegkep,
.view-szakember-lista-szakterulethez .views-field-field-belyegkep{
  overflow: hidden;
  border-radius: 50%;
}

.view-szakember-lista .views-field-field-belyegkep a,
.view-szakember-lista-szakterulethez .views-field-field-belyegkep a{
  display: inline-block;
  vertical-align: top;
}

.view-szakember-lista .views-field-field-belyegkep img,
.view-szakember-lista-szakterulethez .views-field-field-belyegkep img{
  max-width: 100%;
  display: inline-block;
  vertical-align: top;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.view-szakember-lista .views-row.hover img,
.view-szakember-lista-szakterulethez .views-row.hover img,
.view-szakember-lista .views-row:hover img,
.view-szakember-lista-szakterulethez .views-row:hover img{
  transform: scale(1.05);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.view-szakember-lista .views-field-title,
.view-szakember-lista-szakterulethez .views-field-title{

}

.view-szakember-lista .views-field-title h3,
.view-szakember-lista-szakterulethez .views-field-title h3{
  margin-top: 0.2em;
  margin-bottom: 0.2em;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 400;
  text-wrap-style: balance;
}

.view-szakember-lista .views-field-title h3 a,
.view-szakember-lista-szakterulethez .views-field-title h3 a{
  color: var(--pal-0);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.view-szakember-lista .views-field-title h3 a:hover,
.view-szakember-lista-szakterulethez .views-field-title h3 a:hover{
  color: var(--pal-5);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.view-szakember-lista .views-field-field-titulus,
.view-szakember-lista-szakterulethez .views-field-field-titulus{
  margin-bottom: 1em;
  color: var(--pal-2);
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.7;
  flex: 1;
}

.view-szakember-lista .views-field-field-idopontfoglalas,
.view-szakember-lista-szakterulethez .views-field-field-idopontfoglalas{

}

.node--type-szakember .field--name-field-bemutatkozas{
  max-width: 90%;
  width: 800px;
  margin: 0 auto;
}

.node--type-szakember .field--name-field-belyegkep{
  margin: 0 auto;
  text-align: center;
  margin-bottom: 3em;
}

.node--type-szakember .field--name-field-belyegkep img{
  border-radius: 50%;
  display: inline-block;
  vertical-align: top;
}

.node--type-szakember .field--name-field-titulus{
  color: var(--pal-2);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  margin: 2em auto 1em auto;
}

.page-node-type-szakember #pre-footer{
  margin-top: 0;
}

.page-node-type-szakember .view-arak-szakemberhez{
  margin-bottom: 5vh;
}

.view-szakember-titulus{
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.view-szakterulet-lista,
.view-szakterulet-lista-szakemberhez{

}

.view-szakterulet-lista .view-content,
.view-szakterulet-lista-szakemberhez .view-content{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 3em;
}

.view-szakterulet-lista .views-row,
.view-szakterulet-lista-szakemberhez .views-row{
  text-align: center;
  width: calc(100% / 4 - 2.5em);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  min-width: 280px;
}

.view-szakterulet-lista .views-row .views-field-field-ikon,
.view-szakterulet-lista-szakemberhez .views-row .views-field-field-ikon{
  width: 300px;
  height: 300px;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.view-szakterulet-lista .views-row.hover .views-field-field-ikon,
.view-szakterulet-lista-szakemberhez .views-row.hover .views-field-field-ikon,
.view-szakterulet-lista .views-row:hover .views-field-field-ikon,
.view-szakterulet-lista-szakemberhez .views-row:hover .views-field-field-ikon{
  transform: scale(1.05) translateY(-10px);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.view-szakterulet-lista .views-field-view-node a,
.view-szakterulet-lista-szakemberhez .views-field-view-node a{
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
}

.view-szakterulet-lista .views-row .views-field-title h3,
.view-szakterulet-lista-szakemberhez .views-row .views-field-title h3{
  margin-top: 0.2em;
  margin-bottom: 0.2em;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 400;
  text-wrap-style: balance;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.view-szakterulet-lista .views-row.hover .views-field-title h3,
.view-szakterulet-lista-szakemberhez .views-row.hover .views-field-title h3,
.view-szakterulet-lista .views-row:hover .views-field-title h3,
.view-szakterulet-lista-szakemberhez .views-row:hover .views-field-title h3{
  color: var(--pal-5);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.view-szakterulet-lista .views-field-field-alcimsor,
.view-szakterulet-lista-szakemberhez .views-field-field-alcimsor{
  margin-bottom: 1em;
  color: var(--pal-2);
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.7;
}

.page-node-type-szakterulet #pre-footer{
  margin-top: 0;
}

.page-node-type-szakterulet .view-arak-szakterulethez{
  margin-bottom: 5vh;
}

.c-icon{

}

.c-icon-info{
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url(../images/i_info.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  line-height: 35px;
  vertical-align: middle;
  margin-top: -3px;
}

.chevron-right{
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url(../images/i_chevron_right.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  line-height: 35px;
  vertical-align: middle;
  margin-top: -3px;  
}

.chevron-left{
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url(../images/i_chevron_left.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  line-height: 35px;
  vertical-align: middle;
  margin-top: -3px;  
}

.chevron-down{
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url(../images/i_chevron_down.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  line-height: 35px;
  vertical-align: middle;
  margin-top: -3px;  
}

#banner{
  margin-top: 150px;
}

.banner-swiper{

}

#banner{
  overflow: hidden;
}


#banner-swiper{
  position: relative;
}

#banner-swiper .swiper-wrapper{
  z-index: 10;
}

#banner .swiper-slide{
  height: 70vh;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#banner .container-w{
  height: 100%;
  display: flex;
  align-items: flex-start;
}

#banner .slide-inner{
  display: inline-block;
  position: relative;
  max-width: 35vw;
  margin-top: 15vh;
}

#banner .slide-inner-title{

}

#banner .slide-inner-title h2{
  padding-bottom: 0;
}

#banner .slide-inner-text{
  font-size: 18px;
  margin-bottom: 1em;
  z-index: 20;
}

#banner .slide-inner-link{
  margin-bottom: 0.5em;
}

#banner .slide-inner-content{
  position: relative;
  padding: 30px 30px 40px 0;
  color: #fff;
}

#banner .slide-inner-content:before{
  z-index: -1;
  content: "";
  position: absolute;
  display: inline-block;
  top: 0;
  right: 0;
  width: 50vw;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
}

#banner .slide-inner-content:after{
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  display: inline-block;
  width: 100%;
  height: 15px;
  background-image: url(../images/sep_line.svg);
  background-position: center;
  background-size: 100%;
  background-repeat: repeat-y;
}

#banner .slide-inner-branding{
  padding: 30px 30px 30px 50px;
  background-color: var(--pal-2);
  display: inline-block;
  position: relative;
}

#banner .slide-inner-branding:before{
  z-index: -1;
  content: "";
  position: absolute;
  display: inline-block;
  top: 0;
  right: 0;
  width: 50vw;
  height: 100%;
  background-color: var(--pal-2);
}

#banner .slide-inner-branding:after{
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  background-image: url(../images/sep_line.svg);
  background-position: center;
  background-size: 100%;
  background-repeat: repeat-y;
}

#banner .slide-inner-branding img{
  width: 150px;
}

#banner .slide-inner-content-corner{
  position: absolute;
  top: 0;
  right: 0;
  border-top: 3px solid var(--background-color);
  border-right: 3px solid var(--background-color);
  width: 80px;
  height: 80px;
  display: inline-block;
  z-index: 1;
}

#banner .swiper-pagination{
  z-index: 20;
}

#banner .swiper-pagination-bullet {
  cursor: pointer;
  width: 1em;
  height: 1em;
  display: inline-block;
  border-radius: 50%;
  background: rgba(0,0,0,1);
  opacity: 0.2;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#banner .swiper-pagination-bullet.swiper-pagination-bullet-active{
  background: rgba(255,255,255,1);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);  
}

#banner .swiper-pagination-bullet:hover {
  background: rgba(255,255,255,1);
  opacity: 1;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}


.view-palyazatok{

}


.view-palyazatok .view-content{
  display: flex;
  gap: 3em;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
}

.view-palyazatok .views-row{
  display: flex;
  gap: 2em;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: flex-start;  
}

.view-palyazatok .views-field-fieldset{
  width: 75%;
}

.view-palyazatok .views-field-title{

}

.view-palyazatok .views-field-title h2{
  margin: 0;
  padding: 0;
}

.view-palyazatok .views-field-field-alcimsor{
  font-weight: bold;
  opacity: 0.7;
  color: var(--pal-2);
  letter-spacing: 1px;
}

.view-palyazatok .views-field-field-infoblokk{
  width: 25%;
  text-align: right;
}

.node--type-palyazat .field--name-field-infoblokk{
  float: right;
}

.section-more{
  text-align: center;
  margin: 5vh auto 5vh auto;
}

.section-ab{
  text-align: center;
  margin: 10vh auto 0vh auto;
}

.section-ab .alignfull{
  padding-top: 5vh;
  padding-bottom: 5vh;
  display: flex;
  background-color: var(--pal-3);
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: center;
  gap: 3em;
}

.section-ab .section-title h3{
  margin: 0;
  padding: 0;
}

.section-price .section-title{
  text-align: center;
}

.view-arak-szakterulethez,
.view-arak-szakembehez,
.view-arak-ar-listahoz{

}

.view-arak-szakterulethez .view-content,
.view-arak-szakembehez .view-content,
.view-arak-ar-listahoz .view-content{
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: space-between;
  align-items: stretch;
  justify-content: flex-start;
}

.view-arak-szakterulethez .views-row,
.view-arak-szakembehez .views-row,
.view-arak-ar-listahoz .views-row{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  margin: 0.3em 0;
  position: relative;
  min-height: 2em;
  padding: 0 0.5em 0 0.5em;
}

.view-arak-szakterulethez .views-row:nth-child(odd),
.view-arak-szakembehez .views-row:nth-child(odd),
.view-arak-ar-listahoz .views-row:nth-child(odd){
  background: rgba(0,0,0,.08);
/*
  content: "";
  display: inline-block;
  background: rgba(0,0,0,.05);
  width: 106%;
  height: 106%;
  top: -3%;
  left: -3%;
  z-index: -1;
*/
}

.view-arak-szakterulethez .views-row:nth-child(even),
.view-arak-szakembehez .views-row:nth-child(even),
.view-arak-ar-listahoz .views-row:nth-child(even){
  background: rgba(255,255,255,.32);
  
}

.view-arak-szakterulethez .views-row .views-field-field-leiras,
.view-arak-szakembehez .views-row .views-field-field-leiras,
.view-arak-ar-listahoz .views-row .views-field-field-leiras{
  opacity: 0.8;
  text-wrap: pretty;
  padding-left: 0.5em;
}

.view-arak-szakterulethez .views-row .views-field-fieldset,
.view-arak-szakembehez .views-row .views-field-fieldset,
.view-arak-ar-listahoz .views-row .views-field-fieldset{
  flex: 1;
}

.view-arak-szakterulethez .views-row .views-field-nothing,
.view-arak-szakembehez .views-row .views-field-nothing,
.view-arak-ar-listahoz .views-row .views-field-nothing{
  margin-left: 2em;
}

.view-arak-szakterulethez .views-row .views-field-field-megnevezes,
.view-arak-szakembehez .views-row .views-field-field-megnevezes,
.view-arak-ar-listahoz .views-row .views-field-field-megnevezes{
  
}

.view-arak-szakterulethez .views-row .views-field-field-ar,
.view-arak-szakembehez .views-row .views-field-field-ar,
.view-arak-ar-listahoz .views-row .views-field-field-ar{
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  margin-left: 2em;
  white-space: nowrap;
}


.view-arak{

}

.ar-d-w{
  display: none;
}

.ar-d-w,
.ar-d,
.ar-dh-w,
.ar-dh,
.view-arak .views-field-fieldset-1,
.view-arak .views-field-fieldset-2{
  width: 100%;
} 

.ar-dh{
  display: flex;
  margin: 1em 0;
}

.view-arak .view-content{
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: space-between;
  align-items: stretch;
  justify-content: flex-start;
}

.view-arak .views-field-fieldset,
.view-arak .views-field-fieldset .field-content{
  width: 100%;
}

.view-arak .ar-h{
  display: flex;
  align-content: center;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row;
  /*
  margin-top: 3em;
  margin-bottom: 1em;
  */
}

.view-arak .ar-h h3{
  margin-top: 0;
  margin-bottom: 0;
}

.view-arak .views-row{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  margin: 0.5em 0;
  padding: 0.5em 1em;
  background: var(--pal-3);
  border-radius: 20px;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

/*
.view-arak .views-row:hover{
  background-color: var(--pal-5);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}
*/

.view-arak .views-row .views-field-title{
  flex: 1;
}

.view-arak .views-row .views-field-title h2{

}

.view-arak .views-row .views-field-view{
  width: 100%;
}

.view-arak .views-row .views-field-field-idopontfoglalas{
  margin-left: 1em;
}

.view-arak .views-row .views-field-nothing{
  margin-left: 1em;
}

.view-arak .views-row .ar-h .views-field-nothing span.chevron-right{
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.view-arak .views-row.open .ar-h .views-field-nothing span.chevron-right{
  transform: rotate(90deg);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.front-callout h3{
  font-size: 27px;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
  text-wrap: balance;
}

.front-callout p{
  text-wrap: balance;
}


#search{
  width: 30%;
  max-width: 90%;
}

.search-form,
#search-block-form{
  width: 100%;
  display: flex;
  gap: 1em;
  flex-direction: row;
  align-items: center;
  align-content: center;
  justify-content: center;
}

.search-form .form-item-keys,
#search-block-form .form-item-keys{
  flex: 1;
}

.search-form input[type="search"],
#search-block-form input[type="search"]{
  padding: 13px 20px;
  border: 1px solid var(--pal-2);
  width: calc(100% - 40px);
  background: transparent;
  line-height: 2em;
  border-radius: 20px;
  background: #fff;
  width: 100%;
}

.search-form input[type="submit"],
#search-block-form input[type="submit"]{
  display: inline-block;
  padding: 13px 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 2em;
  vertical-align: middle;
  background-color: var(--pal-5);
  color: var(--background-color);
  border-radius: 20px;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
  cursor: pointer;
  outline: 0;
  border: 0px;  
}

#search-block-form input[type="submit"]:hover{
  background-color: var(--background-color);
  color: var(--pal-2);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}


.search-form input[type="submit"]:hover{
  background-color: var(--pal-2);
  color: var(--background-color);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#search-block-form :focus{
  outline: 1px solid transparent;
  border: 1px solid var(--pal-5);
}

.search-advanced{
  display: none;
}

.search-form .container-inline{

}

.search-form .container-inline .form-item-keys label{
  display: none;
}

.search-form .search-help-link{
  display: none;
}

#contact-map-wrapper{
  position: relative;
  transform: translateX(calc(50% - 50vw));
  height: auto;
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: calc(100vw);
}

#contact-address{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--pal-2);
  display: flex;
}

#contact-map{
  display: flex;
  widows: 100%;
  height: 600px;
}

.webform-submission-form{
  gap: 15px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between; 
  color: var(--pal-2);
}

.webform-submission-form .form-required::after {
  content: '';
  vertical-align: super;
  display: inline-block;
  background-image: url(/core/misc/icons/ee0000/required.svg);
  background-repeat: no-repeat;
  background-size: 6px 6px;
  width: 6px;
  height: 6px;
  margin: 0 0.3em;
}

.webform-submission-form .form-item{
  display: inline-block;
  position: relative;
  margin-bottom: 1em;
}

.webform-submission-form .form-type-checkbox{
  width: calc(50% - 8px);
}

.webform-submission-form .form-item-hozzajarulok-az-adataim-kezelesehez{
  width: 100%; 
}

.webform-submission-form .form-item-name,
.webform-submission-form .form-item-email{
  width: calc(50% - 8px);
}

.webform-submission-form .form-item-message{
  width: 100%;
}

.webform-submission-form .form-item.form-type-textfield label,
.webform-submission-form .form-item.form-type-email label,
.webform-submission-form .form-item.form-type-textarea label{
  position: absolute;
  top: -0.7em;
  left: 1.5rem;
  background: #fff;
  padding: 0 0.25rem;
}

.webform-submission-form .form-item label,
.webform-submission-form .form-item.form-type-textarea label,
.webform-submission-form .form-item.webform-checkboxes .fieldset-legend,
.webform-submission-form .form-item.webform-checkboxes-other .fieldset-legend{
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 0px 10px 0px 5px;
  background: #fff;
}

.webform-submission-form .form-item.webform-checkboxes-other .form-type-checkbox {
  width: calc(100% - 8px);
}

fieldset{
  margin: 0;
  border: 1px solid var(--pal-2);
}

.webform-submission-form .form-item.form-type-checkbox label{
  display: inline-block;
  width: 90%;
}

.webform-submission-form input.form-text,
.webform-submission-form input.form-email{
  padding: 13px 20px;
  border: 1px solid var(--pal-2);
  width: calc(100% - 40px);
  background: transparent;
  line-height: 1.2em;
  border-radius: 20px;
}

.webform-submission-form textarea{
  padding: 13px 20px;
  border: 1px solid var(--pal-2);
  width: calc(100% - 40px);
  background: transparent;
  border-radius: 20px;
  resize: none;
}

.webform-submission-form ::placeholder {
  /*color: var(--pal-3);*/
  opacity: 0;
}

.webform-submission-form :focus{
  outline: 1px solid transparent;
  border: 1px solid var(--pal-5);
}

.node__content{
  margin-bottom: 5vh;
}

.view-szurocsomagok{

}

.view-szurocsomagok .view-content{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 1em;

}

.view-szurocsomagok .views-row{
  text-align: center;
  width: calc(100% / 4 - 1em);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);

}

.view-szurocsomagok .views-row .views-field-view-node a{
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
}

.view-szurocsomagok .views-row .views-field-field-belyegkep{
  aspect-ratio: 1 / 1;
  width: 100%;
  background-color: var(--pal-2);
}

.view-szurocsomagok .views-row .views-field-field-belyegkep{
  overflow: hidden;
}

.view-szurocsomagok .views-row .views-field-field-belyegkep img{
  max-width: 100%;
  display: inline-block;
  vertical-align: top;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.view-szurocsomagok .views-row.hover .views-field-field-belyegkep img,
.view-szurocsomagok .views-row:hover .views-field-field-belyegkep img{
  transform: scale(1.05);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.view-szurocsomagok .views-row .views-field-title{
  background-color: rgba(0,0,0,0.7);
  position: absolute;
  text-transform: uppercase;
  padding: 1em;
  text-align: left;
  left: 0;
  bottom: 0;
  color: #fff;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
  width: calc(100% - 2em);
}

.view-szurocsomagok .views-row .views-field-title h3{
  font-size: 27px;
  margin: 0;
}

.view-szurocsomagok .views-row .views-field-title h3 span{
  font-weight: bold;
}

.view-szurocsomagok .views-row .views-field-title:before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 4px;
  display: inline-block;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.view-szurocsomagok .views-row:hover .views-field-title:before{
  width: 100%;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.view-szurocsomagok .views-row:nth-child(4n+1) .views-field-title:before {
  background-color: var(--pal-11);
}

.view-szurocsomagok .views-row:nth-child(4n+2) .views-field-title:before {
  background-color: var(--pal-12);
}

.view-szurocsomagok .views-row:nth-child(4n+3) .views-field-title:before {
  background-color: var(--pal-13);
}

.view-szurocsomagok .views-row:nth-child(4n+4) .views-field-title:before {
  background-color: var(--pal-14);
}

._access-icon{
  display: none!important;
}

._access-menu ._menu-btn {
  font-size: 40px!important;
}

._access-menu ul {
  gap: 0!important;
}

._access-menu{
  box-shadow: unset!important;
  border-radius: unset!important;
}

._access-menu ._text-center{
  height: 2em!important;
  margin: 0!important;
  vertical-align: middle!important;
}

.view-almenu-tartalom-lista{

}

.view-almenu-tartalom-lista .view-content{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 1em;

}

.view-almenu-tartalom-lista .views-row{
  text-align: center;
  width: calc(100% / 4 - 1em);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);

}

.view-almenu-tartalom-lista .views-row .views-field-view-node a{
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
}

.view-almenu-tartalom-lista .views-row .views-field-field-belyegkep{
  aspect-ratio: 1 / 1;
  width: 100%;
  background-color: var(--pal-2);
}

.view-almenu-tartalom-lista .views-row .views-field-field-belyegkep{
  overflow: hidden;
}

.view-almenu-tartalom-lista .views-row .views-field-field-belyegkep img{
  max-width: 100%;
  display: inline-block;
  vertical-align: top;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.view-almenu-tartalom-lista .views-row.hover .views-field-field-belyegkep img,
.view-almenu-tartalom-lista .views-row:hover .views-field-field-belyegkep img{
  transform: scale(1.05);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.view-almenu-tartalom-lista .views-row .views-field-title{
  background-color: rgba(0,0,0,0.7);
  position: absolute;
  text-transform: uppercase;
  padding: 1em;
  text-align: left;
  left: 0;
  bottom: 0;
  color: #fff;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
  width: calc(100% - 2em);
}

.view-almenu-tartalom-lista .views-row .views-field-title h3{
  font-size: 27px;
  margin: 0;
}

.view-almenu-tartalom-lista .views-row .views-field-title h3 span{
  font-weight: bold;
}

.view-almenu-tartalom-lista .views-row .views-field-title:before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 4px;
  display: inline-block;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.view-almenu-tartalom-lista .views-row:hover .views-field-title:before{
  width: 100%;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.view-almenu-tartalom-lista .views-row:nth-child(4n+1) .views-field-title:before {
  background-color: var(--pal-11);
}

.view-almenu-tartalom-lista .views-row:nth-child(4n+2) .views-field-title:before {
  background-color: var(--pal-12);
}

.view-almenu-tartalom-lista .views-row:nth-child(4n+3) .views-field-title:before {
  background-color: var(--pal-13);
}

.view-almenu-tartalom-lista .views-row:nth-child(4n+4) .views-field-title:before {
  background-color: var(--pal-14);
}


#popup-message-wrapper{
  display: flex!important;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
}

#popup-message-window {
  display: block;
  position: relative!important;
  overflow: auto;
  background: #ffffff;
  border: 0px solid #000000;
  border-radius: 0px;
  padding: 2em;
  max-width: 90%;
  font-size: 16px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  box-sizing: border-box;
  height: unset!important;
}

#popup-message-close{
  background-image: url(../images/i_close.svg);
  width: 35px;
  height: 35px;
  top: 2em;
  right: 1em;
  font-size: 16px;  
  margin-top: -2px;
}


#popup-message-background {
  background: rgb(3 47 103 / 80%);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
  backdrop-filter: blur(2px);
}

#popup-message-window h1.popup-message-title {
  text-align: left;
  color: black;
  font-size: 22px;
  font-weight: 700;
  border-bottom: 1px dotted #d3d3d3;
  padding-bottom: 1em;
  margin-bottom: 1em;
  text-transform: uppercase;
  margin-top: 0;
  line-height: 35px;
}
    
#popup-message-window br:first-of-type{
  display: none;
}

.front-callout.wp-block-columns {
  flex-wrap: wrap!important;
}

.front-callout .wp-block-column{
  min-width: 250px;
}

