@charset "UTF-8";
.fadeInLeft {
  opacity: 0;
  animation-name: fadeInLeft;
  animation-duration: 3s;
  animation-fill-mode: forwards;
}

.fadeInRight {
  opacity: 0;
  animation-name: fadeInRight;
  animation-duration: 3s;
  animation-fill-mode: forwards;
}

.enterFromBelow {
  opacity: 0;
  animation-name: enterFromBelow;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
}

.posts-delay-1 {
  animation-delay: 0s;
}

.posts-delay-2 {
  animation-delay: 0.2s;
}

.posts-delay-3 {
  animation-delay: 0.4s;
}

.posts-delay-4 {
  animation-delay: 0.6s;
}

.social-media-delay-1 {
  animation-delay: 1.95s;
}

.social-media-delay-2 {
  animation-delay: 2.15s;
}

.social-media-delay-3 {
  animation-delay: 2.35s;
}

.social-media-delay-4 {
  animation-delay: 2.55s;
}

.social-media-delay-5 {
  animation-delay: 2.75s;
}

.animation-delay-2s {
  animation-delay: 1s;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(23px);
  }
  100% {
    opacity: 1;
    transform: translateX(1ex);
  }
}
@keyframes enterFromBelow {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.waves-effect {
  position: relative;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  vertical-align: middle;
  z-index: 1;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
/* Document
   ========================================================================== */
html {
  font-family: sans-serif;
  /* 1 */
  line-height: 1.15;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */
}

/* Sections
     ========================================================================== */
/**
   * Remove the margin in all browsers (opinionated).
   */
body {
  margin: 0;
}

/**
   * Add the correct display in IE 9-.
   */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
   * Correct the font size and margin on `h1` elements within `section` and
   * `article` contexts in Chrome, Firefox, and Safari.
   */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
     ========================================================================== */
/**
   * Add the correct display in IE 9-.
   * 1. Add the correct display in IE.
   */
figcaption,
figure,
main {
  /* 1 */
  display: block;
}

/**
   * Add the correct margin in IE 8.
   */
figure {
  margin: 1em 40px;
}

/**
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
     ========================================================================== */
/**
   * 1. Remove the gray background on active links in IE 10.
   * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
   */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**
   * Remove the outline on focused links when they are also active or hovered
   * in all browsers (opinionated).
   */
a:active,
a:hover {
  outline-width: 0;
}

/**
   * 1. Remove the bottom border in Firefox 39-.
   * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
   */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
   * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
   */
b,
strong {
  font-weight: inherit;
}

/**
   * Add the correct font weight in Chrome, Edge, and Safari.
   */
b,
strong {
  font-weight: bolder;
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
   * Add the correct font style in Android 4.3-.
   */
dfn {
  font-style: italic;
}

/**
   * Add the correct background and color in IE 9-.
   */
mark {
  background-color: #ff0;
  color: #000;
}

/**
   * Add the correct font size in all browsers.
   */
small {
  font-size: 80%;
}

/**
   * Prevent `sub` and `sup` elements from affecting the line height in
   * all browsers.
   */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
     ========================================================================== */
/**
   * Add the correct display in IE 9-.
   */
audio,
video {
  display: inline-block;
}

/**
   * Add the correct display in iOS 4-7.
   */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
   * Remove the border on images inside links in IE 10-.
   */
img {
  border-style: none;
}

/**
   * Hide the overflow in IE.
   */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
     ========================================================================== */
/**
   * 1. Change the font styles in all browsers (opinionated).
   * 2. Remove the margin in Firefox and Safari.
   */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
   * Show the overflow in IE.
   * 1. Show the overflow in Edge.
   */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
   * Remove the inheritance of text transform in Edge, Firefox, and IE.
   * 1. Remove the inheritance of text transform in Firefox.
   */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
   * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
   *    controls in Android 4.
   * 2. Correct the inability to style clickable types in iOS and Safari.
   */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  /* 2 */
}

/**
   * Remove the inner border and padding in Firefox.
   */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
   * Restore the focus styles unset by the previous rule.
   */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
   * Change the border, margin, and padding in all browsers (opinionated).
   */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
   * 1. Correct the text wrapping in Edge and IE.
   * 2. Correct the color inheritance from `fieldset` elements in IE.
   * 3. Remove the padding so developers are not caught out when they zero out
   *    `fieldset` elements in all browsers.
   */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
   * 1. Add the correct display in IE 9-.
   * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
   */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
   * Remove the default vertical scrollbar in IE.
   */
textarea {
  overflow: auto;
}

/**
   * 1. Add the correct box sizing in IE 10-.
   * 2. Remove the padding in IE 10-.
   */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
   * Correct the cursor style of increment and decrement buttons in Chrome.
   */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
   * 1. Correct the odd appearance in Chrome and Safari.
   * 2. Correct the outline style in Safari.
   */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
   * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
   */
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
   * 1. Correct the inability to style clickable types in iOS and Safari.
   * 2. Change font properties to `inherit` in Safari.
   */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
     ========================================================================== */
/*
   * Add the correct display in IE 9-.
   * 1. Add the correct display in Edge, IE, and Firefox.
   */
details,
menu {
  display: block;
}

/*
   * Add the correct display in all browsers.
   */
summary {
  display: list-item;
}

/* Scripting
     ========================================================================== */
/**
   * Add the correct display in IE 9-.
   */
canvas {
  display: inline-block;
}

/**
   * Add the correct display in IE.
   */
template {
  display: none;
}

/* Hidden
     ========================================================================== */
/**
   * Add the correct display in IE 10-.
   */
[hidden] {
  display: none;
}

.gallery {
  margin: 0 auto 18px;
}

.gallery .gallery-item {
  float: left;
  margin-top: 0;
  text-align: center;
  width: 33%;
}

.gallery-columns-2 .gallery-item {
  width: 50%;
}

.gallery-columns-4 .gallery-item {
  width: 25%;
}

.gallery img {
  box-shadow: 0px 0px 4px #999;
  border: 1px solid white;
  padding: 8px;
  background: #f2f2f2;
}

.gallery img:hover {
  background: white;
}

.gallery-columns-2 .attachment-medium {
  max-width: 92%;
  height: auto;
}

.gallery-columns-4 .attachment-thumbnail {
  max-width: 84%;
  height: auto;
}

.gallery .gallery-caption {
  color: #888;
  font-size: 12px;
  margin: 0 0 12px;
}

.gallery dl,
.gallery dt {
  margin: 0;
}

.gallery br + br {
  display: none;
}

.alignright {
  float: right;
}

.alignleft {
  float: right;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

figure {
  max-width: 80%;
}

figcaption {
  font-size: 0.8rem;
}

/**
 * Set up a decent box model on the root element
 */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: #ededed;
}

/**
   * Make all elements from the DOM inherit from the parent box-sizing
   * Since `*` has a specificity of 0, it does not override the `html` value
   * making all elements inheriting from the root box-sizing value
   * See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
   */
*,
*::before,
*::after {
  box-sizing: inherit;
}

/**
   * Basic styles for links
   */
a {
  color: #e0001a;
  text-decoration: none;
}
a:hover, a:focus {
  color: #ff1430;
}

button {
  color: white;
  background-color: #e0001a;
  width: 15rem;
  min-height: 20px;
  height: 3rem;
  margin: 4px;
  margin-top: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 400;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  border: none;
}
button:hover {
  background-color: #f5001d;
}

ul {
  list-style: none;
}

/**
 * Clear inner floats
 */
.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

/**
   * Main content containers
   * 1. Make the container full-width with a maximum width
   * 2. Center it in the viewport
   * 3. Leave some space on the edges, especially valuable on small screens
   */
.container {
  margin-left: auto;
  /* 2 */
  margin-right: auto;
  /* 2 */
  padding-left: 20px;
  /* 3 */
  padding-right: 20px;
  /* 3 */
  width: 100%;
  /* 1 */
}
@media (min-width: 768px) {
  .container {
    width: 740px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1160px;
    /* 1 */
  }
}

/**
   * Hide text while making it readable for screen readers
   * 1. Needed in WebKit-based browsers because of an implementation bug;
   *    See: https://code.google.com/p/chromium/issues/detail?id=457146
   */
.hide-text {
  overflow: hidden;
  padding: 0;
  /* 1 */
  text-indent: 101%;
  white-space: nowrap;
}

/**
   * Hide element while making it readable for screen readers
   * Shamelessly borrowed from HTML5Boilerplate:
   * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
   */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/**
 * Basic typography style for copy text
 */
body {
  color: white;
  font: normal 125%/1.4 "Open Sans", "Helvetica Neue Light", "Helvetica Neue", "Helvetica", Helvetica, Verdana, "Arial", sans-serif;
}

h3 {
  margin-bottom: 2rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: "Open Sans", "Helvetica Neue Light", "Helvetica Neue", "Helvetica", Helvetica, Verdana, "Arial", sans-serif;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.9rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.3rem;
}

h5 {
  font-size: 1.2rem;
}

h6 {
  font-size: 1.15rem;
}

p {
  font-size: 1rem;
}

#footer {
  background-color: #2c4163;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto;
  justify-content: space-between;
  grid-gap: 1.5rem;
  margin: 1rem 0;
}
@media (min-width: 588px) {
  .footer-grid {
    grid-template-columns: auto auto;
  }
}
@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: auto auto auto auto;
  }
}

