/*!
Theme Name: Waco Aircraft
Theme URI: http://wacoaircraft.com/
Author: Captain Coder
Author URI: http://captcoder.com/
Description: This is a Bootstrap 5 theme base custom built for Captain Coder clients
Version: 2.5.0
License: GNU General Public License v2 or later
Text Domain: captcoder

captcoder is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.
*/

@import url("inc/normalize.css");
@import url("inc/xl.css");

@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,900;1,400&display=swap");

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# HTML
# Body
# Navigation
# Links & Buttons
# Overall
# Headings
# Home
# Bottom Includes
# Footer
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Colors
--------------------------------------------------------------*/
:root {
  --blue: #224166;
  --fblue: #2b5179;
  --darkgray: #605e5e;
  --lightgray: #cccccc;
  --black: #000;
  --white: #fff;
}

/*--------------------------------------------------------------
# HTML
--------------------------------------------------------------*/
/* Make jump links scroll smoothly down the page */
html {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# Body
--------------------------------------------------------------*/

/* Set the base font family and font size for ems here. Check with designer on desired paragraph font size */
body {
  font-size: 20px;
  font-family: "avenir-lt-pro";
  overflow-x: hidden;
  line-height: 1.6;
  background: var(--white);
  color: var(--blue);
}

@media only screen and (min-width: 992px) {
  body {
    font-size: 20px;
    color: var(--blue);
  }
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/

nav.navbar {
  background: transparent;
  transition: all 0.2s ease;
  position: static;
  background: var(--blue);
  width: 100%;
}
nav.navbar .navbar-toggler {
  background: transparent;
  border-radius: 0;
  border-color: transparent;
}
.menu-item a {
  font-size: 26px;
  text-transform: uppercase;
}
#menu-menu-1 .dropdown-menu {
  background: transparent;
  border: none;
}
.dropdown-menu a {
  font-size: 1em;
}
.dropdown-item,
.dropdown-item:visited {
  color: var(--white);
  text-transform: capitalize !important;
}
.dropdown-item.active,
.dropdown-item:active,
.dropdown-item:focus,
.dropdown-item:hover {
  text-decoration: underline;
  background-color: unset;
  color: var(--white);
  text-underline-offset: 8px;
}

.navbar-brand img {
  max-height: 60px;
  height: 60px;
  transition: all 0.2s ease;
}
#primary.plain-header {
  background-color: var(--blue);
  min-height: 400px;
  display: flex;
  align-items: center;
  padding-top: 80px;
  box-sizing: border-box;
}
.colBorder {
  position: relative;
  padding: 0 20px;
}
.colBorder:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 80px;
  width: 1px;
  height: 100%;
  background-color: var(--blue);
}
/* remove navbar if a landing page or other speciality template */
.page-template-landing-page nav.navbar.navbar-expand-xl.navbar-dark,
.page-template-funnel-page nav.navbar.navbar-expand-xl.navbar-dark,
.page-template-thanks-page nav.navbar.navbar-expand-xl.navbar-dark {
  display: none;
}
.navbar-dark .navbar-nav .nav-link,
.navbar-light .navbar-nav .nav-link:focus,
.nav-link:focus,
.nav-link:hover {
  color: var(--white) !important;
}

.navbar-toggler-icon {
  background-image: none !important;
  background-color: var(--white);
  height: 3px;
  width: 25px;
  margin: 10px 0;
  position: relative;
  transition: all 0.35s ease-out;
  transform-origin: center;
}
.navbar-toggler-icon::before {
  display: block;
  background-color: var(--white);
  height: 3px;
  content: "";
  position: relative;
  top: -7px;
  transition: all 0.15s ease-out;
  transform-origin: center;
}
.navbar-toggler-icon::after {
  display: block;
  background-color: var(--white);
  height: 3px;
  content: "";
  position: relative;
  top: 4px;
  transition: all 0.35s ease-out;
  transform-origin: center;
}
.navbar-toggler:focus,
.btn-check:focus + .btn,
.btn:focus {
  box-shadow: none;
}
.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
  transform: rotate(45deg);
}
.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
  opacity: 0;
}
.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
  transform: rotate(-90deg) translateX(7px);
}

