@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");
@keyframes draw {
  to {
    stroke-dashoffset: 250;
  }
}
@keyframes draw2 {
  0% {
    stroke-dashoffset: -50;
  }
  60% {
    stroke-dashoffset: -50;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes title1-cycle {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
body {
  font-size: 18px;
  font-family: "Ubuntu", sans-serif;
  color: #00242E;
  font-weight: 400;
  line-height: 1.4;
}

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

.front h1 {
  font-weight: 700;
  font-size: 2.375rem;
}
@media (max-width: 767px) {
  .front h1 {
    font-size: 2.25rem;
  }
}

h1 {
  font-weight: 700;
  font-size: 2.375rem;
}
@media (max-width: 767px) {
  h1 {
    font-size: 2.25rem;
  }
}

.front h2 {
  font-weight: 700;
  font-size: 3rem;
}
@media (max-width: 767px) {
  .front h2 {
    font-size: 1.75rem;
  }
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
}

h3 {
  font-weight: 700;
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  h3 {
    font-size: 1.25rem;
  }
}

h4 {
  font-weight: 700;
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  h4 {
    font-size: 1.3rem;
  }
}

h5 {
  font-weight: 700;
  font-size: 1.25rem;
}
@media (max-width: 767px) {
  h5 {
    font-size: 1.2rem;
  }
}

h6 {
  font-weight: 700;
  font-size: 1.25rem;
}
@media (max-width: 767px) {
  h6 {
    font-size: 1rem;
  }
}

.display-6 {
  font-weight: 700;
}
@media (min-width: 767px) {
  .display-6 {
    font-size: 2rem;
  }
}

.color-p {
  color: #2C4797;
}

.color-s {
  color: #37BBDB;
}

.color-t {
  color: #FFCD02;
}

.hero_title {
  font-weight: 700;
  font-size: 5, 625rem;
}

.p-size2 {
  font-size: 1.25rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .p-size2 {
    font-size: 1.1rem;
  }
}

.btn-primary {
  padding: 10px 30px;
  margin-top: 30px;
  background-color: #2C4797;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  border-radius: 7px;
  border: 0;
  display: inline-block;
  position: relative;
  transition: 0.15s all ease-out;
}
.btn-primary:after {
  content: url("/https/faircore4eosc.eu/themes/faircore/images/mini_arrow-white.svg");
  position: relative;
  transition: 0.15s all ease-out;
  left: 0;
}
.btn-primary:hover {
  background-color: #37BBDB;
  box-shadow: 0px 7px 16px rgba(0, 0, 0, 0.17);
}
.btn-primary:hover:after {
  left: 5px;
}
.btn-primary a {
  color: #fff;
}

.btn-secondary {
  padding: 10px 30px;
  background-color: #37BBDB;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  border-radius: 999px;
  border: 0;
  display: inline-block;
  transition: 0.15s all ease-out;
}
.btn-secondary:hover {
  background-color: #37BBDB;
  box-shadow: 0px 7px 16px rgba(0, 0, 0, 0.17);
}

a {
  text-decoration: none;
  color: #2C4797;
}

figcaption {
  font-weight: lighter;
  text-align: center;
  font-style: italic;
}

.subtext {
  font-size: 14px;
  font-weight: 500;
}

span.required {
  color: #EB5757;
}

.form-required::after {
  content: "*";
  color: #EB5757;
  font-size: 90%;
}

.checkbox-wrap {
  border: 2px solid #e6e8ec;
  border-radius: 4px;
  display: inline-block;
  width: 24px;
  height: 24px;
  position: relative;
  margin-right: 8px;
  overflow: hidden;
}
.checkbox-wrap input[type=checkbox] {
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(0.9);
  position: relative;
}
.checkbox-wrap input[type=checkbox]:before {
  content: "";
  background-color: #fff;
  transform: scale(1.3) rotate(-15deg);
  transition: 0.2s all cubic-bezier(0.39, -2.425, 0.565, 1);
}
.checkbox-wrap input[type=checkbox]:checked {
  opacity: 1;
}
.checkbox-wrap input[type=checkbox]:checked:before {
  content: url("/https/faircore4eosc.eu/themes/faircore/images/checkbox.svg");
  position: absolute;
  top: -3px;
  left: -3px;
  box-sizing: content-box;
  width: 24px;
  height: 24px;
  opacity: 1;
  border: 2px solid #e6e8ec;
  border-radius: 4px;
  transform: scale(1) rotate(0deg);
}

@-moz-document url-prefix() {
  .checkbox-wrap {
    border: none;
    width: auto;
    height: auto;
    overflow: visible;
  }
  .checkbox-wrap input[type=checkbox] {
    width: 100%;
    height: 100%;
    opacity: 1;
    transform: scale(1);
  }
  .checkbox-wrap input[type=checkbox]:before {
    content: none;
  }
  .checkbox-wrap input[type=checkbox]:checked::before {
    content: none;
  }
}
article ul li {
  list-style-image: url("../images/graphic/ul_bullet.png");
  margin-bottom: 7px;
}

.navigation-block {
  display: flex;
  justify-content: space-evenly;
}
@media (max-width: 767px) {
  .navigation-block {
    margin-bottom: 30px;
  }
}
.navigation-block .slide-block {
  display: flex;
  justify-content: space-between;
  width: 125px;
}
@media (max-width: 767px) {
  .navigation-block .slide-block {
    width: 175px;
  }
}

.swiper-button-prev,
.swiper-button-prev-news {
  position: relative;
}
.swiper-button-prev::after,
.swiper-button-prev-news::after {
  content: "\f137";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #00242E;
  font-size: 24px;
}

.swiper-button-next::after,
.swiper-button-next-news::after {
  content: "\f138";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #00242E;
  font-size: 24px;
}

.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-pagination {
  margin-top: 20px;
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.swiper-pagination .swiper-pagination-bullet {
  border-radius: 0;
  width: 20px;
  height: 5px;
}

.edge {
  overflow-x: hidden;
}

@media (max-width: 767px) {
  .mobile-switch {
    flex-direction: column-reverse;
  }
}

#block-faircore-local-tasks ul {
  display: flex;
  margin-top: 20px;
  margin-bottom: 30px;
}

input,
textarea {
  border-radius: 4px;
  padding: 8px;
  border: 1px solid #ddd;
}

input[type=submit] {
  padding: 10px 30px;
  background-color: #2C4797;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  border-radius: 999px;
  border: 0;
  display: inline-block;
  transition: 0.15s all ease-out;
}
input[type=submit]:hover {
  background-color: #37BBDB;
  box-shadow: 0px 7px 16px rgba(0, 0, 0, 0.17);
}

.addtoany_list {
  margin-top: 10px;
  display: inline-block;
}

.block-system-breadcrumb-block ol {
  display: flex;
  gap: 8px;
}
.block-system-breadcrumb-block ol li:after {
  content: "/";
}
header ul,
header ol,
header li,
footer ul,
footer ol,
footer li,
nav ul,
nav ol,
nav li,
.block-local-tasks-block ul,
.block-local-tasks-block ol,
.block-local-tasks-block li {
  list-style: none;
  padding: 0;
}

.mailchimp-section {
  background: #2c4797;
  border-radius: 42px;
  padding: 56px 64px;
  color: #fff;
}
.mailchimp-section p {
  line-height: 1.5;
}
@media (max-width: 767px) {
  .mailchimp-section {
    padding: 32px 24px;
  }
}
.mailchimp-section ::placeholder {
  color: #b3b3b3;
}
.mailchimp-section #mc_embed_signup div#mce-responses {
  padding: 0;
  margin: 0;
  width: 100%;
}
.mailchimp-section #mc_embed_signup div.response {
  width: 100%;
  border: 1px solid #ffcd02;
  padding: 20px;
  border-radius: 20px;
}
.mailchimp-section #mc_embed_signup {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: auto;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .mailchimp-section #mc_embed_signup {
    width: 100%;
    margin-bottom: 0;
  }
}
.mailchimp-section #mc_embed_signup form {
  padding: 0;
  margin-top: 15px;
}
.mailchimp-section #mc_embed_signup a {
  color: #FFCD02;
}
.mailchimp-section #mc_embed_signup #mergeRow-gdpr {
  margin-bottom: 20px;
  font-size: 14px;
}
.mailchimp-section #mc_embed_signup #mergeRow-gdpr fieldset label {
  font-weight: normal;
}
.mailchimp-section #mc_embed_signup .mc-field-group {
  width: 100%;
}
.mailchimp-section #mc_embed_signup .mc_fieldset {
  border: none;
  min-height: 0px;
  padding-bottom: 0px;
}
.mailchimp-section #mc_embed_signup input[type=text],
.mailchimp-section #mc_embed_signup input[type=email],
.mailchimp-section #mc_embed_signup select {
  border-radius: 999px;
  padding: 13px 20px !important;
}
.mailchimp-section #mc_embed_signup select {
  width: 100% !important;
}
.mailchimp-section #mc_embed_signup select.placeholder {
  color: #b3b3b3;
}
.mailchimp-section #mc_embed_signup input[type=submit] {
  padding: 10px 30px;
  background-color: #FFCD02;
  color: rgb(0, 0, 0);
  font-size: 20px;
  font-weight: 500;
  border-radius: 999px;
  border: 0;
  display: block;
  width: 100%;
  transition: 0.15s all ease-out;
}
.mailchimp-section #mc_embed_signup input[type=submit]:hover {
  background-color: #FFCD02;
  box-shadow: 0px 7px 16px rgba(0, 0, 0, 0.17);
}
.mailchimp-section #mc_embed_signup .input-group {
  flex-wrap: nowrap;
  align-items: baseline;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.mailchimp-section #mc_embed_signup input[type=checkbox],