#footer ul {
  padding: 0;
  margin: 0;
}

#footer ul li a {
  color: #cccccc;
  font-size: 0.9rem;
}
#footer ul li a:hover, #footer ul li a:focus {
  color: white;
}

#footer ul li a::before {
  color: #cccccc;
  content: "› ";
}

.header {
  color: "red";
}

#header-logo-1,
#header-logo-2,
#header-logo-3 {
  position: fixed;
  z-index: 1;
  top: 0;
  width: 75px;
  height: 75px;
  right: 0;
}
@media (min-width: 768px) {
  #header-logo-1,
#header-logo-2,
#header-logo-3 {
    top: initial;
    bottom: 0;
    width: 100px;
    height: 100px;
  }
}

#header-logo-2 {
  top: 86.25px;
}
@media (min-width: 768px) {
  #header-logo-2 {
    top: initial;
    right: 115px;
  }
}

#header-logo-3 {
  top: 172.5px;
}
@media (min-width: 768px) {
  #header-logo-3 {
    top: initial;
    right: 230px;
  }
}

#menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #cdcdcd;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}

#menuToggle span:first-child {
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

#menuToggle {
  cursor: pointer;
}

/*
  * Transform all the slices of hamburger
  * into a crossmark.
  */
#menuToggle.toggled span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -2px);
  background: #232323;
}

