@charset "UTF-8";
@import "bootstrap-grid.min.css";
@import "bootstrap-reboot.min.css";
@font-face {
  font-family: Noto;
  src: url(../../fonts/NotoSans-Regular.ttf) format("opentype");
}
@font-face {
  font-family: NotoItalic;
  src: url(../../fonts/NotoSans-Italic.ttf) format("opentype");
}
@font-face {
  font-family: NotoBold;
  src: url(../../fonts/NotoSans-Bold.ttf) format("opentype");
}
@font-face {
  font-family: NotoBoldItalic;
  src: url(../../fonts/NotoSans-BoldItalic.ttf) format("opentype");
}
:root {
  --section-padding: 64px;
}

@media (max-width: 992px) {
  :root {
    --section-padding: 32px;
  }
}
.menu-bar {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  color: #1f2a37;
}
.menu-bar li:hover > a {
  color: #004494;
  font-weight: 600;
}
.menu-bar .menu-link {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.006em;
  padding: 12px 14px;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 1024px) {
  .menu-bar .menu-link i {
    display: none;
  }
}
.menu-bar ul.mega-menu li a {
  font-size: 15px;
}
.menu-bar li ul {
  list-style: none;
  padding: 0;
  width: 100%;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  z-index: 0;
  color: #004494;
  border-left: 1px solid #9fbbff;
}
.menu-bar li:hover > ul {
  display: block;
  top: 0;
  animation: swipe-right 0.2s ease-out forwards;
}
.menu-bar > li {
  padding: 30px 0;
}
@media (max-width: 1024px) {
  .menu-bar > li {
    padding: 5px 0;
  }
}
.menu-bar > li > ul {
  z-index: 1;
}
.menu-bar > li:hover {
  box-shadow: inset 0 -3px 0px #004494;
  color: #004494;
}
@media (max-width: 1023px) {
  .menu-bar > li:hover {
    box-shadow: none;
  }
}
.menu-bar > li:hover > ul {
  top: 100%;
  width: 33.33333%;
  bottom: auto;
  animation: fade 0.2s ease-out;
  border: 0;
}

.menu-bar ul ul,
.menu-bar li ul {
  display: none;
  background-color: #e9edff;
}
@media (max-width: 1023px) {
  .menu-bar ul ul,
  .menu-bar li ul {
    background-color: #fff;
  }
}

@media (min-width: 1024px) {
  .menu-bar li ul {
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.25);
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes swipe-right {
  0% {
    pointer-events: none;
    left: 0;
    opacity: 0;
  }
  100% {
    pointer-events: all;
    left: 100%;
    opacity: 1;
  }
}
.menu.menu-bar {
  user-select: none;
}

.menu.menu-bar li li:hover {
  background-color: #004494;
}
.menu.menu-bar li li:hover > a {
  color: #fff;
}

.menu-bar .menu-link.is-active {
  color: #004494;
  font-weight: 600;
}
.menu-bar .menu-link a.is-active {
  color: #004494;
  font-weight: 600;
}

.umb-cards {
  padding-top: 50px;
  padding-bottom: 50px;
}
.umb-cards .umb-card__image img {
  aspect-ratio: 3/2;
  object-fit: cover;
}

.umb-cards--blue-bg {
  background-color: #e9edff;
}

.umb-cards--dark-blue-bg {
  background-color: #003179;
}
.umb-cards--dark-blue-bg .umb-cards__title {
  text-align: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  text-transform: none;
  font-family: "Proxima Nova Lt", sans-serif;
  font-weight: 600;
}
.umb-cards--dark-blue-bg .umb-cards__title::before {
  content: none;
}

.umb-cards__title {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 32px;
  text-transform: uppercase;
}
.umb-cards__title::before {
  content: "";
  border-left: 12px solid #004494;
  height: 25px;
  display: inline-block;
  margin-right: 10px;
}

.umb-cards__title--center {
  text-align: center;
}

.umb-card {
  margin-bottom: 24px;
}
.umb-card a {
  display: block;
  text-decoration: none;
}
.umb-card .height-full {
  height: 100%;
}

a.umb-card {
  text-decoration: none;
}

.umb-card__image {
  border-radius: 12px;
  overflow: hidden;
}

.umb-card__title {
  font-size: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "Proxima Nova Lt", sans-serif;
  font-weight: 600;
}

.umb-card__title--md {
  font-size: 24px;
  font-family: "Proxima Nova Lt", sans-serif;
  font-weight: 600;
}

.umb-card__title--lg {
  font-size: 34px;
  font-family: "Proxima Nova Lt", sans-serif;
  font-weight: 600;
}

.umb-card__title--uppercase {
  text-transform: uppercase;
  font-family: "Proxima Nova Lt", sans-serif;
  font-weight: 600;
}

.umb-card__desc {
  font-size: 16px;
  color: #4b5563;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 27px;
}

.umb-card__desc--mb-auto {
  margin-bottom: auto;
}

.umb-card__badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 44px;
  font-size: 11px;
  margin-bottom: 12px;
}

.umb-card__badge--blue {
  background-color: #6a8ded;
  color: #fff;
}

.umb-card__badge--orange {
  background-color: #ff6e3b;
  color: #fff;
}

.umb-card__flags {
  display: inline-block;
}
.umb-card__flags img {
  width: 20px;
  height: 20px;
  object-fit: none;
  vertical-align: top;
}

.umb-card--h {
  display: flex;
}
.umb-card--h .umb-card__image {
  flex: 0 0 34%;
  max-width: 34%;
}
.umb-card--h .umb-card__image img {
  height: 100%;
  object-fit: cover;
  min-height: 170px;
  border-radius: 12px;
  overflow: hidden;
}
.umb-card--h .umb-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-left: 24px;
}
.umb-card--h .umb-card__content .umb-card__badge {
  align-self: flex-start;
}
.umb-card--h .umb-card__content.space-between {
  justify-content: space-between;
}
.umb-card--h .umb-card__content--column {
  display: flex;
  flex-direction: column;
}
.umb-card--h + .umb-card--h {
  margin-top: 20px;
}
.umb-card--h .umb-card__image--sm {
  flex: 0 0 135px;
}
.umb-card--h .umb-card__image--with-gap {
  padding: 24px;
  padding-right: 0;
}
.umb-card--h .umb-card__image--original-ar img {
  height: auto;
}

.umb-card--v {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.umb-card--v .umb-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-top: 24px;
  padding-bottom: 24px;
}
.umb-card--v .umb-card__footer {
  margin-top: auto;
}

.umb-cards--combined-layout .umb-card__title {
  font-weight: 700;
}
.umb-cards--combined-layout .umb-card__badge {
  display: none;
}

