@charset "UTF-8";
/* 
Theme Name: OMVE 2021
Theme URI: 
Author: Sáfrány Sára
Author URI: https://safranysara.com
Description:
Tags: 
Version: 2.747
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: 
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
:root {
  --green-main: 81, 157, 88;
  --green-clr: rgb(var(--green-main));
  --green-acc: 199, 208, 95;
  --green-acc-clr: rgb(var(--green-acc));
  --green-sec-clr:  #176614;
  --green-sec-clr-03: #1766145b;
  --green-light-clr: #a0cca0;
  --orange: 255, 89, 13;
  --orange-clr: rgb(var(--orange));
  --orange-clr-06: rgba(var(--orange), 0.6);
  --white: 255, 255, 255;
  --white-clr: rgb(var(--white));
  --white-clr-02:  rgba(var(--white), 0.2);
  --white-clr-03:  rgba(var(--white), 0.3);
  --white-clr-05: rgba(var(--white), 0.5);
  --white-clr-07: rgba(var(--white), 0.7);
  --white-clr-08:  rgba(var(--white), 0.8);
  --grey-clr: #494949;
  --black-clr: black;
  --grad-clr: linear-gradient(146.94deg, rgba(var(--green-main), 0.42) , rgba(var(--green-acc), 0.35));
  --grad-clr-2: linear-gradient(122.83deg, rgba(var(--green-main), 0.25) , rgba(var(--green-acc), 0.25) );
  --sans-serif: 'Roboto', sans-serif;
  --serif-serif: 'Playfair Display', serif;
  --bg-blur: blur(10px);
  --bx-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  background: var(--grad-clr);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  color: var(--black-clr);
  font-family: var(--serif-serif);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

body {
  padding: 0;
  margin: 0;
  top: 0;
}

.demo {
  position: relative;
  width: 100%;
  margin: 0;
  line-height: 1.8rem;
}

.bg-moving::after {
  content: '';
  display: block;
  width: 40vmin;
  height: 40vmin;
  background: var(--green-clr);
  border-radius: 20vmin;
  position: absolute;
  top: 0;
  left: 30vw;
  -webkit-filter: blur(20vmin);
          filter: blur(20vmin);
  -webkit-animation: aafter 5s infinite alternate;
          animation: aafter 5s infinite alternate;
  z-index: -1;
}

@-webkit-keyframes aafter {
  from {
    left: 30vw;
    top: 0;
  }
  to {
    left: 38vw;
    top: 10vh;
  }
}

@keyframes aafter {
  from {
    left: 30vw;
    top: 0;
  }
  to {
    left: 38vw;
    top: 10vh;
  }
}

.bg-moving::before {
  content: '';
  display: block;
  width: 40vmin;
  height: 40vmin;
  background: var(--green-acc-clr);
  border-radius: 20vmin;
  position: absolute;
  top: 5vh;
  left: 32vw;
  -webkit-filter: blur(20vmin);
          filter: blur(20vmin);
  -webkit-animation: bbefore 7s infinite alternate;
          animation: bbefore 7s infinite alternate;
  z-index: -1;
}

@-webkit-keyframes bbefore {
  from {
    left: 32vw;
    top: 5;
  }
  to {
    left: 28vw;
    top: 2vh;
  }
}

@keyframes bbefore {
  from {
    left: 32vw;
    top: 5;
  }
  to {
    left: 28vw;
    top: 2vh;
  }
}

/*                             NAVIGATION                          */
header {
  width: 100%;
  position: relative;
}

.main-header {
  background: var(--white-clr-08);
}

nav {
  margin: 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-transform: uppercase;
  font-weight: 500;
  font-size: clamp(1em 1.2em 1.3em);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 999;
}

nav ul {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  list-style: none;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 0;
  padding-right: 2vw;
  justify-self: flex-end;
}

nav li a {
  background: none;
  padding: 0.2em 0.8em;
  border-radius: 1em;
  text-decoration: none;
}

nav li a:hover {
  background: var(--white-clr);
}

nav a:link {
  color: var(--black-clr);
}

nav a:visited {
  color: var(--black-clr);
}