#menuToggle.toggled span:nth-child(2) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle.toggled span:nth-child(3) {
  transform: rotate(-45deg) translate(-2px, -2px);
}

#menuToggle {
  position: fixed;
  top: 18px;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  transform-origin: 0% 0%;
  transform: translate(100%, 0);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  z-index: 3;
}

.custom-logo-link {
  display: block;
  text-align: center;
}

/* The side navigation menu */
.sidenav {
  height: 100%;
  /* 100% Full-height */
  width: 0;
  /* 0 width - change this with JavaScript */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Stay on top */
  top: 0;
  left: 0;
  background-color: #f7f7f7;
  /* Black*/
  overflow-x: hidden;
  /* Disable horizontal scroll */
  transition: 0.5s;
  /* 0.5 second transition effect to slide in the sidenav */
}

/* The navigation menu links */
.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}
.sidenav a:hover, .sidenav a:focus {
  color: #e0001a;
}

#menu-sidenav svg.icon {
  display: none;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#content {
  transition: margin-left 0.5s;
}

#mySidenav {
  box-shadow: 2px 2px 10px black;
}

#mySidenav.menuOpened {
  width: 350px;
}

#mySidenav ul {
  padding-left: 3.25rem;
}

@media (min-width: 768px) {
  #content.menuOpened {
    margin-left: 350px;
  }
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }

  .sidenav a {
    font-size: 18px;
  }
}
#content {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-content: space-around;
  justify-content: space-between;
  min-height: 100vh;
}