.mailchimp-section #mc_embed_signup input[type=radio] {
  display: inline;
  width: auto;
  margin-right: 10px;
  transform: scale(1.2);
  filter: hue-rotate(-165deg) brightness(1.7);
}
.mailchimp-section #mc_embed_signup label {
  margin-bottom: 5px;
  font-weight: 600;
  display: none !important;
}
.mailchimp-section #mc_embed_signup label [for=gdpr_25081] {
  display: block !important;
}
.mailchimp-section #mc_embed_signup .radio-check {
  flex-basis: 100%;
}
.mailchimp-section #mc_embed_signup div.mce_inline_error {
  background-color: transparent !important;
}
.mailchimp-section #mc_embed_signup .foot {
  display: block !important;
}
.mailchimp-section #mc_embed_signup .foot input {
  border: none !important;
  margin: auto;
  border-radius: 999px;
}
.mailchimp-section #mc_embed_signup .foot #mce-success-response {
  color: #fff;
  margin: 0;
  padding: 20px;
  float: none;
  top: unset;
  margin-bottom: 20px;
}

select:required:invalid {
  color: gray;
}

option[value=""][disabled] {
  display: none;
}

option {
  color: black;
}

::-webkit-input-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
:-moz-placeholder,
.placeholder {
  color: #b3b3b3;
}

.block-local-tasks-block .nav-link {
  background: #2C4797;
  color: white;
  border-radius: 20px;
  margin-right: 15px;
  font-weight: 600;
}
.block-local-tasks-block .nav-link:hover {
  background: #37BBDB;
}

#menu-activator {
  cursor: pointer;
}

.block-system-main-block {
  margin-bottom: 50px;
}

blockquote {
  padding: 1rem;
  background-color: rgba(55, 187, 219, 0.5);
  border-radius: 20px;
}
blockquote p {
  margin-bottom: 0;
}

table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  vertical-align: top;
  border: none !important;
  padding: 5px;
}
table thead {
  background-color: #2C4797;
  color: white;
}
table tbody tr {
  border-bottom: 1px solid #ddd;
  transition: 0.3s all ease-in-out;
}
table tbody tr:hover {
  background-color: #ddd;
}
table th,
table td {
  padding: 5px 10px;
}

.form-item-faircore4eosc-newsletter,
.form-item-privacy-policy {
  flex-direction: row !important;
}
.form-item-faircore4eosc-newsletter input,
.form-item-privacy-policy input {
  margin-right: 5px;
}

#webform-submission-webinar-registration-form-develo-add-form {
  display: flex;
  flex-flow: wrap row;
  gap: 15px;
}
#webform-submission-webinar-registration-form-develo-add-form .form-item:not(.js-form-type-checkbox, .js-form-type-radio, .js-form-submit) {
  float: left;
  width: 48%;
  padding: 1%;
}
@media screen and (max-width: 600px) {
  #webform-submission-webinar-registration-form-develo-add-form .form-item {
    width: 100%;
  }
}

.bef-exposed-form {
  all: unset;
}
.bef-exposed-form .bef-links ul {
  padding: 0;
}
.bef-exposed-form .bef-links ul li {
  list-style: none;
  display: inline-block;
  margin: 0 5px;
}
.bef-exposed-form .bef-links ul li .bef-link {
  padding: 5px 15px !important;
  background-color: #2C4797;
  border: 2px solid #2C4797;
  border-radius: 50px;
  color: #ffffff !important;
  display: inline-block;
  justify-content: end;
  transition: 0.1s;
  margin-top: 10px;
}
.bef-exposed-form .bef-links ul li .bef-link:hover {
  background-color: #ffffff !important;
  color: #2C4797 !important;
  border: 2px solid #2C4797;
}
.bef-exposed-form .bef-links ul li .bef-link.bef-link--selected {
  background-color: #57606A !important;
  color: #fff !important;
  border: 2px solid rgba(0, 0, 0, 0);
  text-decoration: none;
}
.bef-exposed-form .bef-exposed-form .form-radios .js-form-item {
  margin: 15px 15px;
  float: none;
  display: inline-block;
}
.bef-exposed-form #edit-field-type-of-content-target-id,
.bef-exposed-form #edit-field-zenodo-type-content-target-id {
  background-image: none;
  border: none;
  display: flex;
  justify-content: start;
  padding: 0;
  margin-bottom: 30px;
}

