/* ------------------ Other ------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style-type: none;
  outline: none;
  font-family: "Baloo Da 2 Regular", cursive;
}
@counter-style dates {
  system: extends decimal;
  suffix: " - ";
}

@font-face {
  font-family: 'Baloo Da 2 Regular';
  src: url(./../../resources/webfonts/BalooDa2-Regular.ttf);
}

@font-face {
  font-family: 'Baloo Da 2 Bold';
  src: url(./../../resources/webfonts/BalooDa2-Bold.ttf),
}
@font-face {
  font-family: 'Baloo Da 2 Extra Bold';
  src: url(./../../resources/webfonts/BalooDa2-ExtraBold.ttf);
}

@font-face {
  font-family: 'Baloo Da 2 Medium';
  src: url(./../../resources/webfonts/BalooDa2-Medium.ttf);
}

@font-face {
  font-family: 'Baloo Da 2 Semi Bold';
  src: url(./../../resources/webfonts/BalooDa2-SemiBold.ttf);
}

/* ------------------ Images ------------------ */
.full-image {
	width: 100%;
	margin: auto;
	display: flex;
}
.half-image {
	width: 50%;
	margin: auto;
	display: flex;
	padding-bottom: 1rem;
}
.quarter-image {
	width: 25%;
	display: flex;
	margin-left: 1rem;
	margin-right: 1rem;
	padding-bottom: 1rem;
}
.small-image {
	width: 15%;
	display: flex;
	margin-left: 1rem;
	margin-right: 1rem;
	padding-bottom: 1rem;
}
.thumb-image {
	width: 44px;
	margin-left: 1rem;
	margin-right: 1rem;
}

/* ------------------ Colours ------------------ */
.black {
  color: #000;
}
.blue {
  color: #0072AF;
}
.brown {
  color: #873e23;
}
.green {
  color: #3d7f42;
}
.grey {
  color: #464848;
}
.purple {
  color: #702387;
}
.sand {
  color: #7d655d;
}

/* ------------------ A ------------------ */
aside .section-2-paragraph-grey {
  font-size: 2rem;
  color: #000;
  background-color: lightgrey;
  width: 90%;
  margin: 0 auto 2rem auto;
}
/* ------------------ B ------------------ */
.banner {
  width: 100%;
  position: absolute;
  top: 45%;
  text-align: center;
}
.banner-heading {
  font-size: 9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .5rem;
  font-family: "Baloo Da 2 Extra Bold", cursive;

}
.blue-btn {
  width: 35rem;
  height: 5rem;
  background-color: #0072AF;
  color: #fff;
  border-radius: 2rem;
  border: none;
  font-size: 1.6rem;
  font-weight: 600;
  font-family: "Baloo Da 2 Bold", cursive;
  cursor: pointer;
}
.bulleted-list:hover {
  border-bottom: 0.2rem solid #fff;
}
.bulleted-list a {
  color: #0072AF;
}
.bulleted-list a:visited {
  color: red;
}
.bulleted-list a:active {
  color: #000;
}
.bulleted-list a:hover {
  color: #000;
}
.bulleted-list a:focus {
  color: #000;
}
/* ------------------ C ------------------ */
.copyright {
  font-size: 1.5rem;
  font-weight: 600;
  font-family: "Baloo Da 2 Bold", cursive;
  letter-spacing: 0.1rem;
}
/* ------------------ D ------------------ */
.dropdown-heading {
  display: none;
}
/* ------------------ E ------------------ */
/* ------------------ F ------------------ */
.font-2_5rem {
	font-size: 2.5rem;
  color: #000;
}
.footer {
  width: 100%;
  height: 10rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: left;
  padding: 4rem 0 3rem 0;
  background-color: #0072AF;
  color: #fff;
}
.footer-content {
  display: flex;
  margin-left: 2.5rem;
  justify-content: space-between;
}
.footer-top {
  width: 70%;
  display: flex;
  justify-content: space-around;
  border-bottom: 0.1rem dotted #262626;
  padding-bottom: 1rem;
}
.footer-list {
  display: flex;
  align-items: center;
}
.footer-list li {
  margin-right: 2.5rem;
}
.footer-list a {
  font-size: 1.5rem;
  font-weight: 600;
  font-family: "Baloo Da 2 Bold", cursive;
  color: #fff;
  margin: 1.5rem 0;
}
.footer-list a:focus {
  color: #000;
}
.footer-list a:hover {
  color: #000;
}
.footer-list img {
  width: 3.8rem;
  opacity: 0.6;
}
.front-page {
  /* display: none; */
}
/* ------------------ G ------------------ */
/* --------------- GALLERY --------------- */
.grid-container {
  columns: 4 200px;
  column-gap: 1.5rem;
  width: 70%;
  margin: 0 auto;
  div {
    width: 150px;
    margin: 0 1.5rem 1.5rem 0;
    display: inline-block;
    width: 100%;
    border: solid 2px black;
    padding: 5px;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
    border-radius: 5px;
    transition: all .25s ease-in-out;
    &:hover img {
      filter: grayscale(0);
    }
    &:hover {
      border-color: #0072AF;
    }
    img {
      width: 100%;
      filter: grayscale(100%);
      border-radius: 5px;
      transition: all .25s ease-in-out;
    }
    .gallery-paragraph {
      margin: 5px 0;
      padding: 0;
      text-align: center;
      font-style: italic;
      font-size: 1.5rem;
      color: #000;
    }
  }
}
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 5rem; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
  margin: auto;
  display: block;
  height: 90%;
