/*
Theme Name: Titan
Theme URI: https://titanwms.com
Author: Ryan Miller. Front End Developer, Titan Web Marketing Soltuons
Author URI: https://titanwms.com
Description: Custom Wordpress theme developed and designed to work with the latest versions of Wordpress and Bootstrap 4.
Version: 2.2.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: titan
Tags:

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.

*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Typography
# Blogs
# Links
# Accessibility
# Images
# Galleries
# Custom Helper Classes
# Footer
# Margins
# Header
	## Desktop
	## Mobile
# Buttons
# Custom Site Style by Dev
--------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css?family=Cinzel:400,700|Josefin+Sans:400,600,700");
html, body {
  overflow-x: hidden;
}

.shadow, .gform_wrapper .gform_footer input.button, .box-shadow, .btn.blue-btn-white, .btn.blue-btn, .btn.white-btn {
  -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.5);
}

.background, .thanks-bg, .apply-top, .contact-mid, .contact-top, .portal-top, .gallery-bot, .gallery-top, .floor-bot, .floor-top, .com-bot, .com-mid, .com-top, .home-bot, .home-mid, .home-top {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body {
  font-size: 10px;
  font-weight: 600;
  font-family: "Josefin Sans", sans-serif;
  color: #58595B;
}

p, .tos-list, li {
  font-size: 24px;
  font-weight: 600;
  font-family: "Josefin Sans", sans-serif;
  line-height: 1.3;
}

h1 {
  font-size: 40px;
  font-weight: 400;
  font-family: "Cinzel", serif;
}

h2 {
  font-size: 35px;
  font-weight: 400;
  font-family: "Cinzel", serif;
}

h3 {
  font-size: 30px;
  font-weight: 600;
  font-family: "Josefin Sans", sans-serif;
  line-height: 1.3;
}

h4 {
  font-size: 30px;
  font-weight: 400;
  font-family: "Cinzel", serif;
}

nav ul li {
  font-size: inherit;
}

@media (max-width: 767px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3, h4 {
    font-size: 22px;
  }

  p, .tos-list, li {
    font-size: 16px;
  }
}
/*--------------------------------------------------------------
# Blogs
--------------------------------------------------------------*/
.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 0px;
}

/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color: inherit;
  word-break: break-word;
}

a:hover,
a:focus,
a:active {
  color: inherit;
}

a:focus, :focus {
  outline: none !important;
}

a:hover,
a:active {
  outline: 0;
}

a:hover {
  text-decoration: none;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Images
--------------------------------------------------------------*/
img.attachment-thumbnail, img.attachment-medium, img.attachment-large, img.attachment-full {
  height: auto;
  /* Make sure images are scaled correctly. */
  width: auto;
  /* Adhere to container width. */
  max-width: 100%;
}

img.alignright {
  float: right;
  margin: 0 0 1.5rem 1.5rem;
}

img.alignleft {
  float: left;
  margin: 0 1.5rem 1.5rem 0;
}

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

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

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

/*--------------------------------------------------------------
# Galleries
--------------------------------------------------------------*/
.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  margin: 0 0 1.5em;
  padding: 0 0.5rem 0 0.5rem;
  width: 50%;
}

.gallery-columns-1 .gallery-item {
  width: 100%;
}

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

.gallery-item a,
.gallery-item a:hover,
.gallery-item a:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: none;
  display: inline-block;
}

.gallery-item a img {
  display: block;
  -webkit-transition: -webkit-filter 0.2s ease-in;
  transition: -webkit-filter 0.2s ease-in;
  transition: filter 0.2s ease-in;
  transition: filter 0.2s ease-in, -webkit-filter 0.2s ease-in;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  margin-left: auto;
  margin-right: auto;
}

.gallery-item a:hover img,
.gallery-item a:focus img {
  -webkit-filter: opacity(60%);
  filter: opacity(60%);
}

.gallery-caption {
  display: block;
  text-align: left;
  padding: 0 10px 0 0;
  margin-bottom: 0;
}

/* Gallery Columns */
.gallery-item {
  max-width: 25%;
}

.gallery-columns-1 .gallery-item {
  max-width: 100%;
}

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

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

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

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

