@charset "UTF-8";
/* 
    CSS VARIABLES 

    DO NOT CHANGE THE VARIABLE NAME INSIDE OF THE :ROOT.
    IF YOU ARE USING SASS, CHANGE THE PROPERTY IN THE _THEME.SCSS
    PARTIAL FILE.

    IF YOU ARE USING CSS ONLY, CHANGE THE PROPERTY OF THE VARIABLE 
    INSIDE THE MAIN.CSS AND LOGIN.CSS FILES.

    THE -RGB IS THE RED/GREEN/BLUE IDENTIFIER OF THE COLOR IT
    REPRESENTS. THIS IS USED FOR COLORS THAT USE AN ALPHA CHANNEL.
    IF YOU UPDATE A BASE COLOR, YOU SHOULD ALSO FIND THE RGB VALUE AND REPLACE
    THE 3 NUMBERS. THERE ARE TOOLS IN CODE EDITORS FOR THIS, OR IT IS EASILY
    GOOGLED.

    IE 

    --CLR-PRIMARY: #336699; // == RGB(51, 102, 153)
    --CLR-PRIMARY-RGB: 51,102,153;

*/
/* Color Theme */
/* Color base */
/* Color RGB Components */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&family=PT+Serif:wght@700&display=swap");
:root {
  --clr-primary: rgb(51, 102, 153);
  --clr-primary-rgb: 51, 102, 153;
  --clr-primary-dark: #264d73;
  --clr-primary-dark-rgb: 38, 77, 115;
  --clr-primary-light: #6699cc;
  --clr-primary-light-rgb: 102, 153, 204;
  --clr-secondary: #338899;
  --clr-secondary-rgb: 51, 136, 153;
  --clr-accent: rgb(255, 120, 31);
  --clr-accent-rgb: 255, 120, 31;
  --clr-dark-text: rgb(51, 51, 51);
  --clr-dark-text-rgb: 51, 51, 51;
  --clr-white: rgb(255, 255, 255);
  --clr-white-rgb: 255, 255, 255;
  --clr-black: rgb(51, 51, 51);
  --clr-black-rgb: 51, 51, 51;
  --clr-grey-dark: hsl(0, 0%, 30%);
  --clr-grey-dark-rgb: 77, 77, 77;
  --clr-grey-medium: rgb(204, 204, 204);
  --clr-grey-medium-rgb: 204, 204, 204;
  --clr-grey-light: rgb(240, 240, 240);
  --clr-grey-light-rgb: 240, 240, 240;
  /* Default Element Styles */
  --bs: 0 0 25px rgba(51, 51, 51, 0.25);
  --bs-1: 0 10px 25px rgba(51, 51, 51, 0.25);
  --bs-2: 0 20px 40px -15px rgba(0, 0, 0, 0.25);
  --bsh: 0px 0px 10px 2px rgba(51, 51, 51, 0.15);
  --br: 7px;
  --ls: 2px;
  --ts: 0 2px 5px rgba(51, 51, 51, 0.18);
  --section-margin: 0rem;
  /*  Navigation Styles */
  --nav-height: 60px;
  --nav-bg: rgb(51, 102, 153);
  --nav-bg-opacity: 0;
  --nav-text: rgb(255, 255, 255);
  --nav-hover: rgb(255, 120, 31);
  --nav-accent: rgb(255, 120, 31);
  /* Layout Variables */
  --max-width: 1200px;
  /* Media Queries */
  --breakpoint: 768px;
  /* Font Families */
  --ff-serif: PT Serif, serif;
  --ff-sans: Open Sans, sans-serif;
  /* Font Weights */
  --fw-l: 400;
  --fw-n: 400;
  --fw-m: 600;
  --fw-b: 700;
}

:root {
  font-size: 14px;
}

@media (min-width: 768px) and (max-width: 991px) {
  :root {
    font-size: calc(14px + (16 - 14) * (100vw - 768px) / (991 - 768));
  }
}
@media (min-width: 991px) {
  :root {
    font-size: 16px;
  }
}
/* Default Styles - Global */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
}

body {
  background-color: rgb(255, 255, 255);
  font-family: var(--ff-sans);
  color: rgb(51, 51, 51);
  font-weight: 400;
  line-height: 1.6;
  display: flex;
  flex-flow: column nowrap;
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
  height: auto;
}

figure {
  border-radius: var(--br);
  padding-block-start: 2rem;
  padding-block-end: 1rem;
}
figure img {
  max-height: 450px;
  border-radius: var(--br);
  box-shadow: var(--bs);
  object-fit: cover;
}
figure figcaption {
  color: var(--clr-dark);
  font-size: 0.8rem;
  font-style: italic;
  font-weight: 300;
  margin-top: 0.25rem !important;
  text-align: center;
}

