@charset "UTF-8";

/* ---------------------------
   Image Styling
---------------------------- */
.category-loop img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

/* ---------------------------
   Front Page Hero
---------------------------- */
.fp-hero {
  background-size: cover;
  background-position: center bottom ;!important /* adjust this to shift the focus */
  background-repeat: no-repeat;
}

/* ---------------------------
   Video Fallback Styling
---------------------------- */

.videoback {
  background-image: url('/wp-content/uploads/2024/04/mobile-video-static-fallback.jpg');
  background-size: cover;
  background-position: center;
}

/* ---------------------------
   Neomorphic Cards & Boxes
---------------------------- */
.neobox,
.neomorphic-card {
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
}

/* Shared hover effect */
.neobox:hover,
.neomorphic-card:hover {
  transform: translateY(-2px);
}

/* .neobox styles */
.neobox {
  background: #ffffff;
  box-shadow: 5px 5px 15px #d1d1d1, -5px -5px 15px #ffffff;
  margin: 10px;
}

.neobox:hover {
  box-shadow: inset 5px 5px 15px #d1d1d1, inset -5px -5px 15px #ffffff;
}

/* .neomorphic-card styles */
.neomorphic-card {
  background: #e0e0e0;
  box-shadow: 8px 8px 15px #a3a3a3, -8px -8px 15px #ffffff;
  margin: 20px;
  text-align: center;
}

.neomorphic-card:hover {
  box-shadow: inset 8px 8px 15px #a3a3a3, inset -8px -8px 15px #ffffff;
}

/* ---------------------------
   Gravity Forms
---------------------------- */
.gform_description {
  margin-top: 20px;
}

.gform_button {
  padding: 10px;
}

.gform_wrapper .gform_body .gform_fields .gfield {
  margin-bottom: 30px;
}

/* ---------------------------
   Buttons
---------------------------- */
.sp-posts-block-read-more a,
.sidebar-list li {
  display: block;
  width: 100%;
  padding: 10px;
  margin: 5px 0;
  background-color: #14B8A6;
  text-align: center;
  color: #fff !important;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
}

.sidebar-list li:hover {
  background-color: #B22222;
}

.sp-posts-block-read-more a:hover {
  background-color: #8AB0A4;
}

.link-button a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #113450;
  color: #fff;
  text-decoration: none;
  margin: 30px 0;
}

/* ---------------------------
   Article / Typography
---------------------------- */
.post-content ol li,
.post-content ul li {
  margin-top: 20px;
}

.post-content p strong {
  margin-top: 40px;
  margin-bottom: 20px;
}

.post-content p {
  margin: 1em 0 !important;
}

.text-justify,
.neobox-text p {
  text-align: justify;
}

.small-text {
  font-size: 12px;
}

.quote {
  position: relative;
  background: #70988A;
  color: #fff;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  max-width: calc(100% - 200px);
  margin: 0 auto;
}

.quote::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border-width: 10px;
  border-style: solid;
  border-color: #70988A transparent transparent transparent;
}

/* ---------------------------
   Alignment Helpers
---------------------------- */
.alignleft {
  float: left;
  padding-right: 20px;
  padding-bottom: 20px;
}

.alignright {
  float: right;
  padding-left: 20px;
  padding-bottom: 20px;
}

.aligncenter,
img.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.clearfix::after {
  content: " ";
  display: block;
  clear: both;
  visibility: hidden;
  font-size: 0;
  height: 0;
}

/* ---------------------------
   WP Core Buttons
---------------------------- */
.wp-element-button {
  padding: 15px;
  border-radius: 10px;
}

/* ---------------------------
   Responsive Layouts
---------------------------- */
@media only screen and (orientation: portrait) {
  .mediarow,
  .mediarow-reverse {
    display: flex;
    flex-wrap: wrap;
  }

  .mediarow-reverse {
    flex-wrap: wrap-reverse;
  }

  .mediacol {
    width: 100% !important;
  }
}

@media screen and (max-width: 767px) {
  .gc-wrapless {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .cta-bar h3 {
    font-size: 18px !important;
  }
}