@media (min-width: 768px) and (max-width: 991px) {
  .gallery-columns-4 .gallery-item {
    max-width: 33%;
  }

  .gallery-columns-5 .gallery-item {
    max-width: 33%;
  }

  .gallery-columns-6 .gallery-item {
    max-width: 33%;
  }
}
@media (max-width: 767px) {
  .gallery-columns-3 .gallery-item {
    max-width: 50%;
  }

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

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

  .gallery-columns-6 .gallery-item {
    max-width: 50%;
  }
}
/*--------------------------------------------------------------
# Custom Helper Classes
--------------------------------------------------------------*/
.white {
  color: #ffffff;
}

.blue {
  color: #162B67;
}

.dkblue {
  color: #06112B;
}

.bluegray {
  color: #98ACB7;
}

.blue-bg {
  background-color: #162B67;
}

.blue-bg-tp, .mid-blue-com::before {
  background-color: rgba(22, 43, 103, 0.8);
}

.dkblue-bg {
  background-color: #06112B;
}

.bluegray-bg {
  background-color: #98ACB7;
}

.black-bg {
  background-color: #000000;
}

.nopad {
  padding-left: 0px;
  padding-right: 0px;
}

.no-overflow {
  overflow: hidden;
}

/*--------------------------------------------------------------
## Footer
--------------------------------------------------------------*/
footer {
  background-color: #000000;
}

footer .fa-color:hover, footer .head-phone:hover {
  color: #98ACB7;
}

.footer-text {
  font-size: 14px !important;
}

/*--------------------------------------------------------------
## Margins
--------------------------------------------------------------*/
.row {
  margin-left: 0;
  margin-right: 0;
}

/*--------------------------------------------------------------
## Header
--------------------------------------------------------------*/
.btn.head-btn {
  background-color: transparent;
  font-size: 16px;
  text-transform: uppercase;
  color: #ffffff;
  border: solid 2px #ffffff;
  padding: 6px 25px 2px;
  border-radius: 0;
  display: inline-block;
  margin-bottom: 10px;
}

.btn.head-btn:hover {
  background-color: #ffffff;
  color: #162B67;
}

.fa-color {
  color: white;
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
  margin-top: 10px;
  -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;
}

.head-phone {
  font-size: 21px;
  color: #ffffff;
  -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;
  display: inline-block;
  margin-left: 10px;
  margin-right: 20px;
}

.head-phone:hover {
  color: #000000;
}

/*-------
Desktop
--------*/
.navbar {
  background-color: #162B67;
  border-bottom: solid 8px #000000;
}

.black-nav {
  position: relative;
  z-index: 10;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .navbar-brand img {
    width: 100%;
    max-width: 160px;
  }

  .navbar-nav .nav-link {
    color: #ffffff;
    -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;
    border-top: solid 4px #000000;
    border-radius: 0px;
  }

  .navbar-nav .active > .nav-link, .navbar-nav .nav-link.active, .navbar-nav .nav-link.show, .navbar-nav .show > .nav-link {
    color: #ffffff;
    border-top: solid 4px #ffffff;
  }

  .navbar-nav .nav-link:focus, .navbar-nav .nav-link:hover {
    border-top: solid 4px #ffffff;
  }

  .dropdown-item {
    padding: 0.25rem 0.45rem;
    background-color: transparent;
    color: #162B67;
  }

  .dropdown-item.active, .dropdown-item:active {
    color: #162B67;
    background-color: #ffffff;
  }

  .black-nav::before {
    width: 100%;
    background-color: #000000;
    display: block;
    position: absolute;
    content: "";
    right: -400px;
    height: 39px;
    z-index: -1;
  }

  .fa-color:first-of-type {
    margin-left: 0;
  }

  .fa-color:hover {
    color: #000000;
  }

  .img-logo {
    margin-top: 10px;
  }
}
.navbar-nav .dropdown-menu {
  border-radius: 0;
  margin-top: 8px;
  border: solid 3px #162B67;
  border-top: none;
}

