/*@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap"); */

@import url("https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700;900&display=swap");

:root {
  --green-main: #005128;
  --yellow-main: #f9a600;
  --black-variant: rgb(17, 17, 17);
  --text-color: rgb(33, 37, 41);
  --header-background: #b3b3b3;
  --body-background: #eee;
  --heading-font: "Jost", sans-serif;
  --para-font: "Jost", sans-serif;
}

/*===== PRESETS =====*/

*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html #wpadminbar {
  position: fixed;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--para-font);
  font-size: 18px;
}

.for-overflow {
  overflow-x: hidden;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: var(--heading-font);
  vertical-align: baseline;
}

button {
  font-family: var(--main-font);
  cursor: pointer;
}

/*===== UTILITY CLASSES =====*/

.container {
  width: clamp(71.25rem, 48.75rem + 30vw, 75rem);
  margin-inline: auto;
}

@media screen and (max-width: 1200px) {
  .container {
    width: 95%;
  }
}

.section-padding {
  padding-block: 6rem;
}

/*===== HEADER STYLES =====*/
header {
  background: var(--body-background);
  padding-block: 0.5rem;
  position: fixed;
  z-index: 120;
  width: 100vw;
  border-bottom: thin solid var(--header-background);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .container .branding {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

header .container .branding img {
  display: block;
  width: 60px;
}

header .container .try-logo {
  display: flex;
  flex-direction: column;
  font-weight: bold;
  color: var(--green-main);
}

header .container .try-logo span:nth-child(1) {
  font-size: 18px;
  line-height: 0.5;
}

header .container .try-logo span:nth-child(2) {
  font-size: 23px;
}

header .container .try-logo span:nth-child(3) {
  font-size: 15px;
  line-height: 0.5;
}

header .container nav ul {
  display: flex;
  gap: 2rem;
}

header .container nav ul a {
  text-decoration: none;
  color: var(--green-main);
  font-weight: bold;
  transition: all 300ms ease;
}

header .container nav ul span {
  text-decoration: none;
  color: var(--green-main);
  font-weight: bold;
  transition: all 300ms ease;
  cursor: pointer;
}

header .container nav ul li.with-dropdown {
  position: relative;
}

header .container nav ul li.with-dropdown .sub-links {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 500ms;
  position: absolute;
  top: 110%;
  width: max-content;
  z-index: 100;

  background-color: var(--green-main);
}

header .container nav ul li.with-dropdown .sub-links a {
  color: white;
  padding: 0.5rem 1rem;
}

header .container nav ul li.with-dropdown .sub-links a:hover {
  /*background: var(--yellow-main);*/
  color: var(--yellow-main);
}

header .container nav ul li.with-dropdown .sub-links a.active-dropdown {
  background: var(--yellow-main);
  color: white;
  pointer-events: none;
}

header .container nav ul li.with-dropdown .sub-links a:hover {
  /*background: var(--yellow-main);*/
  color: var(--yellow-main);
}

header .container nav ul li.with-dropdown span:hover ~ .sub-links {
  grid-template-rows: 1fr;
}

header .container nav ul li.with-dropdown .sub-links:hover {
  grid-template-rows: 1fr;
}

header .container nav ul li.with-dropdown .sub-links > div {
  display: flex;
  flex-direction: column;

  overflow: hidden;
}

header .container nav ul a.active {
  color: var(--yellow-main);
}

header .container nav ul span.active {
  color: var(--yellow-main);
}

header .container nav ul span:hover {
  color: var(--yellow-main);
}

header .container nav ul li:hover {
  color: var(--yellow-main);
}

header .container nav ul li :hover {
  color: var(--yellow-main);
}

ul li.with-dropdown a:hover {
  color: var(--yellow-main);
}

/*===== RESPONSIVE NAV =====*/
.responsive-menu .menu-btn {
  display: none;
}

.responsive-menu .menu-icon {
  padding: 28px 20px;
  display: block;
  position: relative;
  cursor: pointer;
  z-index: 1;
}

.responsive-menu .menu-icon .nav-icon {
  background: var(--yellow-main);
  display: block;
  height: 4px;
  width: 25px;
  border-radius: 50px;
  position: relative;
  transition: background 0.2s ease-out;
}

.responsive-menu .menu-icon .nav-icon:before {
  content: "";
  background: var(--yellow-main);
  transition: all 0.2s ease-out;
  width: 100%;
  height: 100%;
  position: absolute;
  top: -9px;
  border-radius: 50px;
}

.responsive-menu .menu-icon .nav-icon:after {
  content: "";
  background: var(--yellow-main);
  transition: all 0.2s ease-out;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 9px;
  border-radius: 50px;
}

.responsive-menu .menu-btn:checked ~ .menu-icon .nav-icon:before {
  transform: rotate(45deg);
  top: 0;
}

.responsive-menu .menu-btn:checked ~ .menu-icon .nav-icon:after {
  transform: rotate(-45deg);
  top: 0;
}

.responsive-menu .menu-btn:checked ~ .menu-icon .nav-icon {
  background: transparent;
}

.responsive-menu {
  display: none;
}

.responsive-menu .responsive-nav .container li a.active {
  color: var(--yellow-main);
}

.responsive-menu .responsive-nav .container li.with-dropdown.active-dropdown p {
  color: var(--yellow-main);
}

.responsive-menu .responsive-nav .container li.with-dropdown a.active {
  color: var(--yellow-main);
}

/*----- Header Responsive Styles -----*/
@media screen and (max-width: 1200px) {
  header .container .branding img {
    height: 90px;
  }

  header .container .try-logo {
    flex-direction: row;
    position: absolute;
    gap: 0.25rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 416px;
  }

  header .container .try-logo span:nth-child(1) {
    font-size: 18px;
    line-height: initial;
  }

  header .container .try-logo span:nth-child(2) {
    font-size: 18px;
  }

  header .container .try-logo span:nth-child(3) {
    font-size: 18px;
    line-height: initial;
  }

  .responsive-menu {
    display: initial;
  }

  header .large-devices {
    display: none;
  }

  /*header {
    position: relative;
  } */

  .responsive-menu .responsive-nav {
    position: absolute;
    z-index: 105;
    width: 100vw;
    height: 0;
    background-color: var(--body-background);
    right: 0;
    top: 100%;
    border-top: thin solid var(--header-background);
    overflow: hidden;
    transition: height 0.5s;
  }

  .responsive-menu .menu-btn:checked ~ .responsive-nav {
    height: 100vh;
  }

  .responsive-menu .menu-btn:checked ~ .responsive-nav ul.container li.with-dropdown .sub-links {
    transform: translateX(-120%);
  }

  .responsive-menu .responsive-nav ul.container {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding-block: 2rem;
    position: relative;
    isolation: isolate;
    gap: 1rem;
  }

  .responsive-menu .responsive-nav ul.container a {
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    color: var(--green-main);
  }

  .responsive-menu .responsive-nav ul.container li.with-dropdown p {
    font-size: 20px;
    font-weight: bold;

    color: var(--green-main);
    display: flex;
    align-items: end;
    gap: 0.5rem;
  }

  .responsive-menu .responsive-nav ul.container li.with-dropdown p span {
    line-height: 1;
  }

  .responsive-menu .responsive-nav ul.container li.with-dropdown p i {
    line-height: 1;
  }

  .responsive-menu .responsive-nav ul.container li.with-dropdown .sub-links {
    position: absolute;
    top: 0;
    left: -2.6%;
    transform: translateX(-120%);
    background-color: white;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    transition: transform 500ms ease;
    padding-top: 1rem;
    z-index: 110;
  }

  .responsive-menu .responsive-nav ul.container li.with-dropdown .sub-links .container {
    display: flex;
    flex-direction: column;
    justify-content: unset;
    align-items: start;
    gap: 1rem;
  }

  .responsive-menu .responsive-nav ul.container li.with-dropdown .sub-links .container i {
    color: var(--yellow-main);
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 1200px) {
  header .container .try-logo {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    width: 251px;
  }

  header .container .try-logo span:nth-child(1) {
    grid-area: 1 / 1 / 2 / 2;
  }

  header .container .try-logo span:nth-child(2) {
    grid-area: 1 / 2 / 2 / 3;
    justify-self: end;
  }

  header .container .try-logo span:nth-child(3) {
    grid-area: 2 / 1 / 3 / 3;
    justify-self: center;
  }
}

@media screen and (max-width: 430px) {
  header .container .try-logo {
    width: 196px;
  }

  header .container .try-logo span:nth-child(1) {
    font-size: 14px;
  }

  header .container .try-logo span:nth-child(2) {
    font-size: 14px;
  }

  header .container .try-logo span:nth-child(3) {
    font-size: 14px;
  }
}

/*===== ZONES STYLES =====*/
section.zone-showcase {
  position: relative;
  margin-top: 97px;
}

section.zone-showcase .zone-showcase-image {
  width: 100%;
  aspect-ratio: 1400 / 403;
  position: relative;
}

section.zone-showcase .zone-showcase-image img {
  object-fit: cover;
  width: 100%;
  aspect-ratio: 1400 / 403;
  display: block;
}

section.zone-showcase .zone-showcase-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

section.zone-showcase .intro-wrapper {
  position: absolute;
  bottom: 10%;
  width: 100vw;
}

section.zone-showcase .intro-wrapper .container {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

section.zone-showcase .intro-wrapper .container h1 {
  font-size: 48px;
  color: white;
  font-weight: bold;
  line-height: 1.2;
  text-transform: capitalize;
}

/*----- ZONES SHOWCASE RESPONSIVE -----*/
@media screen and (max-width: 1023px) {
  section.zone-showcase .intro-wrapper .container .identity-icon img {
    height: 150px;
  }

  section.zone-showcase .intro-wrapper .container h1 {
    font-size: 40px;
  }
}

@media screen and (max-width: 767px) {
  section.zone-showcase .intro-wrapper .container .identity-icon img {
    height: 100px;
  }

  section.zone-showcase .intro-wrapper .container h1 {
    font-size: 32px;
  }
}

@media screen and (max-width: 500px) {
  section.zone-showcase .zone-showcase-image {
    height: 150px;
  }

  section.zone-showcase .zone-showcase-image img {
    height: 100%;
    object-fit: cover;
    object-position: left;
  }

  section.zone-showcase .intro-wrapper .container .identity-icon img {
    display: none;
  }
}

/*===== PATRON SAINT STYLES =====*/
section.about-patron-saint {
  display: flex;
  justify-content: space-between;
}

section.about-patron-saint .about-patron-saint-bio {
  flex-basis: 50%;
}

section.about-patron-saint .about-patron-saint-bio h2 {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.2;
  color: var(--green-main);
  width: 360px;
  margin-bottom: 2rem;
}

section.about-patron-saint .about-patron-saint-bio .patron-saint-bio-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 4rem;
}

section.about-patron-saint .about-patron-saint-bio .patron-saint-bio-details p {
  color: var(--text-color);
  font-size: 20px;
}

section.about-patron-saint .about-patron-saint-bio .patron-saint-famous-quote {
  position: relative;
  border: 3px solid var(--yellow-main);
  border-radius: 30px;
  padding: 2rem;
}

section.about-patron-saint .about-patron-saint-bio .patron-saint-famous-quote p {
  font-size: 24px;
  font-weight: bold;
  color: var(--text-color);
}

section.about-patron-saint .about-patron-saint-bio .patron-saint-famous-quote .quotation-mark-verse {
  position: absolute;
  top: -25%;
}

section.about-patron-saint .about-patron-saint-bio .patron-saint-famous-quote section.about-patron-saint .about-patron-saint-image {
  flex-basis: 495px;
  aspect-ratio: 495 / 625;
}

section.about-patron-saint .about-patron-saint-image img {
  width: 100%;
  object-fit: cover;
}

/*----- PATRON SAINT RESPONSIVENESS -----*/
@media screen and (max-width: 1200px) {
  section.about-patron-saint .about-patron-saint-image img {
    width: 36vw;
  }

  section.about-patron-saint .container {
    gap: 5rem;
  }
}

@media screen and (max-width: 769px) {
  section.about-patron-saint .about-patron-saint-bio h2 {
    font-size: 24px;
  }
  section.about-patron-saint {
    padding-bottom: 12rem;
    padding-top: 3rem;
    gap: 2rem;
  }

  section.about-patron-saint .about-patron-saint-bio {
    position: relative;
    flex-basis: unset;
    width: clamp(18.75rem, 38.4615vw + 4.3269rem, 22.8125rem);
  }

  section.about-patron-saint .container {
    gap: 2rem;
    position: relative;
  }

  section.about-patron-saint .about-patron-saint-bio .patron-saint-famous-quote h2 {
    font-size: 32px;
  }

  section.about-patron-saint .about-patron-saint-bio .patron-saint-famous-quote {
    position: absolute;

    height: fit-content;
    width: 95vw;
  }

  section.about-patron-saint .about-patron-saint-image img {
    width: 280px;
  }
}

@media screen and (max-width: 652px) {
  section.about-patron-saint {
    gap: 1rem;
  }
  section.about-patron-saint .about-patron-saint-image img {
    width: 270px;
  }
}

@media screen and (max-width: 600px) {
  section.foundation .container .foundation-statement h2 {
    font-size: 28px;
  }

  section.about-patron-saint {
    flex-direction: column;
    position: relative;
    margin-bottom: 6rem;
  }

  section.about-patron-saint .about-patron-saint-bio {
    position: unset;
    width: 100%;
  }

  section.about-patron-saint .about-patron-saint-bio .patron-saint-bio-details {
    margin-bottom: 1rem;
  }

  section.about-patron-saint .about-patron-saint-image img {
    width: 100%;
  }
}

@media screen and (max-width: 390px) {
  section.foundation .container .foundation-statement .foundation-verse {
    top: 103%;
  }
}

/*===== ABOUT ST. BAKHITA CHURCH STYLES =====*/
section.about-sacred-heart {
  padding-block: 110px;
  background-image: linear-gradient(to top, hsla(0, 0%, 0%, 0.9), hsla(0, 0%, 0%, 0.9)), url("../images/church-inside.webp");
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  font-size: 24px;
  margin-bottom: 5rem;
}

section.about-sacred-heart .container {
  display: flex;
}

section.about-sacred-heart .container .heading-icon {
  width: 90px;
  margin-right: 0.5rem;
}

section.about-sacred-heart .container .heading-icon img {
  width: 100%;
}

section.about-sacred-heart .container .the-other-content {
  display: flex;
  justify-content: space-between;
}

section.about-sacred-heart .container .the-other-content .about-heading {
  width: 33%;
  font-size: 24px;
  font-weight: bold;
  color: var(--yellow-main);
}

section.about-sacred-heart .container .the-other-content .the-history {
  width: 65%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 20px;
}

section.about-sacred-heart .container .the-other-content .the-history h3 {
  font-weight: bold;
  color: var(--yellow-main);
}

section.about-sacred-heart .container .the-other-content .the-history ul {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-row-gap: 0.5rem;
}

section.about-sacred-heart .container .the-other-content .the-history ul li {
  display: flex;
  gap: 0.5rem;
  align-items: first baseline;
}

/*---- ABOUT ST. BAKHITA RESPONSIVE -----*/
@media screen and (max-width: 1200px) {
  section.about-sacred-heart .container .the-other-content .about-heading {
    width: 310px;
  }
}

@media screen and (max-width: 1023px) {
  section.about-sacred-heart .container {
    justify-content: space-between;
  }

  section.about-sacred-heart .container .the-other-content {
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.25rem;
    width: 85vw;
  }

  section.about-sacred-heart .container .the-other-content .the-history {
    width: 100%;
  }

  section.about-sacred-heart {
    font-size: 20px;
  }

  section.about-sacred-heart .container .the-other-content .the-history ul li img {
    width: 18px;
  }
}

@media screen and (max-width: 700px) {
  section.about-sacred-heart .container {
    display: block;
    width: 95%;
    margin-inline: auto;
    position: relative;
  }

  section.about-sacred-heart .container .heading-icon {
    transform: translateY(19px);
  }

  section.about-sacred-heart .container .the-other-content {
    width: 100%;
  }

  section.about-sacred-heart .container .the-other-content .about-heading {
    position: absolute;
    top: 8%;
    left: 100px;
    width: initial;
    font-size: 28px;
  }

  section.about-sacred-heart .container .the-other-content .the-history ul {
    grid-template-columns: repeat(2, auto);
    justify-content: space-between;
  }
}

@media screen and (max-width: 460px) {
  section.about-sacred-heart {
    padding-block: 3rem;
  }

  section.about-sacred-heart .container .heading-icon {
    transform: unset;
  }

  section.about-sacred-heart .container .heading-icon {
    width: 80px;
  }
  section.about-sacred-heart .container .the-other-content {
    margin-top: 6rem;
  }

  section.about-sacred-heart .container .the-other-content .about-heading {
    top: 90px;
    left: 0;
  }
}

/*===== ZONE LEADERS STYLES =====*/
section.zone-leadership .section-heading {
  display: flex;
  align-items: last baseline;
  gap: 0.5rem;
  margin-bottom: 4rem;
}

section.zone-leadership .section-heading h2 {
  text-transform: uppercase;
  font-size: 32px;
  font-weight: bold;
  color: var(--green-main);
  line-height: 1.2;
}

section.zone-leadership .leaders {
  display: grid;
  grid-template-columns: repeat(4, 280px);
  justify-content: space-between;
  grid-row-gap: 2rem;
}

section.zone-leadership .leaders .leader-card .leader-titles {
  text-align: center;
}

section.zone-leadership .leaders .leader-card .leader-titles p {
  color: var(--green-main);
  font-size: 24px;
  font-weight: bold;
  text-transform: capitalize;
}

section.zone-leadership .leaders .leader-card .leader-titles h3 {
  color: var(--para-font);
  font-style: italic;
}

/*---- ZONE LEADERSHIP RESPONSIVENESS ----*/
@media screen and (max-width: 1200px) {
  section.zone-leadership .leaders {
    grid-template-columns: repeat(3, 278px);
    justify-content: space-around;
  }

  section.zone-leadership .section-heading h2 {
    font-size: 24px;
  }

  section.zone-leadership .section-heading img {
    height: 70px;
  }

  section.zone-leadership .leaders .leader-card .leader-titles p {
    font-size: 20px;
  }
}

@media screen and (max-width: 900px) {
  section.zone-leadership .leaders {
    grid-template-columns: repeat(2, 278px);
  }
}

@media screen and (max-width: 600px) {
  section.zone-leadership .section-heading h2 {
    font-size: 28px;
  }

  section.zone-leadership .leaders {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  section.zone-leadership .leaders .leader-card {
    width: 278px;
  }

  section.clergy .container .clergy-body .blanket-statement p {
    font-size: 2rem;
  }
}

@media screen and (max-width: 410px) {
  section.clergy .container .clergy-body .father .father-bio {
    width: 100%;
  }

  section.clergy .container .clergy-body .father .father-message {
    width: 100%;
  }
}

@media screen and (max-width: 390px) {
  section.zone-leadership .section-heading h2 {
    font-size: 25px;
  }
}

/*===== ORDER OF SERVICES STYLES =====*/
section.order-of-services {
  margin-top: 5rem;
}

section.order-of-services .section-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

section.order-of-services .section-heading .heading-icon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

section.order-of-services .section-heading .heading-icon h2 {
  font-size: 36px;
  font-weight: bold;
  color: var(--green-main);
  line-height: 1.2;
}

section.order-of-services .section-heading .intro-statement {
  width: 60%;
  font-size: 20px;
  color: var(--text-color);
}

section.order-of-services .order-of-services-body {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

section.order-of-services .order-of-services-body .sunday-mass-entry h3 {
  font-size: 32px;
  font-weight: bold;
  background-color: var(--green-main);
  color: white;
  padding: 0.5rem 2rem;
}

section.order-of-services .order-of-services-body .sunday-mass-entry .sunday-mass-body {
  padding-inline: 2rem;
  padding-top: 2rem;
  border: thin solid var(--green-main);
  display: flex;
  justify-content: space-between;
}

section.order-of-services .order-of-services-body .sunday-mass-entry .sunday-mass-body > div {
  width: 45%;
}

section.order-of-services .order-of-services-body .sunday-mass-entry .sunday-mass-body h4 {
  font-weight: bold;
  font-size: 24px;
  color: var(--green-main);
}

section.order-of-services .order-of-services-body .sunday-mass-entry ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--green-main);
  font-size: 20px;
}

section.order-of-services .order-of-services-body .sunday-mass-entry ul li {
  padding-block: 1rem;
  border-bottom: thin solid var(--green-main);
  display: grid;
  display: flex;
  justify-content: space-between;
}

section.order-of-services .order-of-services-body .sunday-mass-entry .mass-mother ul li:last-child {
  border: none;
}

section.order-of-services .order-of-services-body .daily-mass-entry h3 {
  font-size: 32px;
  font-weight: bold;
  background-color: var(--green-main);
  color: white;
  padding: 0.5rem 2rem;
}

section.order-of-services .order-of-services-body .daily-mass-entry .daily-mass-body {
  padding: 2rem;
  border: thin solid var(--green-main);
  display: flex;
  justify-content: space-between;
}

section.order-of-services .order-of-services-body .daily-mass-entry .daily-mass-body .daily {
  flex-basis: 50%;
}

section.order-of-services .order-of-services-body .daily-mass-entry .daily-mass-body .daily:first-child {
  border-right: thin solid var(--green-main);
  padding-right: 3rem;
}

section.order-of-services .order-of-services-body .daily-mass-entry .daily-mass-body .daily:last-child {
  padding-left: 3rem;
}

section.order-of-services .order-of-services-body .daily-mass-entry .daily-mass-body .daily h4 {
  font-size: 24px;
  font-weight: bold;
  color: var(--green-main);
  margin-bottom: 1rem;
}

section.order-of-services .order-of-services-body .daily-mass-entry .daily-mass-body .daily .timings {
  display: flex;
  justify-content: space-between;
  color: var(--green-main);
  font-size: 20px;
}

section.order-of-services .order-of-services-body .adoration-entry h3 {
  font-size: 32px;
  font-weight: bold;
  background-color: var(--green-main);
  color: white;
  padding: 0.5rem 2rem;
}

section.order-of-services .order-of-services-body .adoration-entry .daily-mass-body {
  padding: 2rem;
  border: thin solid var(--green-main);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

section.order-of-services .order-of-services-body .adoration-entry .daily-mass-body .adoration-icon img {
  height: 100px;
}

section.order-of-services .order-of-services-body .adoration-entry .daily-mass-body .timings-wrapper {
  flex-basis: 75%;
  display: flex;
}

section.order-of-services .order-of-services-body .adoration-entry .daily-mass-body .timings-wrapper .daily {
  height: fit-content;
  flex-basis: 50%;
}

section.order-of-services .order-of-services-body .adoration-entry .daily-mass-body .daily:first-child {
  border-right: thin solid var(--green-main);
}

section.order-of-services .order-of-services-body .adoration-entry .daily-mass-body .daily:last-child {
  padding-left: 3rem;
  display: flex;
  flex-direction: column;
  align-items: end;
}

section.order-of-services .order-of-services-body .adoration-entry .daily-mass-body .daily h4 {
  font-size: 24px;
  font-weight: bold;
  color: var(--green-main);
  margin-bottom: 1rem;
}

section.order-of-services .order-of-services-body .adoration-entry .daily-mass-body .daily .timings {
  display: flex;
  justify-content: space-between;
  color: var(--green-main);
  font-size: 20px;
}

section.order-of-services .confessions {
  display: flex;
  align-items: last baseline;
  gap: 1rem;
}

section.order-of-services y .confessions img {
  display: block;
}

section.order-of-services .confessions h3 {
  margin-bottom: 0;
  font-size: 32px;
  font-weight: bold;
  color: var(--green-main);
}

section.order-of-services .confessions p {
  color: var(--text-color);
  font-size: 24px;
}

/*----- ORDER OF SERVICES RESPONSIVENESS -----*/
@media screen and (max-width: 1023px) {
  section.order-of-services .section-heading .heading-icon h2 {
    font-size: 24px;
  }

  section.order-of-services .section-heading .heading-icon img {
    height: 70px;
  }

  section.order-of-services .order-of-services-body .daily-mass-entry .daily-mass-body .daily {
    flex-basis: 41vw;
  }

  section.order-of-services .order-of-services-body .daily-mass-entry .daily-mass-body .daily .timings {
    flex-direction: column;
  }

  section.order-of-services .order-of-services-body,
  section.order-of-services .order-of-services-body .sunday-mass-entry h3,
  section.order-of-services .order-of-services-body .daily-mass-entry h3,
  section.order-of-services .order-of-services-body .adoration-entry h3 {
    font-size: 28px;
  }

  section.order-of-services .order-of-services-body .sunday-mass-entry .sunday-mass-body h4,
  section.order-of-services .order-of-services-body .daily-mass-entry .daily-mass-body .daily h4,
  section.order-of-services .order-of-services-body .adoration-entry .daily-mass-body .daily h4 {
    font-size: 20px;
  }

  section.order-of-services .order-of-services-body .sunday-mass-entry ul li,
  section.order-of-services .order-of-services-body .daily-mass-entry .daily-mass-body .daily .timings,
  section.order-of-services .order-of-services-body .adoration-entry .daily-mass-body .daily .timings {
    font-size: 18px;
  }

  section.order-of-services .confessions h3 {
    font-size: 28px;
  }

  section.order-of-services .confessions p {
    font-size: 20px;
  }

  section.order-of-services .section-heading .intro-statement {
    font-size: 20px;
  }
}

@media screen and (max-width: 930px) {
  section.order-of-services .order-of-services-body .adoration-entry .daily-mass-body .adoration-icon img {
    height: 90px;
  }

  section.order-of-services .order-of-services-body .adoration-entry .daily-mass-body .timings-wrapper {
    display: grid;
    grid-template-columns: repeat(2, auto);
    flex-basis: 80%;
  }

  section.order-of-services .order-of-services-body .adoration-entry .daily-mass-body .daily:last-child {
    padding-left: unset;
    justify-self: end;
  }
}

@media screen and (max-width: 900px) {
  section.order-of-services .section-heading {
    flex-direction: column;
    align-items: start;
    gap: 1rem;
  }

  section.order-of-services .section-heading .intro-statement {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  section.order-of-services .order-of-services-body .sunday-mass-entry .sunday-mass-body {
    flex-direction: column;
    gap: 2rem;
  }

  section.order-of-services .order-of-services-body .sunday-mass-entry .sunday-mass-body > div {
    width: 100%;
  }

  section.order-of-services .order-of-services-body .sunday-mass-entry .sunday-mass-body ul li:last-child {
    border: none;
  }

  section.order-of-services .order-of-services-body .daily-mass-entry .daily-mass-body {
    flex-direction: column;
    gap: 2rem;
  }

  section.order-of-services .order-of-services-body .daily-mass-entry .daily-mass-body .daily {
    flex-basis: unset;
  }

  section.order-of-services .order-of-services-body .daily-mass-entry .daily-mass-body .daily:first-child {
    border-bottom: thin solid var(--green-main);
    border-right: none;
    padding-bottom: 2rem;
  }

  section.order-of-services .order-of-services-body .daily-mass-entry .daily-mass-body .daily:last-child {
    padding-left: unset;
  }

  section.order-of-services .order-of-services-body .adoration-entry .daily-mass-body {
    flex-direction: column;
    align-items: start;
    gap: 1rem;
  }

  section.order-of-services .order-of-services-body .adoration-entry .daily-mass-body .timings-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    flex-basis: unset;
  }

  section.order-of-services .order-of-services-body .adoration-entry .daily-mass-body .daily:first-child {
    border: none;
    border-bottom: thin solid var(--green-main);
    width: 100%;
    padding-bottom: 2rem;
  }

  section.order-of-services .order-of-services-body .adoration-entry .daily-mass-body .daily:last-child {
    align-items: start;
    width: 100%;
  }
}

@media screen and (max-width: 400px) {
  section.order-of-services .order-of-services-body .sunday-mass-entry ul li {
    flex-direction: column;
  }

  section.order-of-services .confessions {
    gap: 0.5rem;
  }

  section.order-of-services .confessions img {
    width: 85px;
  }
}

/*===== SCC STYLES =====*/
section.scc .section-heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 4rem;
}

section.scc .section-heading h2 {
  text-transform: uppercase;
  font-size: 32px;
  font-weight: bold;
  color: var(--green-main);
  line-height: 1.2;
}

section.scc .scc-body {
  display: grid;
  grid-template-columns: repeat(2, min(28vw, 400px));
  grid-row-gap: 1rem;
  font-size: 20px;
}

section.scc .scc-body i {
  color: var(--yellow-main);
  margin-right: 1rem;
}

/*---- SCC RESPONSIVENESS -----*/
@media screen and (max-width: 1023px) {
  section.scc .section-heading h2 {
    font-size: 24px;
  }

  section.scc .section-heading .heading-icon img {
    height: 70px;
  }

  section.scc .section-heading {
    margin-bottom: 2rem;
  }

  section.scc .scc-body {
    grid-template-columns: repeat(2, 350px);
  }
}

@media screen and (max-width: 600px) {
  section.scc .scc-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}

/*==== ZONE GALLERY STYLES =====*/
section.zone-gallery {
  padding-bottom: 5rem;
}

section.zone-gallery .section-heading {
  display: flex;
  align-items: end;
  gap: 0.5rem;
  margin-bottom: 4rem;
}

section.zone-gallery .section-heading h2 {
  text-transform: uppercase;
  font-size: 32px;
  font-weight: bold;
  color: var(--green-main);
  line-height: 1.2;
}

section.zone-gallery .zone-gallery-body {
  margin-top: 2rem;
}

section.zone-gallery .zone-gallery-body .wrapper {
  display: grid;
  grid-template-columns: repeat(3, clamp(23.125rem, 5vw + 19.375rem, 23.75rem));
  justify-content: space-between;
  row-gap: 2rem;
}

section.zone-gallery .zone-gallery-body .wrapper .wp-block-media-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.5rem;
}

section.zone-gallery .zone-gallery-body .wrapper .wp-block-media-text img {
  height: auto;
  max-width: unset;
  vertical-align: middle;
  width: 100%;
}

section.zone-gallery .zone-gallery-body .wrapper .wp-block-media-text > .wp-block-media-text__content p {
  text-align: center;
  font-size: 20px;
  color: var(--text-color);
}

/*---- ZONE GALLERY RESPONSIVENESS -----*/
@media screen and (max-width: 1023px) {
  section.zone-gallery .section-heading h2 {
    font-size: 24px;
  }

  section.zone-gallery .section-heading .heading-icon img {
    height: 70px;
  }

  section.zone-gallery .section-heading {
    margin-bottom: 2rem;
  }
}

/*----- GALLERY BODY RESPONSIVE -----*/
@media screen and (max-width: 1200px) {
  section.zone-gallery .zone-gallery-body .wrapper {
    grid-template-columns: repeat(3, 30vw);
  }
}

@media screen and (max-width: 800px) {
  section.zone-gallery .zone-gallery-body .wrapper {
    grid-template-columns: repeat(2, 46vw);
  }
}

@media screen and (max-width: 450px) {
  section.zone-gallery .zone-gallery-body .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  section.zone-gallery .zone-gallery-body .wrapper > div {
    width: 380px;
  }
}

@media screen and (max-width: 400px) {
  section.zone-gallery .zone-gallery-body .wrapper > div {
    width: 100%;
  }
}

/*===== INTERCESSORY PRAYER STYLES =====*/
section.prayer {
  padding-bottom: 5rem;
}

section.prayer .section-heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

section.prayer .section-heading h2 {
  text-transform: uppercase;
  font-size: 32px;
  font-weight: bold;
  color: var(--green-main);
  line-height: 1.2;
}

section.prayer .prayer-body {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}

section.prayer .prayer-body .the-prayer {
  line-height: 2;
}

section.prayer .prayer-body .the-prayer {
  font-size: 20px;
}

/*----- INTERCESSORY PRAYER RESPONSIVE -----*/
@media screen and (max-width: 1023px) {
  section.prayer .prayer-body {
    flex-direction: column;
    width: 485px;
    margin-inline: auto;
  }

  section.prayer .section-heading .heading-icon img {
    height: 80px;
  }

  section.prayer .section-heading h2 {
    font-size: 24px;
  }
}

@media screen and (max-width: 600px) {
  section.prayer .section-heading {
    margin-bottom: 1rem;
  }

  section.prayer .prayer-body {
    gap: 2rem;
    width: 100%;
  }

  section.prayer .prayer-body img {
    width: 100%;
    aspect-ratio: 452 / 284;
    object-fit: cover;
  }
}

/*===== PAYBILLS STYLES =====*/

section.paybills {
  padding-top: 0rem;
}

section.paybills .section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

section.paybills .section-heading .heading-icon {
  display: flex;
  align-items: last baseline;
  gap: 0.5rem;
}

section.paybills .section-heading .heading-icon img {
  height: 100px;
}

section.paybills .section-heading .heading-icon h2 {
  font-size: 32px;
  font-weight: bold;
  color: var(--green-main);
  line-height: 1.2;
}

section.paybills .section-heading .intro-statement {
  width: 65%;
  font-size: 20px;
  color: var(--text-color);
}

section.paybills .paybill-body {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 302px);
  justify-content: space-between;
  row-gap: 2rem;
}

section.paybills .paybill-body .paybill-card h3 {
  font-size: 24px;
  font-weight: bold;
  color: var(--green-main);
  margin-bottom: 0.25rem;
}

section.paybills .paybill-body .paybill-card .paybill-entry {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--text-color);
}