@media only screen and (min-width: 992px) {
  .navbar-brand img {
    max-height: 100px;
    height: 100px;
  }
}
@media only screen and (min-width: 1200px) {
  nav.navbar {
    background: transparent;
    transition: all 0.2s ease;
    position: absolute;
    z-index: 9;
    width: 100%;
  }
  .single-post nav.navbar,
  .single-events nav.navbar,
  .single-team nav.navbar {
    background: var(--blue);
    position: relative;
  }
  .menu-item a {
    font-size: 16px;
  }
  .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
    padding-left: 0;
    background: transparent;
  }
  nav.navbar .navbar-nav .nav-link,
  .navbar-dark .navbar-nav .nav-link:visited {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  nav.navbar .navbar-nav .nav-link:hover,
  .navbar-dark .navbar-nav .nav-link:active {
    color: var(--white);
  }
  .navbar::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 0;
    background-color: var(--blue);
    transition: height 0.3s ease;
    z-index: -1;
  }
  .navbar:has(.dropdown-menu.show)::after {
    height: 185px;
  }
  .navbar:has(.dropdown-menu.show) {
    background-color: var(--blue) !important;
  }
}
@media only screen and (max-width: 1200px) {
  .navbar .navbar-nav > li {
    border-top: 1px solid #3568a4;
  }
}
/*--------------------------------------------------------------
# Accordion
--------------------------------------------------------------*/
.accordion button:before {
  content: none;
}
.accordion .accordion-button {
  background: transparent;
  color: var(--blue);
  font-size: 0.7em;
}
.accordion .accordion-button:after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23224166'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
}
.accordion .accordion-button:focus {
  box-shadow: none;
  border-color: unset;
}
.accordion-item {
  border: unset;
}
.accordion-body ul li {
  padding: 7px 0;
}
.accordion-item {
  background-color: var(--white);
  border-top: 1px solid var(--lightgray) !important;
  border-radius: 0 !important;
  padding: 18px 0 !important;
}
.accordion-item:last-child {
  border-bottom: 1px solid var(--lightgray) !important;
}
/*--------------------------------------------------------------
# Buttons & Links
--------------------------------------------------------------*/
a,
a:visited {
  text-decoration: underline;
  color: inherit;
}
a:hover,
a:active {
  color: var(--fblue);
  text-decoration: none;
}
.btn,
.gform_wrapper .gform_footer input[type="submit"],
.btn:visited,
.gform_wrapper .gform_footer input[type="submit"]:visited,
a.more-link,
a.more-link:visited {
  font-family: "avenir-lt-pro";
  text-transform: uppercase;
  border-radius: 0;
  border: 3px solid var(--blue);
  background: transparent;
  color: var(--blue);
  padding: 15px 30px;
  transition: all 0.2s;
  font-size: 1em;
}
.btn:hover,
.btn:active,
.gform_wrapper .gform_footer input[type="submit"]:hover,
.gform_wrapper .gform_footer input[type="submit"]:active,
a.more-link:hover,
a.more-link:active {
  color: var(--white);
  background: var(--blue);
}
a.more-link {
  display: block;
  width: 35%;
  text-align: center;
  margin-top: 1em;
}

