/*
Theme Name: Titan
Theme URI: https://titanwms.com
Author: Ryan Miller Front-End Developer at Titan Web Marketing Solutions
Author URI: https://titanwms.com
Description: A Gutenberg-ready bootstrap 4 theme created and modified based off of the Twenty Nineteen Theme.
Requires at least: WordPress 4.9.6
Version: 3.2
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: titan
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

Titan is based on Underscores https://underscores.me/, (C) 2012-2018 Automattic, Inc and the Twenty Nineteen Theme.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Titan Utilizes Reboot from Bootstrap to provide normalizing styles.
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

#Website Colors
#Typography
#Bootstrap Margin Fix
#Media
  ## Captions
  ## Galleries
#Transition Mixin and Normalizing Styles
#Header Blocks
#Footer Blocks
#Home Hero Content Block
#Home Content Blocks
#Internal Hero Content Block
#Internal Content Blocks
#Gravity Forms
#Custom Site Style by Developer

--------------------------------------------------------------*/
/*---
Website Colors
---*/
@import url("https://fonts.googleapis.com/css2?family=Oswald&family=Poppins:ital,wght@0,400;0,600;0,700;1,600&display=swap");
.white {
  color: #ffffff;
}

.primary {
  color: #2271C4;
}

.secondary {
  color: #163044;
}

.dkgray {
  color: #58595B;
}

.primary-bg {
  background-color: #2271C4;
}

.secondary-bg {
  background-color: #163044;
}

.fourth-bg {
  background-color: #BE1E2D;
}

.fifth-bg {
  background-color: #FFDD15;
}

.sixth-bg {
  background-color: #8BC53F;
}

.seventh-bg {
  background-color: #F6921E;
}

.ltgray-bg {
  background-color: #f1f2f2;
}

/*---
Typography
---*/
/* Define Fonts for the Website */
a {
  font-size: inherit;
  color: inherit;
}

a:hover {
  text-decoration: none;
  color: #2271C4;
}

body {
  font-size: 20px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: #58595B;
}

p, .screen-reader-text, input[type=search], .tos-list, li {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
}

h1 {
  font-size: 36px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
}
h1.hero {
  font-size: 100px;
  font-weight: 600;
  text-shadow: 5px 5px 10px #000000;
}

h2 {
  font-size: 27px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
}