.navbar-nav .show > .nav-link {
  color: #162B67 !important;
  background-color: #ffffff;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 13px;
    padding-left: 5px;
    padding-right: 5px;
  }
}
/*-------
## Mobile
-------*/
@media (max-width: 991px) {
  .navbar {
    padding-bottom: 30px;
  }

  .img-logo {
    margin-top: 20px;
  }

  .navbar-nav .nav-link {
    color: #ffffff;
    text-align: center;
    border-bottom: solid 1px #ffffff;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    padding-top: 10px !important;
    padding-bottom: 6px !important;
  }

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

  .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-brand {
    display: block;
    text-align: center;
  }

  .navbar-header {
    width: 100%;
  }

  .nav-phone {
    color: #162B67;
    font-size: 18px;
    padding-right: 15px;
    font-weight: 700;
    -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-toggler {
    float: right;
  }

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

  /*---- Dropdown Toggle ----*/
  .navbar-toggler {
    border: none;
  }

  .navbar-toggler:focus, .navbar-toggler:hover {
    outline: none;
  }

  /* Icon 4 */
  #nav-icon4 {
    width: 25px;
    height: 16px;
    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;
    z-index: 64;
  }

  #nav-icon4 span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #ffffff;
    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;
    width: 17.5px;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    -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;
    width: 17.5px;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    -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: 8px;
  }

  #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: 12.5px;
    left: 8px;
  }
}
/*--------------------------------------------------------------
## Buttons
--------------------------------------------------------------*/
.btn {
  -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;
  font-weight: 600;
  white-space: normal;
}

.btn.white-btn {
  background-color: #ffffff;
  color: #162B67;
  font-size: 25px;
  border-radius: 3px;
  border: solid 2px #ffffff;
}

.btn.white-btn:hover {
  background-color: transparent;
  color: #ffffff;
}

.btn.blue-btn {
  color: #ffffff;
  background-color: #162B67;
  font-size: 25px;
  border-radius: 3px;
  border: solid 2px #162B67;
  padding: 6px 15px 2px;
}

.btn.blue-btn:hover {
  background-color: transparent;
  color: #162B67;
}

.btn.blue-btn-white {
  color: #ffffff;
  background-color: #162B67;
  font-size: 25px;
  border-radius: 3px;
  border: solid 2px #162B67;
  padding: 6px 25px 2px;
}

.btn.blue-btn-white:hover {
  background-color: white;
  color: #162B67;
}

@media (max-width: 767px) {
  .btn {
    font-size: 23px !important;
  }
}
/*--------------------------------------------------------------
## Custom Site Styles by Developer
--------------------------------------------------------------*/
.box-shadow {
  position: relative;
  z-index: 64;
}

.blue-line {
  display: block;
  width: 100%;
  max-width: 160px;
  margin-left: auto;
  margin-right: auto;
  height: 1.5px;
  background-color: #162B67;
}

.white-line {
  display: block;
  width: 100%;
  max-width: 160px;
  height: 2px;
  background-color: #ffffff;
}

/*--- Home Page ---*/
.home-top {
  background-image: url(/wp-content/uploads/village-at-elam-hero.webp);
  min-height: 525px;
}

h1.hero {
  font-size: 44px;
  font-weight: 400;
}

.home-mid {
  background-image: url(/wp-content/uploads/home-mid.jpg);
}

.strong-view.bold .testimonial-client {
  font-size: 25px !important;
  font-weight: 700;
  color: #162B67;
}

.home-bot {
  background-image: url(/wp-content/uploads/home-bot.jpg);
  min-height: 465px;
}

.hp-arrow {
  position: absolute;
  bottom: -125px;
  max-width: 38px;
}

@media (max-width: 767px) {
  h1.hero {
    font-size: 32px;
  }

  .home-top {
    min-height: inherit;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .hp-arrow {
    bottom: -20px;
    max-width: 24px;
  }
}
/*------*/
/*--- Community Page ---*/
.com-top {
  background-image: url(/wp-content/uploads/com-top.jpg);
  min-height: 200px;
}

.com-mid {
  background-image: url(/wp-content/uploads/com-mid.jpg);
  overflow-y: hidden;
  overflow-x: hidden;
}

.mid-blue-com::before {
  width: 100%;
  display: block;
  position: absolute;
  content: "";
  right: -647px;
  height: 630px;
  z-index: 0;
  top: 0;
}

.com-img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 112px;
  padding: 5px;
  flex-direction: column;
}