.desktop-menu .sub-menu {
  display: none;
}

.desktop-menu .sub-menu li {
  margin: 1em;
}

nav .desktop-menu li:hover .sub-menu {
  top: 0;
  padding-top: 2em;
  display: block;
  background: var(--white-clr-02);
  -webkit-backdrop-filter: var(--bg-blur);
          backdrop-filter: var(--bg-blur);
  position: absolute;
  z-index: -1;
  border-radius: 1em;
}

.logo {
  padding-left: 3vw;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-self: flex-start;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 50px;
  font-weight: 900;
  font-size: 1.5em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-transform: capitalize;
}

.custom-logo-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 3em;
  max-width: 8em;
}

.custom-logo {
  width: auto;
  height: auto;
}

nav svg {
  display: none;
}

/*ADO*/
.ado {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  font-size: 0.8em;
  z-index: 990;
}

.ado ul {
  background: var(--white-clr-05);
  padding: 1em;
  border-radius: 2em;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  list-style: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-backdrop-filter: var(--bg-blur);
          backdrop-filter: var(--bg-blur);
  border: var(--orange-clr-06);
  border-style: solid;
}

.ado li {
  margin: 0 1vw;
}

.ado li:first-child {
  font-weight: 700;
}

/* Page */
h1 {
  margin: auto;
  text-align: center;
  font-weight: 900;
  font-size: 4em;
  padding-bottom: 1.5em;
  padding-top: 1em;
  line-height: normal;
}

h2 {
  margin: auto;
  text-align: center;
  font-weight: 900;
  font-size: 2em;
  padding-bottom: 1.5em;
}

.demo p {
  max-width: 55em;
  margin: auto;
  padding: 0 2em 1em;
}

.demo ul, .demo ol {
  max-width: 50em;
  margin: auto;
}

.demo br {
  content: "";
  margin: 2.5em;
  display: block;
}

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

.demo a:link {
  color: var(--orange-clr);
}

.demo a:visited {
  color: var(--green-sec-clr);
}

.demo time {
  font-style: italic;
  opacity: 0.7;
}

.page .img-wrapper {
  overflow: hidden;
  max-height: 30em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -o-object-fit: cover;
     object-fit: cover;
  padding: 1em;
}

.page .img-wrapper img {
  max-width: 50em;
  min-width: 5em;
  height: auto;
  border-radius: 1em;
  -webkit-box-shadow: var(--bx-shadow);
          box-shadow: var(--bx-shadow);
}

.page .sd-content {
  padding-bottom: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.page .sd-content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
}

.page .publications {
  background: var(--green-sec-clr-03);
  padding: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
}

.page .publications h2 {
  padding: 0.75em 0 1em;
  font-weight: 900;
}

.page .publications .accordion {
  cursor: pointer;
  background: var(--white-clr-05);
  border-radius: 3em;
  border-style: none;
  width: 80%;
  margin: auto;
  margin-bottom: 0.5em;
  margin-top: 0.5em;
  -webkit-box-shadow: var(--bx-shadow);
          box-shadow: var(--bx-shadow);
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  padding: 0;
}

.page .publications .accordion input {
  background: none;
  border-radius: 3em;
  padding: 1.2em;
  font-size: 1.1em;
  border-style: solid;
  border-color: var(--orange-clr);
  margin: auto;
  -ms-grid-column-align: center;
      justify-self: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 100%;
          flex: 1 100%;
}

.page .publications .accordion input::-webkit-input-placeholder {
  color: var(--orange-clr);
}

.page .publications .accordion input:-ms-input-placeholder {
  color: var(--orange-clr);
}

.page .publications .accordion input::-ms-input-placeholder {
  color: var(--orange-clr);
}

.page .publications .accordion input::placeholder {
  color: var(--orange-clr);
}

.page .publications .accordion h3 {
  margin-left: 1em;
  margin-right: auto;
}

.page .publications .active {
  background: var(--white-clr-07);
  border-style: none;
}

.page .publications .accordion:hover {
  background: var(--white-clr-07);
  border-style: none;
}

