/*@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 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: white;
}

/*===== 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;
  }
}

/*===== SEARCH STYLES =====*/

.search {
  margin-top: 1rem;
  width: min(100%, 800px);
  position: relative;

  margin-inline: auto;
  margin-top: 3rem;
  border-radius: 50px;
  /*border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; */
  box-shadow: rgba(0, 81, 40, 0.24) 0px 3px 8px;
}

.search form {
  width: 90%;
  margin-inline: auto;
}

.search input {
  width: 100%;
  padding-block: 1rem;
  font-size: 20px;
  font-family: var(--para-font);
  color: var(--text-color);
  background-color: transparent;
  outline: none;
  border: none;
  margin-inline: auto;
  position: relative;
  z-index: 119;
}

.search .form-btns {
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
  color: var(--green-main);
  font-size: 18px;
  border: none;
  outline: none;
  background: transparent;
  z-index: 119;
  cursor: pointer;
}

.search input:focus {
  outline: none;
  border: none;
}

.search .search-results-wrapper {
  position: absolute;
  z-index: 118;

  width: 800px;
  /*min-height: 300px; /*change this with js*/
  padding-bottom: 1rem;
  left: 0;
  top: 0;

  border-radius: 25px;

  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 500ms;
}

/*.search input:focus ~ .search-results-wrapper {
  box-shadow: rgba(0, 81, 40, 0.24) 0px 3px 8px;
  grid-template-rows: 1fr;
}*/

.search .search-results-wrapper .search-results {
  margin-top: 53px;
  padding: 1rem 2.5rem;
  width: 100%;
  height: 100%;
  border-top: thin solid var(--body-background);
  border-bottom-left-radius: 20px; /*change this with js*/
  border-bottom-right-radius: 20px; /*change this with js*/
  /*box-shadow: rgba(0, 81, 40, 0.24) 0px 3px 8px;*/
  display: flex;
  align-items: center;
  justify-content: center;
}

.search .search-results-wrapper > div {
  overflow: hidden;
}

.search .search-results-wrapper .search-results .spinner-wrapper {
  margin-bottom: 3rem;
}

