@font-face {
  font-family: "Gill Sans";
  src: url("../gillSans.woff2");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Gill Sans", "PT Serif", sans-serif;
}

html, body, div#app {
  max-width: 100vw;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1, h2, h3, h4, h5, h6, p {
  margin-bottom: 16px;
}

nav {
  position: absolute;
  top: 0;
  color: #000000;
  font-family: "Gill Sans", "PT Serif", sans-serif;
  font-weight: lighter;
  max-width: 980px;
  width: 100vw;
  height: 60px;
  border-bottom: solid 1px #000000;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
nav .siteLogo {
  width: 92px;
  height: 42px;
  border: solid #000000 2px;
  font-size: calc(15px + 0.5vw);
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
nav .links {
  width: 500px;
  font-size: calc(10px + 0.4vw);
  display: flex;
  justify-content: flex-end;
}
nav .links a {
  text-decoration: none;
  color: #000000;
}
nav .links .link {
  padding-left: 19.5px;
  padding-right: 19.5px;
}
nav .links .seperate {
  width: 2px;
  height: 21.5px;
  background-color: #EE4367;
  transform: skewX(135deg);
}

#hero {
  height: 500px;
  width: 100vw;
  padding-top: 60px;
  background-image: linear-gradient(rgba(255, 209, 64, 0.75) 0%, rgba(255, 209, 64, 0.75) 100%), url("../img/home-hero.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  font-family: "PT Serif", "Gill Sans", serif;
}
#hero h2 {
  text-transform: uppercase;
  font-size: 60px;
  font-stretch: extra-condensed;
}
#hero h4 {
  color: #EE4367;
}
#hero p {
  width: 490px;
  font-family: "Gill Sans", "PT Serif", sans-serif;
  font-style: italic;
  font-size: 1.25em;
  text-align: center;
}
#hero a {
  text-decoration: none;
  font-size: 1.25em;
  font-family: "Gill Sans", "PT Serif", sans-serif;
  font-style: none;
  color: #FFFFFF;
  background-color: #EE4367;
  width: 120px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#ceoQuote {
  max-width: 980px;
  width: 100vw;
  height: 300px;
  background-color: #FFFFFF;
  font-family: "PT Serif", "Gill Sans", serif;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#ceoQuote p {
  color: #FFD140;
  font-family: "Gill Sans", "PT Serif", sans-serif;
}
#ceoQuote h3 {
  color: #EE4367;
}
#ceoQuote h4 {
  color: #888;
  font-size: 10px;
}

#upcomEvents {
  padding-left: calc(50vw - 600px);
  padding-right: calc(50vw - 600px);
  width: 100vw;
  height: 320px;
  background-color: #540D6E;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#upcomEvents h2 {
  width: 400px;
  border-bottom: 1px solid #FFFFFF;
  font-weight: 400;
}
#upcomEvents #dates {
  display: flex;
  justify-content: center;
  align-items: center;
}
#upcomEvents #dates .event {
  width: 210px;
  display: flex;
}
#upcomEvents #dates .event div:not(.date) {
  width: 140px;
  font-weight: 400;
}
#upcomEvents #dates .event div:not(.date) p {
  color: #EE4367;
}

.date {
  height: 60px;
  width: 60px;
  margin-right: 10px;
  background-color: #EE4367;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.date h4 {
  font-size: 22px;
  margin-bottom: 0;
}

#aboutHero {
  max-width: 980px;
  width: 100vw;
  height: 380px;
  margin-top: 175px;
  display: flex;
  align-items: flex-end;
  background-image: linear-gradient(rgba(255, 209, 64, 0.75) 0%, rgba(255, 209, 64, 0.75) 100%), url("../img/about.jpg");
}

#aboutUnderline {
  color: #000000;
  max-width: 980px;
  width: 100vw;
  margin-top: -25px;
  font-size: 25px;
  text-decoration: underline;
}

#aboutText {
  max-width: 980px;
  width: 100vw;
  margin-top: 30px;
  margin-bottom: 100px;
  font-size: 16px;
  font-weight: lighter;
  font-style: italic;
}

#galleryTitle {
  max-width: 980px;
  width: 100vw;
  font-weight: 400;
  text-decoration: underline;
  margin-top: 150px;
}

#galleryImages {
  max-width: 980px;
  width: 100vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* The `a:nth-child(-n+3)` selector in the provided SCSS code is targeting the first three `a`
  elements within the `#galleryImages` container. */
  /* The `a:nth-child(n+4)` selector in the SCSS code is targeting every `a` element that is the
  4th child or any subsequent child within the `#galleryImages` container. */
}
#galleryImages a {
  background-size: cover;
  background-position: center;
}
#galleryImages a:nth-child(-n+3) {
  height: 187px;
}
#galleryImages a:nth-child(n+4) {
  height: 306px;
  margin-top: 20px;
  margin-bottom: 55px;
}
#galleryImages a:nth-child(1) {
  background-image: linear-gradient(rgba(255, 209, 64, 0.5) 0%, rgba(255, 209, 64, 0.5) 100%), url("../img/gallery/1.png");
  max-width: 489px;
  width: 100vw;
}
#galleryImages a:nth-child(2) {
  background-image: linear-gradient(rgba(238, 67, 103, 0.5) 0%, rgba(238, 67, 103, 0.5) 100%), url("../img/gallery/2.jpeg");
  max-width: 187px;
  width: 100vw;
}
#galleryImages a:nth-child(3) {
  background-image: linear-gradient(rgba(8, 173, 105, 0.5) 0%, rgba(8, 173, 105, 0.5) 100%), url("../img/gallery/3.jpg");
  max-width: 265px;
  width: 100vw;
}
#galleryImages a:nth-child(4) {
  background-image: linear-gradient(rgba(84, 13, 110, 0.5) 0%, rgba(84, 13, 110, 0.5) 100%), url("../img/gallery/4.jpg");
  max-width: 603px;
  width: 100vw;
}
#galleryImages a:nth-child(5) {
  background-image: linear-gradient(rgba(59, 206, 171, 0.5) 0%, rgba(59, 206, 171, 0.5) 100%), url("../img/gallery/5.png");
  max-width: 355px;
  width: 100vw;
}