.umb-card--blue-bg {
  background-color: #e9edff;
  border-radius: 12px;
  overflow: hidden;
}
.umb-card--blue-bg .umb-card__content {
  padding: 24px;
}
.umb-card--blue-bg .umb-card__image {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.umb-card--white-bg {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
}
.umb-card--white-bg .umb-card__content {
  padding: 24px;
  flex: 1;
}
.umb-card--white-bg .umb-card__image {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.umb-card--dark-blue-bg {
  background-color: #1b58ad;
  border-radius: 12px;
}
.umb-card--dark-blue-bg .umb-card__content {
  padding: 24px;
}
.umb-card--dark-blue-bg .umb-card__title {
  color: #fff;
}
.umb-card--dark-blue-bg .umb-card__desc {
  color: #b4d9ff;
}
.umb-card--dark-blue-bg .umb-card__footer {
  color: #b4d9ff;
  border-color: #b4d9ff;
}

.umb-card__footer {
  color: #6b7280;
  font-size: 12px;
  border-top: 1px solid #6b7280;
  padding-top: 10px;
  margin-top: 10px;
  padding-right: 15px;
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: right 12px;
}

.umb-card__footer--mt-auto {
  margin-top: auto;
}

.umb-card__footer--borderless {
  border: 0;
}

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

.umb-card__header {
  background-color: #b4d9ff;
  margin-top: -24px;
  margin-right: -24px;
  margin-left: -24px;
  margin-bottom: 24px;
  padding: 24px;
  color: #004494;
  font-size: 12px;
}
.umb-card__header span {
  max-width: 33.333%;
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 600px) {
  .umb-card__header span {
    max-width: 100%;
  }
}

.umb-card__footer.flex-footer {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.umb-card a.button {
  display: inline-block;
}

.umb-card--h.umb-reset-margin {
  margin-top: 0 !important;
}

.umb-card .link--undecorated:hover {
  text-decoration: none !important;
}
.umb-card .link--undecorated:hover h3 {
  text-decoration: underline;
}

.js-archive-opportunity-list .umb-card__footer {
  background: none;
}
@media (max-width: 992px) {
  .js-archive-opportunity-list .umb-card__footer {
    flex-direction: column;
  }
  .js-archive-opportunity-list .umb-card__footer.items-between .left {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .js-archive-opportunity-list .umb-card__footer.items-between .left .umb-ellipsis {
    white-space: wrap;
    max-width: 100%;
  }
}
@media (max-width: 992px) {
  .js-archive-opportunity-list .umb-card.umb-card--h {
    flex-direction: column;
  }
  .js-archive-opportunity-list .umb-card.umb-card--h .umb-card__image {
    width: 100%;
    max-width: 100%;
    flex-basis: auto;
    aspect-ratio: unset;
  }
}

.items-between {
  justify-content: space-between;
}

.umb-card__footer.items-between .left {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 24px;
}
.umb-card__footer.items-between .left .umb-ellipsis {
  max-width: 370px;
}
@media (max-width: 1400px) {
  .umb-card__footer.items-between .left .umb-ellipsis {
    max-width: 300px;
  }
}
@media (max-width: 1200px) {
  .umb-card__footer.items-between .left .umb-ellipsis {
    max-width: 200px;
  }
}

@media (max-width: 768px) {
  .umb-card.opportunity-card {
    flex-direction: column;
    max-width: 100%;
  }
}
.umb-card.opportunity-card .umb-card__title {
  line-clamp: 2;
  -webkit-line-clamp: 2;
}
.umb-card.opportunity-card.umb-card--h .umb-card__image {
  flex: 0 0 35%;
  max-width: 35%;
}
@media (min-width: 1024px) and (max-width: 1400px) {
  .umb-card.opportunity-card.umb-card--h .umb-card__image {
    max-width: 27%;
  }
}
@media (max-width: 768px) {
  .umb-card.opportunity-card.umb-card--h .umb-card__image {
    flex: 0 0 auto;
    max-width: 100%;
  }
  .umb-card.opportunity-card.umb-card--h .umb-card__image img {
    aspect-ratio: unset;
  }
}
.umb-card.opportunity-card .umb-card__content {
  flex: auto;
}
.umb-card.opportunity-card .umb-ellipsis {
  max-width: 130px;
}

.contact-card .iframe-wrapper {
  border-radius: 12px;
  overflow: hidden;
}
.contact-card .iframe-wrapper iframe {
  width: 100%;
  height: 200px;
}

.umb-stats {
  margin-bottom: 24px;
}

.title-black {
  color: black;
  font-weight: 600;
  margin-bottom: 12px;
}

.image-3-2 {
  aspect-ratio: 3/2;
  border-radius: 12px;
  overflow: hidden;
}
.image-3-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-5-4 {
  aspect-ratio: 5/4;
  border-radius: 12px;
  overflow: hidden;
}
.image-5-4 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.title-black-2 h1,
.title-black-2 h2,
.title-black-2 h3,
.title-black-2 h4,
.title-black-2 strong {
  color: #1f2a37;
  font-size: 34px;
  font-weight: 600;
}

.strong-block strong {
  display: block;
}
.strong-block a {
  display: inline-block;
}
.strong-block p {
  margin: 0;
}

.two-list-container {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.two-list-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.two-list-container ul li {
  margin: 10px 0;
}
.two-list-container ul + ul {
  border-left: solid 1px #d1d5db;
  padding-left: 50px;
}

.js-archive-yea-blogs-list .umb-card__title {
  min-height: 65px;
}

h1,
h2,
h3 {
  font-family: "Proxima Nova Lt", sans-serif;
  font-weight: 600;
}

:root {
  --section-padding: 64px;
}

@media (max-width: 992px) {
  :root {
    --section-padding: 32px;
  }
}
.hero {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.hero--light-blue-bg {
  background: linear-gradient(#fff 50%, #e9edff 50%);
}
@media (max-width: 992px) {
  .hero--light-blue-bg {
    background: #fff;
  }
}

.hero--border-bottom {
  border-bottom: 1px solid #d1d5db;
  margin-bottom: 64px;
}

.hero__header {
  max-width: 960px;
  margin: 0 auto 64px;
  text-align: center;
}

.hero__title {
  margin: 0;
  font-size: 48px;
  font-weight: 600;
  color: #1f2a37;
}

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

.hero__image-wrapper {
  border-radius: 12px;
  overflow: hidden;
}

.hero__content {
  max-width: 840px;
  margin: 32px auto 0;
  text-align: center;
  font-size: 20px;
  color: #4b5563;
}
.hero__content p > img {
  margin: 20px auto;
  width: 90%;
  max-width: 90%;
  aspect-ratio: 1252/527;
  object-fit: cover;
}
@media (max-width: 992px) {
  .hero__content {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 992px) {
  .hero__content p > img {
    margin: 20px -50px;
    max-width: calc(100% + 100px);
    width: calc(100% + 100px);
  }
}
@media (min-width: 1200px) {
  .hero__content p > img {
    margin: 20px -175px;
    max-width: calc(100% + 300px);
    width: calc(100% + 300px);
  }
}
@media (min-width: 1400px) {
  .hero__content p > img {
    margin: 20px -225px;
    max-width: calc(100% + 450px);
    width: calc(100% + 450px);
  }
}

.archive.tax-wb_theme.term-democracy-and-fundamental-rights .hero__content p > img,
.archive.tax-wb_theme.term-education-and-training .hero__content p > img,
.archive.tax-wb_theme.term-innovation-mize-support .hero__content p > img {
  object-position: center top;
}

.archive.tax-wb_theme.term-innovation-mize-support .hero__content p > img {
  object-position: center bottom;
}

.text-and-image__media {
  border-radius: 12px;
  overflow: hidden;
}

.text-and-image {
  padding: 64px 0;
}

.cards-with-icons {
  padding-top: 64px;
  padding-bottom: 64px;
}

.cards-with-icons--blue-bg {
  background-color: #E9EDFF;
}

.cards-with-icons__title {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 32px;
  text-transform: uppercase;
}

.card-with-icon {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  background-color: #fff;
  text-decoration: none;
  flex: 1;
  margin-bottom: 30px;
}

.card-with-icon__icon {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

.card-with-icon__title {
  flex: 1;
  display: flex;
  align-items: center;
  background: #004494;
  padding: 30px 40px 30px 20px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  background-image: url("../icons/arrow-top-right--white.svg");
  background-position: right 20px center;
  background-repeat: no-repeat;
}

:root {
  --section-padding: 64px;
}

@media (max-width: 992px) {
  :root {
    --section-padding: 32px;
  }
}
.cards-with-facts {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.cards-with-facts--bg-dark-blue {
  background-color: #003179;
}

.cards-with-facts__title {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 32px;
  text-transform: uppercase;
}

.cards-with-facts__card {
  color: #fff;
  background-color: #004494;
  padding: 24px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}

.cards-with-facts__card-pre-title {
  color: #fff;
  font-size: 32px;
  font-weight: 400;
}
@media (max-width: 1200px) {
  .cards-with-facts__card-pre-title {
    font-size: 20px;
  }
}

.cards-with-facts__card-title {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .cards-with-facts__card-title {
    font-size: 28px;
  }
}

.cards-with-facts__card-title--sm {
  font-size: 38px;
}
@media (max-width: 1200px) {
  .cards-with-facts__card-title--sm {
    font-size: 24px;
  }
}

.cards-with-facts__card-title--highlight {
  background-color: #1b58ad;
  padding: 16px 24px;
  margin-bottom: 16px;
  border-radius: 8px;
}

.cards-with-facts__card-title--centered {
  text-align: center;
}

.cards-with-facts__card-title-highlight {
  color: #ffed00;
}

.cards-with-facts__card-desc {
  font-size: 24px;
  font-weight: 400;
}

:root {
  --section-padding: 64px;
}

@media (max-width: 992px) {
  :root {
    --section-padding: 32px;
  }
}
.search-and-filter {
  padding-top: 32px;
  padding-bottom: 32px;
}

.search-and-filter__title {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 32px;
}

.search-and-filter__filters {
  padding: 16px 24px;
  border-radius: 12px;
  background-color: #f3f4f6;
  margin-bottom: 24px;
}

.search-and-filter__filters-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}

.search-and-filter__search-input-wrapper {
  margin-bottom: 24px;
}
.search-and-filter__search-input-wrapper input[type=search] {
  width: 100%;
  height: 40px;
  outline: 0;
  border-radius: 8px;
  padding-left: 30px;
  padding-right: 14px;
  border: 1px solid #d1d5db;
  background-image: url("../icons/search--gray.svg");
  background-position: 5px center;
  background-repeat: no-repeat;
}

.search-and-filter__filter-title {
  font-size: 18px;
  font-weight: 600;
  color: #191c1f;
  cursor: pointer;
  padding-right: 15px;
  position: relative;
}
.search-and-filter__filter-title::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 7px;
  width: 15px;
  height: 15px;
  background-image: url("../icons/plus--gray.svg");
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.2s transform;
  transform: rotate(45deg);
}
.search-and-filter__filter-title.collapsed::after {
  transform: rotate(0deg);
}

.search-and-filter__filter .search-and-filter__filter {
  border: none;
  padding: 8px 0px;
}
.search-and-filter__filter .search-and-filter__filter:last-child {
  border: none;
}
.search-and-filter__filter .search-and-filter__filter .search-and-filter__filter-title {
  font-size: 14px;
}
.search-and-filter__filter .search-and-filter__filter .search-and-filter__filter-option {
  font-size: 14px;
}

.search-and-filter__filter-options {
  margin-top: 16px;
}
.search-and-filter__filter-options .search-and-filter__filter-options {
  margin-top: 8px;
}

.search-and-filter__filter-option {
  cursor: pointer;
  color: #1f2a37;
}
.search-and-filter__filter-option a {
  padding-left: 22px;
  text-decoration: none;
  margin-bottom: 8px;
  display: flex;
  position: relative;
  align-items: center;
  font-size: 14px;
}
.search-and-filter__filter-option a:before {
  content: "";
  position: absolute;
  left: 0;
  width: 14px;
  height: 14px;
  display: inline-block;
  border-radius: 2px;
  background-color: #fff;
  border: 1px solid #d1d5db;
}
.search-and-filter__filter-option .is-selected {
  font-weight: 600;
}
.search-and-filter__filter-option .is-selected:before {
  border: 0;
  background-color: #376bc7;
  background-image: url("../icons/check.svg");
  background-position: center;
  background-repeat: no-repeat;
}

.search-and-filter__filters-wrapper {
  margin-bottom: 24px;
}

.search-and-filter__filter {
  padding: 16px 0;
  border-top: 1px solid #d1d5db;
}
.search-and-filter__filter:last-child {
  border-bottom: 1px solid #d1d5db;
}

.search-and-filter__popular-tags-title {
  color: #1f2a37;
  font-size: 16px;
  text-transform: uppercase;
}

.search-and-filter__popular-tags-wrapper {
  margin-top: 16px;
}

.search-and-filter__popular-tags-item {
  display: inline-block;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 40px;
  border: 1px solid #d1d5db;
  text-decoration: none;
  margin-bottom: 8px;
}

.search-and-filter__popular-tags-item.is-selected {
  color: #004494;
  font-weight: 600;
  border: 1px solid #9fbbff;
  background-color: #e9edff;
}

:root {
  --section-padding: 64px;
}

@media (max-width: 992px) {
  :root {
    --section-padding: 32px;
  }
}
.facts-and-figures {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.facts-and-figures--bg-dark-blue {
  background-color: #003179;
}

.facts-and-figures__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  text-align: center;
  background: #003179;
  color: #fff;
  padding: 16px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}

.facts-and-figure__item-title {
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.facts-and-figure__item-icon {
  margin-bottom: 32px;
  position: relative;
}

.facts-and-figures__item:before {
  content: "";
  width: 115%;
  padding-bottom: 100%;
  position: absolute;
  background-color: #1B58AD;
  left: 0;
  border-radius: 50%;
  top: 60%;
  left: 50%;
  transform: translateX(-50%);
}

.facts-and-figure__item-fact {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.facts-and-figure__item-fact-wrapper {
  padding: 0 10px;
}
.facts-and-figure__item-fact-wrapper + .facts-and-figure__item-fact-wrapper {
  border-left: 1px solid #fff;
}

.facts-and-figure__item-fact-number {
  font-size: 34px;
  line-height: 1.1;
  font-weight: 600;
}

.facts-and-figure__item-fact-text {
  font-size: 20px;
}

:root {
  --section-padding: 64px;
}

@media (max-width: 992px) {
  :root {
    --section-padding: 32px;
  }
}
.timeline {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}
@media (max-width: 992px) {
  .timeline {
    padding-bottom: 80px;
  }
}

.timeline__title {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 32px;
  text-transform: uppercase;
}
.timeline__title::before {
  content: "";
  border-left: 12px solid #004494;
  height: 25px;
  display: inline-block;
  margin-right: 10px;
}

.timeline_milestone {
  margin-bottom: 32px;
}

.timeline__milestone-items {
  margin: 0;
  margin-bottom: 24px;
  padding-left: 15px;
}

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

.timeline__milestone-image {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.timeline__milestone-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline__milestone-date {
  margin-top: auto;
  font-size: 120px;
  font-weight: 600;
  color: #e5e7eb;
}
@media (max-width: 1200px) {
  .timeline__milestone-date {
    font-size: 80px;
  }
}
@media (max-width: 992px) {
  .timeline__milestone-date {
    font-size: 40px;
  }
}

.timeline__milestones-bar-dates {
  display: flex;
  justify-content: space-around;
  margin-top: 8px;
}

.timeline__milestones-bar-date {
  color: #1f2a37;
  font-size: 14px;
  font-weight: bold;
  flex: 1;
  text-align: center;
  cursor: pointer;
}
@media (max-width: 768px) {
  .timeline__milestones-bar-date {
    font-weight: 400;
    font-size: 12px;
    word-break: break-word;
    padding: 0 5px;
  }
}

.timeline__milestones-bar {
  height: 7px;
  background: #d1d5db;
  position: relative;
}

.timeline__milestones-bar-inner {
  width: 0;
  position: relative;
  left: 0;
  height: 7px;
  background-color: #1f2a37;
  transition: 0.2s width;
}
.timeline__milestones-bar-inner:after {
  content: "";
  display: block;
  position: absolute;
  right: -8px;
  width: 16px;
  height: 16px;
  background-color: #1f2a37;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}

:root {
  --section-padding: 64px;
}

@media (max-width: 992px) {
  :root {
    --section-padding: 32px;
  }
}
.contacts {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  background-color: #e9edff;
}

.contacts__title {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 32px;
}
.contacts__title::before {
  content: "";
  border-left: 12px solid #004494;
  height: 25px;
  display: inline-block;
  margin-right: 10px;
}

.contacts__panel {
  border-radius: 12px;
  overflow: hidden;
  padding: 24px;
  background-color: #fff;
}

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

@media (min-width: 1024px) and (orientation: landscape) {
  .wrapper {
    width: 1400px;
    max-width: 100%;
    margin: 0 auto;
  }
}
.archive-news .wrapper {
  padding: 0 0.625rem;
  width: 900px;
  max-width: 100%;
}

.archive-news__hero__content {
  text-align: center;
  position: relative;
  z-index: 10;
}

.archive-news__hero {
  padding: 1.25rem;
  background-position: center;
  background-size: cover;
  text-align: center;
  border-bottom: solid 1px #d1d5db;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .archive-news__hero {
    width: 100%;
    padding: 5rem;
  }
}
.archive-news__title {
  line-height: 1.875rem;
  margin-bottom: 0.625rem;
  text-indent: -0.1875rem;
}

.archive-news__search {
  position: relative;
}

.archive-news__search span {
  width: 1.875rem;
  height: 1.375rem;
  pointer-events: none;
  position: absolute;
  top: 50%;
  right: 1.4375rem;
  transform: translateY(-50%);
  background-image: url("/wp-content/themes/western-balkans/static/images/icons/search-lens.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.archive-news__search__input {
  width: 100%;
  height: 3.125rem;
  -webkit-appearance: none;
  border: 2px solid #e3e3e3;
  font-size: 1rem;
  height: 3.125rem;
  line-height: 3.125rem;
  padding: 0 3.75rem 0 0.9375rem;
}

.archive-news__search__input::placeholder {
  color: #909090;
  font-style: italic;
  font-size: 1rem;
  opacity: 1;
}

.archive-news__search__input:-ms-input-placeholder {
  color: #909090;
  font-style: italic;
  font-size: 1rem;
}

.archive-news__body {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}

.archive-news__country-filters {
  width: 100%;
  flex-basis: 100%;
  padding: 2.1875rem 1.25rem;
  background-color: #f8f8f8;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .archive-news__country-filters {
    margin-bottom: 4.0625rem;
    padding: 2.1875rem 0;
  }
}
.archive-news__country-filters .label {
  width: 100%;
  margin-bottom: 1.375rem;
  font-size: 1.25rem;
  line-height: 1.6875rem;
  text-transform: uppercase;
}

.archive-news__country-filters__item {
  height: 2.125rem;
  text-decoration: none;
  font-size: 1.0625rem;
  padding: 0 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.0625rem;
  border: 1px solid rgba(216, 216, 216, 0.46);
  transition: all 0.2s ease-in-out 0s;
  text-transform: uppercase;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .archive-news__country-filters__item {
    padding: 0 1.5625rem;
    display: inline-flex;
  }
}
.archive-news__country-filters__item:not(:last-child) {
  margin-bottom: 0.9375rem;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .archive-news__country-filters__item:not(:last-child) {
    margin-right: 0.75rem;
    margin-bottom: 0;
  }
}
.no-touch .archive-news__country-filters__item:hover {
  background-color: #13468e;
  color: #fff;
  border-color: #fff;
  text-decoration: none;
}

.archive-news__country-filters__item.is-selected {
  background-color: #13468e;
  color: #fff;
  border-color: #fff;
}

.archive-news__news-sidebar {
  padding: 0 1.25rem 0;
  margin-bottom: 3.125rem;
  width: 100%;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .archive-news__news-sidebar {
    display: none;
    width: 28.958%;
    flex-basis: 28.958%;
    padding-left: 0;
  }
  .ie11 .archive-news__news-sidebar {
    width: 27%;
    flex-basis: 27%;
  }
}
.archive-news__news-sidebar .label {
  width: 100%;
  font-size: 1.25rem;
  line-height: 1.6875rem;
  display: block;
  padding-top: 1.25rem;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .archive-news__news-sidebar .label {
    padding-left: 0.9375rem;
  }
}
.archive-news__year-filters {
  margin-top: 2.5rem;
}

.archive-news__year-filters__list {
  padding: 1.25rem 0 2.25rem;
  border-bottom: 1px solid #e3e3e3;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .archive-news__year-filters__list {
    padding: 1.25rem 2.1875rem 2.8125rem 0.9375rem;
  }
}
.archive-news__year-filters__list li:not(:last-child) {
  margin-bottom: 0.625rem;
}

.archive-news__year-filters__list li a.active {
  color: #13468e;
}

.archive-news__year-filters__list .first-level:not(:first-child) {
  margin-top: 0.625rem;
}

.archive-news__news-sidebar__item {
  display: block;
  font-size: 1.0625rem;
  line-height: 1.4375rem;
  transition: color 0.2s ease-in-out 0s;
  text-decoration: none;
}

.no-touch .archive-news__news-sidebar__item:hover {
  color: #13468e;
  text-decoration: none;
}

.archive-news__news-sidebar__item.is-selected {
  color: #13468e;
}

.first-level .archive-news__news-sidebar__item {
  font-weight: 700;
}

.second-level .archive-news__news-sidebar__item {
  padding-left: 1.25rem;
}

.archive-news__content {
  padding: 2.25rem 1.25rem;
  width: 100%;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .archive-news__content {
    width: 100%;
    padding: 0;
  }
  .ie11 .archive-news__content {
    width: 100%;
  }
}
.archive-news__content .label {
  margin-bottom: 1.25rem;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .archive-news__content .label {
    margin-bottom: 2.5rem;
  }
}
.archive-news__selected-filters-wrapper {
  margin-bottom: 0.625rem;
  display: none;
}

.archive-news__selected-filters-wrapper .label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.9375rem;
}

.has-selected-filters .archive-news__selected-filters-wrapper {
  display: block;
}

.archive-news__selected-filters {
  display: flex;
  flex-wrap: wrap;
}

.archive-news__selected-filters__item {
  height: 1.875rem;
  padding: 0 2.0625rem 0 1.1875rem;
  margin-bottom: 0.625rem;
  background-color: #13468e;
  color: #fff;
  position: relative;
  font-weight: 700;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  border-radius: 0.9375rem;
  cursor: pointer;
}

.archive-news__selected-filters__item:not(:last-child) {
  margin-right: 0.625rem;
}

.archive-news__selected-filters__item:before {
  content: "";
  width: 0.6875rem;
  height: 0.6875rem;
  position: absolute;
  top: 50%;
  right: 0.9375rem;
  transform: translateY(-50%);
  background-image: url("/wp-content/themes/western-balkans/static/images/icons/close-white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.archive-news__extra-filters {
  display: none;
  margin-bottom: 1.875rem;
  padding: 1.25rem;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .archive-news__extra-filters {
    margin-bottom: 2.5rem;
    padding: 1.25rem 0;
  }
}
.archive-news__extra-filters .label {
  width: 100%;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.9375rem;
  display: block;
}

.archive-news__extra-filters a {
  display: block;
  font-weight: 500;
  padding-left: 2.8125rem;
  text-decoration: none;
  position: relative;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .archive-news__extra-filters a {
    display: inline;
  }
}
.archive-news__extra-filters a span {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.archive-news__extra-filters a:nth-child(2) {
  margin-bottom: 1.25rem;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .archive-news__extra-filters a:nth-child(2) {
    margin-right: 2.8125rem;
    margin-bottom: 0;
  }
}
.archive-news__extra-filters a:nth-child(2) span {
  width: 0.6875rem;
  height: 1.25rem;
  background-image: url("/wp-content/themes/western-balkans/static/images/icons/popularity-order.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.archive-news__extra-filters a:last-child span {
  width: 1.125rem;
  height: 0.75rem;
  background-image: url("/wp-content/themes/western-balkans/static/images/icons/alphabetical-order.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.no-touch .archive-news__extra-filters a:before {
  text-decoration: none;
}

.archive-news__news-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.archive-news__news-list__heading-news-wrapper {
  padding: 0 0.625rem;
}

.archive-news__news-list__row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 3.125rem;
  width: 100%;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .archive-news__news-list__row {
    margin-right: -0.625rem;
    margin-left: -0.625rem;
  }
}
.archive-news__news-list__heading-news__image-wrapper {
  width: 100%;
  height: 21.875rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .archive-news__news-list__heading-news__image-wrapper {
    width: 66.666667%;
    flex-basis: 66.666667%;
    padding: 0 0.625rem;
    margin-bottom: 0;
  }
}
.archive-news__news-list__heading-news__image {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .archive-news__news-list__heading-news__text-wrapper {
    width: 33.333333%;
    flex-basis: 33.333333%;
    padding: 0 0.625rem;
  }
}
.archive-news h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.875rem;
}

.archive-news h3 a {
  text-decoration: none;
}

.archive-news-meta {
  font-size: 0.875rem;
  margin-bottom: 0.625rem;
}

.archive-news-meta span {
  display: inline-block;
  margin-right: 0.625rem;
}

.archive-news-excerpt,
.archive-news__latest-press-release__item__text {
  font-size: 0.875rem;
  color: #727272;
  line-height: 1.1875rem;
}

.archive-news__news-list__heading-news__social-share {
  margin-top: 1.875rem;
}

.archive-news__news-list__heading-news__social-share span {
  font-size: 0.875rem;
  margin-right: 1.875rem;
  display: inline-block;
}

.archive-news__news-list__heading-news__social-share__icons {
  display: inline-block;
}

.archive-news__news-list__heading-news__social-share__icons a {
  margin-right: 1.25rem;
}

.archive-news__news-list__heading-news__social-share__icons a:last-child {
  margin-right: 0;
}

.archive-news__news-list__news-box {
  width: 100%;
  margin-bottom: 2.5rem;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .archive-news__news-list__news-box {
    width: 33.333333%;
    flex-basis: 33.333333%;
    padding: 0 0.625rem;
    margin-bottom: 2.5rem;
  }
}
.archive-news__news-list__news-box__content__image {
  display: block;
  height: 12.5rem;
  margin-bottom: 0.9375rem;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.archive-news__news-list__news-box__content__text h3 a {
  font-size: 1.125rem;
}

.archive-news__latest-press-release__item__title {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.625rem;
  font-weight: 700;
  line-height: 1.25rem;
  transition: color 0.2s ease-in-out 0s;
  text-decoration: none;
}

.archive-news__latest-press-release__item {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  position: relative;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .archive-news__latest-press-release__item {
    padding-left: 0.9375rem;
  }
}
.archive-news__latest-press-release__item:after {
  content: "";
  height: 0.0625rem;
  width: 100%;
  background-size: cover;
  background-position: center bottom;
  background-repeat: repeat-x;
  background-image: url("/wp-content/themes/western-balkans/static/images/news/dashed-border.svg");
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.archive-news__latest-press-release__see-all a {
  display: block;
  margin: 0 auto;
  text-align: center;
  padding: 0.9375rem;
  color: #13468e;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.875rem;
  transition: color 0.2s ease-in-out 0s;
}

.archive-news__latest-press-release__see-all a:hover {
  color: #bf6828;
}

.archive-news__archive__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}

.archive-news__archive__pagination__page {
  font-size: 1.5rem;
  line-height: 2.0625rem;
  text-decoration: none;
  margin: 0 0.625rem;
}

.archive-news__archive__pagination__page.is-selected {
  font-weight: 700;
}

.archive-news__archive {
  padding: 2.5rem 1.25rem;
}

.archive-news__archive .label {
  margin-bottom: 2.5rem;
}

.archive-news__archive__row {
  margin-bottom: 3.125rem;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .archive-news__archive__row {
    margin-bottom: 1.25rem;
  }
}
.archive-news__archive__row__image {
  background-size: cover;
  background-position: center center;
  height: 11.25rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .archive-news__archive__row__image {
    display: inline-block;
    width: 11.25rem;
    height: 11.25rem;
    margin-right: 1.25rem;
    margin-bottom: 0;
  }
}
.archive-news__archive_row__text {
  vertical-align: top;
}

.archive-news__archive_row__text .archive-news__archive_row__text__title {
  display: block;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  padding-top: 0.625rem;
}

.archive-news__archive_row__text p {
  font-size: 1rem;
  margin-bottom: 1.875rem;
  line-height: 1.5625rem;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .archive-news__archive_row__text {
    width: calc(100% - 13rem);
    height: 11.25rem;
    display: inline-flex;
    flex-direction: column;
  }
}
.archive-news__archive__row__author {
  width: 100%;
  margin-top: auto;
}

.archive-news__archive__row__author .archive-news__archive__row__author__image-wrapper {
  border-radius: 50%;
  overflow: hidden;
  width: 1.5625rem;
  height: 1.5625rem;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.4375rem;
}

.archive-news__archive__row__author img {
  width: 100%;
  height: 100%;
}

.archive-news__archive__row__author span {
  font-size: 0.875rem;
  display: inline-block;
  vertical-align: middle;
}

.post__hero__content {
  max-width: 52.4375rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

.post__hero__content .post__hero__inner {
  width: 100%;
  margin: 0 auto;
}

.post__hero {
  height: 30.625rem;
  padding: 1.25rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .post__hero {
    width: 100%;
    height: 30.625rem;
    padding: 0;
    background-color: #376bc7;
  }
}
.post__hero .gradient-layer {
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.post__title {
  margin-bottom: 1.375rem;
  color: #fff;
}

.post__paragraph {
  margin-bottom: 1.875rem;
}

.post__search {
  position: relative;
  max-width: 36.8125rem;
  margin: 0 auto;
  display: block;
}

.post__search span {
  width: 2.6875rem;
  height: 2.6875rem;
  position: absolute;
  top: 50%;
  right: 0.9375rem;
  transform: translateY(-50%);
  background-image: url("/wp-content/themes/western-balkans/assets/images/search_icon.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}

.post__search__input {
  width: 100%;
  height: 3.4375rem;
  font-size: 1.375rem;
  color: #fff;
  border-radius: 8px;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding-right: 3.75rem;
  padding-left: 1.5625rem;
  border: 0;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .post__search__input {
    height: 4rem;
  }
}
.post__body {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.post__country-filters {
  padding: 2.1875rem 0;
  background-color: #f8f8f8;
  width: 100%;
  margin-bottom: 1.875rem;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .post__country-filters {
    margin-bottom: 0;
  }
}
.post__post-filters__button-wrapper {
  opacity: 0;
}

.post__post-filters-container {
  position: fixed;
  bottom: 0;
  left: 0;
  top: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all 0.2s ease-in-out 0s;
}

.post__post-filters-container .post__post-filters__button-wrapper {
  padding: 1.25rem;
  position: absolute;
  bottom: -4.5625rem;
  left: 50%;
  transition: all 0.2s ease-in-out 0s;
  width: 100%;
  max-width: 36rem;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.post__post-filters-container .post-list__item__button {
  width: 100%;
  max-width: 26.625rem;
  margin: 0 auto;
}

.open-filters .post__post-filters-container {
  visibility: visible;
  opacity: 1;
}

.open-filters .post__post-filters-container .post__post-filters__button-wrapper {
  opacity: 1;
  bottom: 0;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .post__post-filters-container {
    width: 28.958%;
    flex-basis: 28.958%;
    padding: 3.75rem 0;
    position: static;
    max-width: unset;
    visibility: visible;
    background-color: transparent;
    z-index: 1;
    opacity: 1;
  }
  .ie11 .post__post-filters-container {
    width: 27%;
    flex-basis: 27%;
  }
}
.post__post-filters {
  font-size: 0.875rem;
  width: 100%;
  position: fixed;
  bottom: -100%;
  transition: all 0.2s ease-in-out 0s;
}

.open-filters .post__post-filters {
  -ms-overflow-style: none;
  scrollbar-width: none;
  bottom: 0;
  max-height: 100%;
  overflow-y: scroll;
  padding-top: 6.25rem;
}

.open-filters .post__post-filters::-webkit-scrollbar {
  display: none;
}

@media (min-width: 768px) {
  .post__post-filters {
    max-width: 36rem;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (min-width: 1024px) and (orientation: landscape) {
  .post__post-filters {
    position: static;
    transform: none;
    max-width: unset;
  }
  .ie11 .post__post-filters {
    width: 27%;
    flex-basis: 27%;
  }
}
.post__post-filters .label {
  width: 100%;
  font-size: 1.25rem;
  line-height: 1.6875rem;
}

.post__content__wrapper {
  display: flex;
  flex-wrap: wrap;
}

.post__post-filters__wrapper {
  padding: 2.25rem 1.25rem;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1607843137);
  background-color: #fff;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .post__post-filters__wrapper {
    padding: 0;
    box-shadow: none;
    background-color: transparent;
    overflow-y: unset;
    padding-top: 0;
  }
}
.post__post-filters__type {
  padding: 1.25rem 0 2.25rem;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .post__post-filters__type {
    padding: 0.625rem 0 2.8125rem;
  }
}
.post__post-filters__type li:not(:last-child) {
  margin-bottom: 1.25rem;
}

.post__post-filters__type .first-level:not(:first-child) {
  margin-top: 1.875rem;
}

.post__post-filters__type .accordion {
  border: 0;
  border-bottom: 1px solid #909090;
  height: auto;
}

.post__post-filters__type .accordion .accordion__content {
  width: 100%;
}

.post__post-filters__type .accordion .accordion__toggler {
  background-image: url("/wp-content/themes/western-balkans/assets/images/accordion-arrow-down.svg");
}

.post__post-filters__type .accordion .accordion__toggler.is-selected + .accordion__header .accordion__phase {
  color: #13468e !important;
  font-weight: 700 !important;
}

.accordion .heading-content {
  max-width: calc(100% - 120px);
}

.post__post-filters__type .accordion .accordion__header {
  padding: 0 0 0.625rem;
  height: auto;
}

.post__post-filters__type .accordion .accordion__header .accordion__phase {
  font-size: 0.875rem !important;
}

.post__post-filters__type .accordion .accordion__header.is-selected .accordion__phase {
  color: #13468e !important;
  font-weight: 700 !important;
}

.post__post-filters__type .accordion .accordion__header:before {
  display: none;
}

.post__post-filters__type .accordion:not(.has-child-terms) {
  border: 0;
  height: auto;
  border-bottom: 0;
  padding: 0 2.1875rem 0 3.4375rem;
  margin-bottom: 0;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .post__post-filters__type .accordion:not(.has-child-terms) {
    padding: 0 3.125rem 0 3.4375rem;
  }
}
.post__post-filters__type .accordion:not(.has-child-terms):not(:last-child) {
  border-bottom: 1px solid #979797;
}

.post__post-filters__type .accordion:not(.has-child-terms) > .accordion__toggler {
  background-image: url("/wp-content/themes/western-balkans/assets/images/accordion-arrow-down.svg");
  background-size: contain;
}

.post__post-filters__type .accordion:not(.has-child-terms) > .accordion__content {
  padding-top: 18px;
  padding-bottom: 1.5rem;
}

.post__post-filters__type .accordion:not(.has-child-terms) > .accordion__header {
  padding: 1.75rem 0;
  height: auto;
}

.post__post-filters__type .accordion:not(.has-child-terms) > .accordion__header:before {
  display: none;
}

.post__post-filters__type .accordion:not(.has-child-terms) > .accordion__header .accordion__phase {
  font-size: 1.0625rem !important;
  margin-bottom: 0;
  position: relative;
  line-height: 1.25rem;
  width: 100%;
  padding-right: 1.5rem;
}

.post__post-filters__type .accordion:not(.has-child-terms) > .accordion__header .accordion__phase > span {
  position: absolute;
  left: -3.4375rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
}

.post__post-filters__type .accordion:not(.has-child-terms) .accordion__list__item a {
  display: block;
  color: #9e9e9e;
  text-decoration: none;
  position: relative;
}

.post__post-filters__type .accordion:not(.has-child-terms) .accordion__list__item a.is-selected {
  color: #13468e;
  font-weight: 700;
}

.post__post-filters__type .accordion:not(.has-child-terms) .accordion__list__item a.is-selected:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  right: 0;
  top: 0;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .post__post-filters__type .accordion:not(.has-child-terms) .accordion__list__item a.is-selected:before {
    content: "";
  }
}
.post__post-filters__type .accordion:not(.has-child-terms) .accordion__list__item:last-child {
  margin-bottom: 0;
}

.post__post-filters__item {
  display: block;
  font-size: 1.0625rem;
  line-height: 1.4375rem;
  transition: color 0.2s ease-in-out 0s;
  text-decoration: none;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .post__post-filters__item:hover {
    color: #13468e;
    text-decoration: none;
  }
}
.post__post-filters__item.is-selected {
  color: #13468e;
}

.first-level .post__post-filters__item {
  font-weight: 700;
}

.second-level .post__post-filters__item {
  padding-left: 1.25rem;
}

.post__content {
  padding: 2.25rem 1.25rem;
  max-width: 31.25rem;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 768px) {
  .post__content {
    max-width: 60rem;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) and (orientation: landscape) {
  .ie11 .post__content {
    width: 70%;
    flex-basis: 70%;
  }
}
.post__content .label {
  margin-bottom: 1.25rem;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .post__content .label {
    margin-bottom: 2.5rem;
  }
}
.post__selected-filters-wrapper {
  margin-bottom: 0.625rem;
  display: none;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .post__selected-filters-wrapper {
    margin-bottom: 1.875rem;
  }
}
.post__selected-filters-wrapper .label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.9375rem;
}

.has-selected-filters .post__selected-filters-wrapper {
  display: block;
}

.post__selected-filters {
  display: flex;
  flex-wrap: wrap;
}

.post__selected-filters__item {
  height: 1.875rem;
  padding: 0 2.0625rem 0 1.1875rem;
  margin-bottom: 0.625rem;
  background-color: #13468e;
  color: #fff;
  position: relative;
  font-weight: 700;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  border-radius: 0.9375rem;
  cursor: pointer;
}

.post__selected-filters__item:not(:last-child) {
  margin-right: 0.625rem;
}

.post__selected-filters__item:before {
  content: "";
  width: 0.6875rem;
  height: 0.6875rem;
  position: absolute;
  top: 50%;
  right: 0.9375rem;
  transform: translateY(-50%);
  background-image: url("/wp-content/themes/western-balkans/assets/images/close-white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.post__extra-filters {
  margin-bottom: 1.875rem;
  padding: 1.25rem;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .post__extra-filters {
    margin-bottom: 2.5rem;
    padding: 1.25rem 0;
  }
}
.post__extra-filters .label {
  width: 100%;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.9375rem;
  display: block;
}

.post__extra-filters a {
  display: block;
  font-weight: 500;
  padding-left: 1.875rem;
  text-decoration: none;
  position: relative;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .post__extra-filters a {
    display: inline;
  }
}
.post__extra-filters a span {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.post__extra-filters a:nth-child(2) {
  margin-bottom: 1.25rem;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .post__extra-filters a:nth-child(2) {
    margin-right: 2.8125rem;
    margin-bottom: 0;
  }
}
.post__extra-filters a:nth-child(2) span {
  width: 0.6875rem;
  height: 1.25rem;
  background-image: url("/wp-content/themes/western-balkans/assets/images/popularity-order.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.post__extra-filters a:last-child span {
  width: 1.125rem;
  height: 0.75rem;
  background-image: url("/wp-content/themes/western-balkans/assets/images/alphabetical-order.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .post__extra-filters a:before {
    text-decoration: none;
  }
}
.post-list {
  gap: 24px;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .post-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.post-list__item {
  margin-bottom: 12px;
}
.post-list__item > a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}

@media (min-width: 768px) {
  .post-list__item {
    flex: 1 1 calc(33.333333% - 18px);
    max-width: calc(33.333333% - 18px);
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    background-color: #e9edff;
  }
}
.post-list__item__button {
  margin-top: auto;
  padding: 0.75rem 2.375rem;
  max-width: 10.5rem;
  border-radius: 0.5rem;
  height: auto;
  font-size: 0.875rem;
  line-height: 1.1875rem;
  text-align: center;
}

.post-list__item__button.mobile {
  display: block;
}

@media (min-width: 768px) {
  .post-list__item__button.mobile {
    display: none;
  }
}
.post-list__item__button.desktop {
  display: none;
}

@media (min-width: 768px) {
  .post-list__item__button.desktop {
    display: block;
  }
}
.post-list__item__image-wrapper {
  position: relative;
  margin-bottom: 1.875rem;
  background-size: cover;
  background-position: center;
}

@media (min-width: 768px) {
  .post-list__item__image-wrapper {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0;
    margin-bottom: 0;
    width: 100%;
    aspect-ratio: 3/2;
  }
}
.post-list__item__image {
  height: 10.5rem;
  width: 10.5rem;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
}

.post-list__item__content {
  position: relative;
}

@media (max-width: 767px) {
  .post-list__item__content {
    padding: 2.5rem 1.875rem;
  }
  .post-list__item__image-wrapper {
    width: 100%;
    height: 200px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
}
@media (min-width: 768px) {
  .post-list__item__content {
    padding: 12px;
    flex: 1;
  }
}
.post-list__item__content .post-list__item__button {
  width: 100%;
  max-width: unset;
}

.post-list__item__details {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.post-list__item__details .post-list__item__types {
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .post-list__item__details {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .post-list__item__details .post-list__item__types {
    margin-bottom: 0;
  }
  .post-list__item__details .post-list__item__beneficiaries {
    margin-left: auto;
  }
}
.post-list__item__details.many-details {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.post-list__item__details.many-details .post-list__item__types {
  margin-bottom: 1rem;
}

.post-list__item__details.many-details .post-list__item__beneficiaries {
  margin-left: 0;
}

.post-list__item__deadline {
  margin-bottom: 1.875rem;
}

@media (min-width: 768px) {
  .post-list__item__deadline {
    margin-bottom: 0;
  }
}
.post-list__item__countries_and_themes {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

@media (min-width: 768px) {
  .post-list__item__countries_and_themes {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .post-list__item__countries_and_themes.many-themes {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .post-list__item__countries_and_themes.many-themes .post-list__item__countries__flag {
    margin-bottom: 1.25rem;
  }
}
.post-list__item__countries__flag {
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .post-list__item__countries__flag {
    margin-bottom: 0;
  }
}
.post-list__item__title {
  margin-bottom: 1.125rem;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .post-list__item__title {
    margin-bottom: 1.125rem;
    font-size: 18px;
    line-height: 1.625rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.post-list__item__description {
  font-size: 0.875rem;
  line-height: 1.5rem;
  margin-bottom: 1.875rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 768px) {
  .post-list__item__description {
    margin-bottom: 1rem;
  }
}
.post-list__item__details__item span {
  width: 1.5rem;
  height: 1.5rem;
}

.post-list__item__details__item small {
  font-size: 0.75rem;
}

.post__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}

.post__pagination__page__arrow {
  height: 1.5rem;
  width: 1.5rem;
  display: inline-flex;
  align-items: center;
}

.post__pagination__page__arrow span {
  background-image: url("/wp-content/themes/western-balkans/assets/images/pagination-arrow-left.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 1.125rem;
  height: 1.25rem;
  margin: 0 auto;
  display: block;
  pointer-events: none;
}

.post__pagination__page__arrow--previous {
  margin-right: 1rem;
}

.post__pagination__page__arrow--next span {
  transform: scaleX(-1);
}

.post__pagination__page {
  text-decoration: none;
  background-color: #fafafa;
  color: #376bc7;
  width: 1.5rem;
  height: 1.5rem;
  position: relative;
  border-radius: 0.1875rem;
}

.post__pagination__page:not(:last-child) {
  margin-right: 1rem;
}

.post__pagination__page span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  transform: translate(-50%, -50%);
  line-height: 1;
  pointer-events: none;
}

.post__pagination__page.is-selected {
  background-color: #376bc7;
  color: #fff;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .post__pagination__page:not(.is-selected):hover {
    background-color: #e1e1e1;
    color: #376bc7;
  }
}
.post__pagination__dots {
  font-size: 1.5rem;
  color: #376bc7;
  font-weight: 700;
  margin-right: 1rem;
}

.post-list__item__content a,
.post-list__item__content p {
  font-size: 14px;
  line-height: 24px;
}

.post__country-filters__item {
  cursor: pointer;
  user-select: none;
}

.mobile-archive-filters__toggler-wrapper {
  padding: 0 1.25rem;
  width: 100%;
  justify-content: center;
  display: none;
}

.post_footer {
  padding: 0 12px;
  justify-self: flex-end;
}
.post_footer p {
  font-family: Inter;
  color: #6b7280;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 134%; /* 16.08px */
  letter-spacing: -0.072px;
}
.post_footer .link-with-arrow {
  padding-right: 27px;
  background-image: url("../icons/arrow-top-right.svg");
  background-repeat: no-repeat;
  background-position: right 16px;
  padding: 14px 0 0 0;
  display: block;
  background-size: 12px;
  border-top: solid 1px #6b7280;
}

.umb-card {
  user-select: none;
}
.umb-card__image {
  aspect-ratio: 3/2;
}
.umb-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

:root {
  --section-padding: 64px;
}

@media (max-width: 992px) {
  :root {
    --section-padding: 32px;
  }
}
.subscribe {
  color: #fff;
  padding: 32px 0;
  background-color: #003179;
}

.subscribe__title {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.subscribe__desc {
  color: #9fbbff;
}
@media (max-width: 768px) {
  .subscribe__desc {
    margin-bottom: 24px;
  }
}

.footer__top {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.footer__top-logo {
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .footer__top-logo + div {
    margin-bottom: 24px;
  }
}

.footer__top-link_heading {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer__bottom {
  padding-bottom: 24px;
}
@media (max-width: 992px) {
  .footer__bottom .row {
    gap: 24px;
  }
  .footer__bottom .row .col-auto {
    margin: 0 auto;
    text-align: center;
  }
}

.footer__bottom-separator {
  border-top: 1px solid #eaecf0;
  margin-bottom: 12px;
  text-align: center;
}

.footer__bottom-copyright {
  color: #667085;
  font-size: 14px;
}

.umb-video-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
}
.umb-video-lightbox__container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}
.umb-video-lightbox .umb-video-embed {
  width: 1200px;
  max-width: 80%;
  aspect-ratio: 16/9;
  position: relative;
}
.umb-video-lightbox .umb-video-embed .close {
  position: absolute;
  width: 40px;
  height: 40px;
  top: -20px;
  right: -20px;
  background-color: #fff;
  color: #004494;
  border: none;
  border-radius: 12px;
}
.umb-video-lightbox .umb-video-embed .close i {
  transition: all 0.4s ease;
}
.umb-video-lightbox .umb-video-embed .close:hover i {
  transform: scale(1.3);
}
.umb-video-lightbox .umb-video-embed iframe {
  width: 100%;
  height: 100%;
}

.unstyled-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.unstyled-list li {
  margin-bottom: 8px;
}

.button {
  font-size: 16px;
  padding: 12px 24px;
  display: inline-block;
  border-radius: 44px;
  text-decoration: none;
  color: inherit;
  background-color: #004494;
  color: #fff;
  cursor: pointer;
}
.button:hover {
  color: #fff;
}

.button--sm {
  font-size: 14px;
  padding: 10px 12px;
}

.button--bordered-blue {
  color: #1f2a37;
  border: 1px solid #b4d9ff;
  background-color: transparent;
}

.link {
  font-size: 16px;
  color: #004494;
}
.link:hover {
  color: #003179;
}

.link--undecorated {
  text-decoration: none;
}
.link--undecorated:hover {
  text-decoration: underline;
}

.button--slightly-rounded {
  border-radius: 8px;
}

.button--bg-white {
  color: #004494;
  background-color: #fff;
}
.button--bg-white:hover {
  color: #003179;
}

.button--bg-pink {
  background-color: #e61d73;
  color: #fff;
}

.yea-button {
  background: transparent linear-gradient(90deg, #ff6e3b 0%, #58b1bf 100%);
}

:root {
  --section-padding: 64px;
}

@media (max-width: 992px) {
  :root {
    --section-padding: 32px;
  }
}
.story {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.story__header {
  margin-bottom: 32px;
}

.story__title {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 32px;
  margin-bottom: 8px;
}

.story__publish-date {
  font-size: 18px;
}

.story__feature-image {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 32px;
}

.story__share {
  margin-bottom: 32px;
}

.story__about-project {
  border-radius: 12px;
  overflow: hidden;
  padding: 24px;
  background-color: #e9edff;
}
.story__about-project:empty {
  display: none;
}
.story__about-project p:last-of-type {
  margin-bottom: 0;
}

.umb-campaign {
  padding-top: 60px;
}
@media (max-width: 992px) {
  .umb-campaign {
    padding-top: 30px;
  }
}

.umb-hero-campaign {
  color: #1f2a37;
}
.umb-hero-campaign__content {
  text-align: center;
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.umb-campaign__heading-stripe {
  position: relative;
  background-color: #e9edff;
  text-align: center;
  color: #1f2a37;
}
.umb-campaign__heading-stripe .embed-responsive {
  width: 100%;
}
.umb-campaign__heading-stripe .embed-responsive.embed-responsive-16by9 {
  aspect-ratio: 16/9;
}
.umb-campaign__heading-stripe .embed-responsive iframe {
  width: 100%;
  height: 100%;
}
.umb-campaign__heading-stripe video {
  width: 100%;
  position: relative;
  z-index: 2;
}
.umb-campaign__heading-stripe__content {
  padding-top: 32px;
  padding-bottom: 32px;
}
.umb-campaign__heading-stripe__content p {
  font-size: 42px;
  font-weight: normal;
  line-height: 1.2;
}
.umb-campaign__heading-stripe__content-small {
  padding-top: 32px;
  padding-bottom: 32px;
}
.umb-campaign__heading-stripe__content-small p {
  font-weight: normal;
  line-height: 1.2;
}
.umb-campaign__heading-stripe::before {
  content: "";
  width: 100%;
  height: 20%;
  background-color: #fff;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.umb-campaign__heading-stripe.white {
  background-color: #fff;
}
.umb-campaign__heading-stripe.white::before {
  content: none;
}

.umb-campaign-article {
  display: flex;
  padding: 60px 0;
  gap: 40px;
}
@media (max-width: 768px) {
  .umb-campaign-article {
    flex-direction: column-reverse;
    padding: 30px 0;
  }
}
.umb-campaign-article h3 {
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 16px;
}
.umb-campaign-article.items-center {
  align-items: center;
}
.umb-campaign-article > * {
  flex-basis: 50%;
  max-width: 50%;
}
@media (max-width: 768px) {
  .umb-campaign-article > * {
    flex-basis: unset;
    max-width: 100%;
  }
}
.umb-campaign-article img {
  border-radius: 20px;
  object-fit: cover;
}
.umb-campaign-article__content {
  padding: 20px 0;
}
.umb-campaign-article__content strong {
  font-weight: bold;
}
.umb-campaign-article + .umb-campaign-article {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .umb-campaign-article + .umb-campaign-article {
    flex-direction: column-reverse;
  }
}
.umb-campaign-article.reverse {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .umb-campaign-article.reverse {
    flex-direction: column-reverse;
  }
}

.umb-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 768px) {
  .umb-stats {
    flex-direction: column;
  }
}
.umb-stats article {
  flex: 1;
  background-color: #003179;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  padding: 20px;
}
@media (max-width: 1200px) {
  .umb-stats article {
    flex: 1 1 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}
@media (max-width: 768px) {
  .umb-stats article {
    flex: unset;
    max-width: 100%;
  }
}
.umb-stats article::before {
  content: "";
  position: absolute;
  left: -40px;
  right: -40px;
  top: 70px;
  bottom: -100%;
  border-radius: 50%;
  background-color: #1b58ad;
}
.umb-stats article .umb-stats__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.umb-stats article .umb-stats__content h1 {
  font-size: 22px;
  color: inherit;
  text-transform: uppercase;
  margin-bottom: 50px;
}
.umb-stats article .umb-stats__content p {
  display: flex;
  text-align: left;
  gap: 20px;
  align-items: center;
  margin: 0;
}
.umb-stats article .umb-stats__content p strong {
  font-size: 42px;
  color: yellow;
  font-weight: bold;
}

.umb-campaign__programmes {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .umb-campaign__programmes {
    flex-direction: column;
  }
}
.umb-campaign__programmes__block {
  flex: 0 0 calc(50% - 12px);
  background-color: #e9edff;
  padding: 22px;
  border-radius: 20px;
}
@media (max-width: 992px) {
  .umb-campaign__programmes__block {
    flex: unset;
  }
}
.umb-campaign__programmes__block__video {
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 12px;
}
.umb-campaign__programmes__block__video iframe {
  width: 100%;
  height: 100%;
}
.umb-campaign__programmes__block__info a {
  text-decoration: none;
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}
.umb-campaign__programmes__block__info a img {
  width: 68px;
  height: 50px;
}
.umb-campaign__programmes__block__info a h3 {
  font-size: 20px;
}
.umb-campaign__programmes__block__info a.button {
  display: inline-block;
}

.umb-campaign__heroes {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  background-color: #e9edff;
  text-align: center;
}
.umb-campaign__heroes__content {
  width: 800px;
  max-width: 100%;
  margin: 0 auto 30px;
}
.umb-campaign__heroes__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.umb-campaign__heroes__grid__hero {
  flex: 0 0 calc(25% - 18px);
  border-radius: 12px;
  overflow: hidden;
  background-color: #fff;
}
@media (max-width: 992px) {
  .umb-campaign__heroes__grid__hero {
    flex: 0 0 calc(50% - 18px);
  }
}
@media (max-width: 600px) {
  .umb-campaign__heroes__grid__hero {
    flex: 0 0 100%;
  }
}
.umb-campaign__heroes__grid__hero__bg-img {
  aspect-ratio: 16/9;
  background-position: center center;
  background-size: cover;
  position: relative;
}
.umb-campaign__heroes__grid__hero__bg-img .play {
  position: absolute;
  top: 14px;
  right: 14px;
}
.umb-campaign__heroes__grid__hero__content {
  padding: 14px 25px;
}
.umb-campaign__heroes__grid__hero__content h3 {
  color: #1f2a37;
  font-size: 20px;
  font-weight: 600;
  border-bottom: solid 1px #d1d5db;
  padding-bottom: 13px;
}
.umb-campaign__heroes__grid__hero__content p {
  font-size: 14px;
  color: #6b7280;
  text-transform: uppercase;
  margin: 0;
}
.umb-campaign__heroes__grid__hero.one-third {
  flex: 1 1 calc(33.333333% - 18px);
}
@media (max-width: 768px) {
  .umb-campaign__heroes__grid__hero.one-third {
    flex: 1 1 100%;
  }
}
.umb-campaign__heroes__grid__hero.play-center .play {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.2);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.umb-campaign__campaign-slider {
  background-color: #fff;
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}
.umb-campaign__campaign-slider__container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 992px) {
  .umb-campaign__campaign-slider__container {
    flex-direction: column;
  }
}
.umb-campaign__campaign-slider__intro-text, .umb-campaign__campaign-slider__wrapper {
  flex: 0 0 calc(50% - 12px);
}
@media (max-width: 992px) {
  .umb-campaign__campaign-slider__intro-text, .umb-campaign__campaign-slider__wrapper {
    flex: unset;
    max-width: 100%;
  }
}
.umb-campaign__campaign-slider__wrapper__slide {
  width: 100%;
  text-align: center;
}
.umb-campaign__campaign-slider__wrapper__slide__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.umb-campaign__campaign-slider__wrapper__slide__images img {
  border: solid 1px #e5e7eb;
}
.umb-campaign__campaign-slider__wrapper__slide strong {
  font-weight: 700;
  font-size: 24px;
  color: #004494;
  padding: 10px;
  display: inline-block;
}

.umb-campaign__tv-spot {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  background-color: #e9edff;
}
.umb-campaign__tv-spot__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 992px) {
  .umb-campaign__tv-spot__wrapper {
    flex-direction: column;
  }
}
.umb-campaign__tv-spot__wrapper__content {
  flex: 0 0 33%;
}
.umb-campaign__tv-spot__wrapper .embed-responsive {
  flex: 1;
  width: 100%;
  aspect-ratio: 16/9;
}
.umb-campaign__tv-spot__wrapper .embed-responsive iframe {
  width: 100%;
  height: 100%;
}

[type=checkbox] {
  opacity: 0;
  position: absolute;
  width: 24px;
  height: 24px;
  z-index: 2;
}

.custom-checkbox {
  width: 24px;
  height: 24px;
  margin-right: 0.75em;
  border: 2px solid currentColor;
  display: inline-block;
  border-radius: 2px;
  position: relative;
}
.custom-checkbox::before {
  content: "✓";
  position: absolute;
  top: -5px;
  left: 2px;
  right: 0;
  bottom: 0;
  opacity: 0;
  color: #003179;
  font-size: 20px;
}

[type=checkbox]:checked + .custom-checkbox {
  background-color: #fff;
}
[type=checkbox]:checked + .custom-checkbox::before {
  opacity: 1;
}

.umb-campaign-cta {
  text-align: center;
  background-color: #003179;
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}
.umb-campaign-cta__content {
  color: #fff;
  width: 916px;
  max-width: 100%;
  margin: 0 auto;
}
.umb-campaign-cta__content h3 {
  color: inherit;
}

.umb-campaign-masonry {
  background-color: #f3f4f6;
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}
.umb-campaign-masonry .narrow-container {
  column-count: 2;
  column-gap: 24px;
  width: 916px;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .umb-campaign-masonry .narrow-container {
    column-count: 1;
  }
}
.umb-campaign-masonry__article {
  background-color: #fff;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.umb-campaign-masonry__article img {
  width: 100%;
  height: auto;
}
.umb-campaign-masonry__article > * {
  flex: 1;
}
.umb-campaign-masonry__article.image-bg > * {
  order: 1;
}
.umb-campaign-masonry__article.image-bg img {
  order: 2;
  transform: translate(24px, 24px);
}

.umb-campaign-facts {
  background-color: #003179;
  text-align: center;
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}
.umb-campaign-facts h2 {
  color: #fff;
  margin-bottom: 60px;
}
.umb-campaign-facts img {
  border-radius: 12px;
}
@media (max-width: 992px) {
  .umb-campaign-facts img {
    margin-bottom: 24px;
  }
}
.umb-campaign-facts__content {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.umb-campaign-facts__content img {
  flex: 1 0 calc(25% - 12px);
  width: calc(25% - 12px);
  border-radius: 12px;
}
@media (max-width: 992px) {
  .umb-campaign-facts__content img {
    flex: 1 0 calc(50% - 12px);
    width: calc(50% - 12px);
  }
}
@media (max-width: 600px) {
  .umb-campaign-facts__content img {
    flex: 1 0 100%;
    width: 100%;
  }
}

.umb-campaign-cultural-ambassadors {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  min-height: 30vh;
  background: rgb(180, 217, 255);
  background: radial-gradient(circle, rgb(180, 217, 255) 0%, rgb(180, 217, 255) 25%, rgb(159, 187, 255) 25%, rgb(159, 187, 255) 50%, rgb(126, 160, 254) 50%, rgb(126, 160, 254) 75%, rgb(126, 160, 254) 75%, rgb(106, 141, 237) 75%, rgb(106, 141, 237) 100%);
}

.umb-campaign-stories {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}
.umb-campaign-stories__desc {
  width: 700px;
  max-width: 100%;
  margin-bottom: 36px;
}
.umb-campaign-stories__container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 992px) {
  .umb-campaign-stories__container {
    flex-direction: column;
  }
}
.umb-campaign-stories__container .umb-campaign-story {
  border-radius: 12px;
  overflow: hidden;
  background-color: #e9edff;
  flex: 1 1 calc(33.333333% - 18px);
  max-width: calc(33.333333% - 18px);
}
@media (max-width: 992px) {
  .umb-campaign-stories__container .umb-campaign-story {
    flex: unset;
    max-width: 100%;
  }
}
.umb-campaign-stories__container .umb-campaign-story a {
  text-decoration: none;
}
.umb-campaign-stories__container .umb-campaign-story img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3/2;
}
.umb-campaign-stories__container .umb-campaign-story__content {
  padding: 20px;
}
.umb-campaign-stories__container .umb-campaign-story__content h3 {
  font-size: 24px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.umb-campaign-desc {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}
.umb-campaign-desc h3 {
  font-size: 34px;
  font-weight: 500;
}

.umb-campaign__factsandfigures {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  background-color: #003179;
  color: #fff;
  text-align: center;
}
.umb-campaign__factsandfigures h2 {
  color: inherit;
}
.umb-campaign__factsandfigures .umb-campaign__factsandfigures__container {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.umb-campaign__factsandfigures .umb-campaign__factsandfigures__container__fact {
  flex: 1 1 calc(33.333333% - 24px);
  background-color: #1b58ad;
  border-radius: 12px;
  padding: 20px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .umb-campaign__factsandfigures .umb-campaign__factsandfigures__container__fact {
    flex: 1 1 100%;
  }
}
.umb-campaign__factsandfigures .umb-campaign__factsandfigures__container__fact p {
  margin: 0;
  line-height: 1.2;
}
.umb-campaign__factsandfigures .umb-campaign__factsandfigures__container__fact p span {
  color: #ffed00;
  font-weight: 700;
  font-size: 32px;
  display: block;
  padding: 10px 0;
}
.umb-campaign__factsandfigures .umb-campaign__factsandfigures__container__fact p span b {
  display: block;
}

.umb-download-archive {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  background-color: #004494;
  color: #fff;
  text-align: center;
}
.umb-download-archive h3 {
  color: inherit;
  font-size: 34px;
  margin-bottom: 20px;
}
.umb-download-archive p {
  font-size: 22px;
  line-height: 1.16;
  margin-bottom: 20px;
}

.made-of-us-pages #madeOfUs-section-video .section-video-route {
  z-index: 1;
  position: absolute;
  pointer-events: none;
  top: -130px !important;
  left: -62px !important;
  height: 150%;
}

#madeOfUs-section-video .section-video-binoculars {
  z-index: 2;
  position: absolute;
  pointer-events: none;
  width: 80px;
  top: 13px;
  left: -42px;
}

#madeOfUs-section-video .section-video-camera {
  z-index: 2;
  position: absolute;
  pointer-events: none;
  width: 70px;
  bottom: 30px;
  right: -15px;
}

#madeOfUs-section-video .section-video-glasses {
  z-index: 2;
  position: absolute;
  pointer-events: none;
  width: 70px;
  bottom: -73px;
  left: 67px;
}

#madeOfUs-section-video .section-video-marker {
  z-index: 2;
  position: absolute;
  pointer-events: none;
  width: 140px;
  top: -80px;
  right: -21px;
}

.umb-campaign__cta-desc {
  position: relative;
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}
.umb-campaign__cta-desc .narrow-container {
  display: flex;
  gap: 24px;
}
@media (max-width: 768px) {
  .umb-campaign__cta-desc .narrow-container {
    flex-direction: column;
  }
}
.umb-campaign__cta-desc .narrow-container > div {
  flex: 1 1 50%;
  perspective: 400px;
}
@media (max-width: 768px) {
  .umb-campaign__cta-desc .narrow-container > div {
    flex: 1 1 100%;
  }
}
.umb-campaign__cta-desc .narrow-container .umb-campaign__cta-desc__copy .note {
  font-size: 12px;
  line-height: 1.4;
}

.scene {
  width: 100%;
  perspective: 400px;
}

.cube {
  --z: 50px;
  --z2: -50px;
  width: 100%;
  min-height: 100px;
  position: relative;
  transform-style: preserve-3d;
  transform: translateZ(var(--z));
  animation: rect-animation 10s ease infinite alternate;
}

.cube__face {
  position: absolute;
  width: 100%;
  min-height: 100px;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cube__face:nth-child(1) {
  background-color: #d33774;
  transform: rotateX(0deg) translateZ(var(--z));
}
.cube__face:nth-child(2) {
  background-color: #f09336;
  transform: rotateX(90deg) translateZ(var(--z));
}
.cube__face:nth-child(3) {
  background-color: #f4b73f;
  transform: rotateX(180deg) translateZ(var(--z));
}
.cube__face:nth-child(4) {
  background-color: #62d692;
  transform: rotateX(-90deg) translateZ(var(--z));
}

@keyframes rect-animation {
  0% {
    transform: translateZ(var(--z2)) rotateX(0deg);
  }
  20% {
    transform: translateZ(var(--z2)) rotateX(0deg);
  }
  25% {
    transform: translateZ(var(--z2)) rotateX(90deg);
  }
  45% {
    transform: translateZ(var(--z2)) rotateX(90deg);
  }
  50% {
    transform: translateZ(var(--z2)) rotateX(180deg);
  }
  70% {
    transform: translateZ(var(--z2)) rotateX(180deg);
  }
  75% {
    transform: translateZ(var(--z2)) rotateX(270deg);
  }
  100% {
    transform: translateZ(var(--z2)) rotateX(270deg);
  }
}
.svg-decoration {
  pointer-events: none;
  opacity: 0.3;
}

.bg-light-gray {
  background-color: #f2f2f2;
}

#cta-made-of-us-website {
  background: url(https://webalkans.eu/wp-content/uploads/2023/03/made-of-us-svg-bg.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
}

@media (max-width: 1200px) {
  #cta-made-of-us-website {
    background-position: center center;
  }
}
.made-of-us-rounded-circle {
  background: linear-gradient(45deg, rgba(255, 131, 5, 0.75), rgba(255, 173, 5, 0.75), rgba(129, 208, 96, 0.75), rgba(129, 208, 96, 0.75), rgba(129, 208, 96, 0.75));
  background-size: 200%;
  animation: madeOfUsHeader 5s ease infinite;
  border-radius: 50%;
  width: 100%;
  max-width: 360px;
  overflow: hidden;
}

.made-of-us-rounded-circle img {
  width: 100%;
  height: auto;
  display: block;
  padding: 30px 55px;
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .made-of-us-rounded-circle {
    min-height: 0;
  }
}
.landscape-1 {
  position: absolute;
  left: -75px;
  bottom: -30px;
  max-width: 200px;
}

.landscape-2 {
  position: absolute;
  top: -50px;
  right: -145px;
  max-width: 250px;
}

@media (max-width: 576px) {
  .made-of-us-rounded-circle {
    max-width: 250px;
  }
  .made-of-us-rounded-circle img {
    padding: 35px 50px;
  }
  .landscape-1 {
    left: 8%;
    bottom: -30px;
    max-width: 150px;
  }
  .landscape-2 {
    top: -50px;
    right: 5%;
    max-width: 160px;
  }
}
.couples img {
  max-width: 200px;
  filter: drop-shadow(0 0.5rem 1rem rgba(0, 0, 0, 0.15));
  position: relative;
  z-index: 3;
  transition: all 0.5s ease-in-out 0s;
}

.couples:hover {
  position: relative;
  z-index: 4;
}

.couple-1 img {
  transform: rotate(340deg);
}

.couple-1 img:hover {
  transform: rotate(360deg) scale(1.5);
}

.couple-2 img {
  transform: rotate(350deg);
}

.couple-2 img:hover {
  transform: rotate(360deg) scale(1.5);
}

.couple-3 img:hover {
  transform: scale(1.5);
}

.couple-4 img {
  transform: rotate(10deg);
}

.couple-4 img:hover {
  transform: rotate(0deg) scale(1.5);
}

.couple-5 img {
  transform: rotate(340deg);
}

.couple-5 img:hover {
  transform: rotate(360deg) scale(1.5);
}

.couple-6 img {
  transform: rotate(20deg);
}

.couple-6 img:hover {
  transform: rotate(0deg) scale(1.5);
}

.position-relative {
  position: relative;
}

.float-right {
  float: right !important;
}

.custom-dropdown__current {
  position: relative;
  z-index: 10;
  background-color: #003179;
  color: #fff;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  border-radius: 12px;
  cursor: pointer;
  width: 285px;
  transition-delay: 0.4s;
}
.custom-dropdown__current svg {
  margin-left: 24px;
  transition: all 0.4s ease;
}
.custom-dropdown__dropdown {
  position: absolute;
  z-index: 9;
  display: none;
  width: 285px;
  background-color: #003179;
  color: #fff;
  padding: 24px;
  border-radius: 0 0 12px 12px;
  max-height: 400px;
  overflow-x: hidden;
  overflow-y: auto;
}
.custom-dropdown__dropdown .custom-dropdown__value {
  padding: 3px 0;
}
.custom-dropdown__dropdown label {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
}
.custom-dropdown.open svg {
  transform: rotate(45deg);
}
.custom-dropdown.open .custom-dropdown__current {
  border-radius: 12px 12px 0 0;
  transition-delay: 0s;
}

.ambassadors-dropdown {
  text-align: left;
  margin: auto;
  display: inline-block;
}

.lorassy_borderbt {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.campaign__heroes-slider__slide .campaign__heroes-slider__video-preview {
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.campaign__heroes-slider__slide .campaign__heroes-slider__video-preview .play {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.campaign__heroes-slider__slide .campaign__heroes-slider__video-preview .play img {
  transition: all 0.4s ease;
}
.campaign__heroes-slider__slide .campaign__heroes-slider__video-preview .play:hover img {
  transform: scale(1.1);
}
.campaign__heroes-slider__slide .content {
  text-align: left;
  padding-top: 12px;
}

.page-id-1338 .hero-yea {
  background-image: url(https://webalkans.eu/wp-content/uploads/2022/01/Cover_Header_YEA_2161x811px.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 12px;
  overflow: hidden;
}

.hero-yea {
  background-image: linear-gradient(90deg, #ff6e3b 20%, #58b1bf 80%);
}

.umb-section--citation-slider {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}
.umb-section--citation-slider .swiper-slide .narrow-container {
  display: flex;
  gap: 80px;
}
@media (max-width: 992px) {
  .umb-section--citation-slider .swiper-slide .narrow-container {
    flex-direction: column-reverse;
    gap: 24px;
  }
}
.umb-section--citation-slider .swiper-slide .narrow-container .slide-author {
  width: 250px;
  flex: 0 1 250px;
}
@media (max-width: 992px) {
  .umb-section--citation-slider .swiper-slide .narrow-container .slide-author {
    flex: 1 1 100%;
    align-self: flex-end;
  }
}
@media (max-width: 500px) {
  .umb-section--citation-slider .swiper-slide .narrow-container .slide-author {
    width: 100%;
  }
}
.umb-section--citation-slider .swiper-slide .narrow-container .slide-author h4 {
  font-size: 28px;
  font-weight: 600;
}
.umb-section--citation-slider .swiper-slide .narrow-container .slide-author p {
  font-size: 14px;
}
.umb-section--citation-slider .swiper-slide .narrow-container blockquote {
  flex: 1;
}
.umb-section--citation-slider .swiper > .narrow-container {
  display: flex;
}
@media (max-width: 992px) {
  .umb-section--citation-slider .swiper > .narrow-container {
    justify-content: flex-end;
  }
}
.umb-section--citation-slider .swiper > .narrow-container .swiper-controls {
  width: 250px;
  height: 50px;
  position: relative;
}
@media (max-width: 500px) {
  .umb-section--citation-slider .swiper > .narrow-container .swiper-controls {
    width: 100%;
    margin-top: 12px;
  }
}
.umb-section--citation-slider .swiper > .narrow-container .swiper-controls .swiper-scrollbar {
  top: 0;
  left: 0;
  right: 0;
}
.umb-section--citation-slider .swiper > .narrow-container .swiper-controls .swiper-arrows {
  position: absolute;
  top: 30px;
  right: 0;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}
.umb-section--citation-slider .swiper > .narrow-container .swiper-controls .swiper-arrows .swiper-button-prev,
.umb-section--citation-slider .swiper > .narrow-container .swiper-controls .swiper-arrows .swiper-button-next {
  position: static;
}
.umb-section--citation-slider .swiper > .narrow-container .swiper-controls .swiper-arrows .swiper-button-prev::after,
.umb-section--citation-slider .swiper > .narrow-container .swiper-controls .swiper-arrows .swiper-button-next::after {
  content: none;
}
.umb-section--citation-slider .swiper > .narrow-container .swiper-controls .swiper-arrows .swiper-button-prev svg,
.umb-section--citation-slider .swiper > .narrow-container .swiper-controls .swiper-arrows .swiper-button-next svg {
  width: 15px;
  height: auto;
}
.umb-section--citation-slider .swiper > .narrow-container .swiper-controls .swiper-arrows .swiper-button-prev svg {
  transform: rotate(180deg);
}

.section--countdown {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  background-color: #ff6e3b;
  color: #fff;
  text-align: center;
}
.section--countdown h2 {
  color: #fff;
}
.section--countdown .complementary-button {
  background-color: #fff;
  color: #1f2a37;
}

.section--block-image {
  padding-top: 64px;
}
.section--block-image .image-slider img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 12px;
}
.section--block-image .swiper-arrows {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  gap: 2px;
  justify-content: flex-end;
  align-items: center;
}
.section--block-image .swiper-arrows .swiper-button-prev,
.section--block-image .swiper-arrows .swiper-button-next {
  position: static;
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.7);
}
.section--block-image .swiper-arrows .swiper-button-prev::after,
.section--block-image .swiper-arrows .swiper-button-next::after {
  content: none;
}
.section--block-image .swiper-arrows .swiper-button-prev svg,
.section--block-image .swiper-arrows .swiper-button-next svg {
  width: 15px;
  height: auto;
}
.section--block-image .swiper-arrows .swiper-button-prev svg path,
.section--block-image .swiper-arrows .swiper-button-next svg path {
  fill: #fff;
}
.section--block-image .swiper-arrows .swiper-button-prev svg {
  transform: rotate(180deg);
}

.block-image--with-list {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  background-color: #e9edff;
}
.block-image--with-list ul.list {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  padding: 0;
}
.block-image--with-list ul.list li.list__item {
  flex: 1 1 calc(33.33333% - 18px);
  max-width: calc(33.33333% - 18px);
  background-color: #fff;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
@media (max-width: 992px) {
  .block-image--with-list ul.list li.list__item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.block-image--with-list ul.list li.list__item img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: contain;
  margin-bottom: 30px;
}
.block-image--with-list ul.list li.list__item h3 {
  font-size: 16px;
  font-weight: 600;
}
.block-image--with-list ul.list li.list__item p {
  font-size: 15px;
  margin: 0;
}
.block-image--with-list .block-image__button-wrapper {
  text-align: center;
}
.block-image--with-list .block-image__button-wrapper a.button {
  background: transparent linear-gradient(90deg, #ff6e3b 0%, #58b1bf 100%);
}

.post-type-archive-yea-blog .subscribe,
.single-yea .subscribe,
.single-yea-event .subscribe,
.page-id-1338 .subscribe,
.page-id-18601 .subscribe,
.page-id-568233 .subscribe,
.page-id-851308 .subscribe,
.page-id-24 .subscribe,
.page-id-22 .subscribe,
.page-id-985 .subscribe {
  background: transparent linear-gradient(90deg, #ff6e3b 0%, #58b1bf 100%);
}
.post-type-archive-yea-blog .subscribe__desc,
.single-yea .subscribe__desc,
.single-yea-event .subscribe__desc,
.page-id-1338 .subscribe__desc,
.page-id-18601 .subscribe__desc,
.page-id-568233 .subscribe__desc,
.page-id-851308 .subscribe__desc,
.page-id-24 .subscribe__desc,
.page-id-22 .subscribe__desc,
.page-id-985 .subscribe__desc {
  color: #fff;
}

.ambassador-yea {
  background-color: #e9edff;
  border-radius: 12px;
  padding: 64px 0 0 0;
  margin-bottom: 64px;
}
.ambassador-yea img {
  width: 500px;
  max-width: 80%;
}

.ambassadors-intro {
  padding-bottom: 64px;
  border-bottom: solid 1px #e5e7eb;
}

.ambassadors-yea {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  text-align: center;
}

.ambassadors-yea__list {
  margin-top: 64px;
}
.ambassadors-yea__list__content {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.ambassadors-yea__list__content .ambassadors-yea__item {
  flex: 1 1 calc(25% - 18px);
  max-width: calc(25% - 18px);
  text-align: left;
  text-decoration: none;
}
@media (max-width: 992px) {
  .ambassadors-yea__list__content .ambassadors-yea__item {
    flex: 1 1 calc(50% - 18px);
    max-width: calc(50% - 18px);
  }
}
@media (max-width: 768px) {
  .ambassadors-yea__list__content .ambassadors-yea__item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.ambassadors-yea__list__content .ambassadors-yea__item .ambassadors-yea__image {
  width: 100%;
  aspect-ratio: 1;
  background-position: center center;
  background-repeat: no-repeat;
  margin-bottom: 24px;
  background-size: cover;
  border-radius: 12px;
}
.ambassadors-yea__list__content .ambassadors-yea__item .ambassadors-yea__name {
  font-size: 20px;
  font-weight: 500;
}
.ambassadors-yea__list__content .ambassadors-yea__item .ambassadors-yea__country {
  color: #4e79d9;
}
.ambassadors-yea__list .ambassador-socials {
  display: flex;
  gap: 15px;
  color: #9ca3af;
}
.ambassadors-yea__list a {
  text-decoration: none;
}

.ambassadors-yea-filters {
  margin-top: 30px;
}

.yea-of-the-month-hero {
  background: transparent linear-gradient(90deg, #ff6e3b 0%, #58b1bf 100%);
  border-radius: 12px;
  padding: 120px 0 0 0;
  margin-bottom: 64px;
}
.yea-of-the-month-hero img {
  width: 700px;
  max-width: 80%;
}
.yea-of-the-month-hero.small-image {
  padding: 80px 0;
}
.yea-of-the-month-hero.small-image img {
  width: 400px;
  max-width: 60%;
}

.yea-event-intro {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.page-template-page-yea-events .post__content {
  padding: 0;
  border: none;
}
.page-template-page-yea-events .post-list {
  gap: 24px;
  justify-content: flex-start;
}
.page-template-page-yea-events .post-list .yea-event-card {
  background-color: #e9edff;
  flex: 1 1 calc(33% - 18px);
  max-width: calc(33% - 18px);
  border-radius: 12px;
  overflow: hidden;
}
.page-template-page-yea-events .post-list .yea-event-card .yea-event-card__image {
  aspect-ratio: 3/2;
  background-repeat: no-repeat;
  background-size: cover;
}
.page-template-page-yea-events .post-list .yea-event-card .yea-event-card__content {
  padding: 24px;
}
.page-template-page-yea-events .post-list .yea-event-card a {
  text-decoration: none;
}
.page-template-page-yea-events .post__pagination {
  margin-top: 64px;
  margin-bottom: 64px;
}
.page-template-page-yea-events .post_footer {
  padding: 0;
}

.umb-ambassadors-intro {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  background-color: #e9edff;
}
.umb-ambassadors-intro .umb-ambassador h3 {
  font-size: 34px;
  font-weight: 600;
  margin-top: 30px;
}
.umb-ambassadors-intro .umb-ambassador a {
  color: inherit;
}
.umb-ambassadors-intro .umb-ambassador__image {
  position: relative;
  width: 100%;
  aspect-ratio: 614/565;
}
.umb-ambassadors-intro .umb-ambassador__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.umb-ambassadors-intro .umb-ambassador__image .play {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}

.ambassadors-text-section {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.section-border {
  border-bottom: solid 2px #e5e7eb;
}

.umb-podcast .umb-card__title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 65px;
}

.hidden-ambassador {
  display: none;
}

.umb-whats-in-it-for-you {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}
.umb-whats-in-it-for-you h2 {
  margin-bottom: 30px;
  font-size: 34px;
}
.umb-whats-in-it-for-you__card {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
}
.umb-whats-in-it-for-you__card__image {
  aspect-ratio: 563/453;
}
.umb-whats-in-it-for-you__card__image img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.umb-whats-in-it-for-you__card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}
.umb-whats-in-it-for-you__card__content .title-wrapper {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 40px;
}
.umb-whats-in-it-for-you__card__content .title-wrapper h3 {
  margin: 0;
}
.umb-whats-in-it-for-you__card__content .title-wrapper .title-container p {
  margin: 0;
}
.umb-whats-in-it-for-you__card__content ul {
  list-style: none;
  padding: 0;
}
.umb-whats-in-it-for-you__card__content ul li {
  list-style: none;
  display: flex;
  gap: 24px;
}
.umb-whats-in-it-for-you__card__content ul li svg {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
}
.umb-whats-in-it-for-you__card__content ul li p {
  flex: 1;
}
.umb-whats-in-it-for-you__card__content .note {
  font-size: 14px;
}
.umb-whats-in-it-for-you__card__content.align-top {
  justify-content: flex-start;
}

.green-blue-bg {
  background-color: #58b1bf;
  color: #fff;
}
.green-blue-bg h2,
.green-blue-bg h3 {
  color: #fff;
}
.green-blue-bg .umb-whats-in-it-for-you__card {
  background-color: #68c5d4;
}

.umb-selection-process .text-center > p > a {
  color: #004494;
}
.umb-selection-process .accordion .card {
  user-select: none;
  background-color: #fff;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 12px;
}
.umb-selection-process .accordion .card .card-header > h2 > div {
  display: flex;
  gap: 24px;
  position: relative;
}
.umb-selection-process .accordion .card .card-header > h2 > div .accordion-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  transform: rotate(-90deg);
  transition: transform 0.4s ease;
}
.umb-selection-process .accordion .card .card-header > h2 > div.collapsed .accordion-arrow {
  transform: rotate(0deg);
}
.umb-selection-process .accordion .card .card-body {
  padding-top: 40px;
}
.umb-selection-process .accordion__disclaimer {
  margin: 40px 20px 64px;
  text-align: center;
}
.umb-selection-process .accordion__disclaimer a {
  color: #004494;
  font-weight: 600;
}

.umb-once-you-become-yea {
  border-top: solid 1px #d1d5db;
  padding-top: 64px;
}
.umb-once-you-become-yea__content {
  margin-top: 64px;
}
.umb-once-you-become-yea__image {
  aspect-ratio: 614/454;
}
.umb-once-you-become-yea__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 75%;
  border-radius: 12px;
}

.js-archive-yea-events-list .umb-card__title {
  min-height: 65px;
}

.umb-section--citation-slider blockquote {
  position: relative;
  padding-left: 100px;
  margin: 0;
  font-size: 20px;
  color: inherit;
}
@media (max-width: 500px) {
  .umb-section--citation-slider blockquote {
    padding-left: 60px;
  }
}
.umb-section--citation-slider blockquote::before {
  content: "“";
  font-size: 180px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: -60px;
  color: #1f2a37;
}
@media (max-width: 500px) {
  .umb-section--citation-slider blockquote::before {
    font-size: 80px;
    top: -20px;
  }
}

.umb-faq-img {
  position: relative;
}
.umb-faq-img img {
  width: 100%;
  aspect-ratio: 16/8;
  object-fit: cover;
  object-position: center 38%;
  border-radius: 12px;
}

.umb-faq .faq__list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.umb-faq .faq__list li {
  background-color: #fff;
  margin-bottom: 24px;
  border-radius: 12px;
  padding: 24px;
}
.umb-faq .faq__list li h3 {
  font-size: 20px;
  color: #1f2a37;
  font-weight: 600;
}
.umb-faq .faq__list li p {
  font-size: 16px;
  color: #4b5563;
  margin: 0;
}
.umb-faq .faq__disclaimer {
  font-size: 20px;
  font-weight: 700;
  padding: 50px 0;
  margin: 0;
  color: #004494;
}

.single-ambassador {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  text-align: center;
}
.single-ambassador .single-ambassador-yea__image {
  aspect-ratio: 1;
}
.single-ambassador .single-ambassador-yea__image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.single-ambassador .single-ambassador-yea__name {
  color: #1f2a37;
  font-size: 24px;
  font-weight: 600;
  margin-top: 12px;
}
.single-ambassador .single-ambassador-yea__country {
  font-size: 16px;
  color: #4e79d9;
}
.single-ambassador .single-ambassador-yea__socials a {
  color: #9ca3af;
}
.single-ambassador .single-ambassador-yea__socials a i {
  font-size: 24px;
}
.single-ambassador .single-ambassador-yea__votes {
  background-color: #ff6e3b;
  color: #fff;
  aspect-ratio: 1;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.single-ambassador .single-ambassador-yea__votes__label {
  font-size: 16px;
  font-weight: 600;
}
.single-ambassador .single-ambassador-yea__votes__value {
  font-size: 64px;
  font-weight: 600;
  line-height: 1;
}
.single-ambassador .single-ambassador-yea__interests {
  margin-top: 12px;
}
.single-ambassador .single-ambassador-yea__interests__title {
  font-size: 24px;
}

.single-ambassador-bio {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  background-color: #f3f4f6;
}
.single-ambassador-bio h3 {
  font-size: 24px;
  margin-bottom: 12px;
}
.single-ambassador-bio .mejs-video {
  max-height: 70vh;
  overflow: hidden;
}

.umb-event-content {
  padding-bottom: 64px;
}
.umb-event-content__image {
  aspect-ratio: 3/2;
}
.umb-event-content__image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  margin-bottom: 24px;
  object-fit: cover;
}

.page-id-1338 .block-image__content {
  width: 100%;
}

.cookies {
  width: 100%;
  padding: 1.25rem 1.125rem;
  position: fixed;
  bottom: 0;
  background-color: #13468e;
  z-index: 10000;
  color: #fff;
  transition: all 0.2s ease-in-out 0s;
  transform: translateY(100%);
}
.cookies h4 {
  color: inherit;
}

.has-refused-cookies .cookies,
.has-accepted-cookies .cookies {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.has-not-accepted-cookies .cookies {
  transform: translateY(0);
}

@media (min-width: 1024px) and (orientation: landscape) {
  .cookies {
    padding: 1.25rem 11.25rem;
  }
}
.cookies__buttons {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

@media (min-width: 768px) {
  .cookies__buttons {
    flex-direction: row;
  }
}
.cookies__close {
  margin: 0.625rem 0;
  padding: 0 0.9375rem;
  font-size: 1rem;
  color: #fff;
  height: 2.5rem;
  border: 2px solid #fff;
  cursor: pointer;
  -webkit-appearance: none;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #13468e;
  transition: all 0.2s ease-in-out 0s;
}

@media (min-width: 768px) {
  .cookies__close {
    margin: 0 0.625rem;
  }
}
.no-touch .cookies__close:hover {
  background-color: #fff;
  color: #13468e;
}

.cookies__title {
  margin-bottom: 0.9375rem;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
}

.cookies__text {
  margin-bottom: 1.25rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.2;
}

.cookies__text a {
  color: #fff !important;
  text-decoration: underline;
}

.cookies__text a:visited {
  color: #fff !important;
}

.wpcf7-form .col-lg-6 {
  display: flex;
  flex-direction: column;
}
.wpcf7-form .col-lg-6 input {
  width: 100%;
}
.wpcf7-form .form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
.wpcf7-form textarea.form-control {
  height: auto;
}
.wpcf7-form .mt-3.mb-0 {
  text-align: center;
}
.wpcf7-form .mt-3.mb-0 input[type=submit] {
  border: none;
  font-size: 16px;
  padding: 12px 24px;
  display: inline-block;
  border-radius: 44px;
  text-decoration: none;
  color: inherit;
  background-color: #004494;
  color: #fff;
  cursor: pointer;
}
.wpcf7-form .mt-3.mb-0 input[type=submit][disabled] {
  opacity: 0.2;
}

.wpcf7-list-item [type=checkbox] {
  position: static;
  opacity: 1;
  width: auto;
  height: auto;
  margin-right: 10px;
}

html {
  scroll-behavior: smooth;
}

.social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #001540;
  width: 48px;
  height: 48px;
  padding: 12px;
  transition: all 0.3s ease-in-out 0s;
}

.social-icon:hover {
  opacity: 0.93;
}

.linear-gradient {
  background-image: url(https://webalkans.eu/wp-content/uploads/2024/10/travellers_hero_bg.png) !important;
  background-size: cover !important;
}

.blurred-bg {
  background-image: url(https://webalkans.eu/wp-content/uploads/2024/10/travellers_section_bg.png) !important;
  background-size: cover !important;
}

.teams {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 1rem;
}

.teams-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  border-radius: 12px;
}

.team-card {
  display: flex;
  background-color: #f2efef;
  width: 80%;
}

.team-card-col {
  display: flex;
  padding: 2rem;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.team-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #012064;
}

.team-card-description {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: #012064;
  text-align: justify;
}

.team-card-socials {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: auto;
  display: none;
}

.lg-h-300 {
  height: 300px;
}

.blurred-container {
  display: flex;
}

.blurred-container-left {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 1rem;
}

.m-team-desc {
  margin: 1rem 2rem 0 2rem;
}

.k-pill {
  padding: 12px 20px;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  border-radius: 32px;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.k-pill.blue {
  background-color: #003395;
  color: #fff;
}

.k-pill.yellow {
  background-color: #ffc107;
  color: #002064;
}

.k-pill:hover {
  opacity: 0.9;
  text-decoration: none;
}

.pair-blue-1 {
  width: 100%;
  scale: 1.15;
  translate: -4px -19px;
  height: auto;
}

.pair-blue-2 {
  width: 100%;
  scale: 1.07;
  translate: -4px -6px;
  height: auto;
}

.pair-blue-3 {
  width: 100%;
  scale: 1.07;
  translate: 0px -4px;
  height: auto;
}

.pair-yellow-1 {
  width: 100%;
  scale: 1.17;
  translate: 0px -16px;
  height: auto;
}

.pair-yellow-3 {
  width: 100%;
  scale: 1.2;
  translate: 0px -28px;
  height: auto;
}

.pair-yellow-2 {
  width: 100%;
  scale: 1.28;
  translate: 32px -40px;
  height: auto;
}

.lines-bg {
  background-image: url(https://webalkans.eu/wp-content/uploads/2024/10/lines_bg.png) !important;
  background-size: contain !important;
}

.team-card-col-pl {
  padding-left: 4rem;
}

.team-card-col-pr {
  padding-right: 4rem;
}

.team-card-image-container {
  position: relative;
}

.k-pills-container {
  display: flex;
  justify-content: space-evenly;
  overflow-x: auto;
  word-wrap: normal;
  gap: 1rem;
}

@media (max-width: 576px) {
  .k-pills-container {
    flex-wrap: wrap;
    justify-content: center;
    overflow: hidden;
  }
  .team-card-image-container {
    order: -1;
  }
  .teams {
    flex-direction: column;
  }
  .team-card {
    width: 100%;
    flex-direction: column;
  }
  .team-card-col {
    flex-direction: column;
  }
  .blurred-container {
    flex-direction: column;
  }
  .blurred-container-left {
    flex-direction: column;
    align-items: flex-start;
  }
  .lg-h-300 {
    height: auto;
  }
  .m-team-desc {
    margin: 1rem 1rem 0 1rem;
  }
  .team-card-col-pl {
    padding-left: 2rem;
  }
  .team-card-col-pr {
    padding-right: 2rem;
  }
  .pair-blue-1 {
    width: 100%;
    height: auto;
  }
  .pair-blue-2 {
    width: 100%;
    height: auto;
  }
  .pair-blue-3 {
    width: 100%;
    height: auto;
  }
  .pair-yellow-1 {
    width: 100%;
    height: auto;
  }
  .pair-yellow-2 {
    width: 100%;
    height: auto;
  }
  .pair-yellow-3 {
    width: 100%;
    height: auto;
  }
}
.bg-video-made-of-us {
  vertical-align: bottom;
}

#madeOfUs-section-video {
  background: url("https://webalkans.eu/wp-content/uploads/2021/05/bg-made-of-us-02.png");
  background-size: cover;
  background-position: center;
}

@media (max-width: 767px) {
  #madeOfUs-section-video {
    background: url("https://webalkans.eu/wp-content/uploads/2021/05/bg-made-of-us-02.png");
    background-size: 300%;
    background-position: center;
  }
}
.made-of-us-pages #madeOfUs-section-video .section-video-route {
  z-index: 1;
  position: absolute;
  pointer-events: none;
  /* top: -93px;
  left: -50px; */
  top: -130px !important;
  left: -62px !important;
  height: 150%;
}

#madeOfUs-section-video .section-video-binoculars {
  z-index: 2;
  position: absolute;
  pointer-events: none;
  width: 80px;
  top: 13px;
  left: -42px;
}

#madeOfUs-section-video .section-video-camera {
  z-index: 2;
  position: absolute;
  pointer-events: none;
  width: 70px;
  bottom: 30px;
  right: -15px;
}

#madeOfUs-section-video .section-video-glasses {
  z-index: 2;
  position: absolute;
  pointer-events: none;
  width: 70px;
  bottom: -73px;
  left: 67px;
}

#madeOfUs-section-video .section-video-marker {
  z-index: 2;
  position: absolute;
  pointer-events: none;
  width: 140px;
  top: -80px;
  right: -21px;
}

@media (max-width: 576px) {
  .made-of-us-pages #madeOfUs-section-video .section-video-route {
    top: -30% !important;
    left: -5% !important;
  }
  #madeOfUs-section-video .section-video-binoculars {
    width: 70px;
    top: -5px;
    left: -36px;
  }
  #madeOfUs-section-video .section-video-camera {
    width: 65px;
    bottom: -2px;
    right: -20px;
  }
  #madeOfUs-section-video .section-video-glasses {
    width: 65px;
    bottom: -65px;
    left: 49px;
  }
  #madeOfUs-section-video .section-video-marker {
    width: 100px;
    top: -67px;
  }
}
.initiary {
  width: 100%;
  height: auto;
  border: 1px solid #ccc;
  object-fit: contain;
}

.influencer-card {
  display: flex;
  background-color: #fff;
  overflow: hidden;
  border-radius: 36px;
  filter: drop-shadow(0 0.5rem 1rem rgba(0, 0, 0, 0.15));
  margin: 2rem 0;
}

.influencer-card-left {
  width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

.influencer-card-left {
  height: 400px;
  width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

.team-person {
  z-index: 6;
  height: 400px;
  width: 400px;
  object-fit: contain;
}

.influencer-card-right {
  padding: 4rem 2rem;
  flex: 1;
}

.influencer-card-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #001540;
  letter-spacing: 0.2mm;
}

.influencer-card-country {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
  background-color: #ffc800;
  width: max-content;
  padding: 8px;
}

.influencer-card-description {
  font-size: 1.2rem;
  line-height: 1.7rem;
  letter-spacing: 0.5px;
}

.influencer-card-socials {
  display: flex;
  justify-content: flex-end;
  margin-right: 2rem;
  gap: 0.5rem;
  margin-top: 1rem;
}

.social-icon {
  border-radius: 50%;
  background-color: #001540;
  width: 48px;
  height: 48px;
  padding: 12px;
  transition: all 0.3s ease-in-out 0s;
}

.social-icon:hover {
  opacity: 0.93;
}

.linear-gradient {
  background-image: url(https://webalkans.eu/wp-content/uploads/2024/10/header_bg.png) !important;
  background-size: cover !important;
}

.backpack {
  z-index: 2;
  position: absolute;
  pointer-events: none;
  width: 80px;
  bottom: 13px;
  left: -42px;
}

.location-pin {
  z-index: 2;
  position: absolute;
  pointer-events: none;
  width: 60px;
  top: -20px;
  right: 10px;
}

.video-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  font-size: 64px;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 576px) {
  .influencer-card {
    flex-direction: column;
    border-radius: 0px;
  }
  .influencer-card-right {
    padding: 2rem 1rem;
  }
  .influencer-card-socials {
    justify-content: center;
  }
  .video-bg-text {
    font-size: 32px;
  }
}
.col-12.col-lg-8.offset-lg-2 {
  position: relative;
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive embed,
.embed-responsive iframe,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.85714%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.newsletter-popup {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out 0s;
  opacity: 0;
  visibility: hidden;
}

.has-newsletter-popup-open .newsletter-popup:not(newsletter-popup--v2) {
  opacity: 1;
  visibility: visible;
}

.has-newsletter-popup-open .newsletter-popup:not(newsletter-popup--v2) .widget {
  pointer-events: all;
}

.newsletter-popup .widget {
  width: 100%;
  padding: 1.25rem;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .newsletter-popup .widget {
    padding: 2.5rem;
  }
}
.show-newsletter-success .newsletter-popup .widget {
  opacity: 0;
  visibility: hidden;
}

.newsletter-popup-content {
  background-color: #fff;
  position: relative;
}

.newsletter-popup-content .title {
  margin-bottom: 1.25rem;
  color: #494a4a;
  font-weight: 700;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.3;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .newsletter-popup-content .title {
    margin-bottom: 3.75rem;
    font-size: 1.625rem;
    line-height: 1.875rem;
  }
}
@media (min-width: 1024px) and (orientation: landscape) {
  .newsletter-popup-content .muField {
    width: 48%;
    display: inline-block;
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 1024px) and (orientation: landscape) {
  .newsletter-popup-content .muField:nth-child(odd) {
    margin-right: 3%;
  }
}
.newsletter-popup-content .muTerms {
  position: initial;
  margin-left: 40px;
}

.newsletter-popup-content input[type=text] {
  width: 100%;
  display: block;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  height: 2.75rem;
  border: 1px solid #ced4da;
  -webkit-appearance: none !important;
  background: #fff;
  border-radius: 0;
  padding: 0.375rem 0.75rem !important;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .newsletter-popup-content input[type=text] {
    height: 2.75rem;
    margin-right: 1.25rem;
    margin-bottom: 0;
    padding: 0.3125rem 0.5rem !important;
  }
}
.newsletter-popup-content input[type=text]:focus {
  box-shadow: none !important;
}

.newsletter-popup-content .muSubmit {
  width: 17.5rem;
  margin: 1.875rem auto;
}

.newsletter-popup-content .muSubmit > input[type=submit] {
  width: 100%;
  text-decoration: none;
  color: #fff !important;
  background-color: #004494;
  border-radius: 6px;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .newsletter-popup-content .muSubmit > input[type=submit] {
    height: 2.75rem;
  }
}
.no-touch .newsletter-popup-content .muSubmit > input[type=submit]:hover {
  background-color: #e48429;
  color: #fff !important;
  text-decoration: none;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
  border-color: #e48429 !important;
}

.no-touch .newsletter-popup-content .muSubmit > input[type=submit]:active {
  background-color: #bf6828;
  color: #fff;
}

.newsletter-popup-close {
  width: 1.5625rem;
  height: 1.5625rem;
  position: absolute;
  cursor: pointer;
  background-image: url("../../../static/images/icons/cross.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  top: -2.1875rem;
  right: 0;
}

.newsletter-success {
  padding: 1.25rem;
  display: none;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .newsletter-success {
    padding: 2.5rem;
  }
}
.newsletter-success .title {
  margin-bottom: 1.25rem;
  color: #494a4a;
  font-weight: 700;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.3;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .newsletter-success .title {
    margin-bottom: 1.875rem;
    font-size: 1.625rem;
    line-height: 1.875rem;
  }
}
.newsletter-success .paragraph {
  font-size: 0.875rem;
  line-height: 1.1;
  text-align: center;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .newsletter-success .paragraph {
    font-size: 1rem;
    line-height: 2.125rem;
  }
}
.show-newsletter-success .newsletter-success {
  opacity: 1;
  visibility: visible;
}

.newsletter-success__icon {
  width: 5.125rem;
  height: 3.6875rem;
  margin: 0 auto 1.875rem;
  background-image: url("../../../static/images/icons/email-notification.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.has-newsletter-popup-v2-open .newsletter-popup.newsletter-popup--v2 {
  opacity: 1;
  visibility: visible;
}

.has-newsletter-popup-v2-open .newsletter-popup.newsletter-popup--v2 .widget {
  pointer-events: all;
}

.newsletter-popup.newsletter-popup--v2 h2 {
  font-size: 2.1875rem;
  font-weight: 700;
}

.newsletter-popup.newsletter-popup--v2 h2.form-title {
  padding: 1.25rem;
}

.newsletter-popup.newsletter-popup--v2 .newsletter-popup-content .form.mailpoet_form {
  padding: 1.25rem;
}

.newsletter-popup.newsletter-popup--v2 .newsletter-popup-content:before {
  display: none;
}

.newsletter-popup-content .subscribeDataTable input {
  margin: 0 1em 0 0;
  position: relative;
  left: unset;
}

.newsletter-popup-content p {
  line-height: 30px;
}

.muTermsCheckbox {
  width: 0;
  height: 0;
  transform: translateY(-42px);
}
.muTermsCheckbox input {
  position: static;
  opacity: 1;
}

img {
  max-width: 100%;
}

body {
  color: #4b5563;
  font-family: "Roboto", sans-serif;
}

h1,
h2,
h3,
h4 {
  color: #1f2a37;
}

a {
  color: inherit;
}
a:hover {
  color: inherit;
}

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

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

.hidden {
  display: none;
}

.umb-header__top {
  background-color: #004494;
  padding-top: 15px;
  padding-bottom: 15px;
}
.umb-header__top .container {
  position: relative;
}
.umb-header__top .funded-by-eu-logo {
  background: white;
  padding: 2px 12px 2px 2px;
  height: 30px;
  position: absolute;
  right: 50px;
  top: -3px;
}

@media (max-width: 768px) {
  .umb-header__top__wrapper {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
  }
}
.umb-header__top__wrapper .funded-by-eu-logo {
  position: static;
  margin-right: 12px;
}

.umb-header__top__wrapper {
  display: flex;
  justify-content: space-between;
}

.umb-social-share__item {
  margin-right: 8px;
  text-decoration: none;
}
.umb-social-share__item img {
  width: auto;
  height: 22px;
}

.umb-header__bottom {
  box-shadow: inset 0 -1px 0px #9fbbff;
  position: relative;
  z-index: 1100;
}
.umb-header__bottom .wpml-ls-legacy-dropdown {
  max-width: 130px;
}
@media (max-width: 1024px) {
  .umb-header__bottom .wpml-ls-legacy-dropdown {
    max-width: 200px;
    padding: 0 0 20px 15px;
  }
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

.newsletter,
.form-popup,
.opportunities,
.country,
.social-share,
.publications,
.videoPlayerOverlay,
.dummy {
  display: none;
}

.block > .wrapper,
.narrow-container {
  width: 933px;
  max-width: 100%;
  margin-inline: auto;
}
@media (max-width: 992px) {
  .block > .wrapper,
  .narrow-container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.narrow-container-2 {
  width: 614px;
  max-width: 100%;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .narrow-container-2 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.block {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

section.white {
  background-color: #fff;
}

section.light-blue {
  background-color: #e9edff;
}

.downmodal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
}
.downmodal-content {
  background-color: #fff;
  position: relative;
  margin: 15% auto;
  padding: 20px 0 4px 20px;
  border: 1px solid #888;
  width: 80%;
  animation-name: animatetop;
  animation-duration: 0.4s;
}
.downmodal-content .card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}
.downmodal-content .card .card-body {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
}
.downmodal-content .card .card-body h5 {
  font-weight: 700;
  font-size: 18px;
}
.downmodal-content .card .card-body p {
  font-style: italic;
}
.downmodal-content .downclose {
  color: #fff;
  float: right;
  font-size: 28px;
  font-weight: bold;
  width: 1.5625rem;
  height: 1.5625rem;
  position: relative;
  cursor: pointer;
  top: -74px;
  right: -19px;
}

.center-aligned-row {
  display: flex;
  justify-content: center;
}

.umb-cards__title.orange-border::before {
  border-color: #ff6e3b;
}

.ellipsis {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.flex-layout {
  display: flex;
  flex-direction: column;
}
.flex-layout > a {
  flex: 1;
}

.not-rounded img {
  border-radius: 0 !important;
}

.umb-flex {
  display: flex;
}

.umb-items-center {
  align-items: center;
}

.umb-gap-full {
  gap: 24px;
}

.umb-gap-half {
  gap: 12px;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .post__country-filters {
    margin-bottom: 0;
  }
}
.post__country-filters {
  padding: 2.1875rem 0;
  background-color: #f8f8f8;
  width: 100%;
  margin-bottom: 1.875rem;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .nav-pills.js-country-filters-pills {
    padding-left: 0;
    padding-right: 0;
    justify-content: space-between;
  }
}
.nav-pills.js-country-filters-pills {
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  position: relative;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.mobile-archive-filters__toggler .mobile-archive-filters__toggler__icon--active {
  display: none;
}

.mobile-archive-filters__toggler .mobile-archive-filters__toggler__icon {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
}

.js-wpv-view-layout {
  display: none;
}

.uppercase {
  text-transform: uppercase;
}

.post-type-archive-publication .umb-card--h .umb-card__image {
  flex: 0 1 auto;
  max-width: 100%;
}

.post-type-archive-story .umb-card__image {
  width: 100%;
  aspect-ratio: 3/2;
}
.post-type-archive-story .umb-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media all and (max-width: 1023px) {
  a.menu-link.mega-menu-link:hover ~ ul li a:after {
    display: none;
  }
  .cta {
    margin-top: 35px !important;
  }
  .nav {
    padding: 20px;
  }
  .mobile-menu-trigger,
  .mobile-menu-header,
  .mobile-menu-back-item {
    display: block;
  }
  .mobile-menu-trigger {
    border: 0;
    padding: 10px 0 10px 10px;
    font-size: 1.2em;
    border-radius: 4px;
  }
  .mobile-menu-header {
    order: -1;
    background: grey;
  }
  .mobile-menu-header a {
    padding: 20px 25px;
    color: #fff;
    visibility: visible;
  }
  .menu-bar {
    display: none !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    width: 100%;
    max-width: 87%;
    overflow-x: hidden;
    transition: left 0.3s;
    box-shadow: 1px 0px 2px 0px rgba(0, 0, 0, 0.25);
    z-index: 98;
  }
  .menu-bar > li > [aria-haspopup=true] ~ ul {
    display: flex;
    flex-direction: column;
    background: #fff;
    position: absolute;
    left: 100%;
    top: 0;
    max-height: 100vh;
    width: 100%;
    transition: left 0.3s;
    bottom: 0;
  }
  .menu-bar > li > [aria-haspopup=true] ~ ul > li > [aria-haspopup=true] ~ ul a {
    padding-left: 40px;
  }
  .menu-bar > li > [aria-haspopup=true] ~ ul > li > [aria-haspopup=true] ~ ul > li > [aria-haspopup=true] ~ ul a {
    padding-left: 80px;
  }
  .menu-bar > li > [aria-haspopup=true] ~ ul [aria-haspopup=true] {
    color: #12468e;
  }
  .menu-bar > li > [aria-haspopup=true] ~ ul [aria-haspopup=true] ~ ul {
    max-height: 0px;
    transform-origin: top;
    transform: scaleY(0);
    transition: max-height 0.1s;
  }
  .mega-menu-content {
    padding: 20px 25px;
  }
  .mobile-menu-back-item {
    order: -1;
  }
  .mobile-menu-back-item a {
    background: #d9d9d9;
    color: #2a2a2a;
    max-height: calc(1.4em + 40px);
    margin-top: calc(0px - (1.4em + 40px));
    pointer-events: none;
  }
  .mobile-menu-back-item a:before {
    content: "";
    width: 14px;
    height: 12px;
    background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/1397521/arrowLeft.svg#default");
    background-size: 14px;
    margin-right: 10px;
    display: inline-block;
  }
  .mobile-menu-trigger.is-active ~ ul {
    left: 0;
    background-color: #fff;
    padding: 160px 40px 40px 40px;
  }
  .menu-bar:hover,
  .menu-bar:focus-within {
    left: 0;
  }
  .menu-bar > li > [aria-haspopup=true]:focus ~ ul {
    left: 0;
  }
  .menu-bar > li > [aria-haspopup=true] ~ ul {
    margin-top: calc(1.4em + 40px);
  }
  .menu-bar > li > [aria-haspopup=true] ~ ul:hover,
  .menu-bar > li > [aria-haspopup=true] ~ ul:focus-within {
    left: 0;
  }
  .menu-bar > li > [aria-haspopup=true] ~ ul [aria-haspopup=true]:focus ~ ul {
    max-height: 500px;
    animation: dropdown 0.3s forwards;
  }
  .menu-bar > li > [aria-haspopup=true] ~ ul li:focus-within > [aria-haspopup=true] ~ ul {
    max-height: 500px;
    transform: scaleY(1);
    z-index: 2;
    top: 0;
    color: #fff !important;
  }
  .menu-bar > li:focus-within ~ .mobile-menu-header a {
    visibility: hidden;
  }
}
@media (max-width: 575px) {
  .nav {
    padding: 0;
  }
}
.language-switcher {
  display: none;
}
@media (min-width: 1024px) {
  .language-switcher {
    display: block;
  }
}

.hamburger {
  display: none;
  color: #376bc7;
  font-size: 30px;
}
@media (max-width: 1023px) {
  .hamburger {
    display: block;
  }
}

.hero__content img {
  border-radius: 12px;
  width: 100%;
  height: auto;
}

.umb-cards__title > p {
  display: inline;
}

@media (max-width: 600px) {
  .post-type-archive-publication .umb-card--h {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .post-type-archive-publication .umb-card--h .umb-card__image {
    display: flex;
  }
}

.post-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.post__content__wrapper {
  margin: 0 auto;
}

.js-newsletter-popup-open {
  font-weight: 600;
}

.link-none {
  text-decoration: none;
  user-select: none;
}

.wpml-ls-legacy-dropdown a.wpml-ls-item-toggle {
  border-radius: 4px;
}

.grey-bg {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  background-color: #f3f4f6;
}

.disable-aspect-ratio {
  aspect-ratio: unset;
}

.umb-ellipsis {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  min-width: 0;
  max-width: 190px;
}

.story-swiper {
  padding: 50px 0;
  border-radius: 12px;
  overflow: hidden;
}
.story-swiper .swiper-slide {
  aspect-ratio: 3/2;
}
.story-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-swiper .swiper-nav {
  --swiper-theme-color: #fff;
  --swiper-navigation-size: 18px;
  display: flex;
  z-index: 999;
  position: absolute;
  gap: 5px;
  bottom: 0;
  right: 0;
}
.story-swiper .swiper-nav div {
  position: static;
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.5);
}

.loader-overlay {
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  transition: all 0.2s ease-in-out 0s;
  opacity: 0;
  visibility: hidden;
  z-index: 90;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-overlay.is-loading {
  opacity: 1;
  visibility: visible;
}

.loader {
  width: 3.75rem;
  height: 3.75rem;
  margin: 0 0.9375rem;
  background-color: transparent;
  border-radius: 50%;
  transition: 0.2s ease-in-out 0s;
  position: relative;
}

.loader:after {
  content: "";
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
}

.safari .loader:after {
  border: 1px solid;
}

.loader--orange:after {
  animation: loading--orange 1s ease-out forwards infinite;
  animation-delay: 0s;
}

.loader--blue:after {
  animation: loading--blue 1s ease-out forwards infinite;
  animation-delay: 0.4s;
}

.loader--white:after {
  animation: loading--white 1s ease-out forwards infinite;
  animation-delay: 0.8s;
}

@keyframes loading--orange {
  0% {
    border: 0 solid #e48429;
  }
  20% {
    border: 0.625rem solid #e48429;
    transform: translate(-50%, -50%) scale(0);
  }
  80% {
    border: 0.625rem solid #e48429;
  }
  100% {
    border: 0 solid #e48429;
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes loading--blue {
  0% {
    border: 0 solid #13468e;
  }
  20% {
    border: 0.625rem solid #13468e;
    transform: translate(-50%, -50%) scale(0);
  }
  80% {
    border: 0.625rem solid #13468e;
  }
  100% {
    border: 0 solid #13468e;
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes loading--white {
  0% {
    border: 0 solid #fff;
  }
  20% {
    border: 0.625rem solid #fff;
    transform: translate(-50%, -50%) scale(0);
  }
  80% {
    border: 0.625rem solid #fff;
  }
  100% {
    border: 0 solid #fff;
    transform: translate(-50%, -50%) scale(1);
  }
}
.align-items-center {
  align-items: center;
}

.js-country-publication-list .umb-card--h {
  height: 100%;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .js-country-publication-list .umb-card--h {
    flex-direction: column;
  }
}
.js-country-publication-list .umb-card--h .umb-card__image {
  flex: 0 0 40%;
  max-width: 40%;
}
@media (max-width: 768px) {
  .js-country-publication-list .umb-card--h .umb-card__image {
    flex: unset;
    max-width: 100%;
  }
}
.js-country-publication-list .umb-card--h .umb-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .js-country-publication-list .umb-card--h .umb-card__image img {
    aspect-ratio: unset;
    height: auto;
  }
}
.js-country-publication-list .umb-card__content {
  border-radius: 0 12px 0 0;
  overflow: hidden;
}
.js-country-publication-list .umb-card__content .umb-card__header {
  background-color: #003179;
  color: #b4d9ff;
  font-size: 11px;
  display: flex;
  align-items: center;
}
.js-country-publication-list .umb-card__content .umb-card__header span {
  max-width: 100%;
}
.js-country-publication-list .umb-card__content .umb-card__header span:first-child {
  padding-right: 10px;
  border-right: solid 1px #b4d9ff;
  flex: 0 1 auto;
}
.js-country-publication-list .umb-card__content .umb-card__header span:last-child {
  width: 110px;
  padding-left: 10px;
  flex: 0 0 110px;
}
.js-country-publication-list .umb-card__content .umb-card__title {
  display: block;
  text-overflow: unset;
  font-size: 20px;
}
.js-country-publication-list .umb-card__content .umb-card__desc {
  font-size: 14px;
  color: #b4d9ff;
  margin-bottom: 12px;
}
.js-country-publication-list .umb-card__content .umb-card__footer {
  padding: 0;
  background-image: none;
}
.js-country-publication-list .umb-card__content .umb-card__footer a.link {
  color: #fff;
  font-weight: normal;
  text-decoration: underline;
  font-size: 15px;
}

@media (max-width: 600px) {
  .js-archive-publication-list .umb-card__image {
    aspect-ratio: unset;
  }
}
.js-archive-publication-list .umb-card__image img {
  width: 200px !important;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 600px) {
  .js-archive-publication-list .umb-card__image img {
    width: 100% !important;
    height: auto;
    aspect-ratio: unset;
  }
}
.js-archive-publication-list .umb-card__footer {
  background-image: none !important;
}

.umb-custom-bg-white {
  background-color: #fff !important;
}

.umb-campaign-article.image-w-80 h2 {
  flex-basis: 55%;
  max-width: 55%;
}
@media (max-width: 768px) {
  .umb-campaign-article.image-w-80 h2 {
    flex-basis: unset;
    max-width: 100%;
  }
}

.js-archive-opportunity-list .umb-card__image {
  position: relative;
}
@media (min-width: 993px) {
  .js-archive-opportunity-list .umb-card__image img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

.js-archive-story-list .umb-card__title {
  min-height: 65px;
}

blockquote {
  margin: 0 0 24px;
  font-size: 28px;
  font-weight: 400;
  color: #1f2a37;
}
blockquote p {
  line-height: normal;
}
blockquote h5,
blockquote span.name {
  font-size: 20px;
  font-weight: 700;
}
blockquote h5::before,
blockquote span.name::before {
  content: "━";
  margin-right: 12px;
}
blockquote + h5 {
  font-size: 20px;
  font-weight: 700;
  color: #1f2a37;
}
blockquote + h5::before {
  content: "━";
  margin-right: 12px;
}

.bg-light-blue {
  background-color: #e9edff;
}
.bg-light-blue .ambassadors-intro {
  border: none;
}

.bg-light-grey {
  background-color: #f3f4f6;
}
.bg-light-grey .ambassadors-intro {
  border: none;
}

.story__feature-image {
  aspect-ratio: 16/9;
}
.story__feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.news__content .archive-news__news-list {
  display: block;
}
.news__content .archive-news__news-list figure,
.news__content .archive-news__news-list figcaption img {
  margin: 24px 0;
  width: 100%;
}
.news__content .archive-news__news-list img {
  border-radius: 12px;
}

.single-news__content__text img {
  border-radius: 12px;
}

.single-news__content.wrapper {
  padding-bottom: 0;
}

.single-news__content__text {
  margin-bottom: 0 !important;
}
.single-news__content__text hr:last-child {
  display: none;
}

@media (min-width: 1200px) {
  .custom-grid-padding {
    padding-right: 52px;
  }
}
@media (max-width: 768px) {
  .custom-grid-padding {
    margin-bottom: 60px;
  }
}

.single-news__content {
  padding-top: 24px !important;
}
.single-news__content > span {
  display: none !important;
}
.single-news__content__title-wrapper {
  display: none;
}

html .single-news__content__text img {
  width: 100%;
  border-radius: 12px;
}

.umb-card__image.umb-card__image--sm.umb-card__image--with-gap.umb-card__image--original-ar.not-rounded img {
  aspect-ratio: unset;
  width: 100%;
  height: auto !important;
  min-height: 1px;
}

@media (max-width: 500px) {
  .page-template-page-about .umb-card.umb-card--h {
    flex-direction: column;
  }
  .page-template-page-about .umb-card.umb-card--h .umb-card__image.umb-card__image--sm.umb-card__image--with-gap.umb-card__image--original-ar.not-rounded {
    aspect-ratio: unset;
    padding-bottom: 0;
    flex: 0 0 auto;
  }
  .page-template-page-about .umb-card.umb-card--h .umb-card__image.umb-card__image--sm.umb-card__image--with-gap.umb-card__image--original-ar.not-rounded img {
    aspect-ratio: unset;
    width: 100%;
    height: auto !important;
    min-height: 1px;
  }
}
.page-template-page-news .umb-card__title {
  min-height: 65px;
}

html .hero-ellipsis-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

html .hero-ellipsis-desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-hero-cards .umb-card.umb-card--v .umb-card__image {
  min-height: 425px;
  aspect-ratio: unset;
}
.home-hero-cards .umb-card.umb-card--v .umb-card__image .height-full {
  height: auto !important;
  flex: 1;
}
.home-hero-cards .umb-card.umb-card--v .umb-card__image img {
  aspect-ratio: unset;
}

.umb-header {
  position: sticky;
  top: 0;
  z-index: 999;
}
.umb-header .nav {
  background-color: white;
}

.umb-hero-campaign__content > * {
  color: inherit !important;
}
.umb-hero-campaign__content > *.yea-button {
  color: #fff !important;
}

.bg-img-fix {
  background-position: center center;
  background-size: cover;
}

.min-103 {
  min-height: 103px;
}

#global-search-btn {
  background-color: transparent;
  margin: 0;
  padding: 0;
  border: 0;
}
#global-search-btn:focus-visible {
  outline: none;
  box-shadow: none;
}

.portal-search {
  display: none;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  top: 54px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
}
.portal-search__content {
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.portal-search__content form {
  position: relative;
}
.portal-search__content form label .screen-reader-text {
  display: none;
}
.portal-search__content form label input[type=search] {
  border: none;
  font-size: 24px;
  border-radius: 12px;
  width: 600px;
  padding: 12px 52px 12px 16px;
  max-width: 80vw;
}
.portal-search__content form label::before {
  content: "\f002";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  z-index: 2;
  right: 20px;
  top: 20px;
  pointer-events: none;
}
.portal-search__content form input[type=submit] {
  width: 0;
  height: 0;
  visibility: hidden;
  position: absolute;
}

.admin-bar .portal-search {
  top: 86px;
}
.admin-bar .umb-header {
  top: 32px;
}

input[type=search]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

.search-result-article {
  max-width: 70%;
  margin-inline: auto;
  border-bottom: solid 2px #eee;
  padding-bottom: 24px;
  margin-bottom: 24px;
  display: flex;
  gap: 24px;
}
@media (max-width: 992px) {
  .search-result-article {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .search-result-article {
    flex-direction: column;
  }
}
.search-result-article img {
  flex: 0 1 150px;
  max-width: 150px;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
}
@media (max-width: 600px) {
  .search-result-article img {
    flex: 1 1 100%;
    max-width: 100%;
    aspect-ratio: 16/9;
    height: auto;
  }
}
.search-result-article__content {
  flex: 1;
}
.search-result-article__content h2 {
  font-size: 24px;
  font-family: "Proxima Nova Lt", sans-serif;
  font-weight: 600;
}
.search-result-article__content h2 a {
  text-decoration: none;
}
.search-result-article__content__desc {
  margin-bottom: 0;
}
.search-result-article__content__desc p {
  margin-bottom: 0;
}
.search-result-article__content > *:last-child {
  margin-bottom: 0 !important;
}

body.search-no-results .entry-header,
body.search-results .entry-header {
  padding: 64px 0 !important;
  border-bottom: solid 2px #eee;
  margin-bottom: 64px;
}
body.search-no-results .navigation.posts-navigation,
body.search-results .navigation.posts-navigation {
  margin-block: 32px;
  text-align: center;
}
body.search-no-results .navigation.posts-navigation h2,
body.search-results .navigation.posts-navigation h2 {
  display: none;
}
body.search-no-results .navigation.posts-navigation .nav-links a,
body.search-results .navigation.posts-navigation .nav-links a {
  font-size: 16px;
  padding: 12px 24px;
  display: inline-block;
  border-radius: 44px;
  text-decoration: none;
  color: inherit;
  background-color: #004494;
  color: #fff;
  cursor: pointer;
}

.wpcp-carousel-content-wrapper .wpcp-single-item {
  border-radius: 12px;
  overflow: hidden;
}
.wpcp-carousel-content-wrapper .wpcp-swiper-dots .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #004494 !important;
}
.wpcp-carousel-content-wrapper .swiper-button-prev i:hover,
.wpcp-carousel-content-wrapper .swiper-button-next i:hover {
  color: #004494 !important;
}

.application-video__video-wrapper {
  width: 100%;
  max-width: 71.25rem;
  margin: 0 auto;
  position: relative;
}

.application-video__video-wrapper:before {
  content: "";
  padding-top: 56.25%;
  display: block;
  position: relative;
}

.application-video__video-wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.custom-contact-card a {
  font-size: 16px;
  color: #004494;
  text-decoration: none;
  display: inline-block;
  position: relative;
}
.custom-contact-card a:hover {
  color: #003179;
  text-decoration: underline;
}

.no-arrow {
  background-image: none;
}

html .umb-hero-campaign__content > .button--bg-pink {
  color: #fff !important;
}

html .w-100 {
  width: 100%;
}

.js-archive-opportunity-list .umb-card {
  min-height: 250px;
}
.js-archive-opportunity-list .umb-card__content {
  align-self: center;
}

@media (min-width: 1201px) and (max-width: 1400px) {
  .menu-bar .menu-link {
    font-size: 14px;
    padding: 12px 10px;
  }
}
@media (min-width: 1024px) and (max-width: 1200px) {
  .menu-bar .menu-link {
    font-size: 12px;
    padding: 12px 10px;
  }
}
.wpcp-carousel-content-wrapper .swiper-slide figure {
  aspect-ratio: 3/2;
}
.wpcp-carousel-content-wrapper .swiper-slide figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wpcp-carousel-section.nav-vertical-center {
  margin: 0;
}

.wpcp-carousel-section.nav-vertical-center .swiper-button-prev {
  left: auto;
  text-align: left;
  position: absolute;
  right: 65px;
  bottom: 1px;
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.5) !important;
  top: auto;
}

.wpcp-carousel-section.nav-vertical-center .swiper-button-next {
  left: auto;
  text-align: left;
  position: absolute;
  right: 2px;
  bottom: 1px;
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.5) !important;
  top: auto;
  border-radius: 0 0 8px 0;
}

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

.sideMenu {
  font-size: 0.95rem;
  width: 357px;
  height: 100vh;
  padding: 0;
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 64px;
  padding-top: 40px;
  left: -100%;
  max-width: 100%;
  overflow-x: hidden;
  transition: left 0.3s 0.3s;
  background: #fff;
  box-shadow: 0 0 0 transparent;
}

.sideMenu .side-menu {
  position: absolute;
  top: 0;
  width: 357px;
  height: 100%;
  background: 0 0;
}

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

.sideMenu ul {
  margin: 0;
  padding: 0;
  background: #fff;
  height: 100%;
}

.sideMenu ul li {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.sideMenu ul li span:not(.wpml-ls-native) {
  font-size: 1.5em;
  line-height: 0.25em;
  font-weight: 100;
}

.sideMenu ul li a {
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em;
  text-transform: uppercase;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.1);
  letter-spacing: 1px;
  text-transform: inherit;
  font-weight: 400;
}

.hide {
  margin-left: -357px;
  transition: all 0.8s ease;
}

.show-menu {
  margin-left: 0 !important;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 0 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

.hamburger:hover {
  opacity: 1;
}

.hamburger.is-active:hover {
  opacity: 1;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner:before,
.hamburger.is-active .hamburger-inner:after {
  background-color: #13468e;
}

.hamburger-box {
  width: 29px;
  height: 27px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2.5px;
}

.hamburger-inner,
.hamburger-inner:before,
.hamburger-inner:after {
  width: 29px;
  height: 5px;
  background-color: #13468e;
  border-radius: 3px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner:before,
.hamburger-inner:after {
  content: "";
  display: block;
}

.hamburger-inner:before {
  top: -11px;
}

.hamburger-inner:after {
  bottom: -11px;
}

.hamburger--3dx .hamburger-box {
  perspective: 58px;
}

.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx .hamburger-inner:before,
.hamburger--3dx .hamburger-inner:after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(180deg);
}

.hamburger--3dx.is-active .hamburger-inner:before {
  transform: translate3d(0, 11px, 0) rotate(45deg);
}

.hamburger--3dx.is-active .hamburger-inner:after {
  transform: translate3d(0, -11px, 0) rotate(-45deg);
}

.hamburger--3dx-r .hamburger-box {
  perspective: 58px;
}

.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r .hamburger-inner:before,
.hamburger--3dx-r .hamburger-inner:after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(-180deg);
}

.hamburger--3dx-r.is-active .hamburger-inner:before {
  transform: translate3d(0, 11px, 0) rotate(45deg);
}

.hamburger--3dx-r.is-active .hamburger-inner:after {
  transform: translate3d(0, -11px, 0) rotate(-45deg);
}

.hamburger--3dy .hamburger-box {
  perspective: 58px;
}

.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy .hamburger-inner:before,
.hamburger--3dy .hamburger-inner:after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(-180deg);
}

.hamburger--3dy.is-active .hamburger-inner:before {
  transform: translate3d(0, 11px, 0) rotate(45deg);
}

.hamburger--3dy.is-active .hamburger-inner:after {
  transform: translate3d(0, -11px, 0) rotate(-45deg);
}

.hamburger--3dy-r .hamburger-box {
  perspective: 58px;
}

.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r .hamburger-inner:before,
.hamburger--3dy-r .hamburger-inner:after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg);
}

.hamburger--3dy-r.is-active .hamburger-inner:before {
  transform: translate3d(0, 11px, 0) rotate(45deg);
}

.hamburger--3dy-r.is-active .hamburger-inner:after {
  transform: translate3d(0, -11px, 0) rotate(-45deg);
}

.hamburger--3dxy .hamburger-box {
  perspective: 58px;
}

.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy .hamburger-inner:before,
.hamburger--3dxy .hamburger-inner:after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg);
}

.hamburger--3dxy.is-active .hamburger-inner:before {
  transform: translate3d(0, 11px, 0) rotate(45deg);
}

.hamburger--3dxy.is-active .hamburger-inner:after {
  transform: translate3d(0, -11px, 0) rotate(-45deg);
}

.hamburger--3dxy-r .hamburger-box {
  perspective: 58px;
}

.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy-r .hamburger-inner:before,
.hamburger--3dxy-r .hamburger-inner:after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}

.hamburger--3dxy-r.is-active .hamburger-inner:before {
  transform: translate3d(0, 11px, 0) rotate(45deg);
}

.hamburger--3dxy-r.is-active .hamburger-inner:after {
  transform: translate3d(0, -11px, 0) rotate(-45deg);
}

.hamburger--arrow.is-active .hamburger-inner:before {
  transform: translate3d(-5.8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrow.is-active .hamburger-inner:after {
  transform: translate3d(-5.8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--arrow-r.is-active .hamburger-inner:before {
  transform: translate3d(5.8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--arrow-r.is-active .hamburger-inner:after {
  transform: translate3d(5.8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrowalt .hamburger-inner:before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt .hamburger-inner:after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt.is-active .hamburger-inner:before {
  top: 0;
  transform: translate3d(-5.8px, -7.25px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt.is-active .hamburger-inner:after {
  bottom: 0;
  transform: translate3d(-5.8px, 7.25px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt-r .hamburger-inner:before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r .hamburger-inner:after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r.is-active .hamburger-inner:before {
  top: 0;
  transform: translate3d(5.8px, -7.25px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt-r.is-active .hamburger-inner:after {
  bottom: 0;
  transform: translate3d(5.8px, 7.25px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg);
}

.hamburger--arrowturn.is-active .hamburger-inner:before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--arrowturn.is-active .hamburger-inner:after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg);
}

.hamburger--arrowturn-r.is-active .hamburger-inner:before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrowturn-r.is-active .hamburger-inner:after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--boring .hamburger-inner,
.hamburger--boring .hamburger-inner:before,
.hamburger--boring .hamburger-inner:after {
  transition-property: none;
}

.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg);
}

.hamburger--boring.is-active .hamburger-inner:before {
  top: 0;
  opacity: 0;
}

.hamburger--boring.is-active .hamburger-inner:after {
  bottom: 0;
  transform: rotate(-90deg);
}

.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse .hamburger-inner:after {
  top: -22px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner:before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -11px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse.is-active .hamburger-inner:after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.hamburger--collapse.is-active .hamburger-inner:before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r .hamburger-inner:after {
  top: -22px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse-r .hamburger-inner:before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -11px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse-r.is-active .hamburger-inner:after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.hamburger--collapse-r.is-active .hamburger-inner:before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--elastic .hamburger-inner {
  top: 2.5px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic .hamburger-inner:before {
  top: 11px;
  transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic .hamburger-inner:after {
  top: 22px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 11px, 0) rotate(135deg);
  transition-delay: 0.075s;
}

.hamburger--elastic.is-active .hamburger-inner:before {
  transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic.is-active .hamburger-inner:after {
  transform: translate3d(0, -22px, 0) rotate(-270deg);
  transition-delay: 0.075s;
}

.hamburger--elastic-r .hamburger-inner {
  top: 2.5px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r .hamburger-inner:before {
  top: 11px;
  transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic-r .hamburger-inner:after {
  top: 22px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 11px, 0) rotate(-135deg);
  transition-delay: 0.075s;
}

.hamburger--elastic-r.is-active .hamburger-inner:before {
  transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic-r.is-active .hamburger-inner:after {
  transform: translate3d(0, -22px, 0) rotate(270deg);
  transition-delay: 0.075s;
}

.hamburger--emphatic {
  overflow: hidden;
}

.hamburger--emphatic .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}

.hamburger--emphatic .hamburger-inner:before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}

.hamburger--emphatic .hamburger-inner:after {
  top: 11px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}

.hamburger--emphatic.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}

.hamburger--emphatic.is-active .hamburger-inner:before {
  left: -58px;
  top: -58px;
  transform: translate3d(58px, 58px, 0) rotate(45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic.is-active .hamburger-inner:after {
  right: -58px;
  top: -58px;
  transform: translate3d(-58px, 58px, 0) rotate(-45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic-r {
  overflow: hidden;
}

.hamburger--emphatic-r .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r .hamburger-inner:before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r .hamburger-inner:after {
  top: 11px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}

.hamburger--emphatic-r.is-active .hamburger-inner:before {
  left: -58px;
  top: 58px;
  transform: translate3d(58px, -58px, 0) rotate(-45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic-r.is-active .hamburger-inner:after {
  right: -58px;
  top: 58px;
  transform: translate3d(-58px, -58px, 0) rotate(45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--minus .hamburger-inner:before,
.hamburger--minus .hamburger-inner:after {
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
}

.hamburger--minus.is-active .hamburger-inner:before,
.hamburger--minus.is-active .hamburger-inner:after {
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
}

.hamburger--minus.is-active .hamburger-inner:before {
  top: 0;
}

.hamburger--minus.is-active .hamburger-inner:after {
  bottom: 0;
}

.hamburger--slider .hamburger-inner {
  top: 2.5px;
}

.hamburger--slider .hamburger-inner:before {
  top: 11px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}

.hamburger--slider .hamburger-inner:after {
  top: 22px;
}

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 11px, 0) rotate(45deg);
}

.hamburger--slider.is-active .hamburger-inner:before {
  transform: rotate(-45deg) translate3d(-4.14286px, -6px, 0);
  opacity: 0;
}

.hamburger--slider.is-active .hamburger-inner:after {
  transform: translate3d(0, -22px, 0) rotate(-90deg);
}

.hamburger--slider-r .hamburger-inner {
  top: 2.5px;
}

.hamburger--slider-r .hamburger-inner:before {
  top: 11px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}

.hamburger--slider-r .hamburger-inner:after {
  top: 22px;
}

.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 11px, 0) rotate(-45deg);
}

.hamburger--slider-r.is-active .hamburger-inner:before {
  transform: rotate(45deg) translate3d(4.14286px, -6px, 0);
  opacity: 0;
}

.hamburger--slider-r.is-active .hamburger-inner:after {
  transform: translate3d(0, -22px, 0) rotate(90deg);
}

.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner:before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner:after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner:before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin.is-active .hamburger-inner:after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r .hamburger-inner:before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin-r .hamburger-inner:after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin-r.is-active .hamburger-inner:before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin-r.is-active .hamburger-inner:after {
  bottom: 0;
  transform: rotate(90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spring .hamburger-inner {
  top: 2.5px;
  transition: background-color 0s 0.13s linear;
}

.hamburger--spring .hamburger-inner:before {
  top: 11px;
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring .hamburger-inner:after {
  top: 22px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent !important;
}

.hamburger--spring.is-active .hamburger-inner:before {
  top: 0;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 11px, 0) rotate(45deg);
}

.hamburger--spring.is-active .hamburger-inner:after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 11px, 0) rotate(-45deg);
}

.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r .hamburger-inner:after {
  top: -22px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}

.hamburger--spring-r .hamburger-inner:before {
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -11px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spring-r.is-active .hamburger-inner:after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
}

.hamburger--spring-r.is-active .hamburger-inner:before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}

.hamburger--stand .hamburger-inner:before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand .hamburger-inner:after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}

.hamburger--stand.is-active .hamburger-inner:before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand.is-active .hamburger-inner:after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}

.hamburger--stand-r .hamburger-inner:before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r .hamburger-inner:after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}

.hamburger--stand-r.is-active .hamburger-inner:before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand-r.is-active .hamburger-inner:after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner:before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner:after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner:before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner:after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex .hamburger-inner:before,
.hamburger--vortex .hamburger-inner:after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}

.hamburger--vortex .hamburger-inner:before {
  transition-property: top, opacity;
}

.hamburger--vortex .hamburger-inner:after {
  transition-property: bottom, transform;
}

.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex.is-active .hamburger-inner:before,
.hamburger--vortex.is-active .hamburger-inner:after {
  transition-delay: 0s;
}

.hamburger--vortex.is-active .hamburger-inner:before {
  top: 0;
  opacity: 0;
}

.hamburger--vortex.is-active .hamburger-inner:after {
  bottom: 0;
  transform: rotate(90deg);
}

.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex-r .hamburger-inner:before,
.hamburger--vortex-r .hamburger-inner:after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}

.hamburger--vortex-r .hamburger-inner:before {
  transition-property: top, opacity;
}

.hamburger--vortex-r .hamburger-inner:after {
  transition-property: bottom, transform;
}

.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex-r.is-active .hamburger-inner:before,
.hamburger--vortex-r.is-active .hamburger-inner:after {
  transition-delay: 0s;
}

.hamburger--vortex-r.is-active .hamburger-inner:before {
  top: 0;
  opacity: 0;
}

.hamburger--vortex-r.is-active .hamburger-inner:after {
  bottom: 0;
  transform: rotate(-90deg);
}

.hamburger.is-active ~ .sideMenu {
  left: 0;
  box-shadow: 357px 0px 0px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s;
}

.funded-by {
  width: 250px;
  max-width: 100%;
}
.funded-by img {
  width: 100%;
  height: auto;
}

.made-of-us-pages p {
  font-size: 16px;
  line-height: 30px;
}

.k-hero-text {
  text-align: left;
}

.k-highlight {
  font-size: 24px !important;
  font-weight: bold;
  color: #012060;
  margin-bottom: 2rem;
}

.k-highlight span {
  background: #ffc107;
  padding: 0.5rem 1rem;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
}

.map-container {
  background: url(https://webalkans.eu/wp-content/uploads/2024/10/map.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  text-align: center;
}
@media (max-width: 768px) {
  .map-container {
    background-position: center calc(50% - 5rem);
  }
}

.map-card {
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  width: max-content;
  padding: 0.4rem;
  transition: all 0.5s ease-in-out 0s;
  filter: drop-shadow(0 0.5rem 1rem rgba(0, 0, 0, 0.15));
  z-index: 3;
}
@media (max-width: 768px) {
  .map-card {
    width: 53%;
  }
}

.map-card-left {
  width: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translate(10%, 0);
  gap: 0.5rem;
}

.map-card-right {
  display: flex;
  width: 80px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translate(-10%, 0);
  gap: 0.5rem;
}

.map-card-image-container {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}

.left-flag {
  left: 6px;
  bottom: 18px;
}

.right-flag {
  right: 6px;
  bottom: 18px;
}

.flag {
  width: 24px;
  height: 24px;
  position: absolute;
  object-fit: contain;
}

.map-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-card-content {
  font-size: 12px;
  font-weight: 600;
  color: #003399;
}

.team-blue-box {
  background-color: #001540;
  color: #fff;
  padding: 0.75rem 1.5rem;
  position: absolute;
  right: 0%;
  top: 300px;
  font-size: 24px;
  font-weight: 700;
  filter: drop-shadow(0 0.5rem 1rem rgba(0, 0, 0, 0.15));
  rotate: -10deg;
  transition: all 0.3s ease-in-out 0s;
}

.team-yellow-box {
  background-color: #ffc800;
  color: #001540;
  padding: 0.75rem 1.5rem;
  font-size: 24px;
  font-weight: 700;
  position: absolute;
  left: -30%;
  top: 60px;
  filter: drop-shadow(0 0.5rem 1rem rgba(0, 0, 0, 0.15));
  rotate: 10deg;
  transition: all 0.3s ease-in-out 0s;
}

.team-blue-box:hover {
  transform: scale(1.1);
  rotate: 0deg;
  z-index: 99;
}

.team-yellow-box:hover {
  transform: scale(1.1);
  rotate: 0deg;
  z-index: 99;
}

.linear-gradient {
  background-image: url(https://webalkans.eu/wp-content/uploads/2024/10/header_bg.png) !important;
  background-size: cover !important;
}

.hero-illustration {
  background-image: url(https://webalkans.eu/wp-content/uploads/2024/10/lines_bg.png) !important;
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-clip: border-box !important;
}

.k-logo {
  object-fit: contain;
  max-width: 600px;
  width: 100%;
}

.k-hero-text {
  font-size: 16px;
}

.k-couples .map-card:hover {
  transform: scale(1.1);
  position: relative;
  z-index: 99;
}

.k-couple-1 .map-card {
  translate: -50% 20%;
  transform: rotate(-340deg);
}

.k-couple-2 .map-card {
  translate: -70% 65%;
  transform: rotate(7deg);
}

.k-couple-3 .map-card {
  translate: -30% 50%;
  transform: rotate(340deg);
}

.k-couple-4 .map-card {
  translate: 0% 0%;
  transform: rotate(-20deg);
}

.k-couple-5 .map-card {
  translate: 50% 0%;
  transform: rotate(-7deg);
}

.k-couple-6 .map-card {
  translate: 0% 30%;
  transform: rotate(20deg);
}

.k-highlight {
  font-size: 24px !important;
  font-weight: bold;
  color: #012060;
  margin-bottom: 2rem;
  text-align: left;
}

.k-highlight span {
  background: #ffc107;
  padding: 0.5rem 1rem;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
}

.k-discover-more {
  background: #ffc700;
  color: #002160 !important;
  width: 300px;
  font-size: 20px;
  font-weight: 600;
}

.k-discover-more:hover {
  background: transparent;
  color: #ffc700 !important;
  text-decoration: none !important;
  border-color: #ffc700 !important;
  border: 2px solid;
}

.backpack {
  z-index: 2;
  position: absolute;
  pointer-events: none;
  width: 80px;
  bottom: 13px;
  left: -42px;
}

.location-pin {
  z-index: 2;
  position: absolute;
  pointer-events: none;
  width: 60px;
  top: -20px;
  right: 10px;
}

@media (max-width: 768px) {
  .k-discover-more {
    width: 100% !important;
  }
  .map-card {
    margin: 8px 0;
  }
  .k-couple-1 .map-card {
    translate: 0% 0%;
    transform: rotate(0deg);
  }
  .k-couple-2 .map-card {
    translate: 0% 0%;
    transform: rotate(0deg);
  }
  .k-couple-3 .map-card {
    translate: 0% 0%;
    transform: rotate(0deg);
  }
  .k-couple-4 .map-card {
    translate: 0% 0%;
    transform: rotate(0deg);
  }
  .k-couple-5 .map-card {
    translate: 0% 0%;
    transform: rotate(0deg);
  }
  .k-couple-6 .map-card {
    translate: 0% 0%;
    transform: rotate(0deg);
  }
  .team-blue-box {
    padding: 0.5rem 1rem;
    font-size: 16px;
    font-weight: 700;
    right: 0%;
    rotate: 0deg;
    word-wrap: break-word;
    width: 100px;
  }
  .team-yellow-box {
    padding: 0.5rem 1rem;
    font-size: 16px;
    font-weight: 700;
    left: 0;
    rotate: 0deg;
    word-wrap: break-word;
    width: 100px;
  }
  .k-highlight {
    font-size: 16px !important;
  }
  .earth {
    height: 200px;
  }
}
.k-couples.aos-init {
  opacity: 0;
  transition-property: all !important;
}
.k-couples.aos-init.aos-animate {
  opacity: 1;
}

.text-brand {
  color: #13468e;
}

.custom-search-form-no-results {
  margin-bottom: 100px;
  text-align: center;
}
.custom-search-form-no-results .screen-reader-text {
  display: none;
}
.custom-search-form-no-results form {
  width: max-content;
  margin: auto;
}
.custom-search-form-no-results form input[type=search] {
  padding: 5px 10px;
  border: solid 1px #cdcdcd;
  border-radius: 5px;
}
.custom-search-form-no-results form input[type=submit] {
  padding: 5px 10px;
  border: solid 1px #004494;
  background-color: #004494;
  color: #fff;
  border-radius: 5px;
}

.side-menu ul li a:first-child {
  flex: 1;
}

.sideMenu a,
.sideMenu a:hover {
  text-decoration: none;
}

.page-404 {
  min-height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.download-dropdown {
  position: relative;
}
.download-dropdown .dropdown-menu {
  position: absolute;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5rem;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #7c7c7c;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}
.download-dropdown .dropdown-menu .dropdown-menu-arrow {
  top: -18px;
  left: 22%;
  width: 0;
  height: 0;
  position: absolute;
}
.download-dropdown .dropdown-menu .dropdown-menu-arrow::before, .download-dropdown .dropdown-menu .dropdown-menu-arrow::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-width: 12px 14px;
  border-style: solid;
  border-color: transparent;
  z-index: 1001;
}
.download-dropdown .dropdown-menu .dropdown-menu-arrow::before {
  bottom: -17px;
  right: 3px;
  border-bottom-color: rgba(0, 0, 0, 0.15);
}
.download-dropdown .dropdown-menu .dropdown-menu-arrow::after {
  bottom: -18px;
  right: 3px;
  border-bottom-color: #fff;
}
.download-dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  min-width: 310px;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  padding: 0.7rem 1.5rem;
  display: flex;
  align-items: center;
}
.download-dropdown .dropdown-menu .dropdown-item .img-download-2 {
  width: 15px;
  margin-right: 20px;
}
.download-dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #e9edff;
}
.download-dropdown .dropdown-menu .dropdown-divider {
  height: 0;
  margin: 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}
.download-dropdown .dropdown-menu.show {
  display: block;
  margin-top: 17px;
}

.js-archive-publication-list .umb-card--blue-bg {
  overflow: visible;
}
.js-archive-publication-list .umb-card__content {
  border-radius: 0 12px 12px 0;
}
.js-archive-publication-list .umb-card__content .umb-card__header {
  border-radius: 0 12px 0 0;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .hero-small--become-a-yea {
    background: url("https://webalkans.eu/wp-content/uploads/2022/01/header_new_yea_2022.png"), #58b1bf !important;
    background-repeat: no-repeat !important;
    background-position: -1% 105% !important;
    height: 540px !important;
    background-size: auto 542px !important;
  }
  .hero-small--become-a-yea .hero-small__content {
    width: 50%;
    float: right;
  }
}
.hero-small {
  display: flex;
  align-items: center;
  background-image: url("./images/hero-small/hero-small-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .hero-small {
    height: 33.6875rem;
    display: flex;
    align-items: center;
  }
}
.hero-small + .section--block-image {
  position: relative;
  z-index: 10;
}

.hero-small__content {
  width: 100%;
  padding: 2.1875rem 1.25rem;
  background-color: rgba(255, 255, 255, 0.35);
}

@media (min-width: 1024px) and (orientation: landscape) {
  .hero-small__content {
    width: 60%;
    padding: 0;
    background-color: transparent;
  }
}
.hero-small__title {
  color: #494a4a;
  font-weight: 700;
  margin-bottom: 0.9375rem;
  font-size: 1.875rem;
  line-height: 1.1;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .hero-small__title {
    margin-bottom: 1.25rem;
    font-size: 3.25rem;
    line-height: 3.4375rem;
  }
}
.hero-small__subtitle {
  font-weight: 700;
  color: #13468e;
  margin-bottom: 0.9375rem;
  font-size: 1.125rem;
  line-height: 1.2;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .hero-small__subtitle {
    margin-bottom: 2.125rem;
    font-size: 1.25rem;
    line-height: 2.4375rem;
  }
}
.hero-small__paragraph {
  color: #555555;
  font-size: 1rem;
  line-height: 1.4;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .hero-small__paragraph {
    font-size: 1rem;
    line-height: 1.875rem;
  }
}
.hero-small__subtitle--jury-three {
  font-size: 1.125rem;
  line-height: 1.2;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .hero-small__subtitle--jury-three {
    margin-bottom: 1.25rem;
    font-size: 1.5625rem;
    line-height: 3.0625rem;
  }
}
.hero-small__subtitle--jury-four {
  font-size: 1rem;
  line-height: 1.2;
  font-style: italic;
  font-weight: 400;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .hero-small__subtitle--jury-four {
    margin-bottom: 2.125rem;
    font-size: 1.125rem;
    line-height: 2.4375rem;
  }
}
.hero-small--become-a-yea {
  background: #58b1bf;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .hero-small--become-a-yea {
    background: url("./images/yea/header-yea-7.png"), #58b1bf;
    background-repeat: no-repeat;
    background-position: 91% 105%;
    height: 540px;
    background-size: auto 400px;
  }
}
.hero-small--become-a-yea .hero-small__content {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 6.25rem 1.25rem;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .hero-small--become-a-yea .hero-small__content {
    padding: 0;
    background-color: transparent;
  }
}
.hero-small--become-a-yea .hero-small__kicker {
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.9375rem;
  display: block;
}

.hero-small--become-a-yea .hero-small__pretitle {
  color: #13468e;
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.9375rem;
}

.hero-small--become-a-yea .hero-small__title {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

.hero-small--become-a-yea .hero-small__title span {
  color: #13468e;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .hero-small--become-a-yea .hero-small__title {
    font-size: 3.25rem;
  }
}
.hero-small--become-a-yea .hero-small__paragraph {
  font-size: 1rem;
  margin-bottom: 1.25rem;
  color: #fff;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .hero-small--become-a-yea .hero-small__paragraph {
    font-size: 1.25rem;
  }
}
.hero-small__button-wrapper {
  width: 13.125rem;
  margin: 0;
}

.hero-small__list {
  margin-bottom: 1.875rem;
}

.hero-small__list .hero-small__list__item {
  color: #fff;
  padding-left: 2.375rem;
  font-size: 1rem;
  line-height: 1.5rem;
  position: relative;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .hero-small__list .hero-small__list__item {
    font-size: 1.25rem;
  }
}
.hero-small__list .hero-small__list__item:before {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  background-color: #13468e;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.5rem;
}

.hero-small__list .hero-small__list__item:not(:last-child) {
  margin-bottom: 0.9375rem;
}

.yea-network {
  padding: 9.8125rem 1.25rem 5rem;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .yea-network {
    padding: 9.8125rem 0 5rem;
  }
  .yea-network .block-image__content {
    padding-right: 0;
  }
  .yea-network .block-image__content .block-image__paragraph {
    font-size: 1.125rem;
  }
}
.yea-network--become-a-yea {
  padding: 5rem 1.25rem;
  background-color: #f8f8f8;
}

.yea-network--become-a-yea .wrapper-flex {
  margin-bottom: 1.875rem;
}

.yea-network--become-a-yea .has-margin {
  margin-bottom: 1.875rem;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .yea-network--become-a-yea {
    padding: 5rem 0;
  }
}
.yea-network--become-a-yea .related-stories__item {
  width: 100%;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .yea-network--become-a-yea .related-stories__item {
    width: 50%;
  }
  .yea-network--become-a-yea .related-stories__item:first-child {
    padding-left: 7.5rem;
    order: 2;
  }
  .yea-network--become-a-yea .related-stories__item:last-child {
    order: 1;
  }
}
.yea-network--become-a-yea .related-stories__pretitle {
  color: #ff6e3b;
  font-weight: 700;
  font-size: 20px;
}

.yea-network--become-a-yea .related-stories__title {
  font-size: 3rem;
}

.yea-network--become-a-yea .related-stories__paragraph {
  font-size: 1.125rem !important;
  padding-left: 0;
  margin-bottom: 0;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .yea-network--become-a-yea .related-stories__paragraph {
    max-width: 34.875rem;
  }
}
.yea-network--become-a-yea .block-image__paragraph.has-margin {
  font-size: 1.125rem !important;
}

.yea-network--become-a-yea .block-image__paragraph.has-margin {
  font-size: 1.125rem !important;
}

.block-image {
  position: relative;
  overflow: hidden;
  padding: 2.1875rem 1.25rem;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .block-image {
    padding: 3.5rem 0;
  }
}
.block-image .wrapper {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .block-image .wrapper {
    align-items: center;
  }
}
@media (min-width: 1024px) and (orientation: landscape) {
  .block-image:not(.block-image--theme-child):nth-child(even) .block-image__content {
    padding-right: 0;
  }
  .block-image:not(.block-image--theme-child):nth-child(even) .wrapper {
    flex-direction: row-reverse;
    align-items: normal;
  }
  .block-image:not(.block-image--theme-child):nth-child(even) .block-image__image-slider {
    padding-left: 0;
    padding-right: 5.3125rem;
  }
}
.block-image.block-image--theme-child {
  padding: 6.25rem 1.25rem;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .block-image.block-image--theme-child {
    padding: 6.25rem 0;
  }
}
@media (min-width: 1024px) and (orientation: landscape) {
  .block-image.block-image--theme-child .block-image__content {
    padding-right: 0;
  }
}
.block-image.block-image--theme-child .block-image__content ul {
  list-style: disc;
  padding-left: 20px;
  line-height: 1.875rem;
}

.block-image.block-image--theme-child:nth-child(even) {
  margin-bottom: 6.25rem;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .block-image.block-image--theme-child:nth-child(even) .wrapper {
    flex-direction: row-reverse;
    align-items: normal;
  }
  .block-image.block-image--theme-child:nth-child(even) .block-image__image {
    padding-left: 6.25rem;
    padding-right: 0;
  }
}
@media (min-width: 1024px) and (orientation: landscape) {
  .block-image.block-image--getting-started .wrapper,
  .block-image.block--faq .wrapper {
    align-items: initial;
  }
}
.block-image.block-image--getting-started {
  padding: 5rem 1.25rem;
}

.block-image.block-image--getting-started .block-image__content {
  padding-top: 2.5rem;
}

.block-image.block-image--getting-started .block__text {
  font-size: 1.125rem;
}

#who-are-we-looking-for .block__text {
  font-size: 1.125rem;
}

@media (min-width: 1024px) and (orientation: landscape) {
  #who-are-we-looking-for .block-image__image-slider {
    padding-left: 5.3125rem;
    padding-right: 0;
  }
}
.block-image__content {
  color: #555555;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .block-image__content {
    width: 50%;
    flex-basis: 50%;
    padding-right: 2.8125rem;
  }
  .ie11 .block-image__content {
    width: 43%;
    flex-basis: 43%;
  }
}
@media (min-width: 1024px) and (orientation: landscape) {
  .block-image__image {
    width: 50%;
    flex-basis: 50%;
    padding-right: 6.25rem;
  }
  .block-image__image img {
    max-width: 100%;
  }
}
.block-image__title {
  font-weight: 700;
  color: #494a4a;
  margin-bottom: 0.4375rem;
  font-size: 1.875rem;
  line-height: 1.1;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .block-image__title {
    margin-bottom: 0.4375rem;
    font-size: 3.25rem;
    line-height: 3.6875rem;
  }
}
@media (min-width: 1024px) and (orientation: landscape) {
  .block-image__title + .block-image__paragraph {
    margin-top: 1.625rem;
  }
}
.block-image__subtitle {
  margin-bottom: 0.9375rem;
  font-size: 1.125rem;
  line-height: 1.3;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .block-image__subtitle {
    margin-bottom: 2.5rem;
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}
.block-image__paragraph {
  font-size: 1rem;
  line-height: 1.4;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .block-image__paragraph {
    font-size: 1.0625rem;
    line-height: 1.875rem;
  }
}
.block-image__note {
  font-size: 1rem;
  line-height: 1.4;
  font-style: italic;
  margin-top: 0.625rem;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .block-image__note {
    margin-top: 1.25rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
.block-image__paragraph--relevant {
  font-style: italic;
  font-weight: 700;
  color: #0676c3;
  margin: 1.25rem 0;
  font-size: 1.125rem;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .block-image__paragraph--relevant {
    margin: 1.875rem 0 1.9375rem 0;
    font-size: 1.4375rem;
    line-height: 1.875rem;
  }
}
.block-image__image-slider {
  width: 100%;
  padding: 1.5625rem 0;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .block-image__image-slider {
    width: 50%;
    flex-basis: 50%;
    padding: 0 0 0 5.3125rem;
  }
  .ie11 .block-image__image-slider {
    width: 45%;
    flex-basis: 45%;
  }
}
@media (min-width: 1024px) and (orientation: landscape) {
  .block-image--image-left .block-image__image-slider {
    padding-left: 0;
    padding-right: 5.3125rem;
  }
}
@media (min-width: 1024px) and (orientation: landscape) {
  .block-image--image-left .block-image__content {
    padding-right: 0;
  }
}
@media (min-width: 1024px) and (orientation: landscape) {
  .block-image--image-left .wrapper {
    flex-direction: row-reverse;
  }
}
.icon-text {
  display: flex;
  gap: 12px;
  align-items: center;
}

.image-padding {
  padding: 0 5.3125rem 0 0 !important;
}

.icon-text-start {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .block__text {
    margin-top: 1.875rem;
    margin-bottom: 1.875rem;
    font-size: 1rem;
    line-height: 1.875rem;
  }
}
.md-flex-col {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.wrapper {
  padding: 1rem;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .wrapper {
    max-width: 71.25rem;
    margin: 0 auto;
  }
}
.wrapper {
  width: 100%;
}

.block--gray-bg {
  background-color: #f8f8f8;
}

.lorassy-grid {
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
}

.lorassy-grid div {
  padding: 24px;
  background-color: #68c5d4;
  color: #ffffff;
  height: 192px;
  margin: 16px;
  display: flex;
  font-size: 24px;
  line-height: 32px;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 12px;
}

.lorassy-grid div p {
  text-transform: capitalize;
}

.title {
  font-size: 34px;
  line-height: 36px;
  font-weight: 700;
  color: #1f2a37;
}

.regular-shadow {
  box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.04);
}

.phase-card {
  display: flex;
  background-color: #fff;
  border-radius: 12px;
  padding: 24px;
  gap: 24px;
  margin-bottom: 24px;
  align-items: center;
  box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.04);
}

.phase-card-title {
  color: #1f2a37;
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}

.phase-card-desc {
  color: #1f2a37;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
}

.check-icon {
  width: 24px;
  height: 24px;
}

.icon-text {
  display: flex;
  gap: 12px;
  align-items: center;
}

.icon-text-start {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.title-with-icon {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 34px;
  line-height: 36px;
  font-weight: 700;
  color: #1f2a37;
}

.title-icon {
  height: 34px;
}

/* .lorassy-grid div:last-child {
        background-image: url('https://webalkans.eu/wp-content/uploads/2021/05/images.png');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        color: #fff;

    } */
.wrapper {
  padding: 1rem;
}

.lorassy-apply-btn {
  position: fixed;
  bottom: 32px;
  right: 48px;
  cursor: pointer;
  font-size: large;
  font-family: inherit;
  font-weight: bold;
  color: #ff6e3b;
  background-color: #f8f8fd;
  padding: 0.8em 2.2em;
  border-radius: 50em;
  border: 6px solid #ff6e3b;
  box-shadow: 0px 8px rgba(255, 110, 59, 0.4588235294);
  animation: load 2s infinite;
  text-decoration: none;
  z-index: 9999;
}

.md-flex-col {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.image-padding {
  padding: 0 5.3125rem 0 0 !important;
}

.md-order-first {
  order: 2;
}

.phase-icon {
  width: 40px;
  object-fit: contain;
}

@media screen and (max-width: 1024px) {
  .lorassy-grid {
    grid-template-columns: 50% 50%;
  }
  .md-flex-col {
    flex-direction: column;
    gap: 12px;
  }
  .image-padding {
    padding: 0 !important;
  }
  .md-order-first {
    order: -1;
  }
  .phase-icon {
    width: 32px;
  }
}
@media screen and (max-width: 512px) {
  .lorassy-grid {
    grid-template-columns: 100%;
  }
}
@keyframes load {
  0% {
    margin-bottom: 0;
  }
  50% {
    margin-bottom: 18px;
  }
  100% {
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) and (orientation: landscape) {
  .custom-wrapper {
    max-width: 71.25rem;
    margin: 0 auto;
  }
}
.custom-wrapper {
  width: 100%;
}

.yea-card-large img {
  aspect-ratio: 3/2;
  object-fit: cover;
}

/*# sourceMappingURL=main.css.map */