#content.menuOpened {
  filter: blur(1.5px);
}
@media (min-width: 768px) {
  #content.menuOpened {
    filter: none;
  }
}

#showcase {
  overflow: hidden;
}

#hero-container {
  position: relative;
  overflow: hidden;
  perspective: 2px;
  height: 100vh;
}

.hero-image {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: 50% top;
}

#hero-overlay {
  position: fixed;
  bottom: 30%;
  left: 0;
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  #hero-overlay {
    text-align: left;
  }
}

#hero-headline {
  color: white;
  font-weight: 900;
  font-size: 3rem;
  margin: 0 0 0rem;
  text-shadow: 2px 2px 5px black;
}

#hero-claim {
  color: white;
  font-size: 1em;
  line-height: 1.3;
  margin: 0 0 0.8rem;
  margin-left: -1ex;
  font-style: italic;
  text-shadow: 1px 1px 3px black;
}
@media (min-width: 768px) {
  #hero-claim {
    margin-left: 0;
  }
}

.c-hero__down {
  cursor: pointer;
  height: 40px;
  position: absolute;
  bottom: 15%;
  width: 100%;
  text-align: center;
  fill: white;
}

#hero__down-icon {
  text-shadow: 2px 2px 5px black;
}

.c-hero__down,
.c-hero__down-icon,
.c-hero__form {
  transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
}

.c-hero__down .c-hero__down-icon {
  transform: scale(1.6);
}

.c-hero__down:hover .c-hero__down-icon {
  transform: scale(1.8) translateY(5px);
  -ms-transform: scale(1.8) translateY(5px);
  -webkit-transform: scale(1.8) translateY(5px);
  opacity: 1;
}

.c-hero__down-icon {
  filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.7));
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

#parallax-section {
  overflow: hidden;
  position: relative;
}

.parallax-claim {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.parallax-container {
  margin: 0;
  padding: 0;
}

.parallax-header {
  color: white;
  background-color: #e0001a;
  text-align: center;
  margin: 0;
  margin-top: 0px;
  width: 100%;
  height: 100%;
  padding: 0.5rem 1.25rem;
  margin-top: 25%;
  font-weight: lighter;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  border: none;
}
.parallax-header h2 {
  margin: 0;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .parallax-header h2 {
    font-size: 2rem;
  }
}

.parallax-header h3 {
  font-size: 0.6rem;
  margin: 0;
  padding-top: 0.5rem;
}
@media (min-width: 768px) {
  .parallax-header h3 {
    font-size: 0.8rem;
  }
}

#parallax-section img {
  width: 100vw;
  height: auto;
  object-fit: cover;
  object-position: center top;
  max-height: 100vh;
  min-height: 400px;
}

.parallax-claim {
  position: absolute;
  left: 0;
  top: 0;
}

.social-media-icons {
  display: flex;
  width: 100%;
  justify-content: center;
}
@media (min-width: 768px) {
  .social-media-icons {
    justify-content: left;
  }
}

.social-media-icon {
  position: relative;
  width: 3rem;
  height: 3rem;
  z-index: 1;
  text-align: center;
  box-shadow: 0 3px 5px #333;
  font-size: 3rem;
  line-height: 3rem;
  border-radius: 50%;
  margin: 0 0.5rem;
}