h3 {
  font-size: 22px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

h4 {
  font-size: 24px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  font-style: italic;
}

.sub {
  font-size: 24px;
  font-weight: 600;
  font-style: italic;
  text-transform: none;
}

nav ul li {
  font-size: inherit;
}

/*---
Bootstrap Margin Fix
---*/
.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/*---
Media
---*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

embed,
iframe,
object {
  max-width: 100%;
}

.custom-logo-link {
  display: inline-block;
}

.avatar {
  border-radius: 100%;
  display: block;
  height: calc(2.25 * 10px);
  min-height: inherit;
  width: calc(2.25 * 10px);
}

svg {
  transition: fill 120ms ease-in-out;
  fill: currentColor;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: calc(1.5 * 1rem);
}
@media only screen and (min-width: 768px) {
  .wp-caption.aligncenter {
    position: relative;
    left: calc( calc(8 * (100vw / 12) - 28px) / 2 );
    transform: translateX(-50%);
  }
}
@media only screen and (min-width: 1200px) {
  .wp-caption.aligncenter {
    left: calc( calc(6 * (100vw / 12) - 28px) / 2 );
  }
}

.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption-text {
  color: #767676;
  font-size: 12px;
  margin: 0;
  padding: 15px;
  text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin-bottom: calc(1.5 * 1rem);
}

.gallery-item {
  display: inline-block;
  margin-right: 16px;
  margin-bottom: 16px;
  text-align: center;
  vertical-align: top;
  width: 100%;
}
.gallery-columns-2 .gallery-item {
  max-width: calc((100% - 16px * 1) / 2);
}
.gallery-columns-2 .gallery-item:nth-of-type(2n+2) {
  margin-right: 0;
}
.gallery-columns-3 .gallery-item {
  max-width: calc((100% - 16px * 2) / 3);
}
.gallery-columns-3 .gallery-item:nth-of-type(3n+3) {
  margin-right: 0;
}
.gallery-columns-4 .gallery-item {
  max-width: calc((100% - 16px * 3) / 4);
}
.gallery-columns-4 .gallery-item:nth-of-type(4n+4) {
  margin-right: 0;
}
.gallery-columns-5 .gallery-item {
  max-width: calc((100% - 16px * 4) / 5);
}
.gallery-columns-5 .gallery-item:nth-of-type(5n+5) {
  margin-right: 0;
}
.gallery-columns-6 .gallery-item {
  max-width: calc((100% - 16px * 5) / 6);
}
.gallery-columns-6 .gallery-item:nth-of-type(6n+6) {
  margin-right: 0;
}
.gallery-columns-7 .gallery-item {
  max-width: calc((100% - 16px * 6) / 7);
}
.gallery-columns-7 .gallery-item:nth-of-type(7n+7) {
  margin-right: 0;
}
.gallery-columns-8 .gallery-item {
  max-width: calc((100% - 16px * 7) / 8);
}
.gallery-columns-8 .gallery-item:nth-of-type(8n+8) {
  margin-right: 0;
}
.gallery-columns-9 .gallery-item {
  max-width: calc((100% - 16px * 8) / 9);
}
.gallery-columns-9 .gallery-item:nth-of-type(9n+9) {
  margin-right: 0;
}
.gallery-item:last-of-type {
  padding-right: 0;
}

.gallery-caption {
  display: block;
  font-size: 14px;
  margin: 0;
  padding: 15px;
}

.gallery-item > div > a {
  display: block;
  line-height: 0;
  box-shadow: 0 0 0 0 transparent;
}
.gallery-item > div > a:focus {
  box-shadow: 0 0 0 2px #0073aa;
}

/*-------
Transition Mixin and Normalizing Styles
-------*/
html {
  scroll-behavior: smooth;
}

.search-submit {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  background-color: transparent;
  border-radius: 0px;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
  padding: 10px 25px;
  background-color: #2271C4;
  border: solid 3px #2271C4;
}
.search-submit:hover {
  background-color: transparent;
  color: #163044;
  border-color: #163044;
}

/*---
Header Blocks
---*/
/*--- Import Color Mixins ---*/
.white {
  color: #ffffff;
}

.primary {
  color: #2271C4;
}

.secondary {
  color: #163044;
}

.dkgray {
  color: #58595B;
}

.primary-bg {
  background-color: #2271C4;
}

.secondary-bg {
  background-color: #163044;
}

.fourth-bg {
  background-color: #BE1E2D;
}

.fifth-bg {
  background-color: #FFDD15;
}

.sixth-bg {
  background-color: #8BC53F;
}

.seventh-bg {
  background-color: #F6921E;
}

.ltgray-bg {
  background-color: #f1f2f2;
}

/*--- Collapse Header Navigation ---*/
img.custom-logo {
  width: 100%;
  max-width: 450px;
  height: auto;
  padding-top: 15px;
  padding-bottom: 15px;
  display: block;
  margin: 0 auto;
}

.brand-flex {
  display: block;
  width: 100%;
}

.custom-logo-link {
  display: block;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .custom-logo-link {
    display: inline-block;
  }

  img.custom-logo {
    display: block;
    margin: 0 auto;
  }

  .brand-flex {
    display: flex;
    flex-grow: 1;
    justify-content: center;
  }
}
/*-------
Transition Mixin
-------*/
/*--------*/
.navbar {
  background-color: #939598;
  -webkit-box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.3);
}

/*-------
Desktop
--------*/
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    border-bottom: solid 2px transparent;
    border-radius: 0px;
    margin-left: 15px;
    margin-right: 15px;
    text-transform: uppercase;
    padding: 0px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .navbar-expand-lg .navbar-nav .nav-link:hover {
    color: #58595B;
  }

  .navbar-expand-lg .navbar-nav .active .nav-link {
    color: #58595B;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 12px;
    margin-left: 10px;
    margin-right: 10px;
  }
}
.navbar-nav .dropdown-menu {
  border-radius: 0;
  border: none;
  margin-top: 0;
}

.navbar-nav .show > .nav-link {
  color: #58595B;
}