/*--------------------------------------------------------------
# Headings
--------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "avenir-lt-pro";
}
h1,
h2,
h3,
h4,
.h4,
h5,
h6 {
  font-weight: 700;
}
h1 {
  font-size: 4.5em;
  line-height: 1.1;
  color: var(--white);
}
h2 {
  font-size: 2.4em;
  line-height: 1.25;
}
h3 {
  font-size: 1.5em;
  line-height: 1.1;
  text-transform: uppercase;
}
h4,
.h4 {
  font-size: 1.2em;
  line-height: 1.15;
  text-transform: uppercase;
}
.h1-alt {
  font-size: 3.5em;
  line-height: 1.1;
}

/*--------------------------------------------------------------
# Overall
--------------------------------------------------------------*/
.white {
  color: var(--white) !important;
}
.whiteBk {
  color: var(--blue) !important;
  background-color: var(--white) !important;
}
.blueBk {
  background: var(--blue);
  color: var(--white);
}
.ltgrayBk {
  background: var(--lightgray);
}
.py-8 {
  padding-top: 8rem !important;
  padding-bottom: 8rem !important;
}
.py-10 {
  padding-top: 10rem !important;
  padding-bottom: 10rem !important;
}
header {
  position: relative;
  top: 0;
}
#alignTop .row {
  align-items: flex-start !important;
}
.textOver {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.uppercase {
  text-transform: uppercase;
}
.underline {
  border-bottom: 1px solid var(--blue);
  padding-bottom: 0.5rem;
}

.blueBk .underline {
  border-bottom: 1px solid var(--fblue);
}
.testimonials {
  background: var(--purple);
}
.carousel,
.carousel-item {
  height: 300px;
}
.carousel-caption {
  color: #000;
  text-shadow: none;
}
.carousel-caption blockquote {
  border-left: 0;
}
.carousel-caption blockquote footer {
  text-align: right;
}
.ginput_container input {
  background: transparent !important;
  border: 1px solid var(--blue);
}

.gfield_label {
  text-transform: uppercase;
}
.card {
  border-radius: 0;
}
.card-footer {
  background: transparent;
  border-top: 0;
  padding-bottom: 1rem;
}
#cardBox .card {
  background: transparent;
  border: 1px solid var(--white);
}
section#midBox,
section#midBox .container {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
#midBox .img-block,
#midBox .row > *,
#midBox .row {
  padding: 0 !important;
  margin: 0 !important;
}
.spec-t {
  padding-top: 40rem;
}
.whiteBox {
  flex-wrap: nowrap;
  gap: 30px;
}
@media only screen and (min-width: 768px) {
  .plane {
    margin-right: 1rem;
    width: 32%;
  }
}
@media only screen and (min-width: 992px) {
  .textOver {
    top: 10%;
  }

  .gradient-right,
  .gradient-left {
    position: relative;
  }
  .gradient-right .container,
  .gradient-left .container {
    z-index: 2;
    position: relative;
  }
  .gradient-right:after,
  .gradient-left:after {
    display: block;
    content: "";
    height: 100%;
    width: 70%;
    background: linear-gradient(
      90deg,
      rgba(35, 65, 102, 0) 0%,
      rgba(35, 65, 102, 1) 100%
    );
    z-index: 1;
    position: absolute;
    top: 0;
    right: 0;
  }
  .gradient-left:after {
    background: linear-gradient(
      -90deg,
      rgba(35, 65, 102, 0) 0%,
      rgba(35, 65, 102, 1) 100%
    );
    right: auto;
    left: 0;
  }
}
@media only screen and (max-width: 768px) {
  .py-8,
  .py-10 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  h1 {
    font-size: 2.5em;
  }

  #siteinfo {
    text-align: center;
  }
  .column-reverse .row {
    flex-direction: column-reverse;
  }

  .colBorder:not(:last-child)::after {
    width: 90%;
    height: 1px;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .whiteBox {
    flex-wrap: wrap;
    padding: 20px;
  }
  .photo-grid-block {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
  .spec-t {
    word-wrap: break-word;
  }
  .history-timeline .timeline-scale-box {
    max-width: 400px;
    margin: 0 45px;
  }
}

/*--------------------------------------------------------------
# Overall
--------------------------------------------------------------*/
header video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-id-179 #primary .video-wrapper {
  position: relative;
  line-height: 0;
}

.page-id-179 #primary .video-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  width: 100%;
  height: 40%;
}
@media only screen and (min-width: 768px) {
  .home .news .card img {
    height: 150px;
    object-fit: cover;
  }
}
@media only screen and (min-width: 992px) {
  .home .news .card img {
    height: 200px;
    object-fit: cover;
  }
}
@media only screen and (min-width: 1200px) {
  .home .news .card img {
    height: 250px;
    object-fit: cover;
  }
}
@media only screen and (min-width: 1400px) {
  .home .news .card img {
    height: 300px;
    object-fit: cover;
  }
}
@media only screen and (min-width: 1600px) {
  .home .news .card img {
    height: 350px;
    object-fit: cover;
  }
  .py-10 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
}

