@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

:root {
  --primary: #24428f;
  --secondary: #bf212e;
  --third: #e5ba22;
  --white: #ffffff;
  --textcolor: #000;
  --grey: #555;
  --lightgrey: #a3a3a3;
  --heading: "Playfair Display", serif;
  --text: "PT Serif", serif;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  min-width: 305px;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body, html {
  font-size: 15px;
  line-height: 1.6;
  font-family: var(--text);
  font-weight: 400;
  color: var(--textcolor);
  background-color: #f9f7f3;
  height: 100%;
}

a, a:visited {
  text-decoration: none;
  outline: 0;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

p a, p a:visited {
  line-height: inherit;
}

li {
  line-height: 1.3em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading);
  font-weight: 300;
  line-height: 1.1;
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

small {
  font-size: 85%;
}

sup {
  font-size: 75%;
  vertical-align: super;
  line-height: 1;
}

img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

main {
  flex: 1 0 auto;
}

.no-touch a[href^="tel:"], .noLink {
  pointer-events: none;
  cursor: text;
}

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

#sapper {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-x: hidden;
}

.container {
  margin: 0 auto;
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  max-width: 1120px;
  z-index: 1;
}

.smallwrap {
  max-width: 900px;
}

.hidden {
  display: none !important;
}

.sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

.sr-only.focusable:active, .sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
  white-space: inherit;
}

.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clear {
  clear: both;
}

.row {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex: 0 1 auto;
  -webkit-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.nowrap {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.itemcenter {
  align-items: center;
}

.justify {
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}

.contentcenter {
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}

.spaceBottom {
  position: relative;
  padding-bottom: 75px;
}

.spaceTop {
  position: relative;
  padding-top: 75px;
}

.space20 {
  padding: 20px;
}

.grid {
  display: grid;
}

/*  */
.title h2 {
  font-size: 2.7rem;
  line-height: 1.25em;
  color: var(--primary);
  font-weight: 300;
}

.title h3 {
  font-size: 2.3rem;
  line-height: 1.25em;
  font-weight: 300;
}

.title pre {
  background-color: #e8e8e8;
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 20px;
  display: inline-block;
}

/*~~~~~~~~~~~~~~~~~~*/
.header {
  width: 100%;
  background-color: var(--primary);
  position: relative;
  z-index: 11;
}

.navWraper {
  background-color: var(--secondary);
  box-shadow: 0px 0px 20px #000000;
}

.social a {
  width: 20px;
  height: 20px;
  background-color: var(--white);
  color: var(--primary);
  font-size: 8px;
  display: block;
  padding: 2px;
  border-radius: 2px;
}
.social a:hover {
  background-color: var(--third);
}
.topRight {
  gap: 20px;
  color: var(--white);
}
.topRight li {
  display: flex;
  gap: 6px;
  align-items: center;
}
.topRight li i {
  font-size: 8px;
  line-height: 1;
}

.logo {
  width: 400px;
  padding: 18px 12px;
}

.logo img {
  width: 100%;
}

.banner {
  position: relative;
  background-size: cover;
  color: var(--white);
  background-repeat: no-repeat;
  background-position: 50% 19%;
  padding-top: 200px;
  padding-bottom: 440px;
}

.ctaBoxes .container {
  margin-top: -100px;
}

.ctaBoxes article {
  width: 33.333%;
  background-color: var(--white);
  padding-top: 12px;
  border-bottom: 12px solid var(--primary);
  color: var(--grey);
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.25);
  font-size: 14px;
}

.ctaBoxes article:nth-child(2n) {
  border-bottom-color:var(--secondary);
  margin-top: 60px;
}

.ctaBoxes article:nth-child(3n) {
  border-bottom-color:var(--third);
}

.ctaBoxes img {
  width: 100%;
}

.ctaBoxes .bg-subheading {
  background-color: var(--primary);
  color: var(--white);
  padding: 6px 12px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  margin-bottom: 0px;
  text-transform: uppercase;
  display: inline-block;
}

.ctaBoxes article:nth-child(2n) .bg-subheading {
  background-color: var(--secondary);
}

.ctaBoxes article:nth-child(3n) .bg-subheading {
  background-color: var(--third);
}

.ctaBoxes .btn {
  padding: 24px 36px;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 10px;
  gap: 20px;
}

.photo-gallery>div, .photo-gallery>a {
  padding-bottom: 100%;
  position: relative;
}

.photo-gallery-80>div, .photo-gallery-80>a {
  padding-bottom: 80%;
}

.photo-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  position: absolute !important;
  left: 0;
  top: 0;
}