/*-------
## Mobile
-------*/
@media (max-width: 991px) {
  .navbar {
    padding: 0px;
    background-color: #ffffff;
  }

  .navbar-nav .nav-link {
    font-size: 22px;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    background-color: #2271C4;
    border-radius: 0px;
    text-transform: uppercase;
    padding: 10px 20px;
  }

  .navbar-nav .active > .nav-link, .navbar-nav .nav-link.active, .navbar-nav .nav-link.show, .navbar-nav .show > .nav-link {
    color: #ffffff;
    background-color: #000000;
  }

  .navbar-brand img {
    width: 100%;
    max-width: 160px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .dropdown-item {
    padding: 0.25rem 1.5rem;
    background-color: transparent;
    color: #ffffff;
    text-align: center;
  }

  .navbar-header {
    width: 100%;
  }

  .navbar-toggler {
    top: -90px;
    border: none;
    position: absolute;
    right: 10px;
    z-index: 64;
  }
  .navbar-toggler:focus, .navbar-toggler:hover {
    outline: none;
  }

  #titan-nav {
    position: absolute;
    z-index: 10;
    top: 0px;
    left: 0;
    transition: 0.001s;
    text-align: center;
    background-color: #2271C4;
    width: 100%;
  }

  /*---- Dropdown Toggle ----*/
  /* Icon 4 */
  #nav-icon4 {
    width: 25px;
    height: 20px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    cursor: pointer;
  }

  #nav-icon4 span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #2271C4;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }

  #nav-icon4 span:nth-child(1) {
    top: 0px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
  }

  #nav-icon4 span:nth-child(2) {
    top: 8px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
  }

  #nav-icon4 span:nth-child(3) {
    top: 16px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
  }

  #nav-icon4.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0px;
    left: 0px;
  }

  #nav-icon4.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
  }

  #nav-icon4.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 18px;
    left: 0px;
  }
}
/*--- Social Menu ---*/
@media (max-width: 992px) {
  .social-nav i.fab, .social-nav svg {
    font-size: 35px;
    color: #163044;
  }
}
@media (min-width: 992px) {
  .social-nav i.fab, .social-nav svg {
    font-size: 25px;
    color: #163044;
  }
}

/*------*/
/*---
Footer Blocks
---*/
.white {
  color: #ffffff;
}

.primary {
  color: #2271C4;
}

.secondary {
  color: #163044;
}

.dkgray {
  color: #58595B;
}

.primary-bg {
  background-color: #2271C4;
}

.secondary-bg {
  background-color: #163044;
}

.fourth-bg {
  background-color: #BE1E2D;
}

.fifth-bg {
  background-color: #FFDD15;
}

.sixth-bg {
  background-color: #8BC53F;
}

.seventh-bg {
  background-color: #F6921E;
}

.ltgray-bg {
  background-color: #f1f2f2;
}

footer {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2271C4;
}

.footer-text p, .footer-text .screen-reader-text, .footer-text input[type=search], .footer-text a {
  color: #ffffff;
  font-size: 13px;
  margin-bottom: 0px;
}