.page .publications .accordion:not(:first-of-type):after {
  content: '+';
  /* Unicode character for "plus" sign (+) */
  font-size: 1.5em;
  margin: auto;
  margin-right: 2em;
}

.page .publications .active:not(:first-of-type):after {
  content: '-';
}

.page .publications .list {
  max-width: 70em;
  padding: 0 18px;
  background-color: var(--white-clr-03);
  margin: auto;
  max-height: 0;
  overflow: auto;
  -webkit-transition: max-height 0.2s ease-out;
  transition: max-height 0.2s ease-out;
  border-radius: 0.5em;
}

/* width */
::-webkit-scrollbar {
  width: 1em;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--white-clr-03);
  border-radius: 1em;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--orange-clr-06);
  border-radius: 1em;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--orange-clr);
}

.page .publications .list li {
  margin: 0.5em 0;
  list-style-type: circle;
}

.page .section {
  padding: 2em 0;
}

.page .section h2 {
  line-height: 1.6;
  font-weight: 900;
}

.page .section a {
  border-radius: 1em;
  border: var(--green-light-clr);
  background: var(--white-clr-07);
  border-style: solid;
  outline: none;
  color: var(--orange-clr);
  padding: 0 1em;
}

.page .section dt a {
  border-radius: 0;
  border: none;
  background: none;
  border-style: none;
  color: none;
  padding: 0;
}

.page .section p img {
  width: 100%;
  height: auto;
  border-radius: 1em;
  -webkit-box-shadow: var(--bx-shadow);
          box-shadow: var(--bx-shadow);
}

.page .section .contact-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  padding: 0 2em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: var(--sans-serif);
}

.page .section .contact-person {
  background: var(--white-clr-05);
  margin: 1em;
  padding: 0.5em;
  border-radius: 1em;
  -webkit-box-shadow: var(--bx-shadow);
          box-shadow: var(--bx-shadow);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}

.page .section .contact-person a {
  width: auto;
  padding: 0.3em 1em;
  text-align: center;
  border-radius: 3em;
}

.page .section .contact-person h3 {
  text-align: center;
  margin: auto;
  font-family: var(--serif-serif);
}

.page .section .contact-person p {
  padding: 0;
  font-size: 0.8em;
  margin: auto;
}

.page .section .contact-person p:last-child {
  font-size: 1em;
  border-radius: 1em;
  border: var(--green-light-clr);
  background: var(--white-clr-07);
  border-style: solid;
  outline: none;
  color: var(--orange-clr);
  padding: 0 1em;
  margin: auto;
  margin-top: 0.5em;
}

.page .section .contact-person p:last-child::before {
  content: '+';
}

.page .section .contact-address {
  -webkit-box-flex: 1;
      -ms-flex: 1 100%;
          flex: 1 100%;
  background: var(--white-clr-05);
  margin: 1em;
  padding: 0.5em;
  border-radius: 3em;
  -webkit-box-shadow: var(--bx-shadow);
          box-shadow: var(--bx-shadow);
  text-align: center;
  font-weight: 600;
}

.page .section .contact-wrapper .sns {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin: auto;
  gap: 1em;
}

.page .section .contact-wrapper .sns iframe {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 285px;
  padding: auto;
  margin: auto;
}

.page .section .contact-wrapper .sns iframe:first-child {
  -webkit-box-flex: 4;
      -ms-flex: 4;
          flex: 4;
}

.contact-form {
  max-width: 55em;
  margin: auto;
  padding: 1em;
}

.contact-form input, textarea, button {
  border-radius: 1em;
  border: var(--green-light-clr);
  background: var(--white-clr);
  border-style: solid;
  outline: none;
  color: var(--orange-clr);
}

.page .linked-page {
  max-width: 100vw;
  max-height: 30vw;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  font-size: clamp(1rem, 10vw, 2rem);
}

.page .linked-page img {
  margin: auto;
  max-height: 100%;
  min-height: 100px;
}

.page .linked-page a {
  color: var(--black-clr);
  font-weight: 400;
  bottom: 0;
  position: absolute;
  background: var(--white-clr-03);
  padding: 0.5em;
  text-transform: uppercase;
  -webkit-backdrop-filter: var(--bg-blur);
          backdrop-filter: var(--bg-blur);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
  text-align: center;
}