.social-media-icon a {
  color: white;
}

.facebook-icon {
  background-color: #3b5897;
}

.twitter-icon {
  background-color: #4099ff;
}

.social-media-icon:hover,
.social-media-icon:focus {
  background: none;
  background-color: white;
}

.facebook-icon:hover a,
.facebook-icon:focus a {
  color: #3b5897;
}

.twitter-icon:hover a,
.twitter-icon:focus a {
  color: #429aff;
}

.instagram-icon:hover a,
.instagram-icon:focus a {
  color: #d6249d;
}

.instagram-icon {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.25);
}

.social-media-icon svg {
  height: 60%;
  margin: 20% auto;
  width: 60%;
}

.flex-container {
  display: flex;
}

input[type=email],
input[type=text] {
  background: #fff;
  min-height: 20px;
  margin: 0;
  padding: 10px 19px 10px 19px !important;
  border: 1px solid #e7e7e7 !important;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  resize: none;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #2c2c2c !important;
}

#newsletter {
  color: black;
  overflow: hidden;
  padding: 2rem 0 3rem;
}

.newsletter form {
  width: 100%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.newsletter-heading {
  text-align: center;
}
.newsletter-email {
  height: 3rem;
  width: 15rem;
  max-width: 100%;
  text-align: center;
  box-shadow: 0px 1px 7.5px gray !important;
}
.newsletter-submit {
  color: white;
  background-color: #e0001a;
  width: 15rem;
  min-height: 20px;
  height: 3rem;
  margin: 4px;
  margin-top: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 400;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  border: none;
  max-width: 100%;
}
.newsletter-submit:hover {
  background-color: #f5001d;
}
@media (min-width: 768px) {
  .newsletter-submit {
    margin-left: 1.25rem;
  }
}

.section {
  overflow: hidden;
}

#about-me {
  background-color: #2c4163;
}

#about-me-header {
  margin: 0;
  padding-top: 2rem;
  padding-bottom: 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  #about-me-header {
    text-align: left;
  }
}

.flex-text {
  width: 100%;
}
@media (min-width: 768px) {
  .flex-text {
    width: 50%;
  }
}

.flex-images {
  width: 100%;
}
@media (min-width: 768px) {
  .flex-images {
    width: 48%;
  }
}

.figure-image {
  margin: 0;
}
@media (min-width: 768px) {
  .figure-image {
    margin: 0.5rem;
  }
}

.flex-images img {
  width: 100%;
  height: 100%;
}
.single-post-section .flex-container {
  width: 100%;
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .single-post-section .flex-container {
    flex-direction: row;
    justify-content: space-between;
  }
}
#about-me::after {
  content: "";
  display: block;
  margin: 0 auto;
  width: 25%;
  padding-top: 2rem;
  border-bottom: 2px solid white;
}

.signature {
  fill: white;
  margin: 0;
}

.edit-post {
  margin-bottom: 3rem;
}

.edit-post a {
  color: white;
}

#team {
  color: black;
  overflow: hidden;
  padding: 2rem 0 3rem;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1.5rem;
  justify-items: center;
}
@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  .team-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.our-team {
  background: white;
  text-align: center;
  position: relative;
  box-shadow: 1px 1px 5px black;
  grid-template-areas: "blah1 blah2" "blah1 blah3";
  width: 100%;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  max-width: 350px;
}
@media (min-width: 768px) {
  .our-team {
    display: initial;
  }
}

.our-team .pic {
  max-width: 350px;
  width: 100%;
  height: 100%;
  max-height: 300px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  grid-area: blah1;
}
@media (min-width: 768px) {
  .our-team .pic {
    height: 300px;
  }
}

.our-team img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  object-position: center;
  height: 100%;
}

.our-team .social {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 50px;
  left: 20px;
  transition: all 0.3s ease-out 0s;
}