.bg-eosc-pr {
  background-color: #e8f7fe !important;
}

.gallery-swiper-controller {
  position: relative;
}
.gallery-swiper-controller .gallery-controller {
  width: calc(100% - 64px);
}
.gallery-swiper-controller .gallery-controller .swiper-slide .gallery-preview {
  display: block;
  aspect-ratio: 16/9;
  width: 100%;
  filter: brightness(50%);
  transition: filter ease-in-out 0.3s;
  overflow: hidden;
}
.gallery-swiper-controller .gallery-controller .swiper-slide .gallery-preview img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
  border: 1px solid #ddd;
}
.gallery-swiper-controller .gallery-controller .swiper-slide.is-active .gallery-preview {
  filter: brightness(100%);
}
.gallery-swiper-controller .gallery-control-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
.gallery-swiper-controller .gallery-control-nav .swiper-button-prev,
.gallery-swiper-controller .gallery-control-nav .swiper-button-next {
  height: fit-content;
  top: 50%;
  transform: translateY(50%);
}
.gallery-swiper-controller .gallery-control-nav .swiper-button-prev {
  left: 0;
}
.gallery-swiper-controller .gallery-control-nav .swiper-button-next {
  right: 0;
}

.gallery-element {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-element img {
  border-radius: 4px;
  overflow: hidden;
}

header.page_header {
  margin-bottom: 100px;
  margin-top: 20px;
  position: relative;
  z-index: 99;
}
header.page_header.headerInternal {
  border-bottom: 1px #DBE3EB solid;
  padding-bottom: 15px;
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  header.page_header .menu_wrap {
    display: none;
  }
}
header.page_header .menu_wrap .navigation__menu {
  display: flex;
  justify-content: end;
  align-items: center;
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 0;
}
@media (max-width: 1080px) {
  header.page_header .menu_wrap .navigation__menu {
    gap: 0;
  }
}
header.page_header .menu_wrap .navigation__menu .navigation__item {
  font-weight: 700;
}
header.page_header .menu_wrap .navigation__menu .navigation__item a, header.page_header .menu_wrap .navigation__menu .navigation__item span {
  color: #000;
  font-weight: 700;
  display: block;
  padding: 10px;
}
@media (max-width: 767px) {
  header.page_header .secondary_menu_wrap {
    display: none;
  }
}
header.page_header .secondary_menu_wrap .navigation__menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
header.page_header .secondary_menu_wrap .navigation__menu .navigation__item a {
  color: #000;
}
header.page_header .secondary_menu_wrap .navigation__menu .navigation__item a:hover {
  color: #000;
}
header.page_header .secondary_menu_wrap .navigation__menu .navigation__item.navigation__item--last {
  padding: 15px;
  border: 1px solid #37BBDB;
  background-color: #37BBDB;
  border-radius: 999px;
}
header.page_header .secondary_menu_wrap .navigation__menu .navigation__item.navigation__item--last a {
  color: #fff;
  font-weight: 600;
  position: relative;
}
header.page_header .secondary_menu_wrap .navigation__menu .navigation__item.navigation__item--last a:after {
  content: url("/https/faircore4eosc.eu/themes/faircore/images/mini_arrow-white.svg");
  margin-left: 5px;
}
header.page_header .secondary_menu_wrap .navigation__menu .navigation__item [data-drupal-link-system-path="user/login"] {
  position: relative;
}
header.page_header .secondary_menu_wrap .navigation__menu .navigation__item [data-drupal-link-system-path="user/login"]::before {
  position: absolute;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
}
header.page_header .navigation__item--level-1 {
  position: relative;
  padding: 15px 0;
  display: flex;
  align-items: center;
}
header.page_header .navigation__item--level-1.navigation__item--has-children:after {
  content: "\f0d7";
  font-family: "Font Awesome 6 Free";
  margin-right: 10px;
}
header.page_header .navigation__item--level-1 > .navigation--level-2 {
  z-index: 2;
  top: 120%;
  opacity: 0;
  left: -30px;
  margin: 0px;
  min-width: 220px;
  visibility: hidden;
  position: absolute;
  border-radius: 5px;
  border-top-left-radius: 0px;
  transition: all 0.3s ease-in-out;
  text-transform: none;
}
header.page_header .navigation__item--level-1 > .navigation--level-2 li {
  position: relative;
  background-color: #fff;
  border: 1px solid #37BBDB;
  border-radius: 10px;
  margin-bottom: 3px;
}
header.page_header .navigation__item--level-1 > .navigation--level-2 li > .navigation--level-3 {
  z-index: 2;
  top: 0;
  opacity: 0;
  left: 100%;
  margin: 0px;
  min-width: 220px;
  visibility: hidden;
  position: absolute;
  border-radius: 5px;
  border-top-left-radius: 0px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
header.page_header .navigation__item--level-1 > .navigation--level-2 li:hover {
  background-color: #37BBDB;
  transition: 0.3s all ease-in-out;
}
header.page_header .navigation__item--level-1 > .navigation--level-2 li:hover > a {
  color: white !important;
  transition: 0.3s all ease-in-out;
}
header.page_header .navigation__item--level-1 > .navigation--level-2 li:hover .navigation--level-3 {
  opacity: 1;
  visibility: visible;
}
header.page_header .navigation__item--level-1 > .navigation--level-2 li:hover .navigation--level-3 li:hover {
  background-color: #2C4797;
  transition: 0.3s all ease-in-out;
}
header.page_header .navigation__item--level-1 > .navigation--level-2 li:hover .navigation--level-3 li:hover > a {
  color: white !important;
  transition: 0.3s all ease-in-out;
}
header.page_header .navigation__item--level-1:hover .navigation__sub-menu.navigation--level-2 {
  top: 100%;
  opacity: 1;
  visibility: visible;
  z-index: 1000;
  border-radius: 10px;
  overflow: hidden;
}

.mobile-menu {
  position: fixed;
  top: 0;
  z-index: 9999;
  width: 100vw;
  box-shadow: 0px -5px 34px -5px black;
  height: 100vh;
  max-height: 0px;
  transition: 0.5s all ease-in-out;
  overflow: hidden;
  background-color: #2C4797;
  text-align: center;
}
.mobile-menu i {
  color: #fff;
  font-size: 1.2rem;
  padding: 20px;
  transition: 0.5s all ease-in-out;
  transform: rotate(0deg);
}
.mobile-menu.active {
  max-height: 1000px;
}
.mobile-menu.active i {
  transform: rotate(360deg);
}
.mobile-menu .navigation--level-1 {
  font-weight: 600;
}
.mobile-menu .navigation--level-1 li a {
  color: #fff !important;
}
.mobile-menu .navigation--level-1 .navigation--level-2 {
  position: initial !important;
  visibility: visible !important;
  opacity: 1 !important;
  box-shadow: none;
}
.mobile-menu .navigation--level-1 .navigation--level-2 li {
  font-weight: normal;
}

.menu_btn_wrap {
  padding: 0 20px;
  z-index: 9999;
  font-size: 2rem;
}

@media (max-width: 767px) {
  .desktop-menu {
    display: none;
  }
}
@media (min-width: 767px) {
  .mobile-menu {
    display: none;
  }
  .menu_btn_wrap {
    display: none;
  }
}
#stickyMenu {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  position: absolute;
  transition: 0.2s all ease-in-out;
  border-bottom: 0px #DBE3EB solid;
  position: fixed;
  top: 0;
  background-color: #fff;
  margin: 0;
}
#stickyMenu.active {
  max-height: 100px;
  padding-bottom: 15px;
  border-bottom: 1px #DBE3EB solid;
  overflow: visible;
  padding-left: 30px;
  padding-right: 30px;
}
#stickyMenu .secondary_menu_wrap .navigation__menu {
  margin-bottom: 0;
}
#stickyMenu .secondary_menu_wrap .navigation__menu .navigation__item--last {
  padding: 15px;
  background-color: #37BBDB;
  border: 1px solid #37BBDB;
  border-radius: 999px;
}
#stickyMenu .secondary_menu_wrap .navigation__menu .navigation__item--last a {
  color: #fff;
}
#stickyMenu .secondary_menu_wrap .navigation__menu .navigation__item--last a:after {
  content: url("/https/faircore4eosc.eu/themes/faircore/images/mini_arrow-white.svg");
}