.search .search-results-wrapper .search-results p {
  font-size: 20px;
  font-weight: bold;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.search .search-results-wrapper .search-results ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.search .search-results-wrapper .search-results ul li {
  display: flex;
  gap: 1rem;
  align-items: first baseline;
}

.search .search-results-wrapper .search-results ul li i {
  color: var(--yellow-main);
}

.search .search-results-wrapper .search-results ul li a {
  font-size: 20px;
  text-decoration: none;
  color: var(--text-color);
  padding-block: 0.25rem;
}

.search .search-results-wrapper .search-results ul li a:hover {
  text-decoration: underline;
}

.search .search-results-wrapper .search-results ul li img {
  width: 18px;
}

.search .search-results-wrapper .search-results .hide-success,
.search .search-results-wrapper .search-results .hide-failure,
.search .search-results-wrapper .search-results .hide-results,
.hide-spinner {
  display: none;
}

/*----- SEARCH SPINNER -----*/
.loader {
  position: relative;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid var(--green-main);
  width: 70px;
  height: 70px;

  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*----- SEARCH RESPONSIVE -----*/
@media screen and (max-width: 850px) {
  .search {
    width: 88vw;
  }

  .search input {
    padding-block: 0.75rem;
  }

  .search button {
    right: 5%;
  }

  .search .search-results-wrapper {
    width: 88vw;
  }
}

@media screen and (max-width: 850px) {
  .search {
    width: 95vw;
  }

  .search .search-results-wrapper {
    width: 95vw;
  }

  .search .search-results-wrapper .search-results {
    padding-inline: 1.5rem;
  }
}

@media screen and (max-width: 500px) {
  .search form {
    width: 95%;
  }

  .search .form-btns {
    right: 4%;
  }

  .search input {
    padding-inline: 0.5rem;
  }

  .search .search-results-wrapper .search-results {
    padding-inline: 1rem;
  }
}

/*===== SHOWCASE STYLES =====*/
section.showcase {
  aspect-ratio: 1400 / 590;
  /*background: linear-gradient(to top, hsla(0, 0%, 0%, 0.5), hsla(0, 0%, 0%, 0.2)), url("../images/showcase-background\ \(1\).webp");*/
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  margin-top: 97px;
}

section.showcase .slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

section.showcase .slider img {
  width: 150%;
  object-fit: cover;
  aspect-ratio: 1400 / 600;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: zoom 5s linear infinite;
}

@keyframes zoom {
  100% {
    width: 120%;
  }
}

.hero .slider .banner-1 {
  animation: slide1 20s linear infinite;
}

@keyframes slide1 {
  0% {
    visibility: visible;
  }
  25% {
    visibility: hidden;
  }
  50% {
    visibility: hidden;
  }
  75% {
    visibility: hidden;
  }
  100% {
    visibility: visible;
  }
}

.slider .banner-2 {
  animation: slide2 20s linear infinite;
}

@keyframes slide2 {
  0% {
    visibility: hidden;
  }
  25% {
    visibility: hidden;
  }
  50% {
    visibility: visible;
  }
  75% {
    visibility: hidden;
  }
  100% {
    visibility: hidden;
  }
}

.slider .banner-3 {
  animation: slide3 20s linear infinite;
}

@keyframes slide3 {
  0% {
    visibility: hidden;
  }
  25% {
    visibility: hidden;
  }
  50% {
    visibility: hidden;
  }
  75% {
    visibility: visible;
  }
  100% {
    visibility: hidden;
  }
}

.slider .banner-4 {
  animation: slide4 20s linear infinite;
}

@keyframes slide4 {
  0% {
    visibility: hidden;
  }
  25% {
    visibility: hidden;
  }
  50% {
    visibility: hidden;
  }
  75% {
    visibility: hidden;
  }
  100% {
    visibility: visible;
  }
}

section.showcase .slider {
  position: relative;
}

section.showcase .slider::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: black;
  opacity: 0.5;
  z-index: 1;
  animation: zoom 5s linear infinite;
}

section.showcase .intro-wrapper {
  position: absolute;
  width: 100%;
  bottom: 5%;
  z-index: 100;
}

section.showcase .container {
  height: 100%;
  position: relative;
  display: flex;
  justify-content: end;
}

section.showcase .container .indentity-box {
  display: flex;
  align-items: end;
  gap: 0.5rem;
}

section.showcase .container .indentity-box h1 {
  display: flex;
  flex-direction: column;
  font-weight: bold;
  color: white;
  gap: 0.25rem;
}

section.showcase .container .indentity-box h1 span {
  line-height: 1;
}

section.showcase .container .indentity-box h1 span:first-child {
  font-size: 47.7px;
}

section.showcase .container .indentity-box h1 span:nth-child(2) {
  font-size: 48.5px;
}

section.showcase .container .indentity-box h1 span:nth-child(3) {
  font-size: 40.1px;

  color: var(--yellow-main);
}

section.showcase .container .indentity-box img {
  display: block;
}

/*------ HOME SHOWCASE RESPONSIVE -----*/
@media screen and (max-width: 600px) {
  section.showcase .container .indentity-box h1 span:first-child {
    font-size: 30px;
  }
  section.showcase .container .indentity-box h1 span:nth-child(2) {
    font-size: 31px;
  }
  section.showcase .container .indentity-box h1 span:nth-child(3) {
    font-size: 25px;
  }

  section.showcase .container .indentity-box img {
    height: 110px;
  }

  section.showcase {
    height: calc(75vh - 35px);
    aspect-ratio: 360 / 436;
    width: 100%;
  }

  .search {
    margin-bottom: 1rem;
  }

  section.showcase .slider img {
    height: 100%;
    aspect-ratio: 360 / 436;
  }
}

@media screen and (max-width: 410px) {
  section.showcase .container .indentity-box h1 span:first-child {
    font-size: 25px;
  }
  section.showcase .container .indentity-box h1 span:nth-child(2) {
    font-size: 25px;
  }
  section.showcase .container .indentity-box h1 span:nth-child(3) {
    font-size: 20.5px;
  }

  section.showcase .container .indentity-box img {
    height: 90px;
  }
}

/*===== FOUNDATION STYLES =====*/
section.foundation .container {
  display: flex;
  justify-content: space-around;
  gap: 10rem;
}

section.foundation .container .foundation-statement {
  flex-basis: 55%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

section.foundation .container .foundation-statement h2 {
  font-size: 40px;
  font-weight: bold;
  color: var(--green-main);
  line-height: 1.2;
}

section.foundation .container .foundation-statement .foundation-para p {
  font-size: 24px;
  color: var(--text-color);
}

section.foundation .container .foundation-statement .foundation-verse {
  width: 100%;
  position: relative;
  padding: 2rem;
  border: solid 3px var(--yellow-main);
  border-radius: 45px;
  margin-top: 2rem;
}

section.foundation .container .foundation-statement .foundation-verse p {
  font-size: 24px;
  font-weight: bold;
  color: var(--text-color);
}

section.foundation .container .foundation-statement .foundation-verse .quotation-mark-verse {
  position: absolute;
  top: -20%;
}

section.foundation .container .foundation-statement .foundation-verse p.actual-verse {
  text-align: end;
  margin-top: 1rem;
  color: var(--green-main);
}

section.foundation .container .foundation-image {
  flex-basis: 1;
  aspect-ratio: 493 / 624;
}

section.foundation .container .foundation-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/*----- FOUNDATION RESPONSIVE -----*/
@media screen and (max-width: 1200px) {
  section.foundation .container .foundation-image img {
    width: 36vw;
  }

  section.foundation .container {
    gap: 5rem;
  }
}

@media screen and (max-width: 1023px) {
  section.foundation .container .foundation-statement .foundation-para p {
    font-size: 20px;
  }
}

@media screen and (max-width: 769px) {
  section.foundation {
    padding-bottom: 20rem;
    padding-top: 3rem;
  }

  section.foundation .container {
    gap: 2rem;
    position: relative;
  }

  section.foundation .container .foundation-statement {
  }

  section.foundation .container .foundation-statement h2 {
    font-size: 32px;
  }

  section.foundation .container .foundation-statement .foundation-verse {
    position: absolute;
    top: 105%;

    height: fit-content;
    width: 95vw;
  }

  section.foundation .container .foundation-image img {
    width: 280px;
  }
}

@media screen and (max-width: 652px) {
  section.foundation .container .foundation-image img {
    width: 270px;
  }

  section.foundation .container .foundation-statement .foundation-verse p {
    font-size: 20px;
  }
}

@media screen and (max-width: 600px) {
  section.foundation .container .foundation-statement h2 {
    font-size: 28px;
  }

  section.foundation .container {
    flex-direction: column;
  }

  section.foundation .container .foundation-image img {
    width: 100%;
  }
}

@media screen and (max-width: 390px) {
  section.foundation .container .foundation-statement .foundation-verse {
    top: 103%;
  }
}

/*===== ABOUT SACRED HEART 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;
}

section.about-sacred-heart .container {
  display: flex;
}

section.about-sacred-heart .container .heading-icon {
  width: 113px;
  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: 37%;
  font-size: 32px;
  font-weight: bold;
  color: var(--yellow-main);
}

section.about-sacred-heart .container .the-other-content .the-history {
  width: 55%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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;
}

section.about-sacred-heart .container .the-other-content .the-history ul li i {
  color: var(--yellow-main);
}

/*---- ABOUT RESPONSIVE -----*/
@media screen and (max-width: 1200px) {
  section.about-sacred-heart .container .the-other-content .about-heading {
    width: 370px;
  }
}

@media screen and (max-width: 1023px) {
  section.about-sacred-heart {
    padding-block: 48px;
  }
  section.about-sacred-heart .container {
    justify-content: space-between;
  }

  section.about-sacred-heart .container .heading-icon {
    width: 90px;
  }

  section.about-sacred-heart .container .the-other-content .about-heading {
    font-size: 24px;
  }

  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 .container .the-other-content .the-history p {
    font-size: 20px;
  }

  section.about-sacred-heart .container .the-other-content .the-history ul li {
    font-size: 20px;
  }
}

@media screen and (max-width: 600px) {
  section.about-sacred-heart .container {
    display: block;
    width: 95%;
    margin-inline: auto;
    position: relative;
  }

  section.about-sacred-heart .container .the-other-content {
    width: 100%;
  }

  section.about-sacred-heart .container .the-other-content .about-heading {
    position: absolute;
    top: 6.5%;
    left: 95px;
    width: initial;
  }

  section.about-sacred-heart .container .the-other-content {
    margin-top: 1rem;
  }

  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 {
    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;
  }
}

/*===== CLERGY STYLES =====*/
section.clergy {
  background-color: var(--body-background);
}

section.clergy .container .section-heading {
  display: flex;
  align-items: last baseline;
  margin-bottom: 3rem;
}

section.clergy .container .section-heading img {
  display: block;
}

section.clergy .container .section-heading .heading-icon {
  margin-right: 0.5rem;
}

section.clergy .container .section-heading h2 {
  font-size: 42px;
  font-weight: bold;
  color: var(--green-main);
  line-height: 1.2;
}

section.clergy .container .clergy-body {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

section.clergy .container .clergy-body .father {
  display: flex;
  justify-content: space-between;
}

section.clergy .container .clergy-body .father .father-bio {
  width: 33.5%;
}

section.clergy .container .clergy-body .father .father-bio .father-potrait {
  width: 100%;
  aspect-ratio: 402 / 430;
}

section.clergy .container .clergy-body .father .father-bio .father-potrait img {
  width: 100%;
  object-fit: cover;
}

section.clergy .container .clergy-body .father .father-bio h3 {
  font-size: 28px;
  font-weight: bold;
  color: var(--green-main);
  margin-top: 1rem;
}

section.clergy .container .clergy-body .father .father-bio p {
  font-size: 24px;
  font-style: italic;
  color: var(--text-color);
}

section.clergy .container .clergy-body .father .father-message {
  width: 58%;
}

section.clergy .container .clergy-body .father .father-message p {
  font-size: 24px;
  color: var(--text-color);
  margin-bottom: 2rem;
}

section.clergy .container .clergy-body .leadership {
  display: grid;
  grid-template-columns: repeat(4, 278px);
  grid-row-gap: 2rem;
  justify-content: space-between;
}

section.clergy .container .clergy-body .leadership img {
  display: block;
  width: 100%;
}

section.clergy .container .clergy-body .leadership .leader-card .leader-name {
  font-size: 20px;
  font-weight: bold;
  color: var(--green-main);
  text-align: center;
  margin-top: 0.5rem;
}

section.clergy .container .clergy-body .leadership .leader-card .leader-title {
  font-style: italic;
  font-size: 24px;
  text-align: center;
  color: var(--text-color);
}

section.clergy .container .clergy-body .blanket-statement {
  width: fit-content;
  margin-left: 20%;
}

section.clergy .container .clergy-body .blanket-statement p {
  font-size: 3rem;
  font-weight: bold;
  color: var(--green-main);
  margin-top: 1rem;
  margin-left: 2rem;
  text-align: center;
}

/*---- CLERGY RESPONSIVENESS ----*/
@media screen and (max-width: 1200px) {
  section.clergy .container .clergy-body .father .father-bio {
    width: 380px;
  }

  section.clergy .container .clergy-body .leadership {
    grid-template-columns: repeat(3, 278px);
    justify-content: space-around;
  }
}

@media screen and (max-width: 1023px) {
  section.clergy .container .clergy-body .father .father-bio {
    width: 290px;
  }

  section.clergy .container .clergy-body .father .father-message p {
    font-size: 20px;
  }

  section.clergy .container .clergy-body .father .father-bio h3 {
    font-size: 20px;
  }

  section.clergy .container .clergy-body .father .father-bio p {
    font-size: 20px;
  }

  section.clergy .container .section-heading img {
    height: 60px;
  }

  section.clergy .container .section-heading h2 {
    font-size: 24px;
  }

  section.clergy .container .clergy-body .leadership .leader-card .leader-name {
    font-size: 20px;
  }

  section.clergy .container .clergy-body .leadership .leader-card .leader-title {
    font-size: 20px;
  }

  section.clergy .container .clergy-body .blanket-statement {
    margin-inline: auto;
  }

  section.clergy .container .clergy-body .blanket-statement p {
    font-size: 24px;
  }
}

@media screen and (max-width: 900px) {
  section.clergy .container .clergy-body .leadership {
    grid-template-columns: repeat(2, 278px);
  }
}

@media screen and (max-width: 767px) {
  section.clergy .container .clergy-body .father {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  section.clergy .container .clergy-body .father .father-bio {
    width: 402px;
  }

  section.clergy .container .clergy-body .father .father-message {
    width: 402px;
  }

  section.clergy .container .clergy-body .blanket-statement {
    margin-inline: auto;
  }
}

@media screen and (max-width: 600px) {
  section.clergy {
    padding-block: 3rem;
  }

  section.clergy .container .clergy-body .father .father-message .fake-signature {
    width: fit-content;
    margin-inline: auto;
  }

  section.clergy .container .clergy-body .leadership {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  section.clergy .container .clergy-body .leadership .leader-card {
    width: 278px;
  }
}

@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%;
  }
}

/*===== LEADERSHIP STYLES =====*/
section.leadership {
  background-color: var(--body-background);
  padding-bottom: 5rem;
}
section.leadership .section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

section.leadership .section-heading .heading-icon {
  display: flex;
  align-items: last baseline;
  gap: 0.5rem;
}

section.leadership .section-heading .heading-icon h2 {
  font-size: 42px;
  font-weight: bold;
  color: var(--green-main);
  line-height: 1.2;
}

section.leadership .section-heading .intro-statement {
  width: 47%;
  font-size: 24px;
  color: var(--text-color);
}

section.leadership .container .leadership-body {
  margin-top: 5rem;
}

section.leadership .container .leadership-body .overall {
  display: flex;
  flex-direction: column;
  align-items: center;
}

section.leadership .container .leadership-body .overall .main-leader-card {
  padding: 1rem 2rem;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 20px;
  cursor: pointer;
  position: relative;
  width: fit-content;
  margin-inline: auto;
}

/*section.leadership .container .leadership-body .overall .main-leader-card::after {
  content: "";
  position: absolute;
  top: 120%;
  height: 2px;
  width: clamp(10.938rem, -24.607rem + 74.051vw, 40.188rem);
  width: min(643px, 46vw);
  background-color: var(--green-main);
}*/

section.leadership .container .leadership-body .overall .main-leader-card p {
  font-size: 20px;
  font-weight: bold;
  color: var(--green-main);
}

section.leadership .container .leadership-body .overall .main-leader-card h3 {
  font-style: italic;
  font-size: 20px;
  color: var(--text-color);
}

section.leadership .container .leadership-body .overall .departments {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

section.leadership .container .leadership-body .overall .departments .department .department-title h4 {
  font-size: 32px;
  font-weight: bold;
  color: var(--green-main);
  padding: 1.25rem 2.5rem;
  background-color: white;
  border-radius: 10px;
  border: 2px solid var(--green-main);
  margin-bottom: 2rem;
  cursor: pointer;
  position: relative;
  width: fit-content;
  margin-inline: auto;
}

/*section.leadership .container .leadership-body .overall .departments .department .department-title > div {
  display: flex;
  flex-direction: column;
  gap: 3rem;
} */

/*==== leaders two columns display ======*/
section.leadership .container .leadership-body .overall .departments .department .department-title .two-column {
  display: flex;
  width: 546px;
  justify-content: space-between;
}

section.leadership .container .leadership-body .overall .departments .department .other-leaders {
  display: grid;
  grid-template-columns: repeat(5, auto);
  justify-content: space-between;
  row-gap: 2rem;
  margin-top: 2rem;
}

section.leadership .container .leadership-body .overall .departments .department .department-title .leader-card {
  display: flex;
  flex-direction: column;
  padding-block: 1rem;
  background-color: white;
  width: 215px;

  align-items: center;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  font-size: 18px;
  position: relative;
  text-align: center;
}

section.leadership .container .leadership-body .overall .departments .department .department-title .two-column {
  display: flex;
  width: 546px;
  justify-content: space-between;
  position: relative;
}

section.leadership .container .leadership-body .overall .departments .department .department-title .two-column .leader-card:last-child::before {
  left: -27%;
}

section.leadership .container .leadership-body .overall .departments .department .department-title .leader-card img {
  width: 132.298px;
  height: 132.298px;
  border-radius: 50%;
}

section.leadership .container .leadership-body .overall .departments .department .department-title .leader-card p {
  font-size: 18px;
  font-weight: bold;
  color: var(--green-main);
  text-transform: capitalize;
}

section.leadership .container .leadership-body .overall .departments .department .department-title .leader-card h5 {
  font-style: italic;
  font-size: 18px;
  color: var(--text-color);
  font-weight: initial;
}

/*----- LEADERSHIP RESPONSIVE -----*/

@media screen and (max-width: 1200px) {
  section.leadership .container .leadership-body .overall .departments .department .other-leaders {
    grid-template-columns: repeat(4, auto);
  }

  section.leadership .container .leadership-body .overall .departments .department:nth-child(2) {
    margin-top: 3rem;
  }
}

@media screen and (max-width: 1023px) {
  section.leadership {
    padding-top: 1.5rem;
  }

  section.leadership .section-heading {
    align-items: center;
  }

  section.leadership .section-heading .heading-icon h2 {
    font-size: 24px;
  }

  section.leadership .section-heading .heading-icon img {
    height: 60px;
  }

  section.leadership .section-heading .intro-statement {
    width: 65%;
  }

  section.leadership .section-heading .intro-statement p {
    font-size: 20px;
  }
}

@media screen and (max-width: 960px) {
  section.leadership .container .leadership-body .overall .departments .department .other-leaders {
    grid-template-columns: repeat(3, auto);
    justify-content: space-around;
  }
}

@media screen and (max-width: 910px) {
  section.leadership .container .leadership-body .overall .departments .department .department-title h4 {
    font-size: 24px;
    padding: 1rem 2rem;
  }

  section.leadership .container .leadership-body .overall .departments .department .department-title .leader-card::before {
    width: 15px;
    right: -7%;
  }

  section.leadership .container .leadership-body .overall .departments .department .department-title .two-column .leader-card:last-child::before {
    left: -7%;
  }

  section.leadership .container .leadership-body .overall .departments .department .department-title .align-end .leader-card::before {
    width: 15px;
    left: -7%;
  }
}

@media screen and (max-width: 790px) {
  section.leadership .section-heading {
    flex-direction: column;
    align-items: start;
    gap: 1rem;
  }

  section.leadership .section-heading .intro-statement {
    width: 100%;
  }

  section.leadership .container .leadership-body .overall .departments .department .department-title .two-column .leader-card:last-child {
    position: relative;
  }

  section.leadership .container .leadership-body .overall .departments .department .department-title .two-column .leader-card:last-child::before {
    left: unset;
  }
}

@media screen and (max-width: 720px) {
  section.leadership .container .leadership-body .overall .departments .department .other-leaders {
    grid-template-columns: repeat(2, auto);
  }
}

@media screen and (max-width: 600px) {
  section.leadership .container .leadership-body .overall .main-leader-card .underline {
    display: none;
  }

  section.leadership .container .leadership-body .overall .main-leader-card::before {
    display: none;
  }

  section.leadership .container .leadership-body .overall .departments .department .department-title .leader-card::before {
    display: none;
  }

  section.leadership .container .leadership-body {
    width: 100%;
  }

  section.leadership .container .leadership-body .overall .departments {
    flex-direction: column;
    gap: 4rem;
    margin-top: 60px;
  }

  section.leadership .container .leadership-body .overall .departments .department .department-title h4 {
    width: fit-content;
    margin-inline: auto;
  }

  section.leadership .container .leadership-body .overall .departments .department .department-title .two-column {
    flex-direction: row;
    gap: unset;
    width: 100%;
    justify-content: space-around;
  }

  section.leadership .container .leadership-body .overall .departments .department .department-title .align-end {
    align-items: unset;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: unset;
    grid-row-gap: 3rem;
    justify-content: space-around;
  }

  section.leadership .container .leadership-body .overall .departments .department .department-title .leader-card {
    justify-self: center;
  }

  section.leadership .container .leadership-body .overall .departments .department .department-title h4 {
    margin-bottom: 342px;
  }

  section.leadership .container .leadership-body {
    position: relative;
    margin-top: 0;
  }

  section.leadership .container .leadership-body .overall .main-leader-card {
    position: absolute;
    top: 165px;
  }

  section.leadership .container .leadership-body .overall .departments .department:last-child {
    position: relative;
  }

  section.leadership .container .leadership-body .overall .departments .department .department-title .main-leader-card {
    padding: 1rem 1rem;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 20px;
    cursor: pointer;
    gap: unset;
    position: absolute;
    top: 5.5%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }

  section.leadership .container .leadership-body .overall .departments .department:last-child .department-title .main-leader-card {
    top: 120px;
  }

  section.leadership .container .leadership-body .overall .departments .department .department-title .main-leader-card p {
    font-size: 20px;
  }
}

@media screen and (max-width: 470px) {
  section.leadership .container .leadership-body .overall .departments .department .department-title .leader-card {
    width: 185px;
  }
}

@media screen and (max-width: 405px) {
  section.leadership .container .leadership-body .overall .departments .department .department-title .leader-card {
    width: 215px;
  }

  section.leadership .container .leadership-body .overall .departments .department .other-leaders {
    grid-template-columns: repeat(1, auto);
  }

  section.leadership .container .leadership-body .overall .departments .department .department-title .main-leader-card {
    top: 3.5%;
  }
}

/*===== PROGRAMMES STYLES =====*/
section.programmes .section-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

section.programmes .section-heading .heading-icon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

section.programmes .section-heading .heading-icon h2 {
  font-size: 42px;
  font-weight: bold;
  color: var(--green-main);
  line-height: 1.2;
}

section.programmes .section-heading .intro-statement {
  width: 47%;
  font-size: 24px;
  color: var(--text-color);
}

section.programmes .programmes-body {
  display: grid;
  grid-template-columns: repeat(3, 359px);
  grid-auto-rows: 1fr;
  justify-content: space-between;
  margin-top: 3rem;
}

section.programmes .programmes-body .programme-card {
  display: flex;
  flex-direction: column;
}

section.programmes .programmes-body .programme-card .programme-image{
	max-height: 214px;
}

section.programmes .programmes-body .programme-card img {
  display: block;
  width: 100%;
	height: 100%;
	object-fit:cover;
	aspect-ratio: 359 / 214;
	object-position: top;
}

section.programmes .programmes-body .programme-card .programme-brief {
  padding: 2rem 1rem;
  border: thin solid var(--green-main);
  border-top: none;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

section.programmes .programmes-body .programme-card .programme-brief h3 {
  font-size: 22px;
  font-weight: bold;
  color: var(--green-main);
}

section.programmes .programmes-body .programme-card .programme-brief p {
  font-size: 24px;
  color: var(--text-color);
}

section.programmes .programmes-body .programme-card .programme-brief span {
  display: flex;
  align-items: last baseline;
  gap: 0.25rem;
}

section.programmes .programmes-body .programme-card .programme-brief span a {
  text-decoration: none;
  color: var(--green-main);
  font-size: 20px;
  font-weight: bold;
  display: inline-block;
  line-height: 0;
}

section.programmes .programmes-body .programme-card .programme-brief span i {
  margin-top: 10px;
  color: var(--yellow-main);
}

section.programmes .programmes-body .programme-card .programme-brief span.anchor-visible {
  position: absolute;
  bottom: 13%;
}

section.programmes .programmes-body .programme-card .programme-brief span:not(.anchor-visible) {
  visibility: hidden;
}

/*----- PROGRAMS RESPONSIVENESS -----*/
@media screen and (max-width: 1200px) {
  section.programmes .programmes-body {
    grid-template-columns: repeat(2, 359px);
    justify-content: space-evenly;
    grid-row-gap: clamp(1.5rem, 18vw + -7.5rem, 6rem);
  }
}

@media screen and (max-width: 1023px) {
  section.programmes .section-heading .heading-icon h2 {
    font-size: 24px;
  }

  section.programmes .section-heading .heading-icon img {
    height: 60px;
  }

  section.programmes .section-heading .intro-statement {
    width: 65%;
  }

  section.programmes .section-heading .intro-statement p {
    font-size: 20px;
  }

  section.programmes .programmes-body .programme-card .programme-brief p {
    font-size: 20px;
  }

  section.programmes .programmes-body .programme-card .programme-brief h3 {
    font-size: 20px;
  }
}

@media screen and (max-width: 830px) {
  section.programmes .section-heading {
    flex-direction: column;
    align-items: start;
    gap: 1rem;
  }

  section.programmes .section-heading .intro-statement {
    width: 100%;
  }
}

@media screen and (max-width: 800px) {
  section.programmes .programmes-body {
    grid-template-columns: repeat(2, 46.5vw);
    justify-content: space-between;
  }
}

@media screen and (max-width: 700px) {
  section.programmes .programmes-body {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  section.programmes .programmes-body .programme-card {
    width: 359px;
  }
}

@media screen and (max-width: 390px) {
  section.programmes .programmes-body .programme-card {
    width: 100%;
  }
}

/*===== CHURCH PROGRAMMES SINGLE PAGE STYLES =====*/
section.programmes-main {
  padding-top: 2rem;
}

section.programmes-main .container {
  display: flex;

  padding-top: 1rem;
  border-top: thin solid var(--body-background);
}

section.programmes-main .container .programme-meta {
  padding-right: 1rem;
}

section.programmes-main .container .programme-meta h1 {
  color: var(--green-main);
  font-size: 36px;
  font-weight: bold;
  max-width: 359px;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

section.programmes-main .container .programme-meta img {
  width: 359px;
}

section.programmes-main .container .programme-details {
  padding-left: 2rem;
  border-left: thin solid var(--body-background);
}

section.programmes-main .container .programme-details h2 {
  font-size: 30px;
  font-weight: bold;
  color: var(--green-main);
  margin-bottom: 1rem;
}

section.programmes-main .container .programme-details h3 {
  font-size: 24px;
  font-weight: bold;
  color: var(--green-main);
  margin-bottom: 1rem;
}

section.programmes-main .container .programme-details p:not(:last-child) {
  margin-block: 1rem;
}

section.programmes-main .container .programme-details ul {
  margin-bottom: 1rem;
  margin-left: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

section.programmes-main .container .programme-details ul li {
  padding-left: 0.5rem;
}

section.programmes-main .container .programme-details ul li::marker {
  content: "\f058";
  margin-right: 0.5rem;
  font-family: FontAwesome;
  color: var(--yellow-main);
}

section.programmes-main .container .programme-details figure.wp-block-gallery.has-nested-images {
  display: grid;
  grid-template-columns: repeat(2, min(380px, 27.5vw));
  justify-content: space-between;
  margin-block: 2rem;
}

.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2) {
  width: 100%;
  aspect-ratio: 380 / 276;
}

.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2),
.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2) ~ figure.wp-block-image:not(#individual-image) {
  width: 100%;
  aspect-ratio: 380 / 276;
}

section.programmes-main .container .programme-details figure.wp-block-embed {
  margin-top: 2rem;
  width: 100%;
  aspect-ratio: 16 / 9;
}

section.programmes-main .container .programme-details figure .wp-block-embed__wrapper {
  width: 100%;
  height: 100%;
}

/*----- CHURCH PROGRAMS SINGLE RESPONSIVE -----*/
@media screen and (max-width: 1023px) {
  section.programmes-main .container .programme-details figure.wp-block-gallery.has-nested-images {
    grid-template-columns: repeat(2, 28vw);
  }

  section.programmes-main .container .programme-meta img {
    width: 310px;
  }

  section.programmes-main .container .programme-details {
    padding-left: 1rem;
  }
}

@media screen and (max-width: 900px) {
  section.programmes-main .container {
    flex-direction: column;
    gap: 2rem;
  }

  section.programmes-main .container .programme-details {
    padding-left: unset;
    border: none;
  }

  section.programmes-main .container .programme-details figure.wp-block-gallery.has-nested-images {
    grid-template-columns: repeat(2, 46.2vw);
  }
}

@media screen and (max-width: 500px) {
  section.programmes-main .container .programme-details figure.wp-block-gallery.has-nested-images {
    display: flex;
  }

  section.programmes-main .container .programme-meta img {
    width: 100%;
  }

  section.programmes-main .container .programme-meta {
    padding: unset;
  }
}

/*===== STRATEGIC PLAN STYLES =====*/
/*.leadership {
  background-color: var(--body-background);
  padding-bottom: 5rem;
} */

section.strategic-plan {
  padding-top: 0rem;
  margin-bottom: 10rem;
}

section.strategic-plan .section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

section.strategic-plan .section-heading .heading-icon {
  display: flex;
  align-items: last baseline;
  gap: 0.5rem;
}

section.strategic-plan .section-heading .heading-icon h2 {
  font-size: 42px;
  font-weight: bold;
  color: var(--green-main);
  line-height: 1.2;
}

section.strategic-plan .section-heading .intro-statement {
  width: 47%;
  font-size: 24px;
  color: var(--text-color);
}

section.strategic-plan .strategy-pillars {
  margin-top: 3rem;
  width: 100%;
  height: 600px;
  display: flex;
  place-content: center;
  place-items: center;
}

section.strategic-plan .strategy-pillars .big-number {
  position: relative;
  height: fit-content;
  width: fit-content;
}

section.strategic-plan .strategy-pillars .big-number .number-items {
  width: 262px;
  height: 262px;
  background-color: var(--green-main);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

section.strategic-plan .strategy-pillars .big-number .number-items::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: scale(1.1);
  border-radius: 50%;
  border: 2px dotted var(--yellow-main);
}

section.strategic-plan .strategy-pillars .big-number .number-items p.number {
  font-size: 115px;
  font-weight: bold;
  line-height: 1;
  color: var(--yellow-main);
}

section.strategic-plan .strategy-pillars .big-number .number-items p.title {
  font-size: 32px;
  font-weight: bold;
  color: white;
  text-align: center;
  width: 200px;
}

section.strategic-plan .strategy-pillars .big-number .pillar.pillar-one {
  position: absolute;
  top: -50%;
  left: -100%;
}

section.strategic-plan .strategy-pillars .big-number .pillar .pillar-icon {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background-color: var(--green-main);
  display: flex;
  place-content: center;
  place-items: center;
  position: relative;
}

section.strategic-plan .strategy-pillars .big-number .pillar .pillar-icon img {
  height: 130px;
}

section.strategic-plan .strategy-pillars .big-number .pillar.pillar-one .pillar-icon::after {
  content: "";
  position: absolute;
  left: 81%;
  top: 100%;
  width: 110px;
  height: 2px;
  border-bottom: 2px dotted var(--yellow-main);
  transform: rotate(42deg);
}

section.strategic-plan .strategy-pillars .big-number .pillar.pillar-two {
  position: absolute;
  right: -110%;

  top: -50%;
}

section.strategic-plan .strategy-pillars .big-number .pillar.pillar-two .pillar-icon::before {
  content: "";
  position: absolute;
  left: -20%;
  top: 97%;
  width: 70px;
  height: 2px;
  border-bottom: 2px dotted var(--yellow-main);
  transform: rotate(-35deg);
}

section.strategic-plan .strategy-pillars .big-number .pillar.pillar-three {
  position: absolute;
  left: -125%;

  top: 75%;
}

section.strategic-plan .strategy-pillars .big-number .pillar.pillar-three .pillar-icon::before {
  content: "";
  position: absolute;
  right: -75%;
  top: 15%;
  width: 155px;
  height: 2px;
  border-bottom: 2px dotted var(--yellow-main);
  transform: rotate(-30deg);
}

section.strategic-plan .strategy-pillars .big-number .pillar.pillar-four {
  position: absolute;
  right: -125%;

  top: 85%;
}

section.strategic-plan .strategy-pillars .big-number .pillar.pillar-four .pillar-icon::before {
  content: "";
  position: absolute;
  left: -52%;
  top: 15%;
  width: 115px;
  height: 2px;
  border-bottom: 2px dotted var(--yellow-main);
  transform: rotate(30deg);
}

section.strategic-plan .strategy-pillars .big-number .pillar.pillar-five {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);

  bottom: -145%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

section.strategic-plan .strategy-pillars .big-number .pillar.pillar-five .pillar-icon::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -30%;
  width: 2px;
  height: 54px;
  border-right: 2px dotted var(--yellow-main);
}

section.strategic-plan .strategy-pillars .big-number .pillar .pillar-body {
  margin-top: 1rem;
  width: 255px;
}

section.strategic-plan .strategy-pillars .big-number .pillar.pillar-one .pillar-body {
  width: 230px;
  color: var(--text-color);
}

section.strategic-plan .strategy-pillars .big-number .pillar .pillar-body h3 {
  font-weight: bold;
  color: var(--green-main);
}

/*----- STRATEGIC PLAN RESPONSIVE -----*/
@media screen and (max-width: 1023px) {
  section.strategic-plan .section-heading {
    margin-bottom: 6rem;
  }

  section.strategic-plan .section-heading .heading-icon h2 {
    font-size: 24px;
  }

  section.strategic-plan .section-heading .heading-icon img {
    height: 60px;
  }

  section.strategic-plan .section-heading .intro-statement {
    width: 65%;
    font-size: 20px;
  }

  section.strategic-plan .strategy-pillars .big-number .pillar.pillar-one {
    top: -71%;
    left: -90%;
  }

  section.strategic-plan .strategy-pillars .big-number .pillar.pillar-two {
    top: -71%;
  }

  section.strategic-plan .strategy-pillars .big-number .pillar.pillar-two .pillar-icon::before {
    transform: rotate(-40deg);
    width: 100px;
    left: -35%;
  }

  section.strategic-plan .strategy-pillars .big-number .pillar.pillar-three {
    left: -105%;
  }

  section.strategic-plan .strategy-pillars .big-number .pillar.pillar-three .pillar-icon::before {
    right: -47%;
    top: 10%;
    width: 110px;
  }

  section.strategic-plan .strategy-pillars .big-number .pillar.pillar-four {
    right: -105%;
    top: 75%;
  }

  section.strategic-plan .strategy-pillars .big-number .pillar.pillar-four .pillar-icon::before {
    top: 20%;
    width: 55px;
    left: -21%;
  }
}

@media screen and (max-width: 830px) {
  section.strategic-plan .section-heading {
    flex-direction: column;
    align-items: start;
    gap: 1rem;
  }

  section.strategic-plan .section-heading .intro-statement {
    width: 100%;
  }

  section.strategic-plan .strategy-pillars .big-number .number-items {
    width: 235px;
    height: 235px;
  }

  section.strategic-plan .strategy-pillars .big-number .number-items p.title {
    line-height: 1.2;
  }

  section.strategic-plan .strategy-pillars .big-number .pillar.pillar-one {
    top: -91%;
  }

  section.strategic-plan .strategy-pillars .big-number .pillar.pillar-two {
    top: -95%;
    right: -117%;
  }

  section.strategic-plan .strategy-pillars .big-number .pillar.pillar-two .pillar-icon::before {
    top: 100%;
    left: -45%;
    width: 120px;
  }

  section.strategic-plan .strategy-pillars .big-number .pillar.pillar-four {
    right: -112%;
    top: 70%;
  }

  section.strategic-plan .strategy-pillars .big-number .pillar.pillar-four .pillar-icon::before {
    top: 20%;
    width: 37px;
    left: -11%;
  }

  section.strategic-plan .strategy-pillars .big-number .pillar.pillar-five {
    bottom: -160%;
  }

  section.strategic-plan .strategy-pillars .big-number .pillar.pillar-three .pillar-icon::before {
    transform: rotate(-35deg);
    right: -35%;
    width: 88px;
  }
}

@media screen and (max-width: 767px) {
  section.strategic-plan {
    margin-bottom: unset;
  }

  section.strategic-plan .section-heading {
    margin-bottom: unset;
  }

  section.strategic-plan .strategy-pillars {
    height: unset;
    margin-top: 1rem;
  }

  section.strategic-plan .strategy-pillars .big-number .number-items {
    display: none;
  }

  section.strategic-plan .strategy-pillars .big-number {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }

  section.strategic-plan .strategy-pillars .big-number .pillar.pillar-three {
    grid-row-start: 5;
  }

  section.strategic-plan .strategy-pillars .big-number .pillar.pillar-one,
  section.strategic-plan .strategy-pillars .big-number .pillar.pillar-two,
  section.strategic-plan .strategy-pillars .big-number .pillar.pillar-three,
  section.strategic-plan .strategy-pillars .big-number .pillar.pillar-four,
  section.strategic-plan .strategy-pillars .big-number .pillar.pillar-five {
    position: unset;
    display: flex;
    flex-direction: row;

    text-align: start;
    width: 600px;
    justify-content: space-between;
    padding-block: 2rem;
    border-bottom: thin solid var(--body-background);
  }

  section.strategic-plan .strategy-pillars .big-number .pillar.pillar-three {
    border: none;
  }

  section.strategic-plan .strategy-pillars .big-number .pillar .pillar-body,
  section.strategic-plan .strategy-pillars .big-number .pillar.pillar-one .pillar-body {
    width: 350px;
  }

  section.strategic-plan .strategy-pillars .big-number .pillar .pillar-icon {
    width: unset;
    height: unset;
    background-color: unset;
  }

  section.strategic-plan .strategy-pillars .big-number .pillar.pillar-five {
    transform: unset;
  }

  section.strategic-plan .strategy-pillars .big-number .pillar .pillar-icon {
    position: unset;
  }

  section.strategic-plan .strategy-pillars .big-number .pillar .pillar-icon::before,
  section.strategic-plan .strategy-pillars .big-number .pillar.pillar-one .pillar-icon::after {
    display: none;
  }
}

@media screen and (max-width: 620px) {
  section.strategic-plan .strategy-pillars .big-number {
    width: 95%;
    margin-inline: auto;
  }

  section.strategic-plan .strategy-pillars .big-number .pillar .pillar-icon {
    height: 90px;
  }

  section.strategic-plan .strategy-pillars .big-number .pillar .pillar-icon img {
    height: 100%;
  }

  section.strategic-plan .strategy-pillars .big-number .pillar.pillar-one,
  section.strategic-plan .strategy-pillars .big-number .pillar.pillar-two,
  section.strategic-plan .strategy-pillars .big-number .pillar.pillar-three,
  section.strategic-plan .strategy-pillars .big-number .pillar.pillar-four,
  section.strategic-plan .strategy-pillars .big-number .pillar.pillar-five {
    width: 100%;
  }
}

@media screen and (max-width: 510px) {
  section.strategic-plan .strategy-pillars .big-number .pillar .pillar-body,
  section.strategic-plan .strategy-pillars .big-number .pillar.pillar-one .pillar-body {
    width: 65vw;
  }

  section.strategic-plan .strategy-pillars .big-number .pillar .pillar-icon {
    height: 80px;
  }

  section.strategic-plan .strategy-pillars .big-number .pillar {
    align-items: center;
  }
}

@media screen and (max-width: 400px) {
  section.strategic-plan .strategy-pillars .big-number .pillar.pillar-one,
  section.strategic-plan .strategy-pillars .big-number .pillar.pillar-two,
  section.strategic-plan .strategy-pillars .big-number .pillar.pillar-three,
  section.strategic-plan .strategy-pillars .big-number .pillar.pillar-four,
  section.strategic-plan .strategy-pillars .big-number .pillar.pillar-five {
    flex-direction: column;
    align-items: start;
  }

  section.strategic-plan .strategy-pillars .big-number .pillar .pillar-body,
  section.strategic-plan .strategy-pillars .big-number .pillar.pillar-one .pillar-body {
    width: 100%;
  }
}

/*===== 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 h2 {
  font-size: 42px;
  font-weight: bold;
  color: var(--green-main);
  line-height: 1.2;
}

section.paybills .section-heading .intro-statement {
  width: 57%;
  font-size: 24px;
  color: var(--text-color);
}

section.paybills .paybill-body {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 302px);
  justify-content: space-between;
  grid-row-gap: 3rem;
}

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 .heading-icon h2 {
    font-size: 24px;
  }

  section.paybills .section-heading .heading-icon img {
    width: 60px;
  }

  section.paybills .section-heading .intro-statement {
    width: 75%;
    font-size: 20px;
  }
}

@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%;
  }
}

/*===== ORDER OF SERVICES STYLES =====*/
section.order-of-services {
  margin-bottom: 6rem;
}

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 img {
  width: 100px;
}

section.order-of-services .section-heading .heading-icon h2 {
  font-size: 42px;
  font-weight: bold;
  color: var(--green-main);
  line-height: 1.2;
}

section.order-of-services .section-heading .intro-statement {
  width: 60%;
  font-size: 24px;
  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: 60px;
    width: initial;
  }

  section.order-of-services .section-heading .intro-statement {
    font-size: 20px;
    width: 70%;
  }

  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;
  }
}

@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: 800px) {
  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;
  }
}

