html {
  font-size: 18px;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: helvetica, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.5;
  background-color: #FBFBF7;
}

* {
  box-sizing: border-box;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #00384D;
  text-transform: uppercase;
  font-family: "georgiapro", serif;
}

h1 {
  font-size: 1.75rem;
  font-size: clamp(1.5rem, 2vw + 1rem, 2.5rem);
}

h2 {
  font-size: 1.5rem;
  font-size: clamp(1.25rem, 1.5vw + 1rem, 2rem);
}

h3 {
  font-size: 1.25rem;
  font-size: clamp(1rem, 1vw + 1rem, 1.5rem);
}

h4 {
  font-size: 1.15rem;
}

h5 {
  font-size: 1.1rem;
}

h6 {
  font-size: 1.05rem;
}

a {
  text-decoration: none;
  color: #B0302C;
  transition: color 0.3s ease-in-out;
}
a:hover {
  color: #F0B354;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav ul li {
  margin: 0;
  padding: 0;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}
img.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .wrapper {
    padding: 0 10px;
  }
}

button,
input[type=submit],
input[type=button],
.btn {
  border: 0;
  display: inline-block;
  background-color: #FBFBF7;
  padding: 0.5rem 0.75rem;
  color: #00384D;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.2em;
  line-height: 29px;
  transition: all 0.5s, color 0.5s;
  text-align: center;
  font-size: 1rem;
  font-size: clamp(1rem, 1vw + 1rem, 1.25rem);
  font-family: "georgiapro", serif;
  border: 1px solid #FBFBF7;
}
button:hover,
input[type=submit]:hover,
input[type=button]:hover,
.btn:hover {
  background-color: #00384D;
  color: #FBFBF7;
  border: 1px solid #00384D;
}
button.btn-grey,
input[type=submit].btn-grey,
input[type=button].btn-grey,
.btn.btn-grey {
  background-color: #E8CB9D;
}
button.btn-lg,
input[type=submit].btn-lg,
input[type=submit],
input[type=button].btn-lg,
input[type=button],
.btn.btn-lg {
  padding: 1rem;
  font-size: 1.25rem;
}

header {
  padding: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 0px 25px rgba(0, 0, 0, 0.8);
  z-index: 999;
  background-color: #00384D;
}
header .logo img {
  max-width: 300px;
}
@media (max-width: 767px) {
  header .logo img {
    max-width: 225px;
  }
}
header .menu {
  color: #00384D;
  cursor: pointer;
  width: 45px;
  height: 45px;
  background-color: #B0302C;
  border-radius: 50%;
  padding: 10px;
}
header .menu .bar {
  display: block;
  height: 3px; /* Adjust as needed */
  width: 100%;
  background-color: white;
  transition: all 0.3s ease-in-out; /* For smooth animation */
  margin: 4px 0; /* Space between bars */
}
header .menu.open .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg); /* Adjust translateY based on bar height and spacing */
}
header .menu.open .bar:nth-child(2) {
  opacity: 0; /* Hide the middle bar */
}
header .menu.open .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg); /* Adjust translateY and rotation */
}
header nav {
  display: none;
  position: absolute;
  bottom: 1rem;
  right: 3rem;
  background-color: #B0302C;
  box-shadow: 0 0px 25px 1px rgba(0, 0, 0, 0.4);
  padding: 0.5rem 1rem;
}
@media (max-width: 992px) {
  header nav {
    top: calc(100% - 2rem);
    bottom: unset;
  }
}
header nav .menu {
  color: #FBFBF7;
  padding: 1rem;
  text-align: right;
}
header nav ul {
  display: flex;
}
@media (max-width: 992px) {
  header nav ul {
    flex-direction: column;
    gap: 1rem;
  }
}
header nav ul li {
  margin: 0 1rem;
}
@media (max-width: 992px) {
  header nav ul li {
    text-align: right;
  }
}
header nav ul li a {
  color: #FBFBF7;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: "georgiapro", serif;
  transition: color 0.3s ease-in-out;
}
header nav ul li a:hover {
  color: #F0B354;
}
@media (max-width: 992px) {
  header nav ul li a {
    font-size: 1.25rem;
  }
}
header nav ul li.current_page_item a {
  color: #F0B354;
}