footer.footer {
  background-color: #2C4797;
  padding: 70px 0;
  color: #fff !important;
  padding-bottom: 50px;
}
footer.footer .footer_social {
  display: flex;
  gap: 100px;
  justify-content: center;
  align-items: center;
  margin-bottom: 84px;
}
@media (max-width: 767px) {
  footer.footer .footer_social {
    margin-bottom: 30px;
    gap: unset;
    justify-content: space-around;
  }
}
footer.footer .footer_social a.social_link {
  color: #fff;
  text-decoration: none;
}
footer.footer .footer_social a.social_link:hover {
  color: #fff;
}
footer.footer .footer_social i {
  font-size: 3rem;
}
footer.footer .footer_social img {
  max-width: 49px;
}
footer.footer #block-footer .navigation__menu, footer.footer #block-mainnavigation .navigation__menu {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  footer.footer #block-footer .navigation__menu, footer.footer #block-mainnavigation .navigation__menu {
    flex-direction: column;
    gap: 20px;
  }
}
footer.footer #block-footer .navigation__menu .navigation__item, footer.footer #block-mainnavigation .navigation__menu .navigation__item {
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  footer.footer #block-footer .navigation__menu .navigation__item, footer.footer #block-mainnavigation .navigation__menu .navigation__item {
    margin-bottom: 0px;
  }
}
footer.footer #block-footer .navigation__menu .navigation__item .navigation--level-2, footer.footer #block-mainnavigation .navigation__menu .navigation__item .navigation--level-2 {
  margin-top: 15px;
}
footer.footer #block-footer .navigation__menu .navigation__item .navigation--level-2 a, footer.footer #block-mainnavigation .navigation__menu .navigation__item .navigation--level-2 a {
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 5px;
}
footer.footer #block-footer a, footer.footer #block-mainnavigation a {
  color: #fff;
  font-weight: 500;
}
footer.footer .footer_copyright {
  margin-top: 60px;
  padding-top: 24px;
  border-top: #fff 1px solid;
}
@media (max-width: 767px) {
  footer.footer .footer_copyright .eu-policy {
    gap: 20px;
  }
}
footer.footer .footer_copyright .eu_flag {
  max-height: 55px;
}
footer.footer .footer_copyright a {
  color: #fff;
  text-decoration: underline;
}
footer.footer .footer_copyright .dot {
  margin: 0 12px;
  display: inline-block;
}

.page.front {
  overflow: hidden;
  width: 100%;
}

.region-hero {
  margin-bottom: 250px;
}
@media (max-width: 767px) {
  .region-hero {
    margin-bottom: 130px;
  }
}

.section_one_wrap {
  border: 1px solid #37BBDB;
  border-radius: 42px;
  padding: 42px 56px 42px;
  margin-bottom: 224px;
  background: #fff;
}
@media (max-width: 767px) {
  .section_one_wrap {
    padding: 42px 30px 42px;
    margin-bottom: 42px;
  }
}

.section_two {
  position: relative;
}
.section_two .char4 {
  position: absolute;
  bottom: 0;
}
@media (max-width: 767px) {
  .section_two .char4 {
    position: unset;
  }
}
.section_two .flare {
  position: absolute;
  filter: blur(320px);
  left: 0;
  top: -50%;
  opacity: 0.6;
  z-index: -10;
}

.section_three {
  padding: 135px 0 200px 0;
}
@media (max-width: 767px) {
  .section_three {
    padding: 65px 0 65px 0;
  }
}
.section_three.dark {
  background-color: #1C313A;
  color: white;
}
@media (max-width: 767px) {
  .section_three {
    width: 100%;
  }
  .section_three .infographic-wrapper {
    overflow-y: hidden;
    padding: 0;
    position: relative;
    height: 230px;
  }
  .section_three .infographic-wrapper .inforgraphic {
    margin-top: 80px;
    position: absolute;
    top: 9%;
    left: 50%;
    transform: translate(-38%, -50%);
    max-width: 128%;
  }
}
.section_three .inforgraphic {
  margin-top: 80px;
}

.section_four {
  padding: 160px 0 54px 0;
  position: relative;
}
@media (max-width: 767px) {
  .section_four {
    padding: 65px 0 65px 0;
  }
}
.section_four .flare {
  position: absolute;
  z-index: -10;
  opacity: 0.5;
  filter: blur(360px);
}
.section_four .flare.flare1 {
  transform: scale(0.9);
  top: 50px;
  right: -480px;
}
.section_four .flare.flare2 {
  transform: scale(0.8);
  bottom: -950px;
  left: -370px;
}
.section_four .section_four_sides {
  margin-top: 50px;
  margin-bottom: 178px;
}
@media (max-width: 767px) {
  .section_four .section_four_sides {
    margin: 50px 0 30px;
  }
}
@media (max-width: 767px) {
  .section_four .section_four_sides #block-twitterblock {
    margin-bottom: 30px;
  }
}

select {
  border-right: 16px solid transparent;
}