p {
  margin-block-start: 1rem;
}

.element__title + p {
  margin-block-start: 1rem;
}

a {
  color: rgb(51, 51, 51);
  text-decoration: none;
  transition: all 125ms ease;
}
a:hover {
  color: var(--clr-accent);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-serif);
  line-height: 1.1;
  color: rgb(255, 120, 31);
  text-transform: capitalize;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

main {
  padding: calc(60px * 1.5) 0;
}

.container {
  margin: auto;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(2rem, 1fr) minmax(auto, 1200px) minmax(2rem, 1fr);
}
.container > * {
  grid-column: 2/3;
}

.hero + .container main {
  margin: 0;
  padding: 0;
}

.element {
  margin-block: 1rem;
}
.element-title {
  margin-block-start: 1rem;
}

.text-danger {
  color: var(--clr-accent);
}

.span {
  grid-column: 1/-1 !important;
}

.btn {
  font-size: inherit;
  display: inline-block;
  background: var(--clr-primary);
  padding-block: 0.5em;
  padding-inline: 1em;
  border: solid 10px rgba(var(--clr-black), 50);
  border-radius: var(--br);
  color: var(--clr-white);
  z-index: 999;
  box-shadow: none;
  transition: all ease-in-out 125ms;
  text-decoration: none;
}
.btn:hover {
  color: var(--clr-accent);
  background: var(--clr-primary-dark);
  cursor: pointer;
  box-shadow: var(--bsh);
}

.btn-cta {
  font-size: 1.25rem;
  color: var(--clr-black);
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  color: #fff;
  border-radius: 8px;
  box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.3);
  padding: 0.25em 0.75em;
  margin-block-start: 2rem;
  margin-block-end: 1rem;
  min-width: 10ch;
  min-height: 2.5rem;
  text-align: center;
  line-height: 1.1;
  transition: 220ms all ease-in-out;
}
.btn-cta:hover, .btn-cta:active {
  background-color: #4785c2;
}
.btn-cta:focus {
  outline-style: dashed;
  outline-color: transparent;
  box-shadow: 0 0 0 4px #8cb3d9;
}

.btn-link {
  color: var(--clr-grey-dark);
  text-align: right;
  font-size: 0.9rem;
  font-weight: 300;
  text-decoration: none;
  font-style: italic;
}

.hero {
  --hero-height: 65vh;
  height: min(var(--hero-height), 1080px);
  position: relative;
  z-index: 100;
}
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 101;
}
.hero__content {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--clr-white);
  padding-block: 1rem;
  padding-inline: 2rem;
  border-radius: var(--br);
  width: 60ch;
  max-width: 50%;
  z-index: 102;
}
.hero__content-title {
  color: var(--clr-white);
}
.hero__image {
  width: 100vw;
  height: min(var(--hero-height), 1080px);
}
.hero__image img {
  width: 100vw;
  height: min(var(--hero-height), 1080px);
  object-fit: cover;
  z-index: 100;
}

.cards {
  margin-block-start: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  list-style: none;
}
.cards a:hover {
  color: inherit;
}

.card {
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.card__image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: contrast(70%);
  overflow: hidden;
  position: relative;
  transition: filter 0.5s cubic-bezier(0.43, 0.41, 0.22, 0.91);
}
.card__image img {
  height: 175px;
  object-fit: cover;
}
.card__title {
  padding: 1rem;
  background: var(--clr-primary-light);
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card__title h3 {
  font-family: var(--ff-sans);
  color: white;
  font-size: 1.3rem;
  font-weight: var(--fw-l);
  line-height: 1.2;
}
.card__text {
  padding-inline: 1rem;
  padding-block-end: 1rem;
  flex: 1 1 auto;
}
.card:hover .card__image {
  filter: contrast(100%);
}

.contact-form {
  margin-block-start: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .contact-form {
    grid-template-columns: repeat(2, 1fr);
  }
}

::placeholder {
  color: rgba(var(--clr-grey-dark-rgb), 0.75);
}

.input-group {
  display: flex;
  flex-flow: column nowrap;
  align-items: baseline;
}

/* Add styles to 'label' selector */
label {
  font-size: 1.2em;
}

/* Add styles to 'input' and 'textarea' selectors */
input[type=text],
input[type=email],
textarea {
  width: 100%;
  padding-block: 0.75em;
  padding-inline: 1em;
  border: 1px solid var(--clr-grey-medium);
  border-radius: var(--br);
  grid-column: 2/3;
  font-size: 1rem;
  transition: all 125ms ease-in-out;
}

/* Add styles to show 'focus' of selector */
input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
  border: 2px dashed var(--clr-accent);
  outline: none;
}