.galleryHero {
  max-width: 980px;
  width: 100vw;
  height: 400px;
  padding-left: 25px;
  padding-right: 25px;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-top: 150px;
  background-position: center;
  background-size: cover;
}
.galleryHero div {
  display: flex;
  align-items: baseline;
}
.galleryHero h3 {
  font-size: 17.75vw;
}
.galleryHero h4 {
  font-size: 7.75vw;
}

.sideBySide {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  max-width: 980px;
  width: 100vw;
}
.sideBySide p {
  max-width: 475px;
}

#galleryHero1 {
  color: #FFD140;
  background-image: linear-gradient(rgba(255, 209, 64, 0.5) 0%, rgba(255, 209, 64, 0.5) 100%), url("../img/gallery/1.png");
}

#galleryHero2 {
  color: #EE4367;
  background-image: linear-gradient(rgba(238, 67, 103, 0.5) 0%, rgba(238, 67, 103, 0.5) 100%), url("../img/gallery/2.jpeg");
}

#galleryHero3 {
  color: #08AD69;
  background-image: linear-gradient(rgba(8, 173, 105, 0.5) 0%, rgba(8, 173, 105, 0.5) 100%), url("../img/gallery/3.jpg");
}

#galleryHero4 {
  color: #540D6E;
  background-image: linear-gradient(rgba(84, 13, 110, 0.5) 0%, rgba(84, 13, 110, 0.5) 100%), url("../img/gallery/4.jpg");
}

#galleryHero5 {
  color: #3BCEAB;
  background-image: linear-gradient(rgba(59, 206, 171, 0.5) 0%, rgba(59, 206, 171, 0.5) 100%), url("../img/gallery/5.png");
}

#blogTitle {
  margin-top: 150px;
  max-width: 980px;
  width: 100vw;
  font-weight: 400;
  text-decoration: underline;
}

#blogContainer {
  width: 980px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.blogPost {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  text-decoration: none;
  color: #000000;
}
.blogPost .blogContent {
  width: 380px;
}
.blogPost .blogContent img {
  width: 380px;
  height: 140px;
  object-fit: cover;
  object-position: center;
}
.blogPost .blogContent p {
  color: #EE4367;
}

.blogHero {
  max-width: 980px;
  width: 100vw;
  height: 300px;
  margin-top: 150px;
  background-image: linear-gradient(rgba(238, 67, 103, 0.75) 0%, rgba(238, 67, 103, 0.75) 100%), url("../img/blog.jpg");
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blogHero .date {
  width: 155px;
  height: 155px;
}
.blogHero .date h4 {
  font-size: 55px;
}
.blogHero .date p {
  font-size: 31px;
}

.blogContent {
  width: 90vw;
  max-width: 980px;
}
.blogContent * {
  margin-top: 30px;
  font-size: 20px;
  font-weight: lighter;
}
.blogContent h5.blogSecHead {
  color: #EE4367;
}

#contactHead {
  width: 90vw;
  max-width: 980px;
  text-decoration: underline;
  font-weight: lighter;
  font-size: 25px;
  margin-top: 150px;
}

.contactContainer {
  max-width: 980px;
  width: 90vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap-reverse;
}
.contactContainer .contactForm {
  display: flex;
  flex-direction: column;
}
.contactContainer input {
  width: 90vw;
  max-width: 529px;
  height: 60px;
  margin-bottom: 21px;
  padding: 10px;
  border: none;
  background-color: #F5F5F5;
}
.contactContainer #messageText {
  height: 200px;
}
.contactContainer button {
  width: 167px;
  height: 60px;
  margin-bottom: 90px;
  background-color: #EE4367;
  color: #FFFFFF;
  font-size: 16px;
  border: none;
}
.contactContainer iframe {
  width: 90vw;
  max-width: 400px;
  height: 442px;
}

footer {
  width: 100vw;
  height: 455px;
  padding-left: 10vw;
  padding-right: 10vw;
  background-color: #EE4367;
  font-family: "Gill Sans", "PT Serif", sans-serif;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
footer p {
  margin: 0;
}
footer .siteLogo {
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
footer .contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer #newsletter {
  display: flex;
  align-items: center;
}
footer #newsletter * {
  height: 60px;
  margin: 0;
}
footer #newsletter input {
  max-width: 525px;
  width: 70vw;
  font-family: "Gill Sans", "PT Serif", sans-serif;
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
}
footer #newsletter a {
  max-width: 150px;
  width: 10vw;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFFFFF;
  color: #EE4367;
}
footer .socials a i {
  font-size: 22.5px;
  margin-left: 1.5vw;
  color: #FFFFFF;
}

@media (width >= 1080px) {
  footer {
    padding-left: 150px;
    padding-right: 150px;
    font-size: 1em;
  }
}
@media (width < 1080px) {
  footer {
    padding-left: calc(25px + 1vw);
    padding-right: calc(25px + 1vw);
    font-size: 0.75em;
  }
}

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