.hero_section {
  position: relative;
  padding-bottom: 124px;
}
.hero_section .artworks {
  position: relative;
}
@media (max-width: 767px) {
  .hero_section .artworks {
    display: none;
  }
}
.hero_section .artworks .img-box {
  border: 1px solid #37BBDB;
  border-radius: 42px;
  width: 500px;
  aspect-ratio: 1/1;
  display: flex;
  background: white;
}
.hero_section .artworks .img-box img {
  padding: 64px;
  padding-bottom: 0;
  margin: auto 0 0 0;
}
.hero_section .artworks .decor1 {
  position: relative;
}
.hero_section .artworks .decor1 img {
  z-index: 1;
}
.hero_section .artworks .decor2 {
  position: relative;
  left: -265px;
  margin-top: -150px;
}
.hero_section .artworks .decor2 img {
  margin: auto;
}
.hero_section .artworks .decor3 {
  position: relative;
  margin: 0 0 0 auto;
  margin-top: -150px;
}
.hero_section .cloudSvg {
  position: absolute;
  bottom: -150px;
  width: 100%;
  z-index: -1;
}
@media (max-width: 767px) {
  .hero_section .cloudSvg {
    bottom: 0;
  }
}
.hero_section .flare {
  position: absolute;
  z-index: -2;
  top: -500px;
  left: -50px;
  opacity: 0.6;
  filter: blur(200px);
}

#block-views-block-eosccore-components-block-2 {
  border-radius: 42px;
  padding: 42px;
}
#block-views-block-eosccore-components-block-2 .component {
  border-bottom: 1px solid #2C4797;
  padding-top: 10px;
  align-items: center;
}
#block-views-block-eosccore-components-block-2 .description {
  border-left: 1px #2C4797 solid;
  padding-left: 20px;
}

.component {
  padding-bottom: 15px;
  margin-bottom: 28px;
  position: relative;
}
.component .img-box {
  width: 64px;
  margin: auto;
  margin-bottom: 10px;
}
.component .acronym {
  font-weight: bold;
  color: #37BBDB;
}

.component-factsheet {
  background-color: #E4F6FB;
  padding: 8px;
  border-radius: 10px;
  border: 1px solid #2C4797;
  width: fit-content;
}
.component-factsheet .img-box {
  margin-bottom: 8px;
}
.component-factsheet .img-box img {
  min-width: 240px;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.block-case-study-front {
  margin-bottom: 200px;
}
@media (max-width: 767px) {
  .block-case-study-front {
    margin-bottom: 30px;
  }
}

.case-study-link {
  position: relative;
}
.case-study-link:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 1px);
  height: calc(100% - 1px);
  border: 1px solid #37BBDB;
  border-radius: 24px;
  z-index: -2;
  background-color: #fff;
}
.case-study-link .case-study {
  position: relative;
  color: white;
  padding: 24px;
  min-height: 280px;
  display: flex;
  border-radius: 24px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(44, 71, 151, 0.75);
  margin-bottom: 37px;
  transition: 0.2s ease-in-out all;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .case-study-link .case-study {
    margin-bottom: 12px;
  }
}
.case-study-link .case-study .img-box {
  position: absolute;
  z-index: -1;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
  background: rgba(44, 71, 151, 0.75);
}
.case-study-link .case-study .img-box img {
  object-fit: cover;
  height: 100%;
}
.case-study-link .case-study i {
  text-align: end;
}
.case-study-link:hover .case-study {
  color: #FFCD02;
  top: -20px;
  left: -10px;
}

#block-views-block-news-block-1 h2 {
  margin-bottom: 50px;
}
#block-views-block-news-block-1 .news-slide-wrap .news-link {
  position: relative;
}
#block-views-block-news-block-1 .news-slide-wrap .news-link:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 1px);
  height: calc(100% - 1px);
  border: 1px solid #37BBDB;
  border-radius: 24px;
  z-index: -2;
  background-color: white;
}
#block-views-block-news-block-1 .news-slide-wrap .news-link .news-slide {
  position: relative;
  color: white;
  padding: 151px 24px 24px 24px;
  min-height: 415px;
  display: flex;
  border-radius: 24px;
  overflow: hidden;
  flex-direction: column;
  justify-content: start;
  gap: 15px;
  background: rgba(44, 71, 151, 0.75);
  margin-bottom: 37px;
  transition: 0.2s ease-in-out all;
  top: 0;
  left: 0;
}
#block-views-block-news-block-1 .news-slide-wrap .news-link .news-slide .img-box {
  position: absolute;
  z-index: -1;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
  background: rgba(44, 71, 151, 0.75);
}
#block-views-block-news-block-1 .news-slide-wrap .news-link .news-slide .img-box img {
  object-fit: cover;
  height: 100%;
}
#block-views-block-news-block-1 .news-slide-wrap .news-link .news-slide .badge {
  display: inline-block;
  width: fit-content;
  padding: 4px 11px;
  text-transform: uppercase;
  font-size: 18px;
  border-radius: 10px;
}
#block-views-block-news-block-1 .news-slide-wrap .news-link .news-slide .badge.Event {
  background-color: #FFCD02;
}
#block-views-block-news-block-1 .news-slide-wrap .news-link .news-slide .badge.News {
  background-color: #37BBDB;
}
#block-views-block-news-block-1 .news-slide-wrap .news-link:hover .news-slide {
  color: #FFCD02;
  top: -20px;
}

#block-views-block-partners-block-1 {
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  #block-views-block-partners-block-1 {
    margin-bottom: 50px;
  }
}
#block-views-block-partners-block-1 h2 {
  text-align: center;
  margin-bottom: 70px;
}
#block-views-block-partners-block-1 .swiper-wrapper {
  align-items: center;
}
#block-views-block-partners-block-1 .swiper-container-partners {
  overflow: hidden;
  padding: 30px 0;
}
#block-views-block-partners-block-1 .swiper-container-partners .partner-logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#block-views-block-partners-block-1 .swiper-container-partners .partner-logo .badge {
  background-color: #2C4797;
  margin-top: 15px;
}
#block-views-block-partners-block-1 .swiper-container-partners .partner-logo img {
  max-height: 110px;
  object-fit: contain;
  filter: saturate(0);
  transition: 0.2s ease;
}
#block-views-block-partners-block-1 .swiper-container-partners .partner-logo img:hover {
  filter: saturate(1);
  transition: 0.2s ease;
}

.bigArrow {
  width: 50%;
  margin: auto;
}
@media (max-width: 767px) {
  .bigArrow {
    display: none;
  }
}

/* -----------------------END HOME PAGE---------------------*/
#user-login-form {
  margin-bottom: 64px;
}
#user-login-form .form-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
#user-login-form .form-item label {
  font-weight: 500;
}
#user-login-form .form-item input {
  max-width: 300px;
  border-radius: 4px;
  padding: 8px;
  border: 1px solid #ddd;
  margin: 10px 0px;
}

.node__content {
  margin-bottom: 50px;
}
.node__content .content-body ul {
  flex-direction: column;
  gap: 15px !important;
  margin: 0 !important;
}
.node__content #accordioComponents .accordion-body ul {
  flex-direction: column;
  margin: 0;
  gap: 15px;
}
.node__content #accordioComponents .accordion-body ul li ul {
  margin-top: 20px;
}