.donateWraper {
  background-color: var(--secondary);
}

.donateWraper h2 {
  color: var(--third);
}

.donateWraper article{
  width: 50%;
  padding: 20px;
}

.donateWraper h3 {
  color: var(--white);
}

/* footer */
.mapWraper {
  background:#e8e8e8 url(footer-bg.jpg) no-repeat;
  background-position: 50% 0%;
  background-size: cover;
  padding-top: 120px;
  padding-bottom: 360px;
}

.text-subheading {
  color: var(--lightgrey);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.footer h2 {
  font-size: 3.2em;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 48px;
}

.iframe-block {
  width: 85%;
  height: 45vh;
  margin: auto;
  box-shadow: 0 0 25px rgba(0, 0, 0, .5);
}

.iframe-block iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.ftbox {
  background-color: var(--secondary);
  box-shadow: 0px 0px 20px #000000;
  color: var(--white);
}

.ftbox .container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ftbox .ftlogo a {
  padding: 18px 12px;
  display: block;
}

.ftbox .ftlogo img {
  width: 400px;
}

.copyright {
  background-color: var(--primary);
  color: var(--white);
  font-size: 0.9em;
  padding: 6px 0 8px;
}

.copyright .container {
  gap: 6px;
}

/* ~~~~~~~~~~~~~~~~~~~~~ */
h1 {
  font-size: 4em;
}

h2 {
  font-size: 2.4em;
}

h3 {
  font-size: 2em;
  color: var(--primary);
}

h4 {
  font-size: 1.5em;
}

h5 {
  font-size: 1.4em;
}

h6 {
  font-size: 1.2em;
}

h1:not(:first-child), h2:not(:first-child), h3:not(:first-child), h4:not(:first-child), h5:not(:first-child), h6:not(:first-child) {
  margin-top: 15px;
}

h1:not(:last-child), h2:not(:last-child), h3:not(:last-child), h4:not(:last-child), h5:not(:last-child), h6:not(:last-child) {
  margin-bottom: 15px;
}

table {
  margin: 10px 0;
  font-size: 0.9em;
  color: var(--textcolor);
}

table th {
  padding: 5px;
  text-align: left;
  font-size: 1em;
  background-color: var(--primary);
  color: var(--white);
  font-weight: 700;
  border: 1px solid #d3dee7;
}

table tr td {
  padding: 6px 10px;
  border: 1px solid #d3dee7;
}

table a {
  word-break: break-word;
}

table th a {
  color: var(--white);
}

table th a:hover {
  color: var(--third);
}

.bnone {
  border: none !important;
  background: none !important;
}

p:not(:last-child) {
  margin-bottom: 15px;
}

hr {
  font-size: 1px;
  line-height: 1px;
  height: 1px;
  margin: 40px 0;
  border: 0px;
  border-top: 2px solid var(--primary);
  opacity: .25;
  clear: both;
}

/* Inner page ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.content {
  position: relative;
  min-height: 300px;
}

.content a {
  color: var(--secondary);
  cursor: pointer;
}

.content a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.content ul, .content ol {
  margin: 10px 0;
}

.content ul li, .content ol li {
  margin-bottom: 8px;
  list-style-type: disc;
  padding: 0;
  margin-left: 30px;
  display: list-item;
  color: var(--grey);
  font-size: 14px;
}

.content ol li {
  list-style-type: decimal
}

.content ol ul {
  margin-top: 10px
}

.fulltable {
  width: 100%;
}

.btn a {
  display: inline-block;
  border: 2px solid;
  color: var(--primary);
  background-color: var(--white);
  padding: 16px 48px;
  margin-top: 48px;
  margin-bottom: 48px;
  font-size: 14px;
  letter-spacing: 2px;
  text-decoration: unset;
  text-transform: uppercase;
  border-radius: 100px;
  text-align: center;
}

.btn a:hover {
  color: var(--white);
  background-color: var(--third);
}

.btn a:not(:last-child) {
  margin-right: 10px;
}

.content h2 {
  color: var(--secondary);
}

.content p {
  font-size: 14px;
  color: var(--grey);
}

/* Inner pages */
.bannerInner {
  padding-top: 150px;
  padding-bottom: 150px;
  background-position: center center;
  color: var(--white);
}

.bannerInner:after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25));
}