section.paybills .paybill-body .paybill-card .paybill-entry p:first-child {
  font-weight: bold;
}

/*----- PAYBILLS RESPONSIVENESS -----*/
@media screen and (max-width: 1023px) {
  section.paybills .section-heading {
    justify-content: space-between;
  }

  section.paybills .section-heading .heading-icon h2 {
    font-size: 24px;
  }

  section.paybills .section-heading .heading-icon img {
    height: 70px;
  }

  section.paybills .section-heading .intro-statement {
    width: 75%;
  }
}

@media screen and (max-width: 950px) {
  section.paybills .paybill-body {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }

  section.paybills .paybill-body .paybill-card .paybill-entry {
    width: 302px;
  }
}

@media screen and (max-width: 830px) {
  section.paybills .section-heading {
    flex-direction: column;
    gap: 1rem;
    align-items: start;
  }

  section.paybills .section-heading .intro-statement {
    width: 100%;
  }
}

/*===== CONTACTS STYLES =====*/
section.contacts {
  background-color: var(--body-background);
}

section.contacts .container {
  display: flex;
  justify-content: space-between;
}

section.contacts .container .section-heading {
  display: flex;
  align-items: last baseline;
  margin-bottom: 3rem;
}

section.contacts .container .section-heading img {
  display: block;
}