/* -----------------------END LOGIN---------------------*/
.news-page-view .link-news-wrap {
  position: relative;
}
.news-page-view .link-news-wrap:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 1px);
  height: calc(100% - 1px);
  border: 1px solid #37BBDB;
  border-radius: 24px;
  z-index: -2;
  background-color: white;
}
.news-page-view .news-row {
  margin-top: 20px;
  position: relative;
  color: white;
  height: 100%;
  padding: 24px;
  min-height: 415px;
  border-radius: 24px;
  overflow: hidden;
  background: rgb(44, 71, 151);
  transition: 0.2s ease-in-out all;
  top: 0;
  left: 0;
}
.news-page-view .news-row .desc-box {
  display: flex;
  height: 100%;
  flex-direction: column;
}
.news-page-view .news-row .desc-box hr {
  margin-top: auto;
}
.news-page-view .news-row:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 1px);
  height: calc(100% - 1px);
  border: 1px solid #37BBDB;
  border-radius: 24px;
  z-index: -2;
  background-color: white;
}
.news-page-view .news-row:hover {
  top: -20px;
}
.news-page-view .news-row:hover:after {
  top: 0;
}
.news-page-view .news-row img {
  position: absolute;
  object-fit: cover;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  z-index: -1;
}
.news-page-view .news-row h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: #FFCD02;
}
.news-page-view .news-row .date {
  color: #FFCD02;
  font-size: 1rem;
}
.news-page-view .badge {
  display: inline-block;
  width: fit-content;
  padding: 4px 11px;
  text-transform: uppercase;
  font-size: 18px;
  border-radius: 10px;
}
.news-page-view .badge.Event {
  background-color: #FFCD02;
}
.news-page-view .badge.News {
  background-color: #37BBDB;
}

.partner-page-view {
  margin-top: 50px;
}
.partner-page-view .views-row {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}
.partner-page-view .views-row .read-more-partner {
  border-radius: 999px;
  background: #2C4797;
  color: white;
  font-weight: 500;
  padding: 2px 10px;
  position: relative;
  top: -11px;
}
.partner-page-view .views-row .box-white {
  text-align: center;
}
.partner-page-view .views-row .box-white .coordinator {
  border-radius: 999px;
  background: #2C4797;
  position: relative;
  top: 11px;
}
.partner-page-view .views-row .partner-logo {
  padding: 10px 30px;
}
.partner-page-view .views-row .partner-logo.coordinator_partner {
  border: 3px solid #2C4797;
  border-radius: 20px;
}
.partner-page-view .views-row .partner-logo img {
  max-height: 100px;
  object-fit: contain;
  padding-bottom: 20px;
}

.events-view-page .event-row {
  padding: 20px 0;
  margin-bottom: 20px;
}
.events-view-page .event-row .img-box {
  border-radius: 10px;
  overflow: hidden;
}
.events-view-page .event-row .img-box img {
  max-height: 275px;
  object-fit: cover;
}
.events-view-page .event-row .description-box .tag {
  background-color: #37BBDB;
  color: white;
  border-radius: 999px;
  padding: 3px 5px;
  font-weight: 600;
  font-size: 0.8rem;
  display: inline-block;
  margin-bottom: 5px;
}
.events-view-page .event-row .description-box h2 {
  margin-bottom: 10px;
}
.events-view-page .event-row .description-box .details {
  font-style: italic;
  margin-bottom: 10px;
}

.node-event .description-box .tag {
  background-color: #37BBDB;
  color: white;
  border-radius: 999px;
  padding: 3px 5px;
  font-weight: 600;
  font-size: 0.8rem;
  display: inline-block;
  margin-bottom: 5px;
}
.node-event .description-box .details {
  font-style: italic;
  margin-bottom: 30px;
}
.node-event .description-box .details .dates {
  margin-bottom: 5px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.node-event .description-box .details .location {
  margin-bottom: 5px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.webform-submission-form,
.contact-form {
  margin: 15px auto;
}
@media (max-width: 767px) {
  .webform-submission-form,
  .contact-form {
    width: 100%;
  }
}
.webform-submission-form .form-item,
.contact-form .form-item {
  display: flex;
  flex-direction: column;
}
.webform-submission-form .form-item label,
.contact-form .form-item label {
  margin-bottom: 5px;
  font-weight: 600;
}
.webform-submission-form #edit-actions,
.contact-form #edit-actions {
  margin-top: 10px;
}

.user-register-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}
.user-register-form .form-item {
  display: flex;
  flex-direction: column;
}
.user-register-form .form-item label {
  margin-bottom: 5px;
  font-weight: 600;
}
.user-register-form #edit-actions {
  margin-top: 10px;
}
.user-register-form #trust_ppgm_container .form-item {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-top: 5px;
  margin-bottom: 20px;
}
.user-register-form #trust_ppgm_container .trust_ppgm_technical_cookies {
  display: flex;
  gap: 20px;
  align-items: center;
}
.user-register-form #trust_ppgm_container #edit-trust-ppgm-section > summary {
  display: block;
}

.js-form-type-checkbox {
  flex-direction: row !important;
  align-items: center;
  gap: 10px;
  margin-top: 5px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.js-form-type-checkbox .description {
  flex-basis: 100%;
}

.deliverables-view .bef-links {
  padding: 0;
  background-image: none;
  border: none;
  margin-bottom: 50px;
}
.deliverables-view .bef-links ul {
  list-style: none;
  display: flex;
  flex-flow: wrap row;
  gap: 15px;
}
.deliverables-view .bef-links ul li {
  background: #2C4797;
  padding: 4px 7px;
  border-radius: 4px;
}
.deliverables-view .bef-links ul li a {
  color: white;
  transition: all 0.3s ease-in-out;
}
.deliverables-view .bef-links ul li a:hover {
  color: #FFCD02;
}
.deliverables-view .deliverable {
  border-left: 5px solid #2C4797;
  padding-left: 15px;
  margin-bottom: 20px;
}

#block-faircore-content ul {
  display: flex;
  gap: 25px;
  width: fit-content;
  margin: auto;
}
#block-faircore-content ul .is-active {
  background-color: #2c4797;
  padding: 0 15px;
  border-radius: 15px;
}
#block-faircore-content ul .is-active a {
  color: #fff;
}
#block-faircore-content .body ul {
  display: block;
  margin: inherit;
}
#block-faircore-content .body ul li {
  list-style-image: url("../images/graphic/ul_bullet.png");
  margin-bottom: 7px;
}