footer {
  background-color: #00384D;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #FBFBF7;
  gap: 1rem;
  border-top: 7px solid #FBFBF7;
  font-family: "georgiapro", serif;
}
@media (max-width: 992px) {
  footer {
    flex-direction: column;
  }
}
footer .col {
  width: 50%;
}
@media (max-width: 992px) {
  footer .col {
    width: 100%;
    text-align: center;
  }
}
footer .col > * {
  margin: 1rem 0;
}
footer .col .small {
  font-size: 0.75rem;
}
footer .col .logo img {
  max-width: 300px;
  width: 100%;
}
@media (max-width: 992px) {
  footer .col .logo img {
    margin: auto;
  }
}
footer .col nav ul {
  display: flex;
  gap: 0.5rem 1rem;
}
@media (max-width: 992px) {
  footer .col nav ul {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
footer .col nav ul li a {
  color: #FBFBF7;
}
footer .col nav ul li a i {
  color: #FBFBF7;
}
footer .col nav.small {
  font-size: 0.75rem;
}
footer .col nav.large {
  font-size: 1.5rem;
}
@media (max-width: 992px) {
  footer .col nav.large {
    flex-direction: row;
  }
}
footer .col nav.social ul li a {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #B0302C;
  transition: background-color 0.3s;
}
footer .col nav.social ul li a i {
  color: #FBFBF7;
  transition: color 0.3s;
}
footer .col nav.social ul li a:hover {
  background-color: #F0B354;
}
footer .col nav.social ul li a:hover i {
  color: #FBFBF7;
}
footer .col nav.footer {
  text-align: right;
}
footer .col nav.footer ul {
  flex-direction: column;
}
footer .col nav.footer ul li a {
  font-weight: 700;
  text-transform: uppercase;
}
footer .col.center {
  text-align: center;
}
footer .col.center nav ul {
  justify-content: center;
}
footer .col.center nav ul li a {
  text-transform: uppercase;
}
footer .col.right {
  text-align: right;
}
footer .col.right nav ul {
  justify-content: flex-end;
}

.home footer {
  border-color: #FBFBF7;
}

.post-hero {
  max-width: 100%;
  min-height: 600px;
  height: 100%;
  width: 100%;
  margin: 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
  z-index: 2;
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .post-hero {
    min-height: unset;
  }
}
.post-hero .wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, 1fr);
  grid-template-areas: "." "title";
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, 1fr);
  grid-template-areas: "." "intro";
  gap: 2rem;
  padding: 2rem;
  max-width: 100%;
  text-align: left;
  z-index: 2;
}
@media (max-width: 992px) {
  .post-hero .wrapper {
    padding: 2rem 0;
    grid-template-rows: 100px 1fr;
    grid-template-areas: "." "intro";
  }
}
.post-hero .wrapper .title {
  display: flex;
  flex-direction: column;
  grid-area: title;
  text-align: center;
  color: #FBFBF7;
}
.post-hero .wrapper .title h1 {
  margin-bottom: 0;
  text-transform: uppercase;
  margin: 0;
  color: #FBFBF7;
}
.post-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
  z-index: 1;
}

main > * {
  max-width: 1200px;
  width: 100%;
  margin: 1rem auto;
  padding: 0 2rem;
  color: #00384D;
}
main figcaption {
  font-size: 0.75rem;
  text-align: center;
}
main > ul li,
main > ol li {
  margin-left: 2rem;
}
main .wp-block-image figure img {
  width: calc(100% - 10px);
}
@media (max-width: 992px) {
  main .wp-block-image figure img {
    width: 100%;
  }
}
main .wp-block-image figure::after {
  z-index: -1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(10px) translateY(10px);
  background-color: #00384D;
}

section.person {
  max-width: 100%;
  min-height: 400px;
  height: 100%;
  width: 100%;
  margin: 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
  z-index: 2;
}
section.person .wrapper {
  display: grid;
  grid-template-columns: 60% 40%;
  grid-template-areas: "return return" "title image" "intro intro";
  gap: 2rem;
  padding: 2rem;
}
@media (max-width: 992px) {
  section.person .wrapper {
    grid-template-columns: 1fr;
    grid-template-areas: "return" "image" "title" "intro";
  }
}
section.person .wrapper .return {
  grid-area: return;
  display: flex;
  align-items: center;
  justify-content: start;
  color: #00384D;
  font-size: 1.2rem;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "georgiapro", serif;
}
section.person .wrapper .return i {
  margin-right: 0.5rem;
}
section.person .wrapper .name {
  display: flex;
  grid-area: title;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  font-family: "georgiapro", serif;
}
@media (max-width: 992px) {
  section.person .wrapper .name {
    justify-content: center;
  }
}
section.person .wrapper .name h1 {
  font-size: 3rem;
  margin: 0;
  color: #FBFBF7;
  text-transform: uppercase;
  display: block;
  margin: 0;
}
section.person .wrapper .name h1:after {
  z-index: -1;
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  top: 0;
  left: -100vw;
  width: 200vw;
  background-color: #00384D;
}
section.person .wrapper .name .title {
  font-size: 2rem;
  margin: 0;
  color: #00384D;
  font-style: oblique;
}
section.person .wrapper .intro {
  grid-area: intro;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  color: #00384D;
  gap: 1rem;
}
section.person .wrapper .intro h2 {
  font-size: 2.5rem;
  margin-bottom: 0;
  text-transform: uppercase;
  margin: 0 0 1rem 0;
}
section.person .wrapper .intro p {
  margin: 0;
}
section.person .wrapper .image {
  grid-area: image;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.person .wrapper .image .img-wrap {
  max-height: 500px;
  height: 100%;
  width: 100%;
}
section.person .wrapper .image .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
section.person .bg {
  opacity: 0.07;
  mix-blend-mode: multiply;
}/*# sourceMappingURL=theme.css.map */