/*   max-width: 700px; */
}

/* Caption of Modal Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 70%;
  text-align: center;
  color: #ccc;
  padding: 0.5rem 0;
  height: 10rem;
  font-size: 2rem;
}

/* Add Animation */
.modal-content, #caption {
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {-webkit-transform:scale(0)}
  to {-webkit-transform:scale(1)}
}

@keyframes zoom {
  from {transform:scale(0)}
  to {transform:scale(1)}
}

/* The Close Button */
.close {
  position: absolute;
  top: 1rem;
  right: 2rem;
  color: #f1f1f1;
  font-size: 2rem;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
}

/* ------------- END GALLERY ------------- */

.general-link {
  color: #0072AF;
}
.general-link:link {
  color: #0072AF;
}
.general-link:visited {
  color: navy;
}
.general-link:hover {
  color: #000;
}
.general-link:active, .general-link:focus {
  color: #000;
}
/* ------------------ H ------------------ */
.header-link {
  font-family: GDS Transport, arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: none;
  color: #036bb1;
  font-size: 3rem;
  font-weight: 300;
  font-family: "Baloo Da 2 Medium", cursive;
}
@media print {
  .header-link {
  font-family: sans-serif;
}
}.header-link:link, .header-link:visited {
  color: #036bb1;
}
.header-link:active, .header-link:hover {
  color: #000;
}
.header-link:hover {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: .1em;
}
.header-link:focus {
  outline: 3px solid rgba(0, 0, 0, 0);
  color: #0b0c0c;
  background-color: #fd0;
  box-shadow: 0 -2px #fd0, 0 4px #0b0c0c;
  text-decoration: none;
}
html {
	font-size: 62.5%;
}
/* ------------------ I ------------------ */
.image-section {
  display: flex;
  justify-content: center;
  align-items: center;
}
.index {
  display: flex;
  align-items: center;
  padding-bottom: 1 rem;
}
.index-link {
 display: flex;
}