.bannerInner h3 {
  text-transform: uppercase;
  font-weight: 700;
  color: var(--white);
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rectorWraper {
  margin-top: 60px;
  border: 12px solid;
}

.rectorText {
  padding: 36px 48px 48px;
  width: 66.66%;
}

.rectorImg {
  background-size: cover;
  width: 33.33%;
  background-color: #24428f;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.whitebg {
  background-color: var(--white);
}

.musicWraper h1 {
  color: var(--secondary);
}

.photoGrid {
  column-count: 4;
  column-gap: 10px;
}

.photoGrid a{
  break-inside: avoid;
  display: block;
  margin-bottom: 10px;
}

.historyText {
  width: 60%;
}

.historyText h2 {
  color: var(--primary);
}

.historyImg {
  width: 40%;
}

.historyImg img{
  margin-top: 10px;
  margin-bottom: 20px;
  display: block;
}

.bolder h2, .bolder h3{
  font-weight: 900;
}

.sacramentsWraper h2 {
  font-size: 3.4em;
}

.sacramentsWraper h3, .secondary h2 {
  color: var(--secondary);
}

.sacramentsWraper .historyImg img{
  margin-top: 0px;
  margin-bottom: 50px;
}
/* ~~~~~ */
.menu, .menu>li, .flex {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.menu>li {
  position: relative;
}

.menu>li>a {
  color: var(--white);
  position: relative;
  padding: 18px;
  z-index: 1;
  text-align: center;
}

.menu li a:hover {
  color: var(--primary);
}

.menu>li:after {
  content: "";
  position: absolute;
  height: 0;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  border-top: 3px solid var(--primary);
  background-color: var(--third);
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}

.menu>li:hover:after {
  opacity: 1;
  height: 100%;
}

.menu ul {
  width: 200px;
  padding: 0;
  position: absolute;
  left: 0px;
  top: 100%;
  z-index: 90;
  background-color: var(--third);
  -webkit-box-shadow: 0px 5px 7px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 7px rgba(0, 0, 0, 0.1);
}

.menu li:hover>ul {
  display: block;
}

.menu>li li:hover>ul {
  left: 100%;
  right: 100%;
  top: 0;
}

.menu li ul li a {
  display: block;
  padding: 10px 15px;
  color: var(--textcolor);
}

.menu li:hover li>a:hover, .menu li:hover li:hover>a, .menu ul li:hover li:hover>a:hover {
  background-color: var(--secondary);
  color: var(--white);
}

#menu-trigger {
  display: none;
}

.menuDimmed {
  overflow: hidden;
}

@media screen and (max-width:991px) {
  .donateWraper article, .historyText, .historyImg {
    width: 100%;
  }

  .ftbox .container, .grid-cols {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .ftbox .ftlogo a {
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }

  .nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 5;
    background-color: var(--secondary);
    font-size: 20px;
  }

  .menu>li:after {
    display: none;
  }

  .menu, .menu>li, .menu li a {
    display: block;
  }
  .nav.showMobiNav{
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .menu {
    position: relative;
    max-height: 100%;
    overflow: auto;
  }

  .menu li a:hover {
    color: var(--third);
  }

  #menu-trigger {
    display: block;
    position: relative;
    z-index: 11;
    width: 34px;
    height: 34px;
    cursor: pointer;
  }

  #menu-trigger span, #menu-trigger span:before, #menu-trigger span:after {
    position: absolute;
    width: 30px;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 2px;
    background-color: var(--white);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  #menu-trigger span {
    top: 50%;
    margin: -1px auto auto;
    display: block;
    font-size: 0px;
  }

  #menu-trigger span:after {
    top: 10px;
    content: "";
  }

  #menu-trigger span:before {
    top: -10px;
    content: "";
  }

   .showMobiNav#menu-trigger {
    margin-top: -150px;
  }

  .showMobiNav#menu-trigger span {
    background-color: transparent;
  }

  .showMobiNav#menu-trigger span:before {
    -webkit-transform: translateY(0) rotate(45deg);
    transform: translateY(0) rotate(45deg);
    top: 0;
    left: 0;
  }

  .showMobiNav#menu-trigger span:after {
    -webkit-transform: translateY(0) rotate(-45deg);
    transform: translateY(0) rotate(-45deg);
    top: 0;
    left: 0;
  }
}

@media screen and (max-width: 767px) {
  .header>.container, .topRight, .copyright .container {
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
  }

  .topRight {
    gap: 8px;
  }

  .ctaBoxes article, .rectorText, .rectorImg {
    width: 100%;
  }

  .ctaBoxes article:nth-child(2n) {
    margin-top: 0px;
  }

  .copyright .container {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .rectorImg {
    padding-bottom: 80%;
    order: -1;
  }

}

@media screen and (max-width: 479px) {
  .ctaBoxes article:nth-child(2n) {
    order: -1;
  }

  .footer h2 {
    font-size: 2.2em;
  }
}