.page .linked-page a:hover {
  background: var(--orange-clr-06);
}

/*   PHOTO   */
.imgcontainer {
  position: relative;
  width: 100%;
  margin-bottom: 5em;
}

.image {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  height: 60vh;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 1;
}

.overlay {
  background: var(--white-clr-03);
  -webkit-backdrop-filter: var(--bg-blur);
          backdrop-filter: var(--bg-blur);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  width: 100%;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.text {
  position: relative;
  margin: auto;
  text-align: center;
  max-width: 50em;
  padding: 0 2vw;
}

/*FOOTER*/
footer {
  font-family: var(--sans-serif);
  font-size: 0.9em;
  padding: 1em 5em;
  background: var(--grey-clr);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  text-align: center;
  color: var(--white-clr);
  padding: 1vw;
}

footer ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}

footer li {
  margin: 0.5em 0;
}

footer a {
  text-decoration: none;
  font-weight: 500;
}

footer a:link {
  color: var(--white-clr);
}

footer a:visited {
  color: var(--green-light-clr);
}

.footertop {
  -webkit-box-flex: 1;
      -ms-flex: 1 100%;
          flex: 1 100%;
}

.footertop .textwidget p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  max-width: 100%;
  overflow: hidden;
}

.footerbottom {
  -webkit-box-flex: 1;
      -ms-flex: 1 100%;
          flex: 1 100%;
}

.foot1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 1vw;
  text-align: left;
  min-width: 20em;
}

.foot2 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 1vw;
  text-align: left;
  min-width: 20em;
}

.foot3 {
  -webkit-box-flex: 1;
      -ms-flex: 1 250px;
          flex: 1 250px;
  margin: 1vw;
  padding: 0 0.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}

.footerbottom div, iframe {
  -webkit-box-flex: 1;
      -ms-flex: 1 100%;
          flex: 1 100%;
  padding-bottom: 0.5em;
  max-width: 100% !important;
  border-radius: 1em;
  overflow: hidden;
}

.foot3 .fb_iframe_widget {
  height: 200px !important;
}

footer #searchform {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
}

footer #searchform label {
  display: none;
}

footer #searchform input {
  border-radius: 1em;
  border: var(--green-light-clr);
  background: var(--white-clr);
  border-style: solid;
  outline: none;
  color: var(--orange-clr);
}

/* FB footer */
.textwidget {
  margin: auto;
}

.fb-page {
  width: 100%;
  height: 30em;
  border-radius: 1em;
  border: var(--green-light-clr);
}

/*GALLERY*/
.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin: 2vw;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
}

.gallery .imgcontainer {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 40vh;
  margin: 1em;
  overflow: hidden;
  border-radius: 0.5em;
}

.gallery .image {
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0.5em;
}

.gallery .attachment-thumbnail {
  border-radius: 1em;
  overflow: hidden;
  -webkit-box-shadow: var(--bx-shadow);
          box-shadow: var(--bx-shadow);
}

.gallery br {
  display: none;
  padding: 0;
  margin: 0;
}

.gallery dl {
  min-width: 20em;
  max-width: 350px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  position: relative;
}

.gallery dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: auto;
  padding: 1em;
}

.gallery dl:hover dd {
  opacity: 1;
}

.gallery dl dt a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.gallery dl dt a img {
  width: 100%;
  max-width: 50em;
  height: auto;
  margin: auto;
}

.gallery dl dd {
  opacity: 0;
  padding: 0.5em 1em;
  background: var(--white-clr-05);
  text-align: center;
  -webkit-backdrop-filter: var(--bg-blur);
          backdrop-filter: var(--bg-blur);
  border-radius: 2em;
  bottom: 3em;
  width: 100%;
  -webkit-box-shadow: var(--bx-shadow);
          box-shadow: var(--bx-shadow);
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 300px;
  overflow: hidden;
}