section.contacts .container .section-heading .heading-icon {
  margin-right: 0.5rem;
}

section.contacts .container .section-heading h2 {
  font-size: 42px;
  font-weight: bold;
  color: var(--green-main);
  line-height: 1.2;
}

section.contacts .container .contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-size: 20px;
  color: var(--text-color);
}

section.contacts .container .contact-details .contact-entry {
  display: flex;
  gap: 1.5rem;
}

section.contacts .container .contact-details .contact-entry > div {
  width: 51px;
  display: flex;
  justify-content: end;
}

section.contacts .container .contact-details .contact-entry .road {
  width: 420px;
}

section.contacts .container .map {
  width: 605px;
  height: auto;
  background: white;
  border: thin solid var(--green-main);
}

iframe {
  width: 100%;
  height: 100%;
}

/*----- CONTACTS RESPONSIVENESS -----*/
@media screen and (max-width: 1200px) {
  section.contacts .container {
    gap: 2rem;
  }

  section.contacts .container .contact-details .contact-entry > div:first-child img {
    width: 61px;
  }

  section.contacts .container .map {
    width: 50vw;
  }

  section.contacts .container .contact-details .contact-entry .road {
    width: 40vw;
  }
}
@media screen and (max-width: 1023px) {
  section.contacts .container {
    gap: 1rem;
  }

  section.contacts .container .contact-details .contact-entry .road {
    width: 35vw;
  }

  section.contacts .container .section-heading h2 {
    font-size: 32px;
  }

  section.contacts .container .section-heading .heading-icon img {
    height: 90px;
  }
}