/*---
Home Hero Content Block
---*/
.home-top {
  background-image: url("/wp-content/uploads/home-top.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
}

.lp-top {
  background-image: url("/wp-content/uploads/lp-top.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  min-height: 560px;
}
.lp-top .trivianight {
  background-image: url("/wp-content/uploads/trivia-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .lp-top .trivianight {
    background-image: none;
  }
}
@media (min-width: 992px) {
  .lp-top .trivianight {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}

/*---
Home Content Blocks
---*/
.overlap {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  text-align: center;
}
.overlap img {
  min-width: 1400px;
  width: 100%;
}
.overlap.hang {
  position: absolute;
}
@media (max-width: 992px) {
  .overlap.hang {
    margin-top: -35px;
  }
}
@media (min-width: 992px) {
  .overlap.hang {
    margin-top: -33px;
  }
}
@media (min-width: 1200px) {
  .overlap.hang {
    margin-top: -35px;
  }
}
@media (min-width: 1400px) {
  .overlap.hang {
    margin-top: -35px;
  }
}
@media (max-width: 992px) {
  .overlap.hang.internal-hang {
    margin-top: -46px;
  }
}
@media (min-width: 992px) {
  .overlap.hang.internal-hang {
    margin-top: -46px;
  }
}
@media (min-width: 1200px) {
  .overlap.hang.internal-hang {
    margin-top: -52px;
  }
}
@media (min-width: 1400px) {
  .overlap.hang.internal-hang {
    margin-top: -65px;
  }
}
@media (max-width: 992px) {
  .overlap.cover {
    margin-bottom: -40px;
  }
}
@media (min-width: 992px) {
  .overlap.cover {
    margin-bottom: -40px;
  }
}
@media (min-width: 1200px) {
  .overlap.cover {
    margin-bottom: -42px;
  }
}
.lined-bg-gray {
  background-image: url("/wp-content/uploads/lined-bg-gray.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
}

.home-text-1a {
  padding-top: 5rem;
  padding-bottom: 12rem;
}
@media (max-width: 992px) {
  .home-text-1a {
    padding-bottom: 5rem;
  }
}

@media (min-width: 992px) {
  .home-what {
    margin-top: -12rem;
  }
  .home-what .primary-bg {
    border-radius: 3rem;
  }
  .home-what .home-shows {
    border-top: 1px solid #939598;
  }
  .home-what .home-shows .shows-title {
    background-color: #ffffff;
    margin-top: -1.25rem;
  }
}

.home-text-1b {
  background-image: url("/wp-content/uploads/grow-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
}

@media (min-width: 992px) {
  .map {
    margin-bottom: -10rem;
  }
}

.popupaoc-button {
  font-size: 22px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  background-color: transparent;
  border-radius: 0px;
  white-space: nowrap;
  padding: 10px 25px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
  padding: 10px 25px;
  background-color: #163044;
}
.popupaoc-button:hover {
  background-color: #2271C4;
  color: #ffffff;
}

.paoc-popup-modal-cnt {
  color: #ffffff;
  background-color: #2271C4;
  text-align: center;
  padding: 70px;
}

@media (min-width: 992px) {
  .landing-form {
    margin-top: -3rem;
    margin-bottom: -3rem;
  }
}

.line-header {
  border-bottom: 2px solid #163044;
}
.line-header .htext-block {
  margin-bottom: -1.5rem;
  background-color: #8BC53F;
}
@media (max-width: 776px) {
  .line-header .htext-block {
    margin-bottom: -2.5rem;
  }
}

/*---
Home Bottom Blocks
---*/
.home-bot {
  background-image: url("/wp-content/uploads/home-bot.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  min-height: 240px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.landing-bot {
  background-image: url("/wp-content/uploads/landing-bot.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
}

@media (min-width: 992px) {
  .border-lg-right {
    border-right: 2px solid #ffffff;
  }
}

/*---
Internal Hero Content Block
---*/
.internal-head {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  min-height: 210px;
  padding-top: 40px;
  padding-bottom: 40px;
  color: #ffffff;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#163044+0,25a9e0+100 */
  background: #163044;
  /* Old browsers */
  background: -moz-linear-gradient(top, #163044 0%, #2271c4 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #163044 0%, #2271c4 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #163044 0%, #2271c4 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#163044", endColorstr="#25a9e0",GradientType=0 );
  /* IE6-9 */
}

/*---
Internal Content Blocks
---*/
.lined-bg-white {
  background-image: url("/wp-content/uploads/lined-bg-white.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
}

.flip-card {
  background-color: transparent;
  width: 100%;
  height: 22rem;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 8px rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-card-front, .flip-card-back {
  color: #ffffff;
  padding: 1rem;
}
.flip-card-front .card-box, .flip-card-back .card-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  padding: 1rem;
  min-height: 16rem;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
.flip-card-front h3, .flip-card-back h3 {
  min-height: 3rem;
  align-items: center;
  display: flex;
  justify-content: center;
}
.flip-card-front img, .flip-card-back img {
  width: 50%;
  height: auto;
}
.flip-card-front.prime .card-box, .flip-card-back.prime .card-box {
  background-color: #2271C4;
}
.flip-card-front.prime h3, .flip-card-back.prime h3 {
  color: #2271C4;
}
.flip-card-front.second .card-box, .flip-card-back.second .card-box {
  background-color: #163044;
}
.flip-card-front.second h3, .flip-card-back.second h3 {
  color: #163044;
}

.flip-card-back {
  transform: rotateY(180deg);
}

.contact-bg {
  background-image: url("/wp-content/uploads/contact-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
}

.location-info table {
  width: 100%;
  max-width: 100%;
}
.location-info table th {
  background-color: #2271C4;
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  padding: 0.5rem;
}
.location-info table td {
  border-left: 1px solid #939598;
  border-right: 1px solid #939598;
  border-bottom: 1px solid #939598;
  padding: 0.5rem;
}
@media (max-width: 992px) {
  .location-info table th {
    font-size: 16px;
    padding: 0rem;
  }
  .location-info table td {
    font-size: 12px;
    padding: 0rem;
  }
}

/*---
Internal Bottom Blocks
---*/
/*---
Gravity Forms
---*/
.gform_wrapper {
  margin: 0px 0px 5px !important;
}

.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), .gform_wrapper textarea {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #ffffff;
  background-color: transparent;
  color: #ffffff;
}
.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::placeholder, .gform_wrapper textarea::placeholder {
  color: #ffffff;
}

.gform_wrapper .top_label .gfield_label {
  margin-top: 1rem !important;
  font-weight: 600;
}
.gform_wrapper .top_label .gfield_label .gfield_required {
  display: none;
}

body .gform_wrapper .top_label div.ginput_container {
  margin-top: 0px !important;
}

.gform_wrapper textarea {
  margin-top: 12px;
}

body .gform_wrapper ul li.gfield {
  margin-top: 7px !important;
}

.gform_wrapper .gform_footer {
  text-align: center;
  margin-top: 0px !important;
  padding-bottom: 0px !important;
}

.gform_wrapper .gform_footer input.button {
  font-size: 18px !important;
  font-weight: 500;
  text-transform: uppercase;
  background-color: transparent;
  border-radius: 0px;
  border: none;
  white-space: normal;
  margin-right: 0px !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #163044;
  color: #ffffff;
  padding: 10px 25px 8px;
}
.gform_wrapper .gform_footer input.button:hover {
  background-color: #ffffff;
  color: #163044;
}

/* Chrome Width Issue */
.gform_wrapper.gf_browser_chrome .gform_body {
  width: 100% !important;
}

@media (max-width: 640px) {
  .gform_wrapper select {
    min-height: 2.5rem !important;
    padding: 5px 4px !important;
  }
}
@media (min-width: 992px) {
  .mailing-form .gform_wrapper form {
    display: flex;
  }
  .mailing-form .gform_wrapper form .gform_footer {
    max-width: 15rem;
    padding-top: 7px;
  }
}
@media (min-width: 992px) {
  .mailing-form .gform_wrapper .gform_body ul {
    display: flex;
  }
}
.mailing-form .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), .mailing-form .gform_wrapper .gform_wrapper textarea {
  min-height: 45px;
  border-radius: 0;
  border: none;
  margin-top: 0px;
  background-color: #ffffff;
  color: #58595B;
}
.mailing-form .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::placeholder, .mailing-form .gform_wrapper .gform_wrapper textarea::placeholder {
  color: #939598;
}

.contact-bg .gform_wrapper .gform_footer input.button {
  font-size: 18px !important;
  font-weight: 500;
  text-transform: uppercase;
  background-color: transparent;
  border-radius: 0px;
  border: none;
  white-space: normal;
  margin-right: 0px !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #ffffff;
  color: #2271C4;
  padding: 10px 25px 8px;
}
.contact-bg .gform_wrapper .gform_footer input.button:hover {
  background-color: #2271C4;
  color: #ffffff;
}

/*---
Custom Site Styles by Developer
---*/
/*--- Buttons ---*/
.btn {
  font-size: 22px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  background-color: transparent;
  border-radius: 0px;
  white-space: nowrap;
  padding: 10px 25px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn.primary-btn {
  color: #ffffff;
  background-color: #2271C4;
}
.btn.primary-btn:hover {
  background-color: #ffffff;
  color: #2271C4;
}
.btn.secondary-btn {
  color: #ffffff;
  background-color: #163044;
}
.btn.secondary-btn:hover {
  background-color: #2271C4;
  color: #ffffff;
}
.btn.white-btn {
  background-color: #ffffff;
  color: #2271C4;
}
.btn.white-btn:hover {
  color: #ffffff;
  background-color: #2271C4;
}
@media (max-width: 992px) {
  .btn {
    white-space: normal;
  }
}

/*------*/

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