/*
	Theme Name:			umacleveland
	Description:		Theme designed by jojoitsoft.com
	Theme URI:			
	Author:				JOJOITSOFT 
	Author URI:			jojoitsoft.com
	Version:			1.0.64
    Text Domain:        umacleveland
*/
@import url("https://fonts.googleapis.com/css2?family=Geologica:wght@100..900&display=swap");

:root {
  --Gradient: linear-gradient(
    90deg,
    #031839 0%,
    #053654 32.5%,
    #043d59 42%,
    #006174 71.5%,
    #00bae0 100%
  );
  --Black: #000000;
  --black-01: rgba(0, 0, 0, 0);
  --Grey: #666;
  --Dark-Grey: #1e1e1e;
  --Light-Grey: #878787;
  --Default-Grey: #eee;
  --White: #fff;
  --white-01: rgba(255, 255, 255, 0);
  --Dark-Orange: #b36700;
  --Light-Orange: #da8e00;
  --Blue: #004a87;
  --Geologica: "Geologica", serif;
}

* {
  padding: 0;
  margin: 0;
  border: 0;
}
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
:focus,
:active {
  outline: none;
}
a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  min-height: 100vh;
  min-height: 100dvh;
  height: 100%;
  width: 100%;
  font-size: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-optical-sizing: auto;
  font-style: normal;
  cursor: default;
  scroll-behavior: smooth;
  background-color: var(--White);
  font-family: "Arial", sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}