@media screen and (max-width: 767px) {
  section.contacts .container {
    flex-direction: column;
    gap: 3rem;
  }

  section.contacts .container .contact-details .contact-entry .road {
    width: 400px;
  }

  section.contacts .container .map {
    width: 100%;
    aspect-ratio: 16 / 9;
  }
}

@media screen and (max-width: 450px) {
  section.contacts .container .contact-details .contact-entry .road {
    width: 300px;
  }

  section.contacts .container .contact-details .contact-entry > div {
    width: 56px;
  }
}

/*===== FOOTER STYLES =====*/
footer {
  background: var(--body-background);
}

footer .container {
  padding-block: 2rem;

  display: flex;
  justify-content: space-between;
  text-align: center;
}

footer .container .footer-item:first-child {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0.5rem;
}

footer .container .footer-item:first-child .footer-logo img {
  width: 60px;
}

footer .container .footer-item:first-child p {
  font-size: 16px;
  color: var(--text-color);
}

footer .container a {
  text-decoration: none;
}

footer .container .socials {
  display: flex;
  gap: 1rem;
}

footer .container .footer-item:first-child a img {
  height: 20px;
}

footer .container .footer-item {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0.5rem;
}

footer .container .footer-item h2 {
  font-weight: bold;
  color: var(--green-main);
}

footer .container .footer-item .footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: start;
}

footer .container .footer-item a {
  color: var(--text-color);
  transition: all 300ms ease;
}

footer .container .footer-item .footer-links a i {
  margin-right: 0.25rem;
  color: var(--yellow-main);
}

footer .container .footer-item a:hover {
  text-decoration: underline;
}

/*----- FOOTER RESPONSIVENESS -----*/
@media screen and (max-width: 767px) {
  footer .container {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-row-gap: 2rem;
  }

  footer .container .footer-item:first-child {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 2;
  }
}

@media screen and (max-width: 520px) {
  footer .container {
    display: flex;
    flex-direction: column-reverse;
    align-items: start;
  }
}

@media screen and (max-width: 375px) {
  footer .container .footer-item a {
    font-size: 18px;
  }
}