.com-bot {
  background-image: url(/wp-content/uploads/com-bot.jpg);
  min-height: 368px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .mid-blue-com::before {
    right: -620px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .mid-blue-com::before {
    right: -518px;
  }
}
@media (max-width: 767px) {
  .mid-blue-com {
    background-color: transparent;
  }

  .com-mid-tp-bg {
    width: 100%;
    background-color: rgba(22, 43, 103, 0.8);
  }

  .white-line.com {
    max-width: inherit;
  }
}
/*------*/
/*--- Floor Plans Page ---*/
.floor-top {
  background-image: url(/wp-content/uploads/floor-top.jpg);
  min-height: 200px;
}

.bot-bord {
  border-bottom: solid 2px #BBBDBE;
}

.floor-down {
  position: relative;
  bottom: -20px;
}

.floor-name {
  background-color: #162B67;
  text-align: center;
  padding: 5px 10px 1px;
}

.floor-name h2 {
  margin-bottom: 0;
}

.floor-bot {
  background-image: url(/wp-content/uploads/floor-bot.jpg);
  min-height: 465px;
}

/*------*/
/*--- Gallery Page ---*/
.gallery-top {
  background-image: url(/wp-content/uploads/gallery-top.jpg);
  min-height: 200px;
}

.gallery-bot {
  background-image: url(/wp-content/uploads/gallery-bot.jpg);
  min-height: 465px;
}

/*------*/
/*--- Portal Page ---*/
.portal-top {
  background-image: url(/wp-content/uploads/portal-top.jpg);
  min-height: 200px;
}

/*------*/
/*--- Contact Page ---*/
.contact-top {
  background-image: url(/wp-content/uploads/contact-top.jpg);
  min-height: 200px;
}

.contact-mid {
  background-image: url(/wp-content/uploads/contact-mid.jpg);
}

.bot-bord-cont {
  border-bottom: solid 6px #162B67;
}

/*--- Apply Now Page ---*/
.apply-top {
  background-image: url(/wp-content/uploads/apply-top.jpg);
  padding-top: 80px;
  min-height: 500px;
}

.apply-up {
  position: relative;
  top: -20px;
}

h1.an {
  color: #ffffff;
}

@media (max-width: 767px) {
  .apply-top {
    background-image: url(/wp-content/uploads/apply-mob.jpg);
    min-height: none;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  h1.an {
    color: #162B67;
  }
}
/*------*/
/*--- Thank You Page ---*/
.thanks-bg {
  background-image: url(/wp-content/uploads/thanks-bg.jpg);
  min-height: 425px;
}

/*------*/
/*--------------------------------------------------------------
## Custom Gravity Forms Styles by Developer
--------------------------------------------------------------*/
.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  border-radius: 0;
}

.gform_wrapper label.gfield_label {
  font-size: 30px !important;
  font-weight: 600;
  margin-bottom: 0px !important;
}

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

.gform_wrapper .gfield_required {
  color: #58595B !important;
}

.gform_wrapper input, .gform_wrapper textarea, .gform_wrapper select {
  border: solid 2px #BBBDBE;
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.gform_wrapper select {
  font-size: 30px !important;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  background-color: #ffffff;
  max-height: 45px !important;
}

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

.gform_wrapper .gform_footer input.button {
  color: #ffffff;
  background-color: #162B67;
  font-size: 25px !important;
  border-radius: 3px;
  border: solid 2px #162B67;
  padding: 6px 25px 2px !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;
}

.gform_wrapper .gform_footer input.button:hover {
  background-color: transparent;
  color: #162B67;
}

@media (min-width: 1200px) {
  #field_1_5 label {
    width: 85%;
  }
}
/* Chrome Width Issue */
.gform_wrapper.gf_browser_chrome .gform_body {
  width: 100% !important;
}

/* Validation Error Messages */
.gform_wrapper li.gfield.gfield_error, .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
  background-color: transparent !important;
  border: 0px !important;
}

.gform_wrapper .gfield_error .gfield_label, .gform_wrapper .validation_message {
  color: #E20D15 !important;
}

.gform_wrapper div.validation_error {
  color: #E20D15 !important;
  font-size: 1em;
  font-weight: 700;
  margin-bottom: 25px;
  border-top: 2px solid #E20D15 !important;
  border-bottom: 2px solid #E20D15 !important;
}

.gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half) {
  max-width: 100% !important;
  width: 100% !important;
}

.gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half) {
  max-width: 100% !important;
}

.gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container, .gform_wrapper li.gfield.gfield_error.gfield_contains_required label.gfield_label {
  margin-top: 0px !important;
}

.gform_wrapper li.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), .gform_wrapper li.gfield_error textarea {
  border: 1px solid #E20D15 !important;
}

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