button {
  cursor: pointer;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
a,
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
img {
  vertical-align: top;
}

main {
  flex-grow: 1;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
}
.container-fluid {
  width: 100%;
}
.main-button {
  display: flex;
  padding: 12px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  background: var(--White, #fff);
  color: var(--Black, #000);
  font-family: var(--Geologica);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
}
.main-button:hover {
  transform: translateY(-3px);
  transition: 0.3s all;
  box-shadow: 0px 4px 8px 0px rgba(255, 255, 255, 0.5);
}
.second-button {
  display: inline-flex;
  padding: 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  border: 1px solid var(--Black, #000);
  background: var(--White, #fff);
  color: var(--Black, #000);
  font-family: var(--Geologica);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
}
.button-large {
  width: 100%;
  display: flex;
  padding: 12px;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
  border-radius: 8px;
  background: var(--Gradient);
  color: var(--White, #fff);
  font-family: var(--Geologica);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
}
.button-large:hover {
  font-size: 17px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transition: all 0.1s linear;
}
.button-large-white {
  width: 100%;
  display: flex;
  padding: 12px;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
  border-radius: 8px;
  background: var(--White, #fff);
  color: var(--Black);
  font-family: var(--Geologica);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
}
.button-large-white:hover {
  font-size: 17px;
  box-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 0.25);
  transition: all 0.1s linear;
}
.bg-gradient {
  background: var(--Gradient);
}
.bg-gray {
  background: var(--Light-Grey);
}
.content-container {
  padding-top: 40px;
  padding-bottom: 40px;
  font-family: var(--Geologica);
}
.content-container .content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
  font-weight: 200;
  font-size: 18px;
}
.content-container .content a {
  color: #004a87;
}
.content-container .content figure {
  margin: 0 auto;
}
.donateButtonAllPages {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 8px 12px;
  background: var(--Gradient);
  color: var(--White);
  display: inline-flex;
  gap: 6px;
  align-items: center;
  font-family: var(--Geologica);
  border: 0.5px solid var(--White);
  z-index: 22;
}
@media screen and (max-width: 1300px) {
  section {
    padding: 0 20px;
  }
}
/* --- Header START --- */
header {
  background: var(--Gradient);
}
.header-container {
  margin-top: 32px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.header-container .logo a img {
  max-height: 96px;
  width: auto;
}
.header-container .__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 24px;
}
.header-container .__wrapper .buttons {
  display: inline-flex;
  gap: 24px;
}
.header-container .__wrapper .buttons a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--White);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
}
.header-container .__wrapper .buttons form button {
  background: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--White);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
}
.heart {
  animation: heart 1s linear infinite;
}
@keyframes heart {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.header-container .__wrapper .topnav .menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  gap: 24px;
}
.header-container .__wrapper .topnav .menu .menu-item a {
  color: var(--White, #fff);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
}
.header-container .__wrapper .topnav .menu li {
  list-style: none;
}
.header-container .__wrapper .topnav .menu li button {
  background: none;
  color: var(--White, #fff);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
}
.header-container .__wrapper .topnav .menu .menu-item-has-children {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  cursor: pointer;
}
.header-container .__wrapper .topnav .menu .menu-item-has-children .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0%;
  z-index: 1;
  width: auto;
  height: auto;
}
.header-container .__wrapper .topnav .menu .menu-item-has-children:hover svg {
  transform: rotate(180deg);
  transition: all 0.1s linear;
}
.header-container
  .__wrapper
  .topnav
  .menu
  .menu-item-has-children:hover
  .sub-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  border-radius: 8px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.04),
    0px 8px 16px 0px rgba(0, 0, 0, 0.08);
  background: var(--Gradient);
}
.header-container
  .__wrapper
  .topnav
  .menu
  .menu-item-has-children
  .sub-menu
  .menu-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 8px;
}
.header-container
  .__wrapper
  .topnav
  .menu
  .menu-item-has-children
  .sub-menu
  .menu-item
  a {
  text-wrap: nowrap;
}
/* -- Mobile menu START -- */
.mobile-header-container {
  display: none;
}
.mobile-header-container .logo a img {
  max-height: 50px;
  width: auto;
}
.mobile-header-container .menu-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--White, #fff);
  /* Body1 Med */
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
  cursor: pointer;
}
.mobile-menu-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid var(--White);
  background: var(--Gradient);
  width: 100%;
  display: none;
}
.mobile-menu-container .mobilenav .menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.mobile-menu-container .mobilenav .menu li {
  list-style: none;
}
.mobile-menu-container .mobilenav .menu .menu-item {
  padding-top: 8px;
  padding-bottom: 8px;
  width: 100%;
}
.mobile-menu-container .mobilenav .menu .menu-item a {
  color: var(--White, #fff);
  font-family: Geologica;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 140% */
  width: 100%;
}
.mobile-menu-container .mobilenav .menu .menu-item button {
  color: var(--White, #fff);
  font-family: Geologica;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 140% */
  background: none;
}
.mobile-menu-container .mobilenav .menu .menu-item-has-children {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  cursor: pointer;
}
.mobile-menu-container .mobilenav .menu .menu-item-has-children svg {
  position: absolute;
  right: 0;
  top: 7px;
}
.mobile-menu-container .mobilenav .menu .menu-item-has-children .sub-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding-left: 20px;
  display: none;
}
.mobile-menu-container .mobilenav .menu .menu-item-has-children.active svg {
  transform: rotate(90deg);
  transition: all 0.1s linear;
}
.mobile-menu-container .buttons {
  margin-top: 24px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.mobile-menu-container .buttons a {
  display: inline-flex;
  align-items: center;
  color: var(--White);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
  gap: 12px;
}
.mobile-menu-container .buttons form button {
  background: none;
  display: inline-flex;
  align-items: center;
  color: var(--White);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
  gap: 12px;
}
@media screen and (max-width: 992px) {
  .header-container {
    display: none;
  }
  .mobile-header-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
/* -- Mobile menu END -- */
/* --- Header END --- */

/* --- Main START --- */
/* -- Front page START -- */
/* Hero START */
.hero {
  min-height: 373px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero-front {
  background-image: url("/wp-content/themes/umacleveland/assets/img/bg/main-bg.webp");
  background-position: center;
  background-size: cover;
}
.hero-front .hero-container-box {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.hero-front .hero-container-box .__wrapper {
  display: flex;
  width: 408px;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border-radius: 12px;
  background: var(--Gradient);
  color: var(--White);
}
.hero .hero-container-box .__wrapper h1 {
  font-family: var(--Geologica);
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 48px; /* 120% */
}
.hero .hero-container-box .__wrapper small {
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
@media screen and (max-width: 992px) {
  .hero {
    min-height: 262px;
  }
  .hero-front .hero-container-box .__wrapper {
    display: none;
  }
}
/* Hero END */
/* For mobile only START */
.for-mobile {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  color: var(--White);
  gap: 12px;
  padding-top: 24px;
  padding-bottom: 24px;
  display: none;
}
.for-mobile h1 {
  font-family: var(--Geologica);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 120% */
}
.for-mobile small {
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
@media screen and (max-width: 992px) {
  .for-mobile {
    display: flex;
  }
}
@media screen and (max-width: 576px) {
  .for-mobile .main-button {
    width: 100%;
  }
}
/* For mobile only END */
/* About us START */
.about-us-flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  color: var(--White);
  z-index: 2;
  padding-top: 40px;
  padding-bottom: 40px;
}
.about-us-flex div {
  max-width: 540px;
  width: 50%;
}
.about-us-flex .title {
  color: var(--White, #fff);
  font-family: var(--Geologica);
  font-size: clamp(20px, 2vw, 24px);
  font-style: normal;
  font-weight: 500;
  line-height: 34px; /* 141.667% */
  margin-bottom: 24px;
}
.about-us-flex p {
  color: var(--White, #fff);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.about-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: auto;
  color: var(--White, #fff);
  gap: 39px;
  padding-top: 24px;
  padding-bottom: 24px;
}
.about-us-grid article {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.about-us-grid article .image-box {
  width: 100%;
  aspect-ratio: 2/1;
  overflow: hidden;
}
.about-us-grid article .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-us-grid article .content-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 8px;
}
.about-us-grid article .content-box h4 {
  color: var(--White, #fff);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
}
.about-us-grid article .content-box p {
  color: var(--White, #fff);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
@media screen and (max-width: 992px) {
  .about-us-flex {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px;
  }
  .about-us-flex div {
    max-width: none;
    width: 100%;
  }
  .about-us-grid {
    grid-template-columns: 1fr;
  }
}
/* About us END */
/* Collections START */
.collections-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  padding-top: 40px;
  color: var(--Black, #000);
}
.collections-container article {
  max-width: 540px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
}
.collections-container article h2 {
  color: var(--Black, #000);
  font-family: var(--Geologica);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px; /* 141.667% */
}
.collections-container article p {
  color: var(--Black, #000);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.collections-container .buttons {
  display: inline-flex;
  gap: 24px;
  align-items: center;
}
.collections-container .buttons a {
  color: var(--Grey, #666);
  font-family: var(--Geologica);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
  padding-bottom: 2px;
}
.collections-container .buttons a:hover {
  color: var(--Light-Orange);
}
.collections-container .buttons a.active {
  color: var(--Dark-Orange, #b36700);
  font-family: var(--Geologica);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
  border-bottom: 2px solid var(--Dark-Orange, #b36700);
}
.collections.item-box {
  color: var(--Black, #000);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: auto;
  gap: 16px;
  margin-top: 24px;
}
.collections.item-box .item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  height: 128px;
  cursor: pointer;
}
.collections.item-box .item .image-box {
  aspect-ratio: 14/9;
  height: 100%;
  padding-left: 14px;
  position: relative;
}
.collections.item-box .item .image-box .date {
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("/wp-content/themes/umacleveland/assets/img/date-bg.svg");
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 60px;
  color: var(--White, #fff);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
  padding-top: 15px;
}
.collections.item-box .item .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.collections.item-box .item .content-box {
  display: flex;
  flex-direction: column;
  background-color: var(--Gradient);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 12px;
}
.collections.item-box .item:nth-child(even) .content-box {
  background-color: var(--Dark-Grey);
}
.collections.item-box .item .content-box span {
  color: var(--Light-Grey, #878787);
  font-family: Arial;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 171.429% */
  text-transform: uppercase;
}
.collections.item-box .item .content-box .title {
  color: var(--White, #fff);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  margin-top: 8px;
}
.collections.button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-bottom: 40px;
  margin-top: 40px;
}
@media screen and (max-width: 992px) {
  .collections-container {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .collections-container .buttons {
    align-self: flex-end;
  }
  .collections.item-box {
    grid-template-columns: 1fr;
  }
}
/* Collections END */
/* donation-info START */
.donation-info {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: auto;
  gap: 154px;
  margin-top: 40px;
}
.donation-info article {
  width: 100%;
}
@media screen and (max-width: 992px) {
  .donation-info {
    grid-template-columns: 1fr;
  }
}
/* donation-info END */
/* Upcoming events START */
.upcoming-events-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 40px;
}
.upcoming-events-container .top-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.upcoming-events-container .top-container .main-title {
  color: var(--Black, #000);
  font-family: var(--Geologica);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px; /* 141.667% */
}
.upcoming-events-container .buttons {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}
.upcoming-events-container .buttons svg {
  cursor: pointer;
}
.upcoming-events-container .buttons svg:hover path:first-child {
  fill: #000;
  stroke: #000;
}
.upcoming-events-container.slider .slider-container {
  width: 100%;
  overflow-x: hidden;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.upcoming-events-container.slider .slider-container .item-box {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  transition: all 0.5s ease-in-out;
  width: 100%;
}
/* Upcoming events END */

/* Support our Work START */
.support-our-work {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.support-our-work article {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  max-width: 540px;
}
.support-our-work article h2 {
  color: var(--White, #fff);
  font-family: var(--Geologica);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px; /* 141.667% */
}
.support-our-work article p {
  color: var(--White, #fff);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.support-our-work article .main-button {
  width: 200px;
}
@media screen and (max-width: 992px) {
  .support-our-work {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px;
  }
  .support-our-work article {
    max-width: none;
  }
}
@media screen and (max-width: 576px) {
  .support-our-work article .main-button {
    width: 100%;
  }
}
/* Support our Work END */
/* Contact form START */
.bg-grey {
  background: var(--Dark-Grey);
}
.contact-form-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  color: var(--White);
  padding-top: 40px;
  padding-bottom: 40px;
}
.contact-form-container article {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  max-width: 540px;
  flex-grow: 1;
}
.contact-form-container article:first-child h2 {
  color: var(--White, #fff);
  font-family: var(--Geologica);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px; /* 141.667% */
}
.contact-form-container article:first-child p {
  color: var(--White, #fff);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.wpcf7 {
  width: 100%;
}
.wpcf7 form p label {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--White, #fff);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.wpcf7 form p label br {
  display: none;
}
.wpcf7 form p label span {
  width: 100%;
}
.wpcf7 form p label input,
.wpcf7 form p label textarea {
  display: flex;
  padding: 12px 8px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 8px;
  opacity: 0.6;
  background: var(--White, #fff);
  width: 100%;
}
.wpcf7 form p mark {
  background: none;
  color: var(--White, #fff);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
.wpcf7 form p input[type="submit"] {
  display: flex;
  width: 200px;
  padding: 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  background: var(--Gradient);
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.02),
    0px 2px 4px 0px rgba(0, 0, 0, 0.08);
  color: var(--White, #fff);
  font-family: var(--Geologica);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
  cursor: pointer;
}
.wpcf7 form div.button p {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 24px;
}
@media screen and (max-width: 992px) {
  .contact-form-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .contact-form-container article {
    max-width: none;
    width: 100%;
  }
}
/* Contact form END */

/* -- Front page END -- */
/* -- 404 START -- */
.container-404 {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container-404 .content-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.container-404 .content-container span {
  color: var(--Dark-Orange);
  font-size: 80px;
  font-family: var(--Geologica);
  font-weight: 600;
}
.container-404 .content-container small {
  color: var(--Black);
  font-family: var(--Geologica);
  font-size: 30px;
}
/* -- 404 END -- */
/* Page Visit (START) */
main.visit .content-container .grid-container {
  display: grid;
  grid-template-columns: minmax(300px, 400px) 1fr;
  gap: 50px;
}
main.visit .content-container .grid-container .grid-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}
main.visit .content-container .grid-container .grid-item .content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
  margin-top: 0px;
}
@media screen and (max-width: 992px) {
  main.visit .content-container .grid-container {
    grid-template-columns: 1fr;
  }
}
/* Page Visit (END) */
/* - Breadcrumb START - */
.breadcrumb-container {
  margin-top: 24px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.breadcrumb-container a {
  color: var(--Light-Grey, #878787);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
}
.breadcrumb-container a.active {
  color: var(--Black, #000);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
  pointer-events: none;
}
.breadcrumb-container svg {
  min-width: 24px;
  min-height: 24px;
}
/* breadcrumb START */
@media screen and (max-width: 768px) {
  .breadcrumb-container a,
  .breadcrumb-container a.active {
    font-size: 12px;
  }
}
/* breadcrumb END */
/* - Breadcrumb END - */
/* -- Donate Us START -- */
/* hero START */
.hero-donate-us {
  background-image: url("/wp-content/themes/umacleveland/assets/img/bg/img2.webp");
  background-position: center;
  background-size: cover;
}
.hero-donate-us .hero-container-box {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.hero-donate-us .hero-container-box .__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}
.hero-donate-us .hero-container-box .__wrapper h1 {
  color: var(--White);
  font-family: var(--Geologica);
  font-size: clamp(20px, 4vw, 40px);
  font-style: normal;
  font-weight: 500;
  line-height: 48px; /* 120% */
}
.hero-donate-us .hero-container-box .__wrapper .main-button {
  width: 200px;
}
@media screen and (max-width: 576px) {
  .hero-donate-us .hero-container-box .__wrapper {
    gap: 12px;
  }
  .hero-donate-us .hero-container-box .__wrapper .main-button {
    width: 100%;
  }
}
/* hero END */
/* first sections START */
.donate-us .first-sections {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-top: 40px;
}
.donate-us .first-sections article {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  max-width: 540px;
}
.donate-us .first-sections article h2 {
  color: var(--Black, #000);
  font-family: var(--Geologica);
  font-size: clamp(20px, 2vw, 24px);
  font-style: normal;
  font-weight: 500;
  line-height: 34px; /* 141.667% */
}
.donate-us .first-sections article p {
  color: var(--Black, #000);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.donate-us .first-sections article ul {
  padding-left: 20px;
}
.donate-us .first-sections article ul li {
  color: var(--Black, #000);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.donate-us .donate-now {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
  padding-bottom: 40px;
}
@media screen and (max-width: 992px) {
  .donate-us .first-sections {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 24px;
  }
  .donate-us .first-sections article {
    max-width: none;
  }
}
/* first sections END */
/* second sections START */
.donate-us .second-section {
  padding-top: 24px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}
.donate-us .second-section article {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  max-width: 540px;
}
.donate-us .second-section article h2 {
  color: var(--Black, #000);
  font-family: var(--Geologica);
  font-size: clamp(20px, 2vw, 24px);
  font-style: normal;
  font-weight: 500;
  line-height: 34px; /* 141.667% */
}
.donate-us .second-section article span {
  color: var(--Black, #000);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
}
.donate-us .second-section article p {
  color: var(--Black, #000);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.donate-us .second-section article img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .donate-us .second-section {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .donate-us .second-section article {
    max-width: none;
  }
}
/* second sections END */
/* third section START */
.donate-us .third-section {
  margin-bottom: 80px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}
.donate-us .third-section article {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  max-width: 540px;
}
.donate-us .third-section article img {
  max-width: 100%;
  height: auto;
}
.donate-us .third-section article h2 {
  color: var(--Black, #000);
  font-family: var(--Geologica);
  font-size: clamp(20px, 2vw, 24px);
  font-style: normal;
  font-weight: 500;
  line-height: 34px; /* 141.667% */
}
.donate-us .third-section article p {
  color: var(--Black, #000);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.donate-us .third-section article ul {
  padding-left: 20px;
}
.donate-us .third-section article ul li {
  color: var(--Black, #000);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
@media screen and (max-width: 768px) {
  .donate-us .third-section {
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .donate-us .third-section article {
    max-width: none;
  }
}
/* third section END */
/* -- Donate Us END -- */
/* -- About Us START -- */
/* hero START */
.hero-about-us {
  background-image: url("/wp-content/themes/umacleveland/assets/img/bg/img3.webp");
  background-position: center;
  background-size: cover;
}
.hero-about-us .hero-container-box {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.hero-about-us .hero-container-box .__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}
.hero-about-us .hero-container-box .__wrapper h1 {
  color: var(--White);
  font-family: var(--Geologica);
  font-size: clamp(20px, 4vw, 40px);
  font-style: normal;
  font-weight: 500;
  line-height: 48px; /* 120% */
  max-width: 540px;
}
.hero-about-us .hero-container-box .__wrapper .main-button {
  width: 200px;
}
@media screen and (max-width: 992px) {
  .hero-about-us .hero-container-box .__wrapper {
    display: none;
  }
}
/* hero END */
/* first section START */
.about-us .first-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  margin-top: 40px;
}
.about-us .title {
  color: var(--Black, #000);
  font-family: var(--Geologica);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px; /* 141.667% */
}
.about-us .first-section .content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  row-gap: 64px;
  flex-wrap: wrap;
}
.about-us .content p {
  max-width: 540px;
  flex: 0 0 50%;
  color: var(--Black, #000);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.about-us .first-section .content p:nth-child(1) {
  order: 1;
}
.about-us .first-section .content p:nth-child(3) {
  order: 2;
}
.about-us .first-section .content p:nth-child(2) {
  order: 3;
}
.about-us .first-section .content p:nth-child(4) {
  order: 4;
}
@media screen and (max-width: 992px) {
  .about-us .first-section .content {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: 24px;
    flex-wrap: wrap;
    width: 100%;
  }
  .about-us .first-section .content p:nth-child(3) {
    order: 3;
  }
  .about-us .first-section .content p:nth-child(2) {
    order: 2;
  }
  .about-us .content p {
    max-width: none;
  }
}
/* first section END */
/* second section START */
.about-us .second-section {
  margin-top: 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.about-us .second-section .__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.about-us p a,
.about-us section article li a {
  color: var(--Blue);
}
.about-us .second-section .__wrapper article {
  width: 100%;
  max-width: 540px;
}
.about-us .second-section .__wrapper article h2 {
  margin-bottom: 24px;
}
.second-section .content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}
.second-section .content.sponsors div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.second-section .content.sponsors div img {
  max-width: 224px;
  height: auto;
}
.second-section .content.sponsors div p[data-title="sponsor"] {
  color: var(--Light-Grey, #878787);
  font-family: Arial;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 157.143% */
}
.second-section .content.membership .members {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}
.second-section .content.membership .members .item {
  display: flex;
  padding: 12px;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
  width: 100%;
  border-radius: 2px;
  background: var(--White, #fff);
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.02),
    0px 2px 4px 0px rgba(0, 0, 0, 0.08);
}
.second-section .content.membership .members .item span {
  color: var(--Black, #000);
  font-family: var(--Geologica);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
}
.second-section .content.membership ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.second-section .content.membership ul li {
  color: var(--Black, #000);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
@media screen and (max-width: 992px) {
  .about-us .second-section {
    margin-top: 40px;
  }
  .about-us .second-section .__wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    gap: 24px;
  }
  .about-us .second-section .__wrapper article {
    width: 100%;
    max-width: none;
  }
}
@media screen and (max-width: 576px) {
  .second-section .content.sponsors div {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
  }
  .second-section .content.sponsors div img {
    max-width: none;
    height: auto;
    width: 100%;
  }
}
/* second section END */

/* fourth section START */
.about-us .fourth-section {
  margin-top: 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 80px;
}
.about-us .fourth-section .__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}
.about-us .fourth-section .__wrapper article {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: 24px;
  width: 50%;
  max-width: 540px;
}
.about-us .fourth-section .__wrapper article .content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: 24px;
}
.about-us .fourth-section .__wrapper article ul {
  padding-left: 20px;
}
.about-us .fourth-section .__wrapper article ul li {
  color: var(--Black, #000);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
@media screen and (max-width: 992px) {
  .about-us .fourth-section {
    margin-bottom: 40px;
  }
  .about-us .fourth-section .__wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
  }
  .about-us .fourth-section .__wrapper article {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: 24px;
    width: 100%;
    max-width: none;
  }
}
/* fourth section END */
/* Reports START */
.reports-container {
  margin-top: 25px;
  margin-bottom: 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.reports-container article {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}
.reports-container ul {
  padding-left: 20px;
}
.reports-container ul li a {
  color: var(--Blue, #004a87);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
@media screen and (max-width: 992px) {
  .reports-container {
    grid-template-columns: 1fr;
  }
}
/* Reports END */
/* Capital projects START  */
.capital-projects-container {
  padding-bottom: 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
.capital-projects-container article {
  max-width: 540px;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
}
.capital-projects-container article .title {
  font-weight: 600;
}
.capital-projects-container article p {
  color: var(--Black, #000);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.capital-projects-container article ul {
  padding-left: 20px;
}
.capital-projects-container article ul li a {
  color: #004a87;
}
@media screen and (max-width: 992px) {
  .capital-projects-container {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .capital-projects-container article {
    width: 100%;
    max-width: none;
  }
}
/* Capital projects END  */
/* -- About Us END -- */
/* -- Museum START -- */
/* hero START */
.hero-museum {
  background-image: url("/wp-content/themes/umacleveland/assets/img/bg/img4.webp");
  background-position: center;
  background-size: cover;
}
.hero-museum .hero-container-box {
  width: 100%;
}
.hero-museum .hero-container-box .__wrapper {
  display: flex;
  width: 408px;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border-radius: 12px;
  background: var(--Gradient);
  color: var(--White);
}
.hero .hero-container-box .__wrapper h1 {
  font-family: var(--Geologica);
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 48px; /* 120% */
}
.hero .hero-container-box .__wrapper small {
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
@media screen and (max-width: 992px) {
  .hero-museum .hero-container-box .__wrapper {
    display: none;
  }
}
/* hero END */
/* breadcrumb START */
.museum .bg-gradient .breadcrumb-container {
  margin-top: 0;
  padding-top: 40px;
}
.museum .bg-gradient .breadcrumb-container .active {
  color: var(--White);
}
.museum section article p a {
  color: var(--Light-Orange);
}
/* breadcrumb END */
main.museum .__wrapper .image-box,
main.museum article .image-box {
  width: 540px;
  max-width: 540px;
  aspect-ratio: 2.14/1;
  height: auto;
  overflow: hidden;
}
main.museum .__wrapper .image-box img,
main.museum article .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* museum section START */
.museum-section {
  width: 100%;
  margin-top: 40px;
  padding-bottom: 40px;
}
.museum-section .__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.museum-section .__wrapper article {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: 24px;
  max-width: 540px;
  width: 50%;
  color: var(--White);
}
.museum-section .__wrapper article p {
  color: var(--White, #fff);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.museum-section .__wrapper article p span {
  color: var(--White, #fff);
  font-family: var(--Geologica);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
}
@media screen and (max-width: 992px) {
  .museum-section .__wrapper {
    flex-direction: column;
    justify-content: flex-start;
  }
  .museum-section .__wrapper article {
    max-width: none;
    width: 100%;
  }
}
/* museum section EMD */
/* ukrainian-art-section START */
.ukrainian-art-section {
  padding-top: 32px;
  padding-bottom: 32px;
  width: 100%;
}
.ukrainian-art-section .__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.ukrainian-art-section .__wrapper article {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: 24px;
  max-width: 540px;
  width: 50%;
  color: var(--Black);
}
.ukrainian-art-section .__wrapper article h2 {
  color: var(--Black, #000);
  font-family: var(--Geologica);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px; /* 141.667% */
}
.ukrainian-art-section .__wrapper article p {
  color: var(--Black, #000);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
@media screen and (max-width: 992px) {
  .ukrainian-art-section .__wrapper {
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
  }
  .ukrainian-art-section .__wrapper .image-box {
    max-width: none;
    width: 100%;
  }
  .ukrainian-art-section .__wrapper article {
    max-width: none;
    width: 100%;
  }
}
/* ukrainian-art-section END */
/* dmohovsky-photographs-section START */
.dmohovsky-photographs-section {
  width: 100%;
  padding-top: 32px;
  padding-bottom: 32px;
}
.dmohovsky-photographs-section article {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 24px;
}
.dmohovsky-photographs-section article .content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  max-width: 540px;
}
.dmohovsky-photographs-section article .content h2 {
  color: var(--White, #fff);
  font-family: var(--Geologica);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px; /* 141.667% */
}
.dmohovsky-photographs-section article .content p {
  color: var(--White, #fff);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.dmohovsky-photographs-section article .image-box {
  max-width: 540px;
}
.dmohovsky-photographs-section article .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 992px) {
  .dmohovsky-photographs-section article {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .dmohovsky-photographs-section article .content {
    max-width: none;
  }
  .dmohovsky-photographs-section article .image-box {
    max-width: none;
    width: 100%;
  }
}
/* dmohovsky-photographs-section END */
/* hnatiuk-collection-section START */
.hnatiuk-collection-section {
  width: 100%;
  padding-top: 32px;
  padding-bottom: 32px;
}
.hnatiuk-collection-section article {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 24px;
  color: var(--Black);
}
.hnatiuk-collection-section article .image-box {
  max-width: 540px;
}
.hnatiuk-collection-section article .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hnatiuk-collection-section article .content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  max-width: 540px;
}
.hnatiuk-collection-section article .content h2 {
  color: var(--Black);
  font-family: var(--Geologica);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px; /* 141.667% */
}
.hnatiuk-collection-section article .content p {
  color: var(--Black, #000);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
@media screen and (max-width: 992px) {
  .hnatiuk-collection-section article {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .hnatiuk-collection-section article .image-box {
    max-width: none;
    width: 100%;
  }
  .hnatiuk-collection-section article .content {
    max-width: none;
  }
}
/* hnatiuk-collection-section END */
/* ukrainian-easter-eggs-section START */
.ukrainian-easter-eggs-section {
  width: 100%;
  padding-top: 32px;
  padding-bottom: 32px;
}
.ukrainian-easter-eggs-section article {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 24px;
  color: var(--White);
}
.ukrainian-easter-eggs-section article .image-box {
  max-width: 540px;
}
.ukrainian-easter-eggs-section article .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ukrainian-easter-eggs-section article .content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  max-width: 540px;
}
.ukrainian-easter-eggs-section article .content h2 {
  color: var(--White);
  font-family: var(--Geologica);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px; /* 141.667% */
}
.ukrainian-easter-eggs-section article .content p {
  color: var(--White);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
@media screen and (max-width: 992px) {
  .ukrainian-easter-eggs-section article {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .ukrainian-easter-eggs-section article .image-box {
    max-width: none;
    width: 100%;
  }
  .ukrainian-easter-eggs-section article .content {
    max-width: none;
  }
}
/* ukrainian-easter-eggs-section END */
/* displaced-persons-camp-section START */
.displaced-persons-camp-section {
  width: 100%;
  padding-top: 32px;
  padding-bottom: 32px;
}
.displaced-persons-camp-section article {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 24px;
  color: var(--Black);
}
.displaced-persons-camp-section article .image-box {
  max-width: 540px;
}
.displaced-persons-camp-section article .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.displaced-persons-camp-section article .content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  max-width: 540px;
}
.displaced-persons-camp-section article .content h2 {
  color: var(--Black);
  font-family: var(--Geologica);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px; /* 141.667% */
}
.displaced-persons-camp-section article .content p {
  color: var(--Black);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
@media screen and (max-width: 992px) {
  .displaced-persons-camp-section article {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .displaced-persons-camp-section article .image-box {
    max-width: none;
    width: 100%;
  }
  .displaced-persons-camp-section article .content {
    max-width: none;
  }
}
/* displaced-persons-camp-section END */
/* plast-ukrainian-scout-section START */
.plast-ukrainian-scout-section {
  width: 100%;
  padding-top: 32px;
  padding-bottom: 32px;
}
.plast-ukrainian-scout-section article {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 24px;
  color: var(--White);
}
.plast-ukrainian-scout-section article .image-box {
  max-width: 540px;
}
.plast-ukrainian-scout-section article .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.plast-ukrainian-scout-section article .content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  max-width: 540px;
}
.plast-ukrainian-scout-section article .content h2 {
  color: var(--White);
  font-family: var(--Geologica);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px; /* 141.667% */
}
.plast-ukrainian-scout-section article .content p {
  color: var(--White);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
@media screen and (max-width: 992px) {
  .plast-ukrainian-scout-section article {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .plast-ukrainian-scout-section article .image-box {
    max-width: none;
    width: 100%;
  }
  .plast-ukrainian-scout-section article .content {
    max-width: none;
  }
}
/* plast-ukrainian-scout-section END */
/* holodomor-genocide-section START */
.holodomor-genocide-section {
  width: 100%;
  padding-top: 32px;
  padding-bottom: 32px;
}
.holodomor-genocide-section article {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 24px;
  color: var(--Black);
}
.holodomor-genocide-section article .image-box {
  max-width: 540px;
}
.holodomor-genocide-section article .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.holodomor-genocide-section article .content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  max-width: 540px;
}
.holodomor-genocide-section article .content h2 {
  color: var(--Black);
  font-family: var(--Geologica);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px; /* 141.667% */
}
.holodomor-genocide-section article .content p {
  color: var(--Black);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
@media screen and (max-width: 992px) {
  .holodomor-genocide-section article {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .holodomor-genocide-section article .image-box {
    max-width: none;
    width: 100%;
  }
  .holodomor-genocide-section article .content {
    max-width: none;
  }
}
/* holodomor-genocide-section END */
/* famine-kobzar-section START */
.famine-kobzar-section {
  width: 100%;
  padding-top: 32px;
  padding-bottom: 32px;
}
.famine-kobzar-section article {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 24px;
  color: var(--White);
}
.famine-kobzar-section article .image-box {
  max-width: 540px;
}
.famine-kobzar-section article .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.famine-kobzar-section article .content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  max-width: 540px;
}
.famine-kobzar-section article .content h2 {
  color: var(--White);
  font-family: var(--Geologica);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px; /* 141.667% */
}
.famine-kobzar-section article .content p {
  color: var(--White);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
@media screen and (max-width: 992px) {
  .famine-kobzar-section article {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .famine-kobzar-section article .image-box {
    max-width: none;
    width: 100%;
  }
  .famine-kobzar-section article .content {
    max-width: none;
  }
}
/* famine-kobzar-section END */
/* ukrainian-embroidery-section START */
.ukrainian-embroidery-section {
  width: 100%;
  padding-top: 32px;
  padding-bottom: 32px;
}
.ukrainian-embroidery-section article {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 24px;
  color: var(--White);
}
.ukrainian-embroidery-section article .image-box {
  max-width: 540px;
}
.ukrainian-embroidery-section article .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ukrainian-embroidery-section article .content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  max-width: 540px;
}
.ukrainian-embroidery-section article .content h2 {
  color: var(--White);
  font-family: var(--Geologica);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px; /* 141.667% */
}
.ukrainian-embroidery-section article .content p {
  color: var(--White);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
@media screen and (max-width: 992px) {
  .ukrainian-embroidery-section article {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .ukrainian-embroidery-section article .image-box {
    max-width: none;
    width: 100%;
  }
  .ukrainian-embroidery-section article .content {
    max-width: none;
  }
}
/* ukrainian-embroidery-section END */
/* Icons at the UMA START */
.icons-at-the-uma-section {
  width: 100%;
  padding-top: 32px;
  padding-bottom: 32px;
}
.icons-at-the-uma-section article {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 24px;
  color: var(--Black);
}
.icons-at-the-uma-section article .image-box {
  max-width: 540px;
  aspect-ratio: 2.14/1;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.icons-at-the-uma-section article .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.icons-at-the-uma-section article .content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  max-width: 540px;
}
.icons-at-the-uma-section article .content h2 {
  color: var(--Black);
  font-family: var(--Geologica);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px; /* 141.667% */
}
.icons-at-the-uma-section article .content p {
  color: var(--Black);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
@media screen and (max-width: 992px) {
  .icons-at-the-uma-section article {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .icons-at-the-uma-section article .image-box {
    max-width: none;
    width: 100%;
  }
  .icons-at-the-uma-section article .content {
    max-width: none;
  }
}
/* Icons at the UMA END */
/* Taras Shevchenko and Ira Aldridge START */
.taras-shevchenko-and-ira-aldridge-section {
  width: 100%;
  padding-top: 32px;
  padding-bottom: 32px;
}
.taras-shevchenko-and-ira-aldridge-section article {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 24px;
  color: var(--White);
}
.taras-shevchenko-and-ira-aldridge-section article .image-box {
  max-width: 540px;
  width: 100%;
  aspect-ratio: 2.14/1;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.taras-shevchenko-and-ira-aldridge-section article .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.taras-shevchenko-and-ira-aldridge-section article .content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  max-width: 540px;
}
.taras-shevchenko-and-ira-aldridge-section article .content h2 {
  color: var(--White);
  font-family: var(--Geologica);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px; /* 141.667% */
}
.taras-shevchenko-and-ira-aldridge-section article .content p {
  color: var(--White);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
@media screen and (max-width: 992px) {
  .taras-shevchenko-and-ira-aldridge-section article {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .taras-shevchenko-and-ira-aldridge-section article .image-box {
    max-width: none;
    width: 100%;
  }
  .taras-shevchenko-and-ira-aldridge-section article .content {
    max-width: none;
  }
}
/* Taras Shevchenko and Ira Aldridge END */
/* -- Museum END -- */
/* -- ukrainian-easter-eggs START -- */
/* hero START */
.hero-ukrainian-easter-eggs {
  background-image: url("/wp-content/themes/umacleveland/assets/img/bg/img5.webp");
  background-position: center;
  background-size: cover;
}
.hero-ukrainian-easter-eggs .hero-container-box {
  width: 100%;
}
.hero-ukrainian-easter-eggs .hero-container-box .__wrapper {
  display: flex;
  width: 408px;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border-radius: 12px;
  color: var(--White);
}
.hero .hero-container-box .__wrapper h1 {
  font-family: var(--Geologica);
  font-size: clamp(20px, 4vw, 40px);
  font-style: normal;
  font-weight: 500;
  line-height: 48px; /* 120% */
}
.hero .hero-container-box .__wrapper small {
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.hero-ukrainian-easter-eggs .hero-container-box .__wrapper .main-button {
  width: 200px;
}
@media screen and (max-width: 992px) {
  .hero-museum .hero-container-box .__wrapper {
    display: none;
  }
  .hero-ukrainian-easter-eggs .hero-container-box .__wrapper {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .hero-ukrainian-easter-eggs .hero-container-box .__wrapper .main-button {
    width: 100%;
  }
}
/* hero END */
/* content-container START */
.ukrainian-easter-eggs .content-container {
  width: 100%;
}
.ukrainian-easter-eggs .content-container article {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.ukrainian-easter-eggs .content-container article .content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  max-width: 540px;
}
.ukrainian-easter-eggs .content-container article .content h2 {
  color: var(--Black, #000);
  font-family: var(--Geologica);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px; /* 141.667% */
}
.ukrainian-easter-eggs .content-container article .content p {
  color: var(--Black, #000);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.ukrainian-easter-eggs .content-container article .images {
  max-width: 540px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.ukrainian-easter-eggs .content-container article .images .image-box {
  width: 100%;
  aspect-ratio: 2/1;
}
.ukrainian-easter-eggs .content-container article .images .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 992px) {
  .ukrainian-easter-eggs .content-container article {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .ukrainian-easter-eggs .content-container article .content {
    max-width: none;
  }
  .ukrainian-easter-eggs .content-container article .images {
    max-width: none;
    width: 100%;
  }
}
/* content-container END */
/* -- ukrainian-easter-eggs END -- */
/* -- Research START -- */
/* hero START */
.hero-research {
  background-image: url("/wp-content/themes/umacleveland/assets/img/bg/img6.webp");
  background-position: center;
  background-size: cover;
}
.hero-research .hero-container-box {
  width: 100%;
}
.hero-research .hero-container-box .__wrapper {
  display: flex;
  width: 408px;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border-radius: 12px;
  color: var(--White);
}
.hero .hero-container-box .__wrapper h1 {
  font-family: var(--Geologica);
  font-size: clamp(20px, 4vw, 40px);
  font-style: normal;
  font-weight: 500;
  line-height: 48px; /* 120% */
}
.hero .hero-container-box .__wrapper small {
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.hero-research .hero-container-box .__wrapper .main-button {
  width: 200px;
}
@media screen and (max-width: 992px) {
  .hero-research .hero-container-box .__wrapper {
    display: none;
  }
  .hero-research .hero-container-box .__wrapper {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .hero-research .hero-container-box .__wrapper .main-button {
    width: 100%;
  }
}
/* hero END */
/* research-content START */
.research-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  row-gap: 40px;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 40px;
}
.research-content article {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  max-width: 540px;
  width: 50%;
}
.research-content article:first-child {
  max-width: none;
  width: 100%;
}
.research-content article:first-child p:nth-child(1) {
  order: 1;
}
.research-content article:first-child p:nth-child(2) {
  order: 3;
}
.research-content article:first-child p:nth-child(3) {
  order: 2;
}
.research-content article h2 {
  color: var(--Black, #000);
  font-family: var(--Geologica);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px; /* 141.667% */
}
.research-content article p {
  color: var(--Black, #000);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.research-content article ul {
  padding-left: 20px;
}
.research-content article ul li {
  color: var(--Black, #000);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.research-content article p a {
  color: #004a87;
}
.research-content article .__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  row-gap: 24px;
}
.research-content article .__wrapper p {
  max-width: 540px;
  width: 50%;
}
@media screen and (max-width: 992px) {
  .research-content {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .research-content article {
    max-width: none;
    width: 100%;
  }
  .research-content article .__wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .research-content article .__wrapper p {
    max-width: none;
    width: 100%;
  }
}
/* research-content END */
/* -- Research END -- */
/* -- Resources START -- */
/* hero START */
.hero-resources {
  background-image: url("/wp-content/themes/umacleveland/assets/img/bg/img6.webp");
  background-position: center;
  background-size: cover;
}
.hero-resources .hero-container-box {
  width: 100%;
}
.hero-resources .hero-container-box .__wrapper {
  display: flex;
  width: 408px;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border-radius: 12px;
  color: var(--White);
}
.hero .hero-container-box .__wrapper h1 {
  font-family: var(--Geologica);
  font-size: clamp(20px, 4vw, 40px);
  font-style: normal;
  font-weight: 500;
  line-height: 48px; /* 120% */
}
.hero .hero-container-box .__wrapper small {
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.hero-resources .hero-container-box .__wrapper .main-button {
  width: 200px;
}
@media screen and (max-width: 992px) {
  .hero-resources .hero-container-box .__wrapper {
    display: none;
  }
  .hero-resources .hero-container-box .__wrapper {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .hero-resources .hero-container-box .__wrapper .main-button {
    width: 100%;
  }
}
/* hero END */
/* breadcrumbs START */
.resources .breadcrumb-container {
  margin-bottom: 40px;
}
/* breadcrumbs END */
/* top-item-box START */
.top-item-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 39px;
  row-gap: 16px;
  grid-auto-rows: auto;
  padding-top: 24px;
  padding-bottom: 24px;
}
.top-item-box .item {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
}
.top-item-box .item .image-box {
  width: 100%;
  aspect-ratio: 16/6;
  overflow: hidden;
}
.top-item-box .item .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-item-box .item .title {
  color: var(--White, #fff);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
}
.top-item-box .item span {
  color: var(--White, #fff);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
@media screen and (max-width: 992px) {
  .top-item-box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .top-item-box {
    grid-template-columns: repeat(1, 1fr);
  }
}
/* top-item-box END */
/* ua-museums-in-us START */
.ua-museums-in-us {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}
.ua-museums-in-us h2 {
  color: var(--Black, #000);
  font-family: var(--Geologica);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px; /* 141.667% */
}
.ua-museums-in-us .__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  grid-auto-rows: auto;
  width: 100%;
}
.ua-museums-in-us .__wrapper .item {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: var(--Dark-Grey);
  height: 128px;
}
.ua-museums-in-us .__wrapper .item:nth-child(odd) {
  background-color: var(--Dark-Orange);
}
.ua-museums-in-us .__wrapper .item .image-box {
  aspect-ratio: 1/1;
  height: 100%;
  overflow: hidden;
}
.ua-museums-in-us .__wrapper .item .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ua-museums-in-us .__wrapper .item .content-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 24px 12px;
  gap: 8px;
  color: var(--White);
  flex-grow: 1;
}
.ua-museums-in-us .__wrapper .item .content-box .title {
  color: var(--White, #fff);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
}
.ua-museums-in-us .__wrapper .item .content-box .location {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  color: var(--White, #fff);
  font-family: Arial;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 157.143% */
}
@media screen and (max-width: 992px) {
  .ua-museums-in-us .__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .ua-museums-in-us .__wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
/* ua-museums-in-us END */
/* ua-churches START */
.ua-churches {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}
.ua-churches h2 {
  color: var(--Black, #000);
  font-family: var(--Geologica);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px; /* 141.667% */
}
.ua-churches .__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  grid-auto-rows: auto;
  width: 100%;
}
.ua-churches .__wrapper .item {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 12px;
  gap: 8px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.04),
    0px 4px 8px 0px rgba(0, 0, 0, 0.06);
}
.ua-churches .__wrapper .item.empty {
  pointer-events: none;
}
.ua-churches .__wrapper .item .title {
  color: var(--Black, #000);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
}
.ua-churches .__wrapper .item address {
  color: var(--Black, #000);
  font-family: Arial;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 157.143% */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.ua-churches .__wrapper .item span {
  color: var(--Dark-Grey, #444);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
}
@media screen and (max-width: 992px) {
  .ua-churches .__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .ua-churches .__wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
/* ua-churches END */
/* newsletters START */
.newsletters {
  margin-top: 40px;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
}
.newsletters .item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}
.newsletters h2 {
  color: var(--Black, #000);
  font-family: var(--Geologica);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px; /* 141.667% */
}
.newsletters ul {
  padding-left: 20px;
}
.newsletters ul li a {
  color: var(--Blue, #004a87);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.newsletters ul li a:hover {
  color: var(--Light-Orange);
}
@media screen and (max-width: 992px) {
  .newsletters {
    grid-template-columns: 1fr;
  }
}
/* newsletters END */
/* previously-published START */
.previously-published {
  margin-top: 40px;
  margin-bottom: 40px;
}
.previously-published h2 {
  color: var(--Black, #000);
  font-family: var(--Geologica);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px; /* 141.667% */
}
.previously-published p a {
  color: var(--Blue, #004a87);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
}
/* previously-published END */
/* -- Resources END -- */
/* -- Our Partners START -- */
/* ua-organizations START */
.ua-organizations {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  margin-bottom: 40px;
}
.ua-organizations h2 {
  color: var(--Black, #000);
  font-family: var(--Geologica);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px; /* 141.667% */
}
.ua-organizations .__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  grid-auto-rows: auto;
  width: 100%;
}
.ua-organizations .__wrapper .item {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: var(--Dark-Grey);
}
.ua-organizations .__wrapper .item .image-box {
  width: 100%;
  aspect-ratio: 3.14/1;
  overflow: hidden;
}
.ua-organizations .__wrapper .item .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ua-organizations .__wrapper .item .details {
  padding: 24px 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
}
.ua-organizations .__wrapper .item .details .title {
  color: var(--White, #fff);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
}
.ua-organizations .__wrapper .item .details span {
  color: var(--Default-Grey, #eee);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
}
@media screen and (max-width: 992px) {
  .ua-organizations .__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .ua-organizations .__wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
/* ua-organizations END */
/* -- Our Partners END -- */
/* -- Upcoming Events START -- */
/* hero START */
.hero-upcoming-events {
  background-image: url("/wp-content/themes/umacleveland/assets/img/bg/img7.webp");
  background-position: center;
  background-size: cover;
}
.hero-upcoming-events .hero-container-box {
  width: 100%;
}
.hero-upcoming-events .hero-container-box .__wrapper {
  display: flex;
  width: 408px;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border-radius: 12px;
  color: var(--White);
  background: var(--Gradient);
}
.hero .hero-container-box .__wrapper h1 {
  font-family: var(--Geologica);
  font-size: clamp(20px, 4vw, 40px);
  font-style: normal;
  font-weight: 500;
  line-height: 48px; /* 120% */
}
.hero .hero-container-box .__wrapper small {
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.hero-upcoming-events .hero-container-box .__wrapper .main-button {
  width: 200px;
}
@media screen and (max-width: 992px) {
  .hero-upcoming-events .hero-container-box .__wrapper {
    display: none;
  }
  .hero-upcoming-events .hero-container-box .__wrapper {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .hero-upcoming-events .hero-container-box .__wrapper .main-button {
    width: 100%;
  }
}
/* hero END */
/* upcoming-events-container START */
.upcoming-events-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.upcoming-events-box .header-section {
  display: inline-flex;
  align-items: center;
  gap: 74px;
}
.upcoming-events-box h2 {
  color: var(--Black, #000);
  font-family: var(--Geologica);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px; /* 141.667% */
}
.upcoming-events-box .calendar {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
  border: 1px solid var(--Light-Gray, #f6f6f6);
  background: var(--White, #fff);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05) inset;
  padding: 8px 24px 8px 12px;
}
.upcoming-events-box .calendar .data-picker {
  color: var(--Light-Grey, #878787);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Arial;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 214.286% */
  letter-spacing: 0.5px;
  position: relative;
}
.upcoming-events-box .categories {
  display: inline-flex;
  gap: 24px;
  align-items: center;
  width: 100%;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  scrollbar-width: none; /* for Firefox */
}
.upcoming-events-box .categories button {
  color: var(--Light-Grey, #878787);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
  text-wrap: nowrap;
  background: none;
}
.upcoming-events-box .categories button:hover {
  color: var(--Dark-Orange);
}
.upcoming-events-box .categories button.current {
  color: var(--Black, #000);
}
.upcoming-events-box .item-box {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  column-gap: 48px;
  row-gap: 40px;
}
#load-more {
  align-self: center;
}
@media screen and (max-width: 992px) {
  .upcoming-events-box .item-box {
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 24px;
  }
}
@media screen and (max-width: 768px) {
  .upcoming-events-box .item-box {
    grid-template-columns: 1fr 1fr;
  }
  .upcoming-events-box .header-section {
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
  }
  .upcoming-events-box .header-section .calendar {
    width: 100%;
  }
  .upcoming-events-box .header-section .calendar .data-picker {
    flex-grow: 1;
  }
}
@media screen and (max-width: 576px) {
  .upcoming-events-box .item-box {
    grid-template-columns: 1fr;
  }
}
/* upcoming-events-container END */
/* -- Upcoming Events END -- */
/* -- Calendar START -- */
.calendar-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  margin-top: 40px;
}
.calendar-box .header-section {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.calendar-box .header-section .calendar {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
  border: 1px solid var(--Light-Gray, #f6f6f6);
  background: var(--White, #fff);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05) inset;
  padding: 8px 24px 8px 12px;
}
.calendar-box .header-section .calendar .data-picker {
  color: var(--Light-Grey, #878787);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Arial;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 214.286% */
  letter-spacing: 0.5px;
  position: relative;
}
.calendar-box .item-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
}
.calendar-box .pagination {
  margin-bottom: 24px;
}
/* -- Calendar END -- */
/* -- Collections START -- */
/* hero START */
.hero-collections {
  background-image: url("/wp-content/themes/umacleveland/assets/img/bg/img8.webp");
  background-position: center;
  background-size: cover;
}
.hero-collections .hero-container-box {
  width: 100%;
}
.hero-collections .hero-container-box .__wrapper {
  display: flex;
  width: 408px;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border-radius: 12px;
  color: var(--White);
  background: var(--Gradient);
}
.hero .hero-container-box .__wrapper h1 {
  font-family: var(--Geologica);
  font-size: clamp(20px, 4vw, 40px);
  font-style: normal;
  font-weight: 500;
  line-height: 48px; /* 120% */
}
.hero .hero-container-box .__wrapper small {
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.hero-collections .hero-container-box .__wrapper .main-button {
  width: 200px;
}
@media screen and (max-width: 992px) {
  .hero-collections .hero-container-box .__wrapper {
    display: none;
  }
  .hero-collections .hero-container-box .__wrapper {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .hero-collections .hero-container-box .__wrapper .main-button {
    width: 100%;
  }
}
/* hero END */
/* collections-container START */
.collections-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 40px;
  width: 100%;
}
.collections-container .__wrapper {
  max-width: 540px;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 29px;
}
.collections-container .__wrapper h2 {
  color: var(--Black, #000);
  font-family: var(--Geologica);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px; /* 141.667% */
}
.collections-container .__wrapper p {
  color: var(--Black, #000);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.collections-container .item-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  column-gap: 138px;
  row-gap: 24px;
}
.collections-container .second-button {
  align-self: center;
}
@media screen and (max-width: 992px) {
  .collections-container .__wrapper {
    max-width: none;
    width: 100%;
  }
  .collections-container .item-box {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 24px;
  }
}
@media screen and (max-width: 768px) {
  .collections-container .item-box {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 576px) {
  .collections-container .item-box {
    grid-template-columns: 1fr;
  }
}
/* collections-container END */
/* -- Collections END -- */
/* -- Single event START -- */
/* hero START */
.hero-single-event {
  background-image: url("/wp-content/themes/umacleveland/assets/img/bg/img9.webp");
  background-position: center;
  background-size: cover;
}
.hero-single-event .hero-container-box {
  width: 100%;
}
.hero-single-event .hero-container-box .__wrapper {
  display: flex;
  width: 408px;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border-radius: 12px;
  color: var(--White);
  background: var(--Gradient);
}
.hero .hero-container-box .__wrapper h1 {
  font-family: var(--Geologica);
  font-size: clamp(20px, 4vw, 40px);
  font-style: normal;
  font-weight: 500;
  line-height: 48px; /* 120% */
}
.hero .hero-container-box .__wrapper small {
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.hero-single-event .hero-container-box .__wrapper .main-button {
  width: 200px;
}
@media screen and (max-width: 992px) {
  .hero-single-event .hero-container-box .__wrapper {
    display: none;
  }
  .hero-single-event .hero-container-box .__wrapper {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .hero-single-event .hero-container-box .__wrapper .main-button {
    width: 100%;
  }
}
/* hero END */
/* single-event-container START */
.single-event-container {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  row-gap: 24px;
  margin-bottom: 40px;
}
.single-event-container h2 {
  width: 100%;
  color: var(--Black, #000);
  font-family: var(--Geologica);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px; /* 141.667% */
}
.single-event-container .__wrapper {
  max-width: 540px;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
}
/* .single-event-container .__wrapper .image-box{
	width: 100%;
	aspect-ratio: 2/1;
	overflow: hidden;
} */
.single-event-container .__wrapper .image-box a {
  width: 100%;
  height: 450px;
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.single-event-container .__wrapper .image-box a img {
  height: 100%;
  object-fit: contain;
}
.single-event-container .__wrapper .date-event {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
}
.single-event-container .__wrapper .date-event .date,
.single-event-container .__wrapper .date-event .time {
  color: var(--Black, #000);
  font-family: var(--Geologica);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.single-event-container .__wrapper .content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}
.single-event-container .__wrapper .content span {
  color: var(--Black, #000);
  font-family: var(--Geologica);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px; /* 141.667% */
}
.single-event-container .__wrapper .content p {
  color: var(--Black, #000);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.single-event-container .__wrapper .date {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.single-event-container .__wrapper .date span {
  color: var(--Dark-Grey, #444);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
}
.single-event-container .__wrapper .social {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--Light-Grey, #878787);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
}
.single-event-container .__wrapper .map-container {
  margin-top: 165px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}
.single-event-container .__wrapper .map-container span {
  color: var(--Black, #000);
  font-family: var(--Geologica);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px; /* 141.667% */
}
@media screen and (max-width: 992px) {
  .single-event-container {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .single-event-container .__wrapper {
    max-width: none;
    width: 100%;
  }
}
/* single-event-container END */
/* -- Single event END -- */
/* -- Podcasts START -- */
/* hero START */
.hero-podcasts {
  background-image: url("/wp-content/themes/umacleveland/assets/img/bg/podcast-bg.jpg");
  background-position: center;
  background-size: cover;
}
.hero-podcasts .hero-container-box {
  width: 100%;
}
.hero-podcasts .hero-container-box .__wrapper {
  display: flex;
  width: 408px;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border-radius: 12px;
  color: var(--White);
  background: var(--Gradient);
}
.hero .hero-container-box .__wrapper h1 {
  font-family: var(--Geologica);
  font-size: clamp(20px, 4vw, 40px);
  font-style: normal;
  font-weight: 500;
  line-height: 48px; /* 120% */
}
.hero .hero-container-box .__wrapper small {
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.hero-podcasts .hero-container-box .__wrapper .main-button {
  width: 200px;
}
@media screen and (max-width: 992px) {
  .hero-podcasts .hero-container-box .__wrapper {
    display: none;
  }
  .hero-podcasts .hero-container-box .__wrapper {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .hero-podcasts .hero-container-box .__wrapper .main-button {
    width: 100%;
  }
}
/* hero END */
/* podcatst content START */
.podcasts .content-container p {
  color: var(--Black, #000);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  margin-bottom: 8px;
}
.podcasts .content-container iframe {
  height: 600px;
}
@media screen and (max-width: 992px) {
  .podcasts .content-container iframe {
    height: 300px;
  }
}
@media screen and (max-width: 576px) {
  .podcasts .content-container iframe {
    height: 200px;
  }
}
/* podcatst content END */
/* -- Podcasts END -- */
/* -- Tour of Tremont START -- */
/* hero START */
.hero-tremont {
  background-image: url("/wp-content/themes/umacleveland/assets/img/bg/img3.webp");
  background-position: center;
  background-size: cover;
}
.hero-tremont .hero-container-box {
  width: 100%;
}
.hero-tremont .hero-container-box .__wrapper {
  display: flex;
  width: 408px;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border-radius: 12px;
  color: var(--White);
}
.hero .hero-container-box .__wrapper h1 {
  font-family: var(--Geologica);
  font-size: clamp(20px, 4vw, 40px);
  font-style: normal;
  font-weight: 500;
  line-height: 48px; /* 120% */
}
.hero .hero-container-box .__wrapper small {
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.hero-tremont .hero-container-box .__wrapper .main-button {
  width: 200px;
}
@media screen and (max-width: 992px) {
  .hero-tremont .hero-container-box .__wrapper {
    display: none;
  }
  .hero-tremont .hero-container-box .__wrapper {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .hero-tremont .hero-container-box .__wrapper .main-button {
    width: 100%;
  }
}
/* hero END */
/* breadcrumb START */
.tremont .breadcrumb-container {
  margin-bottom: 40px;
}
/* breadcrumb END */
/* tremont-content START */
.tremont-content article {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 24px;
  padding-bottom: 24px;
}
.tremont-content article .__wrapper {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  color: var(--White);
  max-width: 540px;
}
.tremont-content article .__wrapper h2 {
  color: var(--White, #fff);
  font-family: var(--Geologica);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px; /* 141.667% */
}
.tremont-content article .__wrapper p {
  color: var(--White, #fff);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.tremont-content article .__wrapper p a {
  color: var(--Light-Orange);
}
.tremont-content article .__wrapper .main-button {
  width: 200px;
}
.tremont-content article .__wrapper .image-box {
  width: 100%;
  aspect-ratio: 2.44/1;
  overflow: hidden;
}
.tremont-content article .__wrapper .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 992px) {
  .tremont-content article {
    flex-direction: column;
    gap: 24px;
  }
  .tremont-content article .__wrapper {
    width: 100%;
    max-width: none;
  }
  .tremont-content article .__wrapper .main-button {
    width: 100%;
  }
}
/* tremont-content END */
/* -- Tour of Tremont END -- */
/* -- Start the Tour of Tremont START -- */
.tremont-tour .bg-gradient .section-content article {
  color: var(--White);
}
.tremont-tour .section-content {
  padding-top: 40px;
  padding-bottom: 40px;
}
.tremont-tour .bg-gradient .section-content {
  padding-top: 24px;
  padding-bottom: 24px;
}
.tremont-tour .section-content article {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
.tremont-tour .section-content article .__wrapper {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  max-width: 540px;
}
.tremont-tour .section-content article .__wrapper h2 {
  font-family: var(--Geologica);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px; /* 141.667% */
}
.tremont-tour .section-content article .__wrapper p {
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.tremont-tour .section-content article .__wrapper p a {
  color: var(--Light-Orange);
}
.tremont-tour .section-content article .__wrapper small {
  color: var(--Grey, #666);
  text-align: center;
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.tremont-tour .section-content article .__wrapper small a {
  color: var(--Light-Orange);
}
.tremont-tour .section-content article .__wrapper img {
  width: 100%;
  height: auto;
}
.tremont-tour .section-content article .__wrapper .image-box {
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.tremont-tour .section-content article .__wrapper .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tremont-tour .section-content article .__wrapper .image-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.tremont-tour .section-content article .__wrapper .image-wrapper .image-box {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.tremont-tour
  .section-content
  article
  .__wrapper
  .image-wrapper
  .image-box
  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tremont-tour .section-content article .__wrapper .image-wrapper img {
  margin: 0 auto;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 992px) {
  .tremont-tour .section-content article {
    flex-direction: column;
    gap: 24px;
  }
  .tremont-tour .section-content article .__wrapper {
    width: 100%;
    max-width: none;
  }
}
/* breadcrumb START  */
.tremont-tour .breadcrumb-container {
  margin-bottom: 40px;
}
/* breadcrumb END  */
/* section-one START */
.section-one {
  padding-top: 24px;
  padding-bottom: 24px;
  color: var(--White);
}
.section-one .__wrapper .image-box {
  width: 100%;
  aspect-ratio: 2.44/1;
  overflow: hidden;
}
.section-one .__wrapper .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.table-container {
  background: var(--White);
  color: var(--Black);
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
  border-radius: 24px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.04),
    0px 4px 8px 0px rgba(0, 0, 0, 0.06);
}
.table-container .table {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}
.table-container .table .table-row {
  border-bottom: 1px solid var(--Default-Grey, #eee);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.table-container .table .table-row .sub-title {
  color: var(--Black, #000);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
}
.table-container .table .table-row .map-link {
  color: var(--Light-Grey, #878787);
  font-family: Arial;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 157.143% */
}
/* section-one END */
/* -- Start the Tour of Tremont END -- */
/* --- Main END --- */

/* -- Loopitems START -- */
/* event START */
.item.event {
  padding-left: 14px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.item.event .image-box {
  aspect-ratio: 0.72/1;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.item.event .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.item.event .date-event {
  color: var(--Light-Grey, #878787);
  font-family: Arial;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 166.667% */
  margin-top: 8px;
}
.item.event .time-event {
  color: var(--Light-Grey, #878787);
  font-family: Arial;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 166.667% */
}
.item.event .title {
  margin-top: 10px;
  color: var(--Black, #000);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
}
.item.event a {
  color: var(--Black, #000);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  text-decoration-line: underline;
}
.item.event .date {
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("/wp-content/themes/umacleveland/assets/img/date-bg.svg");
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 60px;
  color: var(--White, #fff);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
  padding-top: 15px;
}
/* event END */
/* calendar START */
.item.calendar {
  padding: 10px;
  border: 0.8px solid var(--White);
  border-radius: 12px;
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 10px;
  width: 100%;
  box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.07);
}
.item.calendar .image-box {
  aspect-ratio: 2.14/1;
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 12px;
}
.item.calendar .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.item.calendar .content-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  height: 100%;
}
.item.calendar .content-box .title {
  padding: 8px 16px 8px 6px;
  color: var(--Black, #000);
  text-overflow: ellipsis;
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
}
.item.calendar .content-box .excerpt {
  padding: 0px 16px 0px 6px;
  opacity: 0.8;
  color: var(--Dark-Grey, #444);
  text-overflow: ellipsis;
  font-family: Arial;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 157.143% */
}
.item.calendar .content-box .__wrapper {
  display: flex;
  padding: 12px 16px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-radius: 12px;
  background: var(--Default-Grey, #eee);
}
.item.calendar .content-box .__wrapper .date {
  color: var(--Dark-Grey, #444);
  font-family: Arial;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 183.333% */
}
.item.calendar .content-box .__wrapper a {
  overflow: hidden;
  color: var(--Black, #000);
  text-overflow: ellipsis;

  /* Button */
  font-family: var(--Geologica);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
@media screen and (max-width: 992px) {
  .item.calendar {
    grid-template-columns: 1fr;
  }
}
/* calendar END */
/* -- Loopitems END -- */

/* --- Footer START --- */
footer {
  background: var(--Dark-Grey);
  padding-top: 24px;
  padding-bottom: 24px;
  color: var(--White);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.footer-top-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 0.8px solid var(--Default-Grey);
  width: 100%;
}
footer .logo a img {
  max-height: 96px;
  width: auto;
}
.footer-top-container .social {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}
.footer-top-container .social span {
  color: var(--White, #fff);
  font-family: var(--Geologica);
  font-size: clamp(16px, 2vw, 24px);
  font-style: normal;
  font-weight: 500;
  line-height: 34px; /* 141.667% */
}
.footer-bottom-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 24px;
  width: 100%;
}
.footer-bottom-container .left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: flex-start;
  align-items: flex-start;
}
.footer-bottom-container .title {
  color: var(--White, #fff);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
}
.footer-bottom-container small {
  color: var(--White, #fff);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.footer-bottom-container .right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: flex-start;
  align-items: flex-start;
}
.footer-bottom-container .right div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.footer-copyright-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-family: var(--Geologica);
  margin-top: 12px;
}
.footer-copyright-container a {
  color: inherit;
  text-decoration: underline;
}
@media screen and (max-width: 992px) {
  footer .logo {
    align-self: center;
    margin-top: 16px;
  }
  footer .logo a img {
    max-height: 70px;
  }
  .footer-bottom-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-top-container .social {
    gap: 12px;
  }
}
/* --- Footer END --- */

/* --- modal START --- */
.jquery-modal .modal {
  max-width: 80%;
  padding: 0;
}
#widget-modal {
  width: auto;
}
@media screen and (max-width: 992px) {
  .jquery-modal .modal {
    max-width: 95%;
  }
}
.jquery-modal #flyer {
  width: auto;
  height: auto;
}
.jquery-modal #flyer ._wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90dvh;
}
.jquery-modal #flyer ._wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* --- modal END --- */

/* --- popup-on-map START --- */
.popup-on-map {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  position: relative;
  max-width: 440px;
}
.popup-on-map .coordinates {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.maplibregl-popup .maplibregl-popup-close-button {
  width: 20px; /* Збільшуємо ширину кнопки */
  height: 20px; /* Збільшуємо висоту кнопки */
  font-size: 20px; /* Збільшуємо розмір шрифта для іконки */
  background-color: rgba(255, 0, 0, 0.5); /* Змінюємо фон кнопки */
  color: white; /* Колір іконки закриття */
  display: flex;
  justify-content: center;
  align-items: center;
}

.maplibregl-popup .maplibregl-popup-close-button:hover {
  background-color: rgba(
    255,
    0,
    0,
    0.9
  ); /* Змінюємо фон кнопки при наведенні */
}
/* --- popup-on-map END --- */

/* pagination START */
.pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination .nav-links {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.pagination a {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid var(--Light-Grey);
  background: var(--White);
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--Black);
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.pagination a:has(svg) {
  padding: 0;
}
.pagination span.current {
  padding: 10px;
  border-radius: 6px;
  background: var(--Grey);
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--White);
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
/* pagination END */

/* search START */
#searchform {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
#searchform input {
  padding: 6px 8px;
  border-radius: 8px;
  color: var(--Black);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 0px;
  height: 0px;
  opacity: 0;
  transition: all 0.3s linear;
}
#searchform:hover input {
  width: auto;
  height: auto;
  opacity: 1;
}
.search-results {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}
.search-results .search-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 4px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--Default-Grey);
  width: 100%;
}
.search-results .search-item .title {
  color: var(--Blue);
  font-size: 20px;
  font-weight: 600;
}
.search-results .search-item .title a {
  color: inherit;
}
.search-results .search-item .date {
  color: var(--Dark-Grey);
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
}
.search-results .pagination {
  gap: 8px;
}
/* search END */

/* Page Our Team START */
.our-team .content-section {
  margin-top: 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 40px;
}
.our-team .content-section .__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 24px;
  width: 100%;
}
.our-team .content-section .__wrapper article {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: 24px;
}
.our-team .content-section .__wrapper article ul {
  padding-left: 20px;
}
.our-team .content-section .__wrapper article ul li {
  color: var(--Black, #000);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.our-team .content-section .__wrapper article ul li span {
  color: var(--Black, #000);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
@media screen and (max-width: 992px) {
  .our-team .content-section .__wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    gap: 24px;
    grid-template-columns: 1fr;
  }
  .our-team .content-section .__wrapper article {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: 24px;
    max-width: none;
    width: 100%;
  }
}
/* Page Our Team END */

/* Running text START */
.runningtext-box {
  width: 100%;
  overflow: hidden;
  padding: 3px 3px;
  height: auto;
  min-height: 20px;
}
.runningtext {
  width: 100%;
  display: flex;
  --gap: 1rem;
  gap: var(--gap);
  overflow: hidden;
  user-select: none;
}
.runningtext ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: var(--gap);
  list-style: none;
  flex-shrink: 0;
  min-width: 100%;
  animation: scroll 60s linear infinite;
  color: var(--Dark-Grey);
  font-size: 16px;
  font-weight: 600;
}
@keyframes scroll {
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}
.runningtext-item {
  font-size: 16px;
  font-weight: 600;
  flex-shrink: 0;
  color: var(--Dark-Grey);
  width: 100%;
}
.runningtext-item a {
  color: inherit;
}

/* Running text END */

/* universal-container START */
.universal-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
  margin-top: 24px;
  margin-bottom: 24px;
}
.universal-container article {
  width: 100%;
  grid-column: span 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
}
.universal-container article ul {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 6px;
  padding-left: 25px;
}
.universal-container article .images-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.universal-container article .images-container .img-box {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.universal-container article .images-container .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 992px) {
  .universal-container {
    grid-template-columns: 1fr;
  }
}
/* universal-container END */

/* waves START */
.waves_wrapper{
	background: linear-gradient(60deg, rgb(9, 0, 138) 0%, rgba(0,172,193,1) 100%);
	overflow: hidden;
	position: relative;
	max-height: 60px;
}
.titleLink{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	z-index: 11;
	font-family: var(--Geologica);
  width: 100%;
  text-align: center;
}
.waves {
  position: relative;
  width: 100%;
  height: 15vh;
  margin-bottom: -7px; /*Fix for safari gap*/
  min-height: 100px;
  max-height: 150px;
}
.parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
  .waves {
    height: 40px;
    min-height: 40px;
  }
}
/* waves end */