/*--------------------------------------------------------------
# Individual Aircraft
--------------------------------------------------------------*/
.AirPrice {
  color: var(--white);
  font-size: 1.5em;
}
.single-aircraft h1 {
  margin-bottom: 0;
}
.spec-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
}
.spec-item .label {
  width: 250px !important;
  flex-shrink: 0 !important;
}
.AviSpec {
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}
#aircraftCarousel {
  position: relative;
  padding: 0 80px;
  overflow: visible !important;
}

#aircraftCarousel .fullImgs {
  overflow: hidden !important;
  border-radius: 4px;
}

.mySwiper .swiper-slide-thumb-active {
  opacity: 0.7;
  border: 2px solid var(--blue);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
.swiper-button-next,
.swiper-button-prev {
  background: var(--lightgray) !important;
  color: var(var(--white)) !important;
  width: 55px !important;
  height: 55px !important;
  border-radius: 50%;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 25px !important;
  font-weight: bold !important;
  color: var(--white) !important;
  line-height: 0 !important;
  display: block;
  margin-top: -4px;
}
.swiper-button-next::after {
  content: "→" !important;
}

.swiper-button-prev::after {
  content: "←" !important;
}
.swiper-button-prev {
  left: 10px !important;
}

.swiper-button-next {
  right: 10px !important;
}
.card.aircraft-wrap {
  border: 1px solid var(--lightgray);
}
.aircraft-wrap .card:hover,
.plane:hover,
.models-section .card:hover {
  background: var(--blue);
  color: var(--white) !important;
  cursor: pointer;
}
.aircraft-wrap .card:hover a,
.aircraft-wrap .card:hover i,
.aircraft-wrap.card:hover .btn:hover i,
.plane:hover a,
.plane .card-footer a.btn:hover,
.models-section .card:hover a.btn,
.models-section a.btn:hover,
.models-section a.btn:hover i {
  color: var(--white);
}
.models-section.HomeModels .card {
  border: 1px solid var(--lightgray);
}
.card.aircraft-wrap .card-body,
.card.aircraft-wrap .card-footer {
  padding: 20px 30px;
}

@media only screen and (max-width: 1200px) {
  .spec-item {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  #aircraftCarousel {
    padding: 0;
  }
  .swiper-button-prev {
    left: 10px !important;
  }
  .swiper-button-next {
    right: 10px !important;
  }
  .spec-group-title {
    padding-bottom: 1rem;
  }
  #primary.plain-header {
    padding-top: 0;
  }
}
/*--------------------------------------------------------------
# Landing Page Template
--------------------------------------------------------------*/
.page-template-landing-page header .logo {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.page-template-landing-page header .logo img {
  max-height: 30px;
}
/*--------------------------------------------------------------
# Timeline
--------------------------------------------------------------*/
.timeline-block {
  overflow: visible;
}
.timeline-scroll-wrapper {
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: currentColor transparent;
}
.timeline-track {
  display: flex;
  align-items: flex-start;
  min-width: max-content;
  gap: 30px;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  width: 190px;
  flex-shrink: 0;
}

.timeline-item--last {
  width: 160px;
}

.timeline-year {
  font-size: 2.2rem;
  font-weight: 900;
}

.timeline-connector {
  display: flex;
  align-items: center;
  width: calc(100% + 30px);
  margin-bottom: 14px;
}

.timeline-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.timeline-line {
  flex: 1;
  height: 2px;
  background: currentColor;
  opacity: 0.55;
}

.timeline-desc {
  font-size: 1rem;
}
.timeline-desc p {
  margin: 0;
}
.timeline-nav {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 10px;
}

.timeline-arrow {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid #fff;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
}

.timeline-arrow:hover {
  background: rgba(255, 255, 255, 0.4);
}
@media (max-width: 992px) {
  .timeline-item {
    width: 160px;
  }
  .timeline-item--last {
    width: 140px;
  }
}
@media (max-width: 576px) {
  .timeline-block {
    padding: 40px 0 50px;
  }
  .timeline-item {
    width: 145px;
  }
  .timeline-item--last {
    width: 125px;
  }
  .single-aircraft header > img {
    height: 400px;
    object-fit: cover;
  }
}

/* ----------------------------- */
/* HISTORY TIMELINE (SCOPED)     */
/* ----------------------------- */

.history-timeline .timeline-top-year {
  font-family: "Avenir Roman", sans-serif;
  font-size: 18px;
  color: #91a0b3;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
  transform-origin: center bottom;
  white-space: nowrap;
  pointer-events: auto;
}

.history-timeline .timeline-top-year.active {
  color: var(--white);
  font-family: "Avenir Black", sans-serif;
  transform: scale(1.5);
  text-decoration: underline;
  font-weight: 600;
  text-underline-offset: 6px;
}

.history-timeline .timeline-top-scale {
  overflow: visible;
}
.history-timeline .timeline-content {
  padding-top: 20px;
}
.history-timeline .timeline-top-track {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 20px;
  justify-content: center;
}

.history-timeline .timeline-scroll-wrapper {
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.history-timeline .timeline-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.history-timeline .timeline-track {
  display: flex;
  align-items: flex-start;
  padding: 50px 0;
  gap: 0;
}

.history-timeline .timeline-item {
  width: 300px;
  flex-shrink: 0;
  overflow: visible;
  position: relative;
}
.history-timeline .timeline-item.active {
  width: 450px;
}
.history-timeline .timeline-scale-box {
  display: flex;
  flex-direction: column;
}

.history-timeline .timeline-header {
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.history-timeline .timeline-connector-spacer {
  height: 34px;
}

.history-timeline .timeline-connector {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
}

.history-timeline .timeline-dot {
  width: 14px;
  height: 14px;
  background: var(--white);
  border-radius: 50%;
  flex-shrink: 0;
  z-index: 1;
}

.history-timeline .timeline-line {
  flex: 1;
  height: 2px;
  background: var(--white);
}

.history-timeline .timeline-title {
  font-size: 11px;
  line-height: 1.3;
  transition: font-size 0.3s ease;
  text-transform: uppercase;
}

.history-timeline .timeline-year {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
  margin: 2px 0;
  transition: font-size 0.3s ease;
}

.history-timeline .timeline-subtitle {
  font-size: 9px;
  font-weight: 600;
  line-height: 1.4;

  transition:
    font-size 0.3s ease,
    opacity 0.3s ease,
    max-height 0.3s ease;
}

.history-timeline .timeline-desc {
  font-size: 9px;
  line-height: 1.5;
  margin-top: 4px;

  transition:
    font-size 0.3s ease,
    opacity 0.3s ease,
    max-height 0.3s ease;
}

.history-timeline .timeline-item.active .timeline-title {
  font-size: 26px;
}

.history-timeline .timeline-item.active .timeline-year {
  font-size: 45px;
}

.history-timeline .timeline-item.active .timeline-subtitle {
  font-size: 20px;
  opacity: 1;
  max-height: 200px;
}

.history-timeline .timeline-item.active .timeline-desc {
  font-size: 20px;
  opacity: 1;
  max-height: 200px;
}
/*--------------------------------------------------------------
# Press Release
--------------------------------------------------------------*/
#H3Like {
  margin-top: 0;
}
#H3Like {
  font-size: 1.5em;
  line-height: 1.1;
  text-transform: uppercase;
}
@media only screen and (min-width: 1024px) {
  .press {
    padding-top: 10rem !important;
  }
}
/*--------------------------------------------------------------
# Build Page
--------------------------------------------------------------*/
.build-hidden {
  display: none;
}

.btn-show-more {
  cursor: pointer;
}

.build-video iframe {
  width: 100%;
}
.build-video {
  display: flex;
  justify-content: center;
}

.build-video iframe {
  width: 560px;
  max-width: 100%;
  aspect-ratio: 16/9;
  height: auto;
}
.build-thumb {
  position: relative;
  overflow: hidden;
}

.build-thumb img {
  transition: transform 0.3s ease;
  display: block;
}

.build-thumb .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.build-thumb .overlay svg {
  width: 40px;
  height: 40px;
  fill: #fff;
}

.build-thumb:hover .overlay {
  opacity: 1;
}
@media only screen and (min-width: 1024px) {
  .build {
    padding-top: 6rem !important;
  }
}
/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.card {
  border: none;
}
.card-body {
  padding: 1rem 0;
}
.news .card-body h3,
.events .card-body h3,
.fly-in h3,
.team .card-body h3 {
  font-size: 1.2em;
  text-transform: none;
}

p.cat {
  text-transform: uppercase;
  font-size: 0.8em;
  color: #939598;
  margin-bottom: 0.5rem;
}
.event .card-body,
.event .card-body p,
.news .card-body,
.news .card-body h3 {
  padding-bottom: 0;
  margin-bottom: 0;
}
.card-footer {
  padding: 0.5rem 0;
}
.card-footer .btn,
.btn.back {
  border: none;
  background: none;
  padding: 0;
  font-size: 0.8em;
}
.card-footer .btn:hover,
.card-footer .btn:active,
.card-footer .btn:hover i,
.btn.back:hover,
.btn.back:active,
.btn.back i {
  color: var(--blue);
}
.card-footer i,
.btn.back i {
  padding-left: 0.25rem;
  display: inline-block;
  transition: transform 0.3s ease;
}
.card-footer .btn:hover i {
  transform: translateX(5px);
}
.btn.back:hover i {
  transform: translateX(-5px);
}
.news-cta {
  background: linear-gradient(119deg, #cccbcb, #f3f3f3);
}
.news-cta .gform-footer {
  justify-content: center !important;
}

ul.share-more {
  list-style: none;
  display: flex;
  padding-left: 0;
}

ul.share-more a {
  margin-right: 0.5rem;
  background: var(--blue);
  width: 36px;
  height: 36px;
  border-radius: 36px;
  padding: 3px 9px;
}

ul.share-more li i {
  color: var(--white);
}

ul.share-more a:hover {
  background: var(--fblue);
}
/*--------------------------------------------------------------
# Bottom Includes
--------------------------------------------------------------*/
/* Call to Action */
#cta {
  background: url(/wp-content/uploads/2026/03/home-Contact-background_01.jpg)
    center center no-repeat;
  background-size: cover;
}
#cta {
  margin: 0;
}
#cta .btn,
#white-btn {
  border: 3px solid var(--white);
  color: var(--white);
}
#cta .btn:hover,
#cta .btn:active,
#white-btn:hover,
#white-btn:active {
  background-color: var(--white);
  color: var(--blue);
}
#cta-img .row {
  padding-top: 0 !important;
}
.single-post h1,
.single-events h1,
.single-team h1 {
  font-size: 2.8em;
  color: var(--blue);
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer.footer {
  background: var(--fblue);
  color: var(--white);
}
footer.footer a {
  color: var(--white);
  text-decoration: none;
}

.foot-nav ul {
  list-style: none;
  -webkit-padding-start: 0;
  column-count: 1;
}
.social .fab,
.social .fa-brands {
  font-size: 1.2em;
  width: 45px;
  height: 45px;
  background: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--fblue);
  margin: 0 7px;
}
.team-member .social .fa-brands {
  background: var(--blue);
  color: var(--white);
}

#siteinfo {
  font-size: 14px;
}
ul#menu-legal {
  padding-left: 0;
  list-style: none;
  display: inline;
}
ul#menu-legal li a {
  font-size: 14px !important;
  text-transform: capitalize;
}
ul#menu-legal > li {
  display: inline-block;
}
ul#menu-legal > li > a.nav-link {
  padding: 0 2px;
}
ul#menu-legal > li > a.nav-link:before {
  content: "•";
  margin-right: 7px;
}
.phone {
  margin-bottom: 0;
}
.phone a {
  font-size: 1.5em;
}
.address {
  font-size: 0.8em;
}
@media only screen and (min-width: 1200px) {
  .main-foot .row {
    align-items: flex-start;
  }
}
