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

body {
  font-family: "big-caslon-fb", serif;
  margin: 0;
  padding: 0;
  line-height: 1.4;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #002366;
  text-transform: uppercase;
  font-family: "neue-kabel", sans-serif;
}

h1 {
  font-size: 1.75rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.15rem;
}

h5 {
  font-size: 1.1rem;
}

h6 {
  font-size: 1.05rem;
}

a {
  text-decoration: none;
  color: #002366;
}

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: #fff;
  padding: 0.5rem 0.75rem;
  color: #002366;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.2em;
  line-height: 29px;
  transition: background-color 0.5s, color 0.5s;
  text-align: center;
  font-size: 1rem;
  font-family: "neue-kabel", sans-serif;
  border: 1px solid #002366;
}
button:hover,
input[type=submit]:hover,
input[type=button]:hover,
.btn:hover {
  background-color: #002366;
  color: #fff;
}
button.btn-grey,
input[type=submit].btn-grey,
input[type=button].btn-grey,
.btn.btn-grey {
  background-color: #a2a2a2;
}
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: 1rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
  border-bottom: 7px solid #002366;
}
header .logo img {
  max-width: 300px;
}
header .menu {
  display: none;
  font-size: 1.5rem;
  color: #002366;
  cursor: pointer;
}
@media (max-width: 992px) {
  header .menu {
    display: block;
  }
}
@media (max-width: 992px) {
  header nav {
    position: fixed;
    display: none;
    top: 0;
    right: 0;
    left: 0;
    max-height: 90vh;
    overflow-y: auto;
    background-color: #4298D3;
    padding: 2rem;
    box-shadow: 0 0 5px 0px #002366;
  }
}
header nav .menu {
  color: #002366;
  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;
}
header nav ul li a {
  color: #002366;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: "neue-kabel", sans-serif;
}
@media (max-width: 992px) {
  header nav ul li a {
    color: #002366;
    font-size: 1.5rem;
  }
}

footer {
  background-color: #002366;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  gap: 1rem;
  border-top: 7px solid #4298D3;
  font-family: "neue-kabel", sans-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: #fff;
}
footer .col nav ul li a i {
  color: #fff;
}
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: #fff;
  transition: background-color 0.3s;
}
footer .col nav.social ul li a i {
  color: #002366;
  transition: color 0.3s;
}
footer .col nav.social ul li a:hover {
  background-color: #002366;
}
footer .col nav.social ul li a:hover i {
  color: #fff;
}
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: #fff;
}

main > * {
  max-width: 1200px;
  width: 100%;
  margin: 1rem auto;
  padding: 0 2rem;
  color: #002366;
}
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: #002366;
}

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: #002366;
  font-size: 1.2rem;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "neue-kabel", sans-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: "neue-kabel", sans-serif;
}
@media (max-width: 992px) {
  section.person .wrapper .name {
    justify-content: center;
  }
}
section.person .wrapper .name h1 {
  font-size: 3rem;
  margin: 0;
  color: #fff;
  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: #002366;
}
section.person .wrapper .name .title {
  font-size: 2rem;
  margin: 0;
  color: #002366;
  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: #002366;
  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 */