.gallery-wrapper {
  padding-block: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}
.gallery-wrapper .gallery-img {
  margin-block-start: 0;
}
.gallery-wrapper .gallery-img img {
  border-radius: var(--br);
  box-shadow: var(--bs);
  height: 250px;
  object-fit: cover;
}

.imageElement__image {
  max-height: 450px;
}
.imageElement__image img {
  border-radius: var(--br);
  box-shadow: var(--bs-1);
  max-height: 450px;
  object-fit: cover;
}
.imageElement__content {
  margin-block-start: 1rem;
}

.pageMedia {
  margin-block-start: 1rem;
}
.pageMedia img {
  border-radius: var(--br);
  box-shadow: var(--bs-1);
  max-height: 450px;
  object-fit: cover;
}

.imageElement__image + .imageElement__content {
  margin-block-start: 2rem;
}

.video-container {
  margin-block-start: 1rem;
  padding-block-start: 30px;
  padding-block-end: 56.25%;
  position: relative;
  height: 0;
  overflow: hidden;
  object-fit: cover;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.nav-toggle {
  position: absolute;
  top: -999px !important;
  left: -9999px !important;
}

.nav-toggle-label {
  margin: 0;
  cursor: pointer;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 100;
  width: var(--nav-height);
}
@media screen and (min-width: 768px) {
  .nav-toggle-label {
    display: none;
  }
}
.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  width: calc(var(--nav-height) / 2);
  height: 4px;
  border-radius: var(--br);
  background: var(--nav-text);
  position: relative;
}
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: "";
  position: absolute;
  transform: rotate(0deg);
  transition: transform 125ms ease;
}
.nav-toggle-label span::before {
  top: 10px;
}
.nav-toggle-label span::after {
  top: -10px;
}

.nav.scroll * label > span,
.nav.scroll * label > span::before,
.nav.scroll * label > span::after {
  background: white !important;
}

.nav-toggle:checked ~ .nav-toggle-label span {
  background: transparent;
}

.nav.scroll * .nav-toggle:checked ~ .nav-toggle-label span {
  background: transparent !important;
}

.nav-toggle:checked ~ .nav-toggle-label span::before {
  transform: rotate(135deg);
  top: 0px;
}

.nav-toggle:checked ~ .nav-toggle-label span::after {
  transform: rotate(-135deg);
  top: 0px;
}

/* Navigation Styles w/sub navigation dropdown and responsive toggles */
.navbar {
  padding-inline: 1em;
  background: #264d73;
  color: rgb(255, 255, 255);
  height: 60px;
  line-height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}
.navbar .logo {
  flex: 1;
  white-space: nowrap;
}
.navbar .logo a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-size: 2rem;
  padding: 0;
  margin: 0;
  height: 60px;
  line-height: 60px;
}
.navbar .nav {
  background: #4080bf;
  color: rgb(255, 255, 255);
  white-space: nowrap;
  text-align: center;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  transform: scaleY(0);
  opacity: 0;
  transition: transform 0.2s ease, opacity 250ms ease-out;
  transform-origin: top;
}
@media screen and (min-width: 768px) {
  .navbar .nav {
    background: unset;
    display: flex;
    flex-flow: row nowrap;
    transform: scaleY(1);
    opacity: 1;
    position: static;
    width: auto;
  }
}
.navbar .nav-link {
  list-style: none;
  position: relative;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 1px;
}
@media screen and (min-width: 768px) {
  .navbar .nav-link {
    padding-inline: 0.5rem;
    height: 60px;
    line-height: 60px;
    font-size: 1rem;
  }
}
.navbar .nav-link:hover {
  background: #204060;
}
.navbar .nav a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  display: block;
}
.navbar .toggle-label {
  color: rgb(255, 255, 255);
  cursor: pointer;
  font-size: inherit;
  display: block;
}
.navbar .toggle-label::after {
  content: "▼";
  font-size: 0.7em;
}
.navbar .subnav {
  width: 100%;
  background: #538cc6;
  transform: scaleY(0);
  height: 0;
}
@media screen and (min-width: 768px) {
  .navbar .subnav {
    white-space: nowrap;
    width: auto;
    display: block;
    position: absolute;
    top: 100%;
    right: 0;
    transform: scaleY(0);
    opacity: 0;
    transition: transform 0.2s ease, opacity 0.4s ease-out;
    transform-origin: top;
  }
}
.navbar .subnav-link {
  list-style: none;
  text-align: center;
  display: flex;
}
@media screen and (min-width: 768px) {
  .navbar .subnav-link {
    text-align: left;
  }
}
.navbar .subnav-link:hover {
  background: #264d73;
  color: constrast-switch(rgb(51, 102, 153));
}
.navbar .subnav-link a {
  text-decoration: none;
  width: 100%;
  padding-inline: 1rem;
}