/* Post .blog */
.post-img {
  position: relative;
  top: 0;
  background: var(--grad-clr-2);
  width: 100%;
  height: 15em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.post-img img {
  position: relative;
  -o-object-fit: fill;
     object-fit: fill;
  margin: auto;
  opacity: 80%;
}

.blog .blog-header {
  position: relative;
  padding: 1em 0;
  font-family: var(--sans-serif);
  margin: auto;
  margin-bottom: 3em;
  text-align: left;
}

.blog .blog-header .post-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  color: var(--grey-clr);
}

.blog .blog-header .post-meta time {
  font-style: normal;
}

.blog .blog-header .post-meta a::before {
  content: '・';
}

.blog .blog-header .post-meta a:link {
  color: var(--grey-clr);
  font-weight: 100;
}

.blog .blog-header .post-meta a:visited {
  color: var(--grey-clr);
  font-weight: 100;
}

.blog .blog-header .post-meta a:hover {
  color: var(--orange-clr);
  font-weight: 100;
}

.blog .blog-header .post-meta .tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  list-style: none;
  text-transform: capitalize;
  background: var(--white-clr-05);
  padding: 0 1em;
  margin: 0 0.5em;
  border-radius: 2em;
}

.blog .blog-header .post-meta .tag a::before {
  content: ' ● ';
}

.blog .blog-header .post-meta .tag li {
  margin-right: 0.5em;
}

.blog .content p {
  max-width: 55em;
  margin: auto;
}

.blog .content p br {
  height: 0;
  margin: 0;
}

.blog .content .img-wrapper {
  overflow: hidden;
  max-height: 30em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -o-object-fit: cover;
     object-fit: cover;
  padding: 1em;
}

.blog .content img {
  max-width: 50em;
  min-width: 5em;
  height: auto;
  border-radius: 1em;
  -webkit-box-shadow: var(--bx-shadow);
          box-shadow: var(--bx-shadow);
}

.blog .content .wp-caption {
  background: var(--grad-clr);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
  padding: 0.5em;
}

.blog .content .wp-caption p {
  max-width: 25em;
  padding: 1em;
  border-radius: 1em;
  background: var(--white-clr-05);
  -webkit-box-shadow: var(--bx-shadow);
          box-shadow: var(--bx-shadow);
  margin: 2em;
}

.blog .content .wp-caption a {
  max-width: 30em;
  -o-object-fit: contain;
     object-fit: contain;
  overflow: hidden;
  padding: 0.5em;
}

.blog .content .wp-caption a img {
  max-width: 100%;
}

.blog .content .wp-caption img {
  max-width: 30em;
}

.sd-block {
  margin-bottom: 0 !important;
  margin-left: 1em;
}

.sd-content p {
  display: none;
}

.sd-content ul li {
  margin-bottom: 0 !important;
}

.jp-carousel-overlay {
  background: rgba(0, 0, 0, 0.5) !important;
  -webkit-backdrop-filter: var(--bg-blur);
          backdrop-filter: var(--bg-blur);
}

.jp-carousel-slide {
  background: none !important;
  padding: 0.5em;
}

.jp-carousel img {
  border-radius: 0.5em;
  -webkit-box-shadow: var(--bx-shadow);
          box-shadow: var(--bx-shadow);
}

.jp-carousel-info h2 {
  color: var(--white-clr) !important;
  font-family: var(--serif-serif) !important;
  text-align: center !important;
  background: var(--white-clr-05) !important;
  padding: 0.5em 1em;
  border-radius: 2em;
}

.jp-carousel-image-meta {
  border-radius: 0.5em;
  overflow: hidden;
}

.jp-carousel-comment-form-field {
  color: var(--white-clr) !important;
  background: #0f0f0f !important;
  border: rgba(81, 157, 88, 0.8) !important;
  border-radius: 0.5em !important;
  resize: none;
}

.jp-carousel-comment-form-button {
  color: #d6d6d6 !important;
  background: #0f0f0f !important;
  border: rgba(81, 157, 88, 0.8) !important;
}

.jp-carousel-comment {
  color: #d6d6d6 !important;
  background: #0f0f0f !important;
  border: rgba(81, 157, 88, 0.8) !important;
  padding: 0.5em;
  border-radius: 0.5em;
}