/*===== READINGS STYLES =====*/
section.readings {
  background-image: linear-gradient(to top, hsla(0, 0%, 0%, 0.5), hsla(0, 0%, 0%, 0.5)), url(../images/readings.webp);
  background-repeat: no-repeat;
  background-size: cover;
}

section.readings .container {
  display: flex;
  justify-content: end;
  padding-right: 10rem;
}

section.readings .container .actual-readings {
  border: 2px solid var(--yellow-main);
  padding: 2rem 3rem;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background-color: black;
}

section.readings .container .actual-readings h2 {
  font-size: 40px;
  font-weight: bold;
  color: var(--yellow-main);
}

section.readings .container .actual-readings .reading-items {
  font-size: 18px;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

section.readings .container .actual-readings .reading-items .reading-items-entry {
  display: flex;
  justify-content: space-between;
}

section.readings .container .actual-readings a {
  margin-top: 1.5rem;
  display: inline-block;
  padding: 1rem 4rem;
  border: thin solid var(--yellow-main);
  text-decoration: none;
  background-color: var(--green-main);
  color: white;
  border-radius: 50px;
  width: fit-content;
  margin-inline: auto;
  font-size: 18px;
}

/*----- READINGS RESPONSIVE -----*/
@media screen and (max-width: 1200px) {
  section.readings .container {
    padding-right: clamp(0rem, 43.2432vw + -22.4324rem, 10rem);
  }
}

@media screen and (max-width: 830px) {
  section.readings {
    background-image: url("../images/readings.webp");
  }
  section.readings .container {
    justify-content: center;
  }

  section.readings .container .actual-readings {
    background-color: rgba(0, 0, 0, 0.6);
  }
}

@media screen and (max-width: 530px) {
  section.readings .container .actual-readings h2 {
    font-size: 30px;
  }

  section.readings .container .actual-readings {
    border-radius: 30px;
    padding: 1.5rem;
  }
}

@media screen and (max-width: 370px) {
  section.readings .container .actual-readings h2 {
    font-size: 28px;
  }
}
/*===== READINGS PAGE STYLES =====*/
section.readings-main {
  background: url("../images/readings-background.jpg");
  padding-top: 3rem;
  margin-top: 97px;
}

section.readings-main h1 {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  color: var(--green-main);
  margin-bottom: 3rem;
}

section.readings-main .container {
  background-color: white;
  padding: 3rem 4rem;
  width: 900px;
}

section.readings-main .container h2 {
  font-size: 30px;
  font-weight: bold;
  color: var(--green-main);
  text-align: center;
  padding-bottom: 1rem;
  text-align: start;
}

section.readings-main .container .readings-body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

section.readings-main .container .readings-body .reading-entry .reading-entry-heading {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 0.5rem;
  border-bottom: thin solid var(--body-background);
}

section.readings-main .container .readings-body p,
section.readings-main .container .readings-body span {
  color: var(--text-color);
}

section.readings-main .container .readings-body .reading-entry-details {
  margin-top: 0.5rem;
}

section.readings-main .container .readings-body .reading-entry-details p {
  font-size: 18px;
  line-height: 1.5;
}

section.readings-main .container .readings-body .reading-entry:last-child .reading-entry-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

section.readings-main .container .readings-body ul {
  margin-bottom: 1rem;
  margin-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

section.readings-main .container .readings-body ul li {
  padding-left: 0.5rem;
}

section.readings-main .container .readings-body ul li::marker {
  content: "\f058";
  margin-right: 0.5rem;
  font-family: FontAwesome;
  color: var(--yellow-main);
}

/*----- READINGS PAGE RESPONSIVENESS -----*/

@media screen and (max-width: 930px) {
  section.readings-main h1 {
    font-size: 36px;
  }

  section.readings-main .container {
    width: 95%;
  }
}

@media screen and (max-width: 600px) {
  section.readings-main .container {
    padding: 2rem;
  }

  section.readings-main .container .readings-body .reading-entry .reading-entry-heading {
    flex-direction: column;
  }

  section.readings-main .container h2 {
    font-size: 24px;
  }
}

@media screen and (max-width: 450px) {
  section.readings-main .container {
    padding: 1.5rem;
  }
}

/*===== DOWNLOADS STYLES =====*/
section.download {
  width: fit-content;
  margin-inline: auto;
  padding-block: 3rem;
}

section.download h2 {
  font-size: 32px;
  font-weight: bold;
  color: var(--green-main);
  margin-bottom: 2rem;
  text-align: center;
}

section.download .download-item a {
  border: thin solid var(--green-main);
  border-radius: 50px;
  padding: 1rem 10rem;
  cursor: pointer;
  text-decoration: none;
  color: var(--green-main);
  font-size: 24px;
  color: var(--green-main);
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  transition: all 300 ease;
}

section.download .download-item a:hover {
  color: white;
  background: var(--green-main);
}

section.download .download-item a i {
  font-size: 32px;
}

/*===== 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.map-icon {
  align-items: start;
}

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 {
    margin-bottom: 1.5rem;
  }

  section.contacts .container .section-heading h2 {
    font-size: 24px;
  }

  section.contacts .container .section-heading .heading-icon img {
    height: 60px;
  }

  section.contacts .container .contact-details .contact-entry {
    gap: 1rem;
  }

  section.contacts .container .contact-details .contact-entry > div img.phone {
    width: 45px;
  }

  section.contacts .container .contact-details .contact-entry > div img.email {
    width: 45px;
  }
}

@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;
  }
}
