@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700;800;900&display=swap");
/* Font and Border */
/* Colors */
/* Screen Sizes */
/* General Styles */
* {
  font-family: "Figtree", sans-serif;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #008770;
}

h1 {
  font-size: 5rem;
}

h2 {
  font-size: 4rem;
}
@media screen and (max-width: 1024px) {
  h2 {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 3.3rem;
  }
}

h3 {
  font-size: 2.5rem;
}

h4 {
  font-size: 2.2rem;
}

h1, h2, h3, h4 {
  line-height: 1.5;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
  color: #000000;
}

h2 {
  margin-top: 12px;
  margin-bottom: 12px;
}

p {
  font-size: 2rem;
  color: #000000;
  line-height: 1.5;
  margin-bottom: 1rem;
}

a {
  font-size: 2rem;
  text-decoration: none;
  color: #f2cb05;
}
a:hover {
  color: #a78c03;
  text-decoration: none;
}

ul {
  padding-left: 25px;
}

li {
  font-size: 2rem;
  color: #000000;
}

.menu-item {
  list-style-type: none;
  cursor: pointer;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #f20505;
  z-index: 1000;
}
header .menu-main-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .menu-main-container .main-menu {
  max-width: 1200px;
  margin: 0;
  padding: 0;
  display: flex;
  width: 100%;
}
header .menu-main-container .main-menu .menu-item {
  position: relative;
  width: 100%;
}
header .menu-main-container .main-menu .menu-item a {
  display: block;
  padding: 0.5rem 1rem;
  color: #ffffff;
  white-space: nowrap;
  text-align: center;
}
header .menu-main-container .main-menu .menu-item-has-children::after {
  content: "▾";
  display: inline-block;
  margin-left: 5px;
  font-size: 2.2rem;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}
header .menu-main-container .main-menu .menu-item:hover {
  background-color: #de0505;
}
header .menu-main-container .main-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #00735f;
  padding: 0;
  margin: 0;
  width: auto;
}
header .menu-main-container .main-menu .sub-menu .menu-item {
  margin: 0;
  white-space: nowrap;
}
header .menu-main-container .main-menu .sub-menu .menu-item:hover {
  background-color: #005e4e;
}
header .menu-main-container .main-menu .menu-item-has-children:hover > .sub-menu {
  display: block;
  width: 100%;
}
header .menu-main-container .main-menu .menu-item-has-children:hover > .sub-menu .menu-item-has-children:hover .sub-menu {
  top: 0;
  left: 100%;
  background-color: #005e4e;
}
header .menu-main-container .main-menu .menu-item-has-children:hover > .sub-menu .menu-item-has-children:hover .sub-menu .menu-item:hover {
  background-color: #004a3d;
}
header .menu-main-container .main-menu .menu-item-has-children:hover > .sub-menu .menu-item-has-children::after {
  content: "▸";
}
header .menu-main-container .main-menu .menu-item-has-children:last-child:hover > .sub-menu .menu-item-has-children:hover .sub-menu {
  top: 0;
  left: -100%;
}
header .menu-main-container .main-menu .menu-item-has-children:last-child:hover > .sub-menu .menu-item-has-children::after {
  content: "";
}
header .menu-main-container .main-menu .menu-item-has-children:last-child:hover > .sub-menu .menu-item-has-children::before {
  content: "◂";
  display: inline-block;
  margin-left: 5px;
  font-size: 2.2rem;
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
}
header .menu-main-container .main-menu .current-menu-item > a {
  color: #5c0202;
}

main {
  display: flex;
  justify-content: center;
  padding-top: 38px;
  padding-bottom: 50px;
  flex-grow: 1;
  margin: 0 15px;
}
main .content-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
main .content-container .calendar {
  align-self: center;
  width: 100%;
}
main .content-container .calendar-mobile {
  display: none;
  align-self: center;
  width: 100%;
}
main .uagb-timeline__heading a {
  color: #cf2e2e;
}

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  margin-bottom: 30px;
}

.video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  background-color: #333333;
  padding: 15px;
  padding-bottom: 50px;
}
footer .contact-container {
  width: 33%;
  text-align: center;
}
footer .contact-container p {
  color: #ffffff;
  margin: 0;
}
footer .contact-container a {
  color: #ffffff;
  font-weight: 600;
}
footer .contact-container a:hover {
  color: #008770;
}
footer .menu-header {
  width: 33%;
  text-align: center;
}
footer .menu-footer-container {
  width: 33%;
  text-align: center;
}
footer .menu-footer-container .footer-menu {
  padding: 0;
}
footer .menu-footer-container .footer-menu .menu-item a {
  color: #ffffff;
}
footer .menu-footer-container .footer-menu .current-menu-item a {
  font-weight: 500;
}
footer .menu-footer-container .footer-menu .menu-item:hover a {
  color: #008770;
}

.post-container {
  background-color: #008770;
  padding: 15px;
  margin-bottom: 50px;
  border-radius: 15px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
}
.post-container .post-content {
  display: flex;
  flex-direction: row;
}
.post-container .post-content .post-thumbnail {
  margin-left: 25px;
}
.post-container .post-content .post-thumbnail img {
  width: 200px;
  height: auto;
}
.post-container .post-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.post-container .post-footer p {
  width: 200px;
  text-align: center;
  margin: 0;
}

.primary-btn {
  background-color: #f20505;
  border-radius: 10px;
  padding: 7px 12px;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 2rem;
}
.primary-btn .wp-block-button__link {
  color: #ffffff;
  background-color: transparent;
  padding: 5px 25px;
}

.primary-btn:hover {
  background-color: #a70303;
  color: #ffffff;
}

.wp-block-columns {
  margin-bottom: 30px;
}

@media screen and (max-width: 1024px) {
  header .menu-main-container .main-menu .menu-item {
    display: none;
  }
  main {
    padding-top: 0;
  }
  main .calendar {
    display: none;
  }
  main .calendar-mobile {
    display: block !important;
  }
  footer .contact-container {
    display: none;
  }
  footer .menu-header {
    display: none;
  }
  footer .menu-footer-container {
    width: 100%;
  }
}

/*# sourceMappingURL=main.css.map */