.publications-teaser {
  background: #ffffff;
  margin-bottom: 10px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.publications-teaser.video {
  margin-bottom: 30px;
}
.publications-teaser.video .image img {
  width: 100%;
}
.publications-teaser.video .content {
  min-height: 400px;
}
.publications-teaser.video .content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.publications-teaser.video .content ul li {
  list-style: none;
  display: inline-block;
  margin-right: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.publications-teaser.video .content ul li span:first-child {
  margin-right: 5px;
}
.publications-teaser.video .content ul li:before {
  content: none;
}
.publications-teaser .content {
  padding: 20px 20px 40px 20px;
  background-color: #eee;
  border-bottom: 1px solid #57606A;
}
.publications-teaser .content .tag {
  color: #2C4797;
  padding: 5px 10px;
  border-radius: 20px;
  border: 1px solid #2C4797;
  margin-bottom: 5px;
  display: inline-block;
  font-size: 0.8rem;
}
.publications-teaser .content .tag.Webinar {
  color: #2C4797;
  border: 1px solid #2C4797;
  background-color: white;
}
.publications-teaser .content .tag.Interview {
  color: #FFCD02;
  border: 1px solid #FFCD02;
  background-color: white;
}
.publications-teaser .content .tag.Podcast {
  color: #1C313A;
  border: 1px solid #1C313A;
  background-color: white;
}
.publications-teaser .content .tag.Training {
  color: #37BBDB;
  border: 1px solid #37BBDB;
  background-color: white;
}
.publications-teaser .content .tag.Highlights {
  color: #00242E;
  border: 1px solid #00242E;
  background-color: white;
}
.publications-teaser .content .location {
  text-align: right;
  display: block;
}
.publications-teaser .footer {
  border-top: 1px solid #eee;
  padding: 0 20px;
}
.publications-teaser .footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.publications-teaser .footer ul li {
  list-style: none;
  display: inline-block;
  margin-right: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.publications-teaser .footer ul li span:first-child {
  margin-right: 5px;
}
.publications-teaser .footer ul li:before {
  content: none;
}

.comm-kit .views-row {
  margin-bottom: 30px;
}
.comm-kit .views-exposed-form {
  margin-bottom: 30px;
}
.comm-kit .views-exposed-form input[type=submit] {
  padding: 5px 10px;
}
.comm-kit .views-exposed-form label {
  display: block;
}
.comm-kit .views-exposed-form .form-item {
  margin-bottom: 10px;
}
.comm-kit .views-exposed-form .js-form-submit {
  margin-bottom: 20px;
}
.comm-kit .views-exposed-form fieldset legend {
  font-size: 18px;
}
.comm-kit .views-exposed-form fieldset .bef-checkboxes {
  display: flex;
  gap: 20px;
}
.comm-kit .views-exposed-form fieldset .bef-checkboxes .js-form-type-checkbox label {
  display: inline-block;
  color: white;
  background-color: #2C4797;
  padding: 5px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  transition: all ease-in-out 0.3s;
}
.comm-kit .views-exposed-form fieldset .bef-checkboxes input {
  display: none;
}
.comm-kit .views-exposed-form fieldset .bef-checkboxes input:checked + label {
  background-color: #FFCD02;
}
.comm-kit table {
  width: 100%;
}
.comm-kit table tbody td {
  border: 1px solid #2C4797;
  padding: 5px 10px;
}
.comm-kit table tbody td span {
  display: none;
}
.comm-kit table tbody td .file {
  display: block;
  font-weight: 600;
}
.comm-kit table th {
  padding: 10px 10px;
  background-color: #2C4797;
  color: white;
  font-weight: 500;
}

.node-newsletter tr {
  border-bottom: none;
  background: none !important;
}

.node--type-eosc-component .cover__video iframe {
  width: 100%;
}
.node--type-eosc-component .cover__image,
.node--type-eosc-component .cover__video {
  border-radius: 0.8rem;
  overflow: hidden;
}
.node--type-eosc-component .box__icon__component {
  max-width: 240px;
}
.node--type-eosc-component .block__partner {
  gap: 0 20px;
  margin-bottom: 8px;
}
.node--type-eosc-component .block__partner .icon_partner {
  max-width: 50px;
  height: 50px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-radius: 80px;
}
.node--type-eosc-component .case__studies {
  position: relative;
  overflow: hidden;
  padding: 0.4rem;
  border-radius: 12px;
  transition: 0.2s ease-in-out all;
  border: 1px solid #dee2e6;
  background: #f3f5fc;
}
.node--type-eosc-component .case__studies a {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-end;
  gap: 0 20px;
}
.node--type-eosc-component .case__studies .container__image {
  height: 50px;
  width: 50px;
  overflow: hidden;
  border-radius: 6px;
}
.node--type-eosc-component .case__studies .container__image .image__studies {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.node--type-eosc-component .case__studies:hover {
  transform: scale(1.02) translate(10px, 0px);
}

.node--type-user-story .cover__image,
.node--type-user-story .cover__video {
  border-radius: 0.8rem;
  overflow: hidden;
}
.node--type-user-story .case__studies {
  position: relative;
  overflow: hidden;
  padding: 0.4rem;
  border-radius: 12px;
  transition: 0.2s ease-in-out all;
  border: 1px solid #dee2e6;
  background: #f3f5fc;
}
.node--type-user-story .case__studies a {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-end;
  gap: 0 20px;
}
.node--type-user-story .case__studies .container__image {
  height: 50px;
  max-width: 50px;
  overflow: hidden;
  border-radius: 6px;
}
.node--type-user-story .case__studies .container__image .image__studies {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.node--type-user-story .case__studies:hover {
  transform: scale(1.02) translate(10px, 0px);
}
.node--type-user-story .content-components div {
  border: 1px solid #f2f3fc;
  border-radius: 40px;
  padding: 5px 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: bold;
  color: #2a3b8c;
}
.node--type-user-story .content-components div img {
  border-radius: 40px;
}
.node--type-user-story .content-organisation {
  border: 1px solid #f2f3fc;
  border-radius: 4px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: bold;
  font-size: 20px;
}
.node--type-user-story .content-organisation img {
  max-width: 80px;
  border-radius: 4px;
}
.node--type-user-story .content-quote {
  background-color: #f2f3fc;
  padding: 20px;
  border-radius: 12px;
}

.documents-publications .node-teaser {
  border: 1px solid #dbe3eb;
  margin-bottom: 1rem;
  border-radius: 1rem;
  padding: 1rem 1.2rem;
}
.documents-publications .node-teaser .tag-publication {
  margin-bottom: 0.8rem;
}

.use-case-wrap .description > .row .views-element-container ul {
  margin-top: 20px;
}

.card {
  padding: 24px 16px;
  border-radius: 16px;
  box-shadow: 0px 2px 8px rgba(152, 152, 152, 0.25);
  background: #fff;
  border: none;
  color: #00242E;
  transition: 0.3s all ease-in-out;
}
.card:hover {
  color: #00242E;
  transform: translateY(-3px);
}
.card.component {
  height: 100%;
}
.card.component .img-box {
  width: 100%;
  margin: unset;
}
.card.component .img-box img {
  border-radius: 16px;
}
.card.component .component-access {
  display: flex;
  gap: 8px;
}
.card.component .component-access .btn {
  padding: 8px 4px;
  flex-basis: 50%;
  border: 1px solid #2C4797;
  font-size: 16px;
}
.card.component .component-access .btn a {
  font-size: 16px;
}
.card.component .component-access .btn-primary {
  font-size: 16px;
  line-height: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  gap: 4px;
}
.card.component .component-access .btn-primary.bg-white:after {
  content: none;
}
.card.component .component-access .btn-primary.bg-white a {
  color: #2C4797;
}

.card-user-story {
  display: flex;
  flex-direction: row;
  padding: 15px 5px;
}
.card-user-story .box-img {
  height: 170px;
  width: 100%;
}
.card-user-story .box-img img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.card-user-story .card-title {
  line-height: 1.5rem;
}
.card-user-story p {
  color: #000;
  line-height: 1.3rem;
}
.card-user-story .more-link {
  float: right;
  color: #000;
}
.card-user-story .card-topic {
  width: fit-content;
}
.card-user-story .card-topic ul {
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin-top: -25px !important;
}
.card-user-story .card-topic ul li {
  background-color: #f2f3fc;
  width: fit-content;
  border-radius: 16px;
  padding: 5px 15px;
  margin-bottom: -10px;
  line-height: 1.3rem;
}

.publications .views-row {
  border: 1px solid #dbe3eb;
  margin-bottom: 1rem;
  border-radius: 1rem;
  padding: 1rem 1.2rem;
}
.publications .views-row .tag-publication {
  margin-bottom: 0.8rem;
  font-size: 15px;
  padding: 5px 15px;
}

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

.mr20 {
  margin-right: 20px;
}

.mr5 {
  margin-right: 5px;
}

.page--contact form textarea {
  width: 100%;
}
.page--contact .main-content {
  overflow: hidden;
}
.page--contact .main-content .img-box {
  position: relative;
  padding: 20px;
  z-index: 0;
}
.page--contact .main-content .img-box:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1270px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(55, 187, 219, 0.3);
  z-index: -1;
}
.page--contact .main-content img {
  width: 100%;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#webform-submission-component-form-add-form #edit-which-component-s-would-you-like-to-test---wrapper,
#webform-submission-component-form-add-form .form-item-why-are-you-interested-in-testing-this-component-,
#webform-submission-component-form-add-form #edit-faircore4eosc-newsletter--wrapper,
#webform-submission-component-form-add-form #edit-privacy-policy--wrapper {
  margin-top: 3rem;
}
#webform-submission-component-form-add-form #edit-privacy-policy--wrapper {
  margin-bottom: 3rem;
}

#views-exposed-form-user-stories-page-1 {
  display: flex;
  align-items: end;
  gap: 20px;
  margin-bottom: 20px;
  margin-top: 30px;
}
#views-exposed-form-user-stories-page-1 .form-select {
  text-align: left;
  background-color: #f4f4f4;
  border: none;
  color: #595959;
  border-radius: 6px;
  max-width: 200px;
}
#views-exposed-form-user-stories-page-1 .form-item-sort-bef-combine {
  display: flex;
  width: 100%;
  justify-content: end;
  align-items: center;
  gap: 20px;
}
#views-exposed-form-user-stories-page-1 .form-item-sort-bef-combine label {
  color: #595959;
}