.toggle {
  position: absolute;
  left: -9999px;
  top: -9999px;
}

.toggle-label-hamburger {
  margin: 0;
  cursor: pointer;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 100;
  width: 60px;
}
@media screen and (min-width: 768px) {
  .toggle-label-hamburger {
    display: none;
  }
}
.toggle-label-hamburger span,
.toggle-label-hamburger span::before,
.toggle-label-hamburger span::after {
  width: calc(60px / 2);
  height: 4px;
  border-radius: 7px;
  background: white;
  position: relative;
}
.toggle-label-hamburger span::before,
.toggle-label-hamburger span::after {
  content: "";
  position: absolute;
  transform: rotate(0deg);
  transition: transform 125ms ease;
}
.toggle-label-hamburger span::before {
  top: 10px;
}
.toggle-label-hamburger span::after {
  top: -10px;
}

/* Toggle States */
.toggle:checked ~ .subnav {
  transform: scaleY(1);
  opacity: 1;
  height: auto;
}

.toggle:checked ~ .nav {
  transform: scaleY(1);
  opacity: 1;
  min-height: calc(100vh - 60px);
}

.toggle:checked ~ .toggle-label-hamburger span {
  background: transparent;
}

.toggle:checked ~ .toggle-label-hamburger span::before {
  transform: rotate(135deg);
  top: 0px;
}

.toggle:checked ~ .toggle-label-hamburger span::after {
  transform: rotate(-135deg);
  top: 0px;
}

.footer {
  margin-block-start: auto;
  padding-block-start: 1rem;
  background: var(--clr-primary);
  color: rgb(255, 255, 255);
  font-size: 0.9rem;
}
.footer a {
  color: rgb(255, 255, 255);
  transition: all 125ms ease;
}
.footer a:hover {
  color: var(--clr-accent);
}
.footer ul {
  list-style: none;
}
.footer .footer1 {
  padding-block: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .footer .footer1 {
    grid-template-columns: auto 1fr auto auto;
  }
}
.footer .footer1 h5 {
  margin-block-end: 1rem;
  font-size: 1.2rem;
  text-shadow: var(--ts);
}
.footer .footer1 .footer-social .social-icon {
  padding-block: 0.25rem;
  padding-inline: 0.5rem;
}
.footer .footer1 .footer-address * + * {
  margin-block-start: 1rem;
}
.footer .footer2 {
  padding-block: 1rem;
  margin-block-start: 1rem;
  background: var(--clr-primary-dark);
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}
.footer .footer2 p {
  margin: 0;
  font-size: 0.8rem;
  font-weight: var(--fw-l);
  color: rgb(255, 255, 255);
}

.pagination {
  margin-block-start: 2rem;
  margin-block-end: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination * + * {
  margin: 0;
  padding: 0;
}
.pagination .page-link {
  border-top: solid 1px rgba(var(--clr-primary-rgb), 50%);
  border-bottom: solid 1px rgba(var(--clr-primary-rgb), 50%);
  border-right: solid 1px rgba(var(--clr-primary-rgb), 50%);
  background: white;
}
.pagination .page-link:first-child {
  border-left: solid 1px rgba(var(--clr-primary-rgb), 50%);
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 300;
}
.pagination .page-link:last-child {
  border-right: solid 1px rgba(var(--clr-primary-rgb), 50%);
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 300;
}
.pagination .page-link a {
  padding: 0.5rem;
  text-decoration: none;
  color: var(--clr-primary);
  display: block;
  transition: all 250ms ease;
}
.pagination .page-link a:hover {
  background: rgba(var(--clr-primary-rgb), 50%);
  color: var(--clr-white);
}
.pagination .page-link a:hover a {
  color: var(--clr-white);
}
.pagination .page-link.disabled a {
  color: hsl(0, 0%, 80%);
  cursor: default;
  pointer-events: none;
}
.pagination .page-link.disabled:hover {
  background: white;
}
.pagination .page-link.disabled:hover a {
  color: hsl(0, 0%, 80%);
}
.pagination .page-link.active {
  background: var(--clr-primary);
  color: var(--clr-white);
  pointer-events: none;
}
.pagination .page-link.active a {
  color: var(--clr-white);
}

/*# sourceMappingURL=main.css.map */