.our-team .social li a .blah {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  background: #e0001a;
  font-size: 14px;
  color: #fff;
  text-align: center;
  margin-bottom: 5px;
  transform: scale(0);
  transition: all 0.2s ease 0s;
  z-index: 2;
}

.our-team:hover .social li a .blah {
  transform: scale(1);
}

.our-team:hover .social li a .blah:hover {
  background-color: #2c4163;
}

.our-team .team-content {
  padding: 15px 15px 20px;
  background-color: #2c4163;
  color: #fff;
  width: 100%;
  position: relative;
  z-index: 1;
  grid-area: blah2;
}

.our-team .title {
  font-size: 30px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.our-team .post {
  display: block;
  font-size: 14px;
  font-weight: 900;
}

.our-team .description {
  padding: 1rem;
  background: #fff;
  font-size: 1rem;
  color: #666;
  line-height: 30px;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  grid-area: blah3;
}

.our-team .description p {
  line-height: 1.7rem;
  margin: 0;
}

@media only screen and (max-width: 990px) {
  .our-team {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 359px) {
  .our-team .social {
    top: 20px;
  }
}
.our-team .description,
.our-team .team-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#recent-posts,
#pages,
.post-section {
  background-color: #223044;
  padding: 2rem 0;
}

.grid-link-wrapper {
  color: white;
}
.grid-link-wrapper:focus, .grid-link-wrapper:hover {
  color: white;
}

.grid-post-items {
  display: grid;
  justify-items: center;
  grid-gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid-post-items {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .grid-post-items {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.hide-third-child > :nth-child(3) {
  display: none;
}

.hide-forth-child > :nth-child(4) {
  display: none;
}

.grid-item-wrapper:hover .grid-item,
.grid-item-wrapper:focus .grid-item {
  transform: scale(1.2);
}

.grid-item {
  background-repeat: no-repeat;
  height: 300px;
  max-width: 500px;
  background-size: cover;
  position: relative;
  background-position: center;
  box-shadow: 1px 1px 10px black;
  transition: all 0.5s;
  overflow: hidden;
}

.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 588px) {
  .button-container {
    justify-content: space-evenly;
    flex-direction: row;
  }
}

.loadmore,
.showall {
  color: white;
  background-color: #e0001a;
  width: 15rem;
  min-height: 20px;
  height: 3rem;
  margin: 4px;
  margin-top: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 400;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  margin-top: 2rem;
}
.loadmore:hover,
.showall:hover {
  background-color: #f5001d;
}

.grid-item-text {
  padding: 1.5rem;
  padding-top: 2.5rem;
  width: 100%;
  position: absolute;
  left: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
  bottom: 0;
}
.grid-item-text h5 {
  text-shadow: 2px 2px 2px black;
  margin: 0;
}

.grid-item-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: 0.5s all ease-in-out;
}

.grid-item-text h5 {
  transition: 0.5s all ease-in-out;
}

.grid-item-text p {
  position: absolute;
  bottom: 0;
  left: 0;
}

.grid-item .link-more {
  display: none;
}

.grid-item-excerpt {
  position: absolute;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  top: 0;
  left: 0;
  padding: 2rem;
  transform: translateY(-300px);
  transition: 0.45s all ease-in-out;
  width: 100%;
  height: 100%;
}
.grid-item-excerpt p {
  text-align: center;
  font-size: 0.85rem;
  color: #e6e6e6;
}

.grid-item-excerpt :nth-child(2):hover, .grid-item-excerpt :nth-child(2):focus {
  color: white;
}

.grid-item:hover .grid-item-image, .grid-item:focus .grid-item-image {
  transform: scale(1.2);
  filter: brightness(50%) blur(1px);
}
.grid-item:hover .grid-item-text h5, .grid-item:focus .grid-item-text h5 {
  transform: translateY(300px);
}
.grid-item:hover .grid-item-excerpt, .grid-item:focus .grid-item-excerpt {
  transform: translateY(0);
}

.disable-hover,
.disable-hover * {
  pointer-events: none !important;
}

#main-widgets,
#footer-widgets {
  color: black;
  overflow: hidden;
}

#footer-widget-grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  #footer-widget-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.widget {
  padding: 1rem;
}

#link-section {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.link-grid {
  display: grid;
  justify-items: center;
  grid-gap: 2rem;
  grid-template-areas: "link-grid-section-1" "link-grid-section-2" "link-grid-section-3";
}
@media (min-width: 768px) {
  .link-grid {
    grid-template-areas: "link-grid-section-1 link-grid-section-2" "link-grid-section-3 link-grid-section-3";
  }
}
@media (min-width: 992px) {
  .link-grid {
    grid-template-areas: "link-grid-section-1 link-grid-section-2 link-grid-section-3";
  }
}