.views-exposed-form.bef-exposed-form #views-exposed-form-news-page-1 label,
.views-exposed-form.bef-exposed-form #views-exposed-form-events-page-2 label {
  font-weight: bold;
}
.views-exposed-form.bef-exposed-form #views-exposed-form-news-page-1 .bef-links,
.views-exposed-form.bef-exposed-form #views-exposed-form-events-page-2 .bef-links {
  border: 0;
  background-image: none;
}
.views-exposed-form.bef-exposed-form #views-exposed-form-news-page-1 .bef-links ul,
.views-exposed-form.bef-exposed-form #views-exposed-form-events-page-2 .bef-links ul {
  padding: 0;
  display: flex;
  gap: 20px;
  list-style: none;
  flex-wrap: wrap;
}
.views-exposed-form.bef-exposed-form #views-exposed-form-news-page-1 .bef-links ul li .bef-link,
.views-exposed-form.bef-exposed-form #views-exposed-form-events-page-2 .bef-links ul li .bef-link {
  color: #00242E !important;
  background-color: inherit !important;
  border: inherit;
  border-radius: 0;
  opacity: 0.6;
}
.views-exposed-form.bef-exposed-form #views-exposed-form-news-page-1 .bef-links ul li .bef-link.bef-link--selected,
.views-exposed-form.bef-exposed-form #views-exposed-form-events-page-2 .bef-links ul li .bef-link.bef-link--selected {
  border-bottom: 2px solid #2C4797;
  color: #2C4797 !important;
  font-weight: bold;
  opacity: 1;
}

.webform-submission-form fieldset.form-item,
.webform-submission-form .js-form-type-select,
.webform-submission-form .js-form-type-textarea,
.webform-submission-form .js-form-type-textfield {
  margin-bottom: 20px;
}
.webform-submission-form .fieldset-legend {
  font-weight: 600;
  font-size: 18px;
}
.webform-submission-form label.webform-options-display-buttons-label {
  height: auto;
}
.webform-submission-form .form-textarea {
  width: 100%;
}
.webform-submission-form .webform-options-display-buttons-label.option {
  font-size: 90%;
  font-weight: 400;
}

.webform-options-display-buttons input:hover + label.webform-options-display-buttons-label,
.webform-options-display-buttons label.webform-options-display-buttons-label {
  border-width: 1px;
}

.webform-options-display-buttons input:hover + label.webform-options-display-buttons-label {
  background-color: #dddddd;
}

.path-events .pager, .path-events .pagination, .publications .pager, .publications .pagination, .path-news .pager, .path-news .pagination {
  text-align: center;
  margin-top: 30px;
}
.path-events .pager li, .path-events .pagination li, .publications .pager li, .publications .pagination li, .path-news .pager li, .path-news .pagination li {
  display: inline-block;
}
.path-events .pager .pager__items, .path-events .pagination .pager__items, .publications .pager .pager__items, .publications .pagination .pager__items, .path-news .pager .pager__items, .path-news .pagination .pager__items {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.path-events .pager .pager__items .pager__item a, .path-events .pagination .pager__items .pager__item a, .publications .pager .pager__items .pager__item a, .publications .pagination .pager__items .pager__item a, .path-news .pager .pager__items .pager__item a, .path-news .pagination .pager__items .pager__item a {
  padding: 0 15px;
  border-radius: 20px;
  color: #2C4797;
  background: rgba(253, 250, 246, 0.5);
  overflow: hidden;
  font-weight: 500;
}
.path-events .pager .pager__items .pager__item.is-active a, .path-events .pagination .pager__items .pager__item.is-active a, .publications .pager .pager__items .pager__item.is-active a, .publications .pagination .pager__items .pager__item.is-active a, .path-news .pager .pager__items .pager__item.is-active a, .path-news .pagination .pager__items .pager__item.is-active a {
  background: #2C4797;
  color: #fff;
  font-weight: 600;
}/*# sourceMappingURL=style.min.css.map */