.jp-carousel-close-hint span {
  background: none !important;
}

.jp-carousel-fadeaway {
  display: none !important;
}

.jp-carousel-titleanddesc {
  font-family: var(--serif-serif) !important;
  text-transform: capitalize;
  border: none !important;
}

/* ARCHIVE */
.archive {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  padding: 0.5em;
}

.archive .content {
  max-width: 30em;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: var(--white-clr-07);
  border-radius: 1em;
  margin: auto;
  margin-bottom: 2em;
  padding: 0;
}

.archive .pagination {
  -webkit-box-flex: 1;
      -ms-flex: 1 100%;
          flex: 1 100%;
  background: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-transform: capitalize;
  font-weight: 700;
  color: var(--grey-clr);
}

.archive .pagination h2 {
  display: none;
}

.archive .pagination a:link {
  color: var(--grey-clr);
}

.archive .pagination a:visited {
  color: var(--grey-clr);
}

.archive .pagination a:hover {
  color: var(--orange-clr);
}

.archive .pagination .nav-links {
  margin: auto;
  margin-bottom: 0.5em;
  font-family: var(--sans-serif);
  background: var(--white-clr-07);
  padding: 0 1em;
  border-radius: 2em;
}

.archive .content .post-header {
  position: relative;
  padding: 1em 0;
  font-family: var(--sans-serif);
  margin: auto;
  text-align: left;
  margin-left: 1em;
}

.archive .content .post-header h3 {
  font-family: var(--serif-serif);
  margin-bottom: 0;
}

.archive .content .post-header .more-link-a:active {
  color: var(--black-clr);
}

.archive .content .post-header .more-link-a:visited {
  color: var(--black-clr);
}

.archive .content .post-header .more-link-a:hover {
  color: var(--orange-clr);
}

.archive .content .post-header .post-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0;
  color: var(--grey-clr);
  font-size: 0.75em;
}

.archive .content .post-header .post-meta time {
  margin-left: 0;
  font-style: normal;
}

.archive .content .post-header .post-meta a::before {
  content: '・';
}

.archive .content .post-header .post-meta a:link {
  color: var(--grey-clr);
  font-weight: 100;
}

.archive .content .post-header .post-meta a:visited {
  color: var(--grey-clr);
  font-weight: 100;
}

.archive .content .post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  margin: auto;
  overflow: hidden;
  border-radius: 1em;
  padding: 0;
}

.archive .content .post p {
  background: 0;
  padding: 0 1em;
  margin: 0;
  font-size: 0.95em;
  margin-bottom: 1em;
}

.archive .content .post img {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.archive .content .post .more {
  position: absolute;
  bottom: 0;
  margin-bottom: 2em;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.archive .content .post .more-link {
  background: var(--white-clr-05);
  -webkit-backdrop-filter: var(--bg-blur);
          backdrop-filter: var(--bg-blur);
  padding: 0.5em 1em;
  border-radius: 2em;
  font-size: 1.3em;
}

.archive .content .post .more-link:link {
  color: var(--grey-clr);
}

.archive .content .post .more-link:visited {
  color: var(--grey-clr);
}

.archive .content .post .more-link:hover {
  color: var(--orange-clr);
}

/* Comments */
.comments {
  font-family: var(--sans-serif);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 40em;
  margin: auto;
  color: var(--grey-clr);
}

.comments .comments-header {
  width: 100%;
}

.comments h3 {
  color: var(--green-sec-clr);
  text-align: center;
  font-family: var(--serif-serif);
  background: var(--white-clr);
  border-radius: 2em;
  margin-bottom: 2.5em;
}

.comments .comments-inner {
  width: 100%;
}

.comment {
  border-radius: 0.5em;
  padding: 1em;
  border: var(--green-sec-clr);
  background: none;
  border-style: solid;
  margin-bottom: 0.5em;
  margin-top: 0.5em;
}

.comment p {
  font-weight: 700;
}

.comment-author {
  text-transform: capitalize;
  color: var(--green-sec-clr);
}

.comment-meta a {
  border-radius: 2em;
  padding: 0.2em;
  font-weight: 100;
  font-size: 0.75em;
  color: var(--green-sec-clr);
}

.reply a {
  border-radius: 2em;
  padding: 0.2em;
  border: var(--green-sec-clr);
  border-style: solid;
  resize: none;
  outline: var(--green-sec-clr);
  font-weight: 300;
}

.comment-respond {
  margin: auto;
  width: 98%;
  border-radius: 0.5em;
  border: var(--green-sec-clr);
  border-style: solid;
  margin-bottom: 1em;
  margin-top: 1em;
}

.comment-respond p {
  color: var(--green-sec-clr);
}

.comment-respond h4 {
  text-align: center;
  font-family: var(--serif-serif);
  color: var(--green-sec-clr);
}

.comments .comment-form-comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  color: var(--green-sec-clr);
}

.comments .comment-form-comment textarea {
  border-radius: 0.5em;
  border: var(--green-sec-clr);
  background: none;
  border-style: solid;
  resize: none;
  outline: none;
  max-width: 70vw;
}

.form-submit input {
  border-radius: 1em;
  border: var(--green-sec-clr);
  border-style: solid;
  resize: none;
  outline: var(--green-sec-clr);
  color: var(--orange-clr);
}

.comment-respond form input {
  border-radius: 1em;
  border: var(--green-sec-clr);
  background: none;
  border-style: solid;
  resize: none;
  outline: none;
}

#wp-comment-cookies-consent {
  border-radius: 1em;
  border: var(--green-sec-clr);
  border-style: solid;
}

/* 404 search */
.search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
  margin-bottom: 4em;
  padding: 2em;
  padding-top: 13em;
  background-repeat: no-repeat;
  background-position: center top 20%;
  background-size: auto;
}

.search label {
  display: none;
}

.search form div {
  background: var(--white-clr-05);
  border-radius: 5em;
  padding: 2em;
  -webkit-backdrop-filter: var(--bg-blur);
          backdrop-filter: var(--bg-blur);
}

.search form input {
  border-radius: 1em;
  border: var(--green-sec-clr-03);
  background: none;
  border-style: solid;
  outline: none;
  color: var(--orange-clr);
}

.search-page {
  -webkit-box-flex: 1;
      -ms-flex: 1 100%;
          flex: 1 100%;
}

/* FRONT PAGE */
.short-news {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2em;
}

.short-news .content {
  max-width: 20em;
  padding: 0;
  margin: 0 1em 1em;
}

.short-news .content .post .short-news-img {
  max-height: 10em;
  overflow: hidden;
}

.short-news .content .post .short-news-img img {
  padding-bottom: 2em;
  -o-object-position: 50% -4em;
     object-position: 50% -4em;
}

.short-news .content .post-header .post-meta a:first-child::before {
  content: '';
}

.find-us {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  background: var(--white-clr-03);
  padding: 2em 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

/* MAjd szedd ki ha müxik a fb és  a térkép */
.find-us .map {
  margin: 2em;
  margin-bottom: 1em;
  max-width: 25em;
  background: var(--white-clr-05);
  border-radius: 1em;
  -webkit-box-shadow: var(--bx-shadow);
          box-shadow: var(--bx-shadow);
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}

.find-us .social {
  margin: 2em;
  margin-bottom: 1em;
  background: var(--white-clr-05);
  border-radius: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-shadow: var(--bx-shadow);
          box-shadow: var(--bx-shadow);
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}

.find-us .social:last-child {
  width: 285px;
}

.find-us .find-contact {
  margin: 2em;
  margin-bottom: 1em;
  min-width: 20em;
}

.find-us .find-contact .address {
  background: var(--white-clr-05);
  margin-bottom: 1em;
  font-family: var(--sans-serif);
  border-radius: 3em;
  -webkit-box-shadow: var(--bx-shadow);
          box-shadow: var(--bx-shadow);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.find-us .find-contact .address .social-icon {
  width: 40px;
  height: 40px;
  margin: 5px 0 5px 1em;
}

.find-us .find-contact .address p {
  padding: 0;
  margin: auto 1em;
}

.find-us .find-contact .address a {
  border-radius: 3em;
  border: var(--green-light-clr);
  border-style: solid;
  color: var(--orange-clr);
  background: var(--white-clr-07);
  width: 100%;
  padding: 0.5em;
  text-align: center;
  font-family: var(--serif-serif);
  text-transform: uppercase;
  font-size: 1.5em;
}

.works {
  background: var(--grad-clr);
  padding: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
}

.works h2 {
  margin-top: 1em;
}

.works ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  max-width: 65em;
  margin: auto;
  font-family: var(--sans-serif);
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  font-size: 1.25em;
  font-weight: 600;
  margin-bottom: 1em;
}

.works li {
  background: var(--white-clr-05);
  -webkit-box-shadow: var(--bx-shadow);
          box-shadow: var(--bx-shadow);
  border-radius: 3em;
  list-style: none;
  margin: 1em;
  padding: 0.5em 1em;
}

.works a:link {
  color: var(--black-clr);
}

.works a:visited {
  color: var(--black-clr);
}

.works a:hover {
  color: var(--orange-clr);
}

.featured-research {
  padding: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.featured-research a:link {
  color: var(--black-clr);
}

.featured-research a:visited {
  color: var(--black-clr);
}

.featured-research a:hover {
  color: var(--orange-clr);
}

.featured-research .illustration {
  margin: 1em;
  max-width: 40em;
}

.featured-research img {
  background: var(--white-clr-05);
  -webkit-box-shadow: var(--bx-shadow);
          box-shadow: var(--bx-shadow);
  border-radius: 1em;
  width: 100%;
}

.featured-research .description {
  background: var(--white-clr-05);
  -webkit-box-shadow: var(--bx-shadow);
          box-shadow: var(--bx-shadow);
  border-radius: 1em;
  margin: 1em;
  max-width: 30em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.featured-research .description h3 {
  text-align: center;
}

.featured-research .description a {
  background: var(--white-clr-05);
  -webkit-box-shadow: var(--bx-shadow);
          box-shadow: var(--bx-shadow);
  border-radius: 3em;
  list-style: none;
  margin: 1em;
  padding: 0.5em 1em;
  text-align: center;
  font-size: 1.25em;
}

/* Media Q */
@media only screen and (max-width: 699px) {
  .desktop-menu {
    display: none;
    padding: 0,5em;
    z-index: 99999;
    -webkit-transition: display 2s;
    transition: display 2s;
    -webkit-box-flex: 1;
        -ms-flex: 1 100%;
            flex: 1 100%;
  }
  .desktop-menu li {
    margin: 2em;
    font-size: 1em;
  }
  nav {
    margin: 0;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    text-transform: uppercase;
    font-weight: 500;
    font-size: clamp(1em 1.2em 1.3em);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .side-nav {
    background: var(--white-clr-05);
    -webkit-backdrop-filter: var(--bg-blur);
            backdrop-filter: var(--bg-blur);
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    max-width: 70vw;
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
  .side-nav .desktop-menu li {
    margin-bottom: 0;
    margin-top: 0.9em;
  }
  .side-nav .desktop-menu li .sub-menu {
    margin-top: 0.5em;
    padding: 0.5em 0;
    background: var(--white-clr-03);
    border-radius: 1em;
    display: block;
    position: relative;
    z-index: auto;
  }
  .side-nav .desktop-menu li:hover .sub-menu {
    margin-top: 0.5em;
    padding: 0.5em 0;
    background: none;
    border-radius: 1em;
    display: block;
    position: relative;
    z-index: auto;
  }
  nav svg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: -1;
  }
  nav .mobile {
    cursor: pointer;
    margin-right: 1em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 5px;
  }
  nav svg:hover {
    cursor: pointer;
  }
  .logo {
    padding-left: 3vw;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
    min-width: 50px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .custom-logo-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 3em;
    max-width: 8em;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .custom-logo {
    width: auto;
    height: auto;
  }
  .content {
    margin: 0;
  }
  h1 {
    font-size: 2em;
  }
}

@media only screen and (min-width: 700px) {
  .desktop-menu {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
/*# sourceMappingURL=style.css.map */