.link-grid-section-1 {
  grid-area: link-grid-section-1;
}

.link-grid-section-2 {
  grid-area: link-grid-section-2;
}

.link-grid-section-3 {
  grid-area: link-grid-section-3;
}

.link-grid-section-4 {
  grid-area: link-grid-section-4;
}

.link-grid-section-1 {
  display: flex;
  align-items: center;
}

.link-grid-section-1 img {
  max-height: 90px;
}

.link-grid-section-2 img,
.link-grid-section-3 img {
  width: auto;
  height: 120px;
}

.search-submit {
  color: white;
  background-color: #e0001a;
  width: 15rem;
  min-height: 20px;
  height: 3rem;
  margin: 4px;
  margin-top: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 400;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  border: none;
  margin: 0;
  width: 10rem;
}
.search-submit:hover {
  background-color: #f5001d;
}

.search-box {
  height: 3rem;
  margin-right: 0.5rem;
  width: 15rem;
  padding: 0 1rem !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2) !important;
}

.header__body {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .header__body {
    margin-bottom: 4rem;
  }
}

#post-content {
  margin-bottom: 2.5rem;
  color: black;
}

.article-header {
  position: relative;
  width: 100%;
}

.article-heading {
  font-size: 1.6rem;
}

.single-article {
  margin: auto;
  padding: 1rem;
}
@media (min-width: 768px) {
  .single-article {
    width: 90%;
  }
}
.article-hero {
  position: relative;
  color: #fff;
  width: 100vw;
  left: 0;
  height: 100vh;
}
.article-hero img {
  width: 100vw !important;
  height: 100vh !important;
  object-fit: cover !important;
  max-height: initial !important;
  filter: brightness(85%);
}

.article-hero-header h1 {
  font-size: 2.5rem;
  margin: 0 5%;
  width: 90%;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  line-height: 1.3;
  z-index: 3;
}
@media (min-width: 768px) {
  .article-hero-header h1 {
    font-size: 3.5rem;
  }
}
@media (min-width: 992px) {
  .article-hero-header h1 {
    font-size: 4rem;
  }
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
  margin-bottom: 0;
  margin-top: 1.5rem;
}

#post-content .article-header h2.article-heading {
  padding: 0.5rem 3rem;
  font-size: 3rem;
  margin: 0;
  color: white;
  display: inline-block;
  background-color: #e0001a;
  width: 100%;
}

#post-content .wp-post-image {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
@media (min-width: 768px) {
  #post-content .wp-post-image {
    max-height: 350px;
  }
}
@media (min-width: 992px) {
  #post-content .wp-post-image {
    max-height: 400px;
  }
}
@media (min-width: 1200px) {
  #post-content .wp-post-image {
    max-height: 450px;
  }
}

.article-meta {
  font-size: 0.85rem;
  padding: 1rem 0;
}

.article-content ul {
  list-style: initial;
  padding-left: 1.5rem;
}

.article-content p,
.article-content ul {
  line-height: 1.8rem;
  font-size: 1rem;
}

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