/* ------------------ J ------------------ */
/* ------------------ J ------------------ */
/* ------------------ L ------------------ */
.li-bulleted-list {
  list-style: square;
  text-align: left;
  padding-bottom: 1rem;
  font-size: 2rem;
  margin-left: 4rem;
}
.li-no-bullet-list {
  list-style: none;
  text-align: left;
  padding-bottom: 1rem;
  font-size: 2rem;
  margin-left: 4rem;
}
.list-dates {
	list-style: dates;
}
.list-text::marker {
  content: attr(data-li-text) " - ";
  font-weight: bold;
  font-family: "Baloo Da 2 Bold", cursive;
}
.logo {
  font-size: 4.5rem;
  font-style: italic;
  font-weight: 800;
  color: #fff;
  position: relative;
  cursor: pointer;
  margin-left: 2.5rem;
  text-shadow: .4rem .4rem #464848;
  font-family: "Baloo Da 2 Extra Bold", cursive;
}
.logo-image {
  height: 5.8rem;
  display: flex;
  margin-left: 2.5rem;
}
/* ------------------ M ------------------ */
.margin-top {
  margin-top: 4rem;
}
.margin-bottom {
  margin-bottom: 4rem;
}
.margin-left {
  margin-left: 0.5rem;
}
/* ------------------ N ------------------ */
.navbar {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar-btn {
  width: 8rem;
  padding: 0.7rem;
  margin: 0.3rem;
  border-radius: 3rem;
  border: 0.1rem solid #fff;
  font-size: 1.4rem;
  cursor: pointer;
}
.navbar-btn:nth-child(1) {
  background-color: transparent;
  color: #fff;
}
.navbar-btn:nth-child(2) {
  background-color: #fff;
  color: #262626;
}
.navbar-wrapper {
  width: 100%;
  height: 6rem;
  border-bottom: 0.1rem solid #aaa;
  display: flex;
  justify-content: center;
  background-color: #0072AF;
}
.navbar-wrapper-history {
  width: 70%;
  display: flex;
  justify-content: center;
}

.nav-dropdown {
  width: 100%;
  height: 20rem;
  background: linear-gradient(to right, #066399, #2f8fdf, #066399);
  position: absolute;
  top: 8rem;
  left: 0;
  z-index: 100;
  padding: 0 30rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  visibility: hidden;
}
.nav-dropdown-item {
  width: 25rem;
  margin: 2rem 10rem;
  display: flex;
  flex-direction: column;
}
.nav-dropdown-link-1 {
  font-size: 1.6rem;
  color: #fff;
}
.nav-dropdown-link-2 {
  font-size: 1.3rem;
  color: #fff;
}
.nav-link {
  color: #fff;
}
.nav-link:visited {
  color: #fff;
}
.nav-link:hover {
  color: #000 !important;
}
.nav-link:active, .nav-link:focus {
  color: #000;
}
.nav-link:link {
  color: #fff;
}
.nav-list {
  display: flex;
}
.nav-list-history {
  flex-wrap: wrap;
  gap: 0.5rem;
}
.nav-list-item {
  height: 6rem;
  padding: 2rem;
  display: flex;
  align-items: center;
  transition: border-bottom 0.1s;
  background-color: #0072AF;
  text-align: center;
}
.nav-list-item-history {
  border: 2px dotted rgb(96, 139, 168);
}
.nav-list-item a {
  color: #fff;
}
.nav-list-item a:hover {
  color: #000;
}
.nav-list-item a:focus {
  color: #000;
}
.nav-list-item:hover {
  border-bottom: 0.2rem solid #fff;
}
.nav-list-item a:visited {
  color: #fff;
}
.nav-list-item a:active {
  color: #000;
}
.nav-list-item a:active {
  color: #000;
}
.nav-list-link {
  width: 100%;
  height: 100%;
  font-size: 1.7rem;
  font-weight: 400;
  font-family: "Baloo Da 2 Medium", cursive;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: center;
}
.nav-list-link i {
  font-size: 1.5rem;
  margin-left: 0.5rem;
  transition: transform 0.3s;
}
/* ------------------ O ------------------ */
ol > li::marker {
  font-weight: bold;
  font-family: "Baloo Da 2 Bold", cursive;
}
/* ------------------ P ------------------ */
.pseudo-table-container {
  display: flex;
  column-gap: 2rem;
	width: 50%;
	padding-bottom: 1rem;
}
.pseudo-table-key-cell {
  display: flex;
	background-color: #a78e7ab3;
  font-size: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.pseudo-table-value-cell {
  display: flex;
  font-size: 2rem;
}/* ------------------ Q ------------------ */
/* ------------------ R ------------------ */
/* ------------------ S ------------------ */
.section-history {
  width: 100%;
  height: 60vh;
  background:
    linear-gradient(
      to bottom,
      rgba(99,123,147,0.5) 0%,
      rgba(99,123,147,0.6) 46%,
      rgba(167,142,122,0.7) 100%
    ),
    url(../images/blackpool-beach.webp) top no-repeat;
  background-size: cover;
  position: relative;
}
.section-left {
  width: 100%;
  align-items: left;
  padding: 1rem 0 1rem 0;
}
.section-1 {
  width: 100%;
  height: 60vh;
  background:
    linear-gradient(
      to bottom,
      rgba(99,123,147,0.5) 0%,
      rgba(99,123,147,0.6) 46%,
      rgba(167,142,122,0.7) 100%
    ),
    url(./../../images/blackpool-beach.webp) top no-repeat;
  background-size: cover;
  position: relative;
}
.section-2 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0 1rem 0;
}
.section-2-heading {
  font-size: 4.5rem;
  font-weight: 300;
  font-family: "Baloo Da 2 Semi Bold", cursive;
  color: #333;
}
.section-2-paragraph {
  font-size: 2rem;
  color: #000;
  width: 70%;
  margin: 0 auto 2rem auto;
}
.section-2-paragraph-grey {
  font-size: 2rem;
  color: #000;
  background-color: lightgrey;
  width: 70%;
  margin: 0 auto 2rem auto;
}
.section-2-paragraph:hover {
  border-bottom: 0.2rem solid #fff;
}
.section-2-paragraph a {
  color: #0072AF;
}
.section-2-paragraph a:hover {
  color: #000;
}
.section-2-paragraph a:focus {
  color: #000;
}
.section-3 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 1rem;
}
.section-3-paragraph {
  font-size: 2rem;
  color: #000;
  width: 50%;
  margin: 0 auto 2rem auto;
}
.section-5 {
  width: 100%;
}
.section-5-paragraph {
  font-size: 2rem;
  color: #000;
  width: 100%;
  margin: 0 auto 2rem auto;
}
.section-5-top {
  width: 100%;
  background-color: #f3f7fa;
  text-align: center;
  padding: 7rem 0;
}
.section-5-top-heading {
  font-size: 3.5rem;
  font-weight: 400;
  font-family: "Baloo Da 2 Semi Bold", cursive;
  margin-bottom: 4rem;
}
.section-bullets {
	display: block;
}
.section-methodist {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0 1rem 0;
}
.section-methodist-heading {
  font-size: 4.5rem;
  font-weight: 300;
  font-family: "Baloo Da 2 Semi Bold", cursive;
  color: #333;
  text-align: center;
}

.service-index {
  width: 25rem;
  text-align: center;
  margin: 0 2rem;
  padding-bottom: 2rem;
}
.service-index i {
  font-size: 6rem;
  margin: 2rem 0;
}
.service {
  width: 35rem;
  text-align: center;
  margin: 0 5rem;
  padding-bottom: 2rem;
}
.service i {
  font-size: 6rem;
  margin: 2rem 0;
}

.service-heading {
  font-size: 3rem;
  font-weight: 300;
  font-family: "Baloo Da 2 Semi Bold", cursive;
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: #036bb1;
}
.service-paragraph {
  font-size: 2rem;
  color: #036bb1;
  margin-top: .5em;
}
.services {
  display: flex;
}
.services-2 {
  display: flex;
  width: 70%;
}
.skip-link {
  position: absolute!important;
  width: 1px!important;
  height: 1px!important;
  margin: 0!important;
  overflow: hidden!important;
  clip: rect(0 0 0 0)!important;
  -webkit-clip-path: inset(50%)!important;
  clip-path: inset(50%)!important;
  white-space: nowrap!important;
  font-family: GDS Transport, arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: underline;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.14286;
  display: block;
  padding: 10px 15px;
}
.skip-link:active, .skip-link:focus {
  position: static!important;
  width: auto!important;
  height: auto!important;
  margin: inherit!important;
  overflow: visible!important;
  clip: auto!important;
  -webkit-clip-path: none!important;
  clip-path: none!important;
  white-space: inherit!important;
}
@media print {
  .skip-link {
  font-family: sans-serif;
}
}.skip-link:link, .skip-link:visited {
  color: #0b0c0c;
}
@media print {
  .skip-link: link, .skip-link:visited {
  color: #000;
}
}.skip-link:hover {
  color: rgba(11, 12, 12, .99);
}
.skip-link:active, .skip-link:focus {
  color: #0b0c0c;
}
@media print {
  .skip-link: active, .skip-link:focus {
  color: #000;
}
}@media (min-width:40.0625em) {
  .skip-link {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
}
}@media print {
  .skip-link {
  font-size: 14pt;
  line-height: 1.2;
}
}@supports (padding:max(calc(0px))) {
  .skip-link {
  padding-right: max(15px, calc(15px + env(safe-area-inset-right)));
  padding-left: max(15px, calc(15px + env(safe-area-inset-left)));
}
}.skip-link:focus {
  outline: 3px solid #fd0;
  outline-offset: 0;
  background-color: #fd0;
}
.skip-link-focused-element:focus {
  outline: none;
}
/* ------------------ T ------------------ */
/* ------------------ U ------------------ */
.ul-bulleted-list {
  width: 70%;
  text-align: left;
  padding-bottom: 1rem;
  font-size: 2rem;
}
/* ------------------ V ------------------ */
.vfb-header-link {
  font-family: GDS Transport, arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: underline;
  color: #036bb1;
  font-size: 3rem;
  font-weight: 300;
  font-family: "Baloo Da 2 Medium", cursive;
  align-items: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.vfb-header-link:focus {
  outline: 3px solid rgba(0, 0, 0, 0);
  color: #0b0c0c;
  background-color: #fd0;
  box-shadow: 0 -2px #fd0, 0 4px #0b0c0c;
  text-decoration: none;
}
@media print {
  .vfb-header-link[href^="/"]: after, .vfb-header-link[href^="http://"]:after, .vfb-header-link[href^="https://"]:after {
    content: " (" attr(href) ")";
    font-size: 90%;
    word-wrap: break-word;
  }
}

.vfb-header-link:link, .vfb-header-link:visited {
  color: #036bb1;
}

.vfb-header-link:active, .vfb-header-link:hover {
  color: #000;
}
.vfb-header-link:hover {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: .1em;
}

.vfb-link {
  font-family: GDS Transport, arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: underline;
  font-size: 1.75rem;
  align-items: center;
}
.vfb-link:focus {
  outline: 3px solid rgba(0, 0, 0, 0);
  background-color: #fd0;
  box-shadow: 0 -2px #fd0, 0 4px #0b0c0c;
  text-decoration: none;
}
@media print {
  .vfb-link[href^="/"]: after, .vfb-link[href^="http://"]:after, .vfb-link[href^="https://"]:after {
    content: " (" attr(href) ")";
    font-size: 90%;
    word-wrap: break-word;
  }
}
/* ------------------ W ------------------ */
/* ------------------ X ------------------ */
/* ------------------ Y ------------------ */
/* ------------------ Z ------------------ */










