/*
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
---*/
.white {
  color: #ffffff;
}

.primary {
  color: #1C4077;
}

.secondary {
  color: #5090CC;
}

.dkgray {
  color: #67696b;
}

.primarybg,
.primary-bg {
  background-color: #1C4077;
}

.secondary-bg,
.secondary-bg {
  background-color: #5090CC;
}

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

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

a:hover {
  text-decoration: none;
  color: #1C4077;
}

body {
  font-size: 10px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: #67696b;
}

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

h1 {
  font-size: 50px;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
}

h2 {
  font-size: 30px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  color: #1C4077;
}

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

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

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

nav ul li {
  font-size: inherit;
}

.uppercase {
  text-transform: uppercase;
}

.bold {
  font-weight: 700;
}

.italic {
  font-style: italic;
}

/*---
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: #1C4077;
  border: solid 3px #1C4077;
}
.search-submit:hover {
  background-color: transparent;
  color: #5090CC;
  border-color: #5090CC;
}

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

.primary {
  color: #1C4077;
}

.secondary {
  color: #5090CC;
}

.dkgray {
  color: #67696b;
}

.primarybg,
.primary-bg {
  background-color: #1C4077;
}

.secondary-bg,
.secondary-bg {
  background-color: #5090CC;
}

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

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

@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 {
  z-index: 10;
  padding: 0;
  -webkit-box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.3);
}

/*-------
Desktop
--------*/
@media (min-width: 992px) {
  .mob-full-width {
    position: relative;
  }
  .mob-full-width .header-menu-primary {
    position: absolute;
    top: 60px;
    right: 0px;
    max-width: 825px;
  }

  .header-phone {
    font-size: 24px;
    font-weight: 600;
    color: #1C4077;
    padding: 6px 30px;
  }
  .header-phone:hover {
    color: #5090CC;
  }

  .social-nav {
    padding-top: 22px;
  }

  .nav-fill .nav-item {
    padding: 0 0 20px;
  }
  .nav-fill .nav-item:last-child {
    border-right: 0;
  }
  .nav-fill .nav-item:last-child .nav-link {
    border-right: none;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.4rem;
    padding-left: 0.4rem;
  }

  .navbar-nav .nav-link {
    font-size: 13px;
    font-weight: 400;
    color: #67696b;
    text-transform: uppercase;
    font-family: "Oswald", sans-serif;
    padding-right: 4px;
    padding-left: 4px;
    border-right: 0.08rem solid #67696b;
    border-radius: 0;
    padding: 0 7px;
  }

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

  #magic-line {
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 90px;
    height: 4px;
    background: #5090CC;
    text-decoration: none !important;
    overflow: hidden;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav .nav-link {
    font-size: 13px;
    padding: 0px 0.4rem 0 !important;
    margin-top: 12px;
  }

  #magic-line {
    bottom: 0px;
  }
}
.navbar-nav .dropdown-menu {
  border-radius: 0;
  border: none;
  margin-top: 0;
}

.navbar-nav .show > .nav-link {
  color: #67696b;
}

.phone-only {
  display: none;
}

/*-------
## Mobile
-------*/
@media (max-width: 991px) {
  .container.mob-full-width {
    width: 100%;
    max-width: 100%;
  }

  .tablet-up {
    display: none;
  }

  .phone-only {
    display: block;
  }

  .mobile-phone-link {
    text-align: center;
  }
  .mobile-phone-link .header-phone {
    font-size: 24px;
    font-weight: 600;
    color: #1C4077;
    padding: 7px 30px;
  }
  .mobile-phone-link .header-phone:hover {
    color: #5090CC;
  }

  #magic-line {
    display: none;
  }

  .navbar-nav .nav-link {
    font-size: 19px;
    font-weight: 400;
    font-family: "Oswald", sans-serif;
    padding: 12px 30px;
    color: #67696b;
    text-align: left;
    border-bottom: solid 1px #bbbdbe;
    border-radius: 0px;
    text-transform: uppercase;
  }
  .navbar-nav .nav-link:hover {
    color: #ffffff !important;
    background-color: #31ADC4;
  }

  .navbar-nav .active > .nav-link,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show,
.navbar-nav .show > .nav-link {
    color: #ffffff !important;
    background-color: #31ADC4;
  }

  .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: #1C4077;
    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 {
    margin-top: 15px;
    border: none;
    position: absolute;
    right: 15px;
    z-index: 64;
  }
  .navbar-toggler:focus, .navbar-toggler:hover {
    outline: none;
  }

  .navbar-nav {
    padding-bottom: 60px;
  }

  #titan-nav {
    position: absolute;
    z-index: 10;
    top: -232px;
    padding-top: 60px;
    left: 0;
    transition: 0.001s;
    text-align: center;
    background-color: #ffffff;
    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: #5090CC;
    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 ---*/
.social-nav {
  display: flex;
  justify-content: flex-end;
}

.social-menu li {
  display: inline-block;
}
.social-menu li a {
  color: #5090CC;
  padding: 5px 10px;
  line-height: 0.1;
  -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;
}
.social-menu li a:hover {
  color: #1C4077;
}

.screen-reader-text {
  display: none;
}

.social-btns {
  background-color: #5090CC;
  color: #ffffff;
  font-size: 19px;
  font-weight: 900;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  padding: 5px 15px;
  margin: 0 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;
}
.social-btns:hover {
  background-color: #1C4077;
  color: #ffffff;
  text-decoration: none;
}

@media (min-width: 992px) {
  .social-menu-mob {
    display: none;
  }
}
@media (max-width: 991px) {
  .social-nav {
    justify-content: center;
    padding-bottom: 15px;
  }

  .social-menu {
    display: none;
  }

  .social-menu-mob li {
    display: inline-block;
  }
  .social-menu-mob li a {
    color: #5090CC;
    padding: 5px 5px;
    line-height: 0.1;
  }

  .social-btns {
    border-radius: 0px;
    font-size: 15px;
  }
}
/*------*/
/*---
Footer Blocks
---*/
.white {
  color: #ffffff;
}

.primary {
  color: #1C4077;
}

.secondary {
  color: #5090CC;
}

.dkgray {
  color: #67696b;
}

.primarybg,
.primary-bg {
  background-color: #1C4077;
}

.secondary-bg,
.secondary-bg {
  background-color: #5090CC;
}

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

footer {
  background-color: #ededee;
}

.navbar-nav.footer {
  margin-right: 15px;
}

.navbar-nav.footer .nav-link {
  padding: 0px 20px;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
}
.navbar-nav.footer .nav-link:hover {
  color: #5090CC;
}

footer {
  padding-top: 15px;
  padding-bottom: 15px;
}

.foot-logo {
  margin-top: 8px;
  max-width: 80px;
}

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

.footer-navigations-row .nav-pills .nav-item {
  padding: 0 0 20px;
  padding: 0;
  text-align: left;
}
.footer-navigations-row .nav-pills .nav-link {
  border-radius: 0.25rem;
  font-size: 14px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  color: #67696b;
  padding: 0;
  text-align: left;
  display: block;
  border: solid 1px transparent;
  text-transform: uppercase;
}
.footer-navigations-row .nav-pills .nav-link:hover {
  color: #31ADC4;
}

.footer-button-right {
  text-align: right;
  padding-top: 7px;
  padding-bottom: 10px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav.footer .nav-link {
    padding: 0px 10px;
    font-size: 13px;
  }

  .footer-text p, .footer-text .screen-reader-text, .footer-text input[type=search], .footer-text a {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .footer-button-right {
    text-align: left;
  }

  .footer-navigations-row .nav-pills .nav-item {
    display: block;
    width: 100%;
    margin: 0 0;
  }

  .footer-menu {
    margin-bottom: 0;
  }

  .footer-navigations-row .nav-pills .nav-link {
    padding: 0 0 15px;
  }

  .footer-text {
    padding-top: 10px;
  }
}
/*---
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;
}

/*---
Home Bottom Blocks
---*/
.home-hero {
  background-image: url("/wp-content/themes/titan/images/home-hero.jpg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
.home-hero p, .home-hero .screen-reader-text, .home-hero input[type=search] {
  font-size: 25px;
  padding-top: 5px;
  text-transform: uppercase;
}
.home-hero img.img-fluid {
  max-width: 40px;
  margin-top: 25px;
  margin-bottom: 10px;
}
.home-hero h1 {
  text-transform: uppercase;
}
.home-hero h1 span.light-weight {
  font-weight: 300;
}
.home-hero h1 span.medium-weight {
  font-weight: 500;
}

.home-row2 {
  background: #1C4077;
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

img.triangle-icon {
  position: absolute;
  bottom: -22px;
  max-width: 70px;
  right: 0;
  left: 0;
  margin: 0 auto;
  z-index: 1;
}

.home-row3 {
  background-image: url("/wp-content/themes/titan/images/home-r2-bg.jpg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 85px;
  padding-bottom: 260px;
}
.home-row3 img {
  max-width: 128px;
}
.home-row3 h3 {
  color: #1C4077;
  padding: 10px 0 9px;
  text-transform: uppercase;
}
.home-row3 p, .home-row3 .screen-reader-text, .home-row3 input[type=search] {
  margin-bottom: 60px;
}

.home-row4 {
  background-image: url("/wp-content/themes/titan/images/home-r3-bg.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 220px;
  padding-bottom: 80px;
  position: relative;
  min-height: 550px;
  margin-top: -50px;
}
.home-row4 img {
  position: absolute;
  top: -370px;
  right: 0;
  left: 0;
  margin: 0 auto 0;
  max-width: 300px;
}
.home-row4 h4 {
  font-style: italic;
  font-weight: 500;
}

.home-row5 h2 {
  margin-top: 35px;
  padding-bottom: 10px;
}
.home-row5 h4 {
  padding-bottom: 10px;
}

.home-row6 {
  background-image: url("/wp-content/themes/titan/images/home-r4-bg.jpg");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 70px;
  padding-bottom: 70px;
  position: relative;
}
.home-row6 h2 {
  padding-bottom: 10px;
}
.home-row6.about-footer-contact {
  background-image: url("/wp-content/themes/titan/images/our-story-r4-bg.jpg");
  padding-top: 90px;
  padding-bottom: 80px;
}
.home-row6.desing-footer-contact {
  padding-top: 90px;
  padding-bottom: 80px;
  background-image: none;
  background-color: #1C4077;
}
.home-row6.residential-footer {
  background-image: url("/wp-content/themes/titan/images/residential-r4-bg.jpg");
}
.home-row6.outdoor-footer {
  background-image: url("/wp-content/themes/titan/images/outdoor-living-r4-bg.jpg");
}
.home-row6.outdoor-footer .btn.secondary-btn {
  margin-right: 10px;
  margin-left: 5px;
}
.home-row6.property-brothers-bg {
  background-image: url("/wp-content/themes/titan/images/property-brothers-bg.jpg");
}

.contact-row2 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.contact-row3 {
  background: #ededee;
  padding-top: 70px;
  padding-bottom: 70px;
  position: relative;
}
.contact-row3 .triangle-icon-white {
  top: -70px;
}

.contact-form-wrap .gform_wrapper .top_label .gfield_label {
  display: none;
}
.contact-form-wrap #field_1_6 label {
  display: none !important;
}
.contact-form-wrap input {
  border-bottom: solid 1px #67696b !important;
  width: 97% !important;
  background: transparent;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 400;
  min-height: 46px;
}
.contact-form-wrap input::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #1C4077;
}
.contact-form-wrap input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #1C4077;
  opacity: 1;
}
.contact-form-wrap input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #1C4077;
  opacity: 1;
}
.contact-form-wrap input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #1C4077;
}
.contact-form-wrap select#input_1_5 {
  background: transparent;
  border: none;
  border-bottom: solid 1px #67696b;
  padding: 0 0px 0;
  height: 46px;
  font-size: 18px;
  font-weight: 400;
  color: #1C4077;
}
.contact-form-wrap .ginput_container_select {
  padding-right: 12px !important;
}
.contact-form-wrap select#input_1_6_4 {
  background: transparent;
  border: none;
  border-bottom: solid 1px #67696b;
  padding: 0 0px 0;
  height: 46px;
  font-size: 18px;
  font-weight: 400;
  color: #1C4077;
}
.contact-form-wrap textarea {
  background: transparent;
  border-bottom: solid 1px #67696b !important;
  height: 120px !important;
  color: #1C4077;
  font-size: 18px;
  font-weight: 400;
}
.contact-form-wrap textarea::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #1C4077;
}
.contact-form-wrap textarea:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #1C4077;
  opacity: 1;
}
.contact-form-wrap textarea::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #1C4077;
  opacity: 1;
}
.contact-form-wrap textarea:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #1C4077;
}
.contact-form-wrap input#input_1_6_2,
.contact-form-wrap input#input_1_6_1,
.contact-form-wrap input#input_1_4,
.contact-form-wrap input#input_1_2 {
  width: 100% !important;
}
.contact-form-wrap input#gform_submit_button_1 {
  max-width: 120px;
  background: #5090CC;
  border: 0 !important;
  margin-top: 30px;
}
.contact-form-wrap input#gform_submit_button_1:hover {
  background: #1C4077;
  color: #ffffff;
  border: 0 !important;
}

.contact-row4 h5 {
  font-style: normal;
}
.contact-row4 h5 span {
  font-size: 20px;
  font-weight: 500;
  color: #67696b;
  font-style: italic;
}

.triangle-icon-white {
  position: absolute;
  top: -10px;
  max-width: 90px;
  right: 0;
  left: 0;
  margin: 0 auto;
  z-index: 1;
}

.footer-button-right .primary-btn {
  font-size: 14px;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
}

.footer-guide-box {
  position: relative;
}
.footer-guide-box .footer-wrap-rsu-guide img.about-icon.about-icon-1 {
  max-width: 68px;
  padding-bottom: 13px;
}
.footer-guide-box .footer-wrap-rsu-guide h3 {
  font-size: 16px;
  text-transform: uppercase;
}

/*---
Internal Hero Content Block
---*/
.internal-hero {
  background-image: url("/wp-content/themes/titan/images/internal-hero-bg.jpg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
}
.internal-hero h1 {
  font-size: 36px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
}
.internal-hero h4 {
  color: #ffffff;
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
}

.about-row2 {
  background: #ededee;
}

.about-row3 {
  padding-top: 70px;
  padding-bottom: 10px;
}
.about-row3 img {
  max-width: 128px;
}
.about-row3 h3 {
  color: #1C4077;
  padding: 10px 0 9px;
  text-transform: uppercase;
}
.about-row3 p, .about-row3 .screen-reader-text, .about-row3 input[type=search] {
  margin-bottom: 60px;
}

img.about-icon.about-icon-1 {
  max-width: 118px;
  padding-bottom: 13px;
}

img.about-icon-2 {
  max-width: 127px;
  padding-bottom: 18px;
}

img.about-icon.about-icon-3 {
  max-width: 90px;
  padding-bottom: 30px;
  padding-top: 24px;
}

img.about-icon.about-icon-4 {
  max-width: 78px;
  padding-bottom: 26px;
}

img.about-icon.about-icon-5 {
  max-width: 125px;
  padding-top: 17px;
  padding-bottom: 41px;
}

img.about-icon.about-icon-6 {
  max-width: 72px;
  padding-top: 0;
  padding-bottom: 32px;
}

img.about-icon.about-icon-7 {
  max-width: 98px;
  padding-top: 0;
  padding-bottom: 25px;
}

img.about-icon.about-icon-8 {
  max-width: 78px;
  padding-top: 0;
  padding-bottom: 22px;
}

img.about-icon.about-icon-9 {
  max-width: 90px;
  padding-top: 0;
  padding-bottom: 10px;
}

img.about-icon.about-icon-10 {
  max-width: 124px;
  padding-top: 0;
  padding-bottom: 19px;
}

.design-row2 {
  background: #ededee;
  padding-top: 60px;
  padding-bottom: 70px;
}

.design-row3 {
  padding-top: 60px;
  padding-bottom: 70px;
}

.design-single-box img {
  box-shadow: 0px -1px 16px 4px #c3c3c3d1;
}
.design-single-box .btn.primary-btn {
  width: 100%;
  pointer-events: none;
}
.design-single-box p, .design-single-box .screen-reader-text, .design-single-box input[type=search] {
  padding: 46px 0 0;
}

.gallery-styles .bwg-item {
  position: relative;
}
.gallery-styles .bwg-item::before {
  position: absolute;
  bottom: 4px;
  left: 0;
  color: white !important;
  width: 80px;
  height: 29px;
  z-index: 999999;
  background: #5090cc;
  font-size: 18px;
  padding: 0 0;
}
.gallery-styles a.bwg-a.prev-page-6,
.gallery-styles a.bwg-a.prev-page-5,
.gallery-styles a.bwg-a.prev-page-4,
.gallery-styles a.bwg-a.prev-page-2,
.gallery-styles a.bwg-a.prev-page-3,
.gallery-styles a.bwg-a.prev-page-1,
.gallery-styles .bwg_container .prev-page,
.gallery-styles .bwg_container .prev-page-0 {
  position: absolute;
  left: -35px;
  top: 30%;
  font-size: 50px !important;
  font-family: "Montserrat", "Open Sans", sans-serif !important;
  color: #67696b !important;
  border: none !important;
  background-color: transparent !important;
}
.gallery-styles a.bwg-a.next-page-6,
.gallery-styles a.bwg-a.next-page-5,
.gallery-styles a.bwg-a.next-page-4,
.gallery-styles a.bwg-a.next-page-2,
.gallery-styles a.bwg-a.next-page-3,
.gallery-styles a.bwg-a.next-page-1,
.gallery-styles .bwg_container .next-page,
.gallery-styles .bwg_container .next-page-0 {
  position: absolute;
  right: -35px;
  top: 30%;
  font-size: 50px !important;
  font-family: "Montserrat", "Open Sans", sans-serif !important;
  color: #67696b !important;
  border: none !important;
  background-color: transparent !important;
}
.gallery-styles #bwg_container1_2 #bwg_container3_2 .bwg-item,
.gallery-styles #bwg_container1_3 #bwg_container2_3 .bwg-item,
.gallery-styles #bwg_container1_1 #bwg_container2_1 .bwg-item,
.gallery-styles #bwg_container1_0 #bwg_container2_0 .bwg-item {
  padding: 10px;
}
.gallery-styles #bwg_container1_6 #bwg_container2_6 .tablenav-pages_6 a.bwg-a.first-page-6,
.gallery-styles #bwg_container1_6 #bwg_container2_6 .tablenav-pages_6 a.bwg-a.last-page-6,
.gallery-styles #bwg_container1_6 #bwg_container2_6 .tablenav-pages_6 a.bwg-a.first-page-5,
.gallery-styles #bwg_container1_6 #bwg_container2_6 .tablenav-pages_6 a.bwg-a.last-page-5,
.gallery-styles #bwg_container1_6 #bwg_container2_6 .tablenav-pages_6 a.bwg-a.first-page-4,
.gallery-styles #bwg_container1_6 #bwg_container2_6 .tablenav-pages_6 a.bwg-a.last-page-4,
.gallery-styles #bwg_container1_6 #bwg_container2_6 .tablenav-pages_6 a.bwg-a.first-page-3,
.gallery-styles #bwg_container1_6 #bwg_container2_6 .tablenav-pages_6 a.bwg-a.last-page-3,
.gallery-styles #bwg_container1_6 #bwg_container2_6 .tablenav-pages_6 a.bwg-a.first-page-2,
.gallery-styles #bwg_container1_6 #bwg_container2_6 .tablenav-pages_6 a.bwg-a.last-page-2,
.gallery-styles #bwg_container1_6 #bwg_container2_6 .tablenav-pages_6 a.bwg-a.first-page-1,
.gallery-styles #bwg_container1_6 #bwg_container2_6 .tablenav-pages_6 a.bwg-a.last-page-1,
.gallery-styles #bwg_container1_6 #bwg_container2_6 .tablenav-pages_6 a.bwg-a.last-page.disabled,
.gallery-styles #bwg_container1_6 #bwg_container2_6 .tablenav-pages_6 a.bwg-a.first-page-0,
.gallery-styles #bwg_container1_6 #bwg_container2_6 .tablenav-pages_6 a.bwg-a.first-page.disabled,
.gallery-styles #bwg_container1_5 #bwg_container2_5 .tablenav-pages_5 a.bwg-a.first-page-6,
.gallery-styles #bwg_container1_5 #bwg_container2_5 .tablenav-pages_5 a.bwg-a.last-page-6,
.gallery-styles #bwg_container1_5 #bwg_container2_5 .tablenav-pages_5 a.bwg-a.first-page-5,
.gallery-styles #bwg_container1_5 #bwg_container2_5 .tablenav-pages_5 a.bwg-a.last-page-5,
.gallery-styles #bwg_container1_5 #bwg_container2_5 .tablenav-pages_5 a.bwg-a.first-page-4,
.gallery-styles #bwg_container1_5 #bwg_container2_5 .tablenav-pages_5 a.bwg-a.last-page-4,
.gallery-styles #bwg_container1_5 #bwg_container2_5 .tablenav-pages_5 a.bwg-a.first-page-3,
.gallery-styles #bwg_container1_5 #bwg_container2_5 .tablenav-pages_5 a.bwg-a.last-page-3,
.gallery-styles #bwg_container1_5 #bwg_container2_5 .tablenav-pages_5 a.bwg-a.first-page-2,
.gallery-styles #bwg_container1_5 #bwg_container2_5 .tablenav-pages_5 a.bwg-a.last-page-2,
.gallery-styles #bwg_container1_5 #bwg_container2_5 .tablenav-pages_5 a.bwg-a.first-page-1,
.gallery-styles #bwg_container1_5 #bwg_container2_5 .tablenav-pages_5 a.bwg-a.last-page-1,
.gallery-styles #bwg_container1_5 #bwg_container2_5 .tablenav-pages_5 a.bwg-a.last-page.disabled,
.gallery-styles #bwg_container1_5 #bwg_container2_5 .tablenav-pages_5 a.bwg-a.first-page-0,
.gallery-styles #bwg_container1_5 #bwg_container2_5 .tablenav-pages_5 a.bwg-a.first-page.disabled,
.gallery-styles #bwg_container1_4 #bwg_container2_4 .tablenav-pages_4 a.bwg-a.first-page-6,
.gallery-styles #bwg_container1_4 #bwg_container2_4 .tablenav-pages_4 a.bwg-a.last-page-6,
.gallery-styles #bwg_container1_4 #bwg_container2_4 .tablenav-pages_4 a.bwg-a.first-page-5,
.gallery-styles #bwg_container1_4 #bwg_container2_4 .tablenav-pages_4 a.bwg-a.last-page-5,
.gallery-styles #bwg_container1_4 #bwg_container2_4 .tablenav-pages_4 a.bwg-a.first-page-4,
.gallery-styles #bwg_container1_4 #bwg_container2_4 .tablenav-pages_4 a.bwg-a.last-page-4,
.gallery-styles #bwg_container1_4 #bwg_container2_4 .tablenav-pages_4 a.bwg-a.first-page-3,
.gallery-styles #bwg_container1_4 #bwg_container2_4 .tablenav-pages_4 a.bwg-a.last-page-3,
.gallery-styles #bwg_container1_4 #bwg_container2_4 .tablenav-pages_4 a.bwg-a.first-page-2,
.gallery-styles #bwg_container1_4 #bwg_container2_4 .tablenav-pages_4 a.bwg-a.last-page-2,
.gallery-styles #bwg_container1_4 #bwg_container2_4 .tablenav-pages_4 a.bwg-a.first-page-1,
.gallery-styles #bwg_container1_4 #bwg_container2_4 .tablenav-pages_4 a.bwg-a.last-page-1,
.gallery-styles #bwg_container1_4 #bwg_container2_4 .tablenav-pages_4 a.bwg-a.last-page.disabled,
.gallery-styles #bwg_container1_4 #bwg_container2_4 .tablenav-pages_4 a.bwg-a.first-page-0,
.gallery-styles #bwg_container1_4 #bwg_container2_4 .tablenav-pages_4 a.bwg-a.first-page.disabled,
.gallery-styles #bwg_container1_2 #bwg_container2_2 .tablenav-pages_2 a.bwg-a.first-page-6,
.gallery-styles #bwg_container1_2 #bwg_container2_2 .tablenav-pages_2 a.bwg-a.last-page-6,
.gallery-styles #bwg_container1_2 #bwg_container2_2 .tablenav-pages_2 a.bwg-a.first-page-5,
.gallery-styles #bwg_container1_2 #bwg_container2_2 .tablenav-pages_2 a.bwg-a.last-page-5,
.gallery-styles #bwg_container1_2 #bwg_container2_2 .tablenav-pages_2 a.bwg-a.first-page-4,
.gallery-styles #bwg_container1_2 #bwg_container2_2 .tablenav-pages_2 a.bwg-a.last-page-4,
.gallery-styles #bwg_container1_2 #bwg_container2_2 .tablenav-pages_2 a.bwg-a.first-page-3,
.gallery-styles #bwg_container1_2 #bwg_container2_2 .tablenav-pages_2 a.bwg-a.last-page-3,
.gallery-styles #bwg_container1_2 #bwg_container2_2 .tablenav-pages_2 a.bwg-a.first-page-2,
.gallery-styles #bwg_container1_2 #bwg_container2_2 .tablenav-pages_2 a.bwg-a.last-page-2,
.gallery-styles #bwg_container1_2 #bwg_container2_2 .tablenav-pages_2 a.bwg-a.first-page-1,
.gallery-styles #bwg_container1_2 #bwg_container2_2 .tablenav-pages_2 a.bwg-a.last-page-1,
.gallery-styles #bwg_container1_2 #bwg_container2_2 .tablenav-pages_2 a.bwg-a.last-page.disabled,
.gallery-styles #bwg_container1_2 #bwg_container2_2 .tablenav-pages_2 a.bwg-a.first-page-0,
.gallery-styles #bwg_container1_2 #bwg_container2_2 .tablenav-pages_2 a.bwg-a.first-page.disabled,
.gallery-styles #bwg_container2_3 .tablenav-pages_3 a.bwg-a.first-page-6,
.gallery-styles #bwg_container2_3 .tablenav-pages_3 a.bwg-a.last-page-6,
.gallery-styles #bwg_container2_3 .tablenav-pages_3 a.bwg-a.first-page-5,
.gallery-styles #bwg_container2_3 .tablenav-pages_3 a.bwg-a.last-page-5,
.gallery-styles #bwg_container2_3 .tablenav-pages_3 a.bwg-a.first-page-4,
.gallery-styles #bwg_container2_3 .tablenav-pages_3 a.bwg-a.last-page-4,
.gallery-styles #bwg_container2_3 .tablenav-pages_3 a.bwg-a.first-page-3,
.gallery-styles #bwg_container2_3 .tablenav-pages_3 a.bwg-a.last-page-3,
.gallery-styles #bwg_container2_3 .tablenav-pages_3 a.bwg-a.first-page-2,
.gallery-styles #bwg_container2_3 .tablenav-pages_3 a.bwg-a.last-page-2,
.gallery-styles #bwg_container2_3 .tablenav-pages_3 a.bwg-a.first-page-1,
.gallery-styles #bwg_container2_3 .tablenav-pages_3 a.bwg-a.last-page-1,
.gallery-styles #bwg_container2_3 .tablenav-pages_3 a.bwg-a.last-page.disabled,
.gallery-styles #bwg_container2_3 .tablenav-pages_3 a.bwg-a.first-page-0,
.gallery-styles #bwg_container2_3 .tablenav-pages_3 a.bwg-a.first-page.disabled,
.gallery-styles #bwg_container1_1 #bwg_container2_1 .tablenav-pages_1 a.bwg-a.first-page-6,
.gallery-styles #bwg_container1_1 #bwg_container2_1 .tablenav-pages_1 a.bwg-a.last-page-6,
.gallery-styles #bwg_container1_1 #bwg_container2_1 .tablenav-pages_1 a.bwg-a.first-page-5,
.gallery-styles #bwg_container1_1 #bwg_container2_1 .tablenav-pages_1 a.bwg-a.last-page-5,
.gallery-styles #bwg_container1_1 #bwg_container2_1 .tablenav-pages_1 a.bwg-a.first-page-4,
.gallery-styles #bwg_container1_1 #bwg_container2_1 .tablenav-pages_1 a.bwg-a.last-page-4,
.gallery-styles #bwg_container1_1 #bwg_container2_1 .tablenav-pages_1 a.bwg-a.first-page-3,
.gallery-styles #bwg_container1_1 #bwg_container2_1 .tablenav-pages_1 a.bwg-a.last-page-3,
.gallery-styles #bwg_container1_1 #bwg_container2_1 .tablenav-pages_1 a.bwg-a.first-page-2,
.gallery-styles #bwg_container1_1 #bwg_container2_1 .tablenav-pages_1 a.bwg-a.last-page-2,
.gallery-styles #bwg_container1_1 #bwg_container2_1 .tablenav-pages_1 a.bwg-a.first-page-1,
.gallery-styles #bwg_container1_1 #bwg_container2_1 .tablenav-pages_1 a.bwg-a.last-page-1,
.gallery-styles #bwg_container1_1 #bwg_container2_1 .tablenav-pages_1 a.bwg-a.last-page.disabled,
.gallery-styles #bwg_container1_1 #bwg_container2_1 .tablenav-pages_1 a.bwg-a.first-page-0,
.gallery-styles #bwg_container1_1 #bwg_container2_1 .tablenav-pages_1 a.bwg-a.first-page.disabled,
.gallery-styles #bwg_container1_0 #bwg_container2_0 .tablenav-pages_0 a.bwg-a.first-page-6,
.gallery-styles #bwg_container1_0 #bwg_container2_0 .tablenav-pages_0 a.bwg-a.last-page-6,
.gallery-styles #bwg_container1_0 #bwg_container2_0 .tablenav-pages_0 a.bwg-a.first-page-5,
.gallery-styles #bwg_container1_0 #bwg_container2_0 .tablenav-pages_0 a.bwg-a.last-page-5,
.gallery-styles #bwg_container1_0 #bwg_container2_0 .tablenav-pages_0 a.bwg-a.first-page-4,
.gallery-styles #bwg_container1_0 #bwg_container2_0 .tablenav-pages_0 a.bwg-a.last-page-4,
.gallery-styles #bwg_container1_0 #bwg_container2_0 .tablenav-pages_0 a.bwg-a.first-page-3,
.gallery-styles #bwg_container1_0 #bwg_container2_0 .tablenav-pages_0 a.bwg-a.last-page-3,
.gallery-styles #bwg_container1_0 #bwg_container2_0 .tablenav-pages_0 a.bwg-a.first-page-2,
.gallery-styles #bwg_container1_0 #bwg_container2_0 .tablenav-pages_0 a.bwg-a.last-page-2,
.gallery-styles #bwg_container1_0 #bwg_container2_0 .tablenav-pages_0 a.bwg-a.first-page-1,
.gallery-styles #bwg_container1_0 #bwg_container2_0 .tablenav-pages_0 a.bwg-a.last-page-1,
.gallery-styles #bwg_container1_0 #bwg_container2_0 .tablenav-pages_0 a.bwg-a.last-page.disabled,
.gallery-styles #bwg_container1_0 #bwg_container2_0 .tablenav-pages_0 a.bwg-a.first-page-0,
.gallery-styles #bwg_container1_0 #bwg_container2_0 .tablenav-pages_0 a.bwg-a.first-page.disabled {
  display: none;
}
.gallery-styles #bwg_container1_6 #bwg_container2_6 .tablenav-pages_6 a.bwg-a.last-page-0,
.gallery-styles #bwg_container1_5 #bwg_container2_5 .tablenav-pages_5 a.bwg-a.last-page-0,
.gallery-styles #bwg_container1_4 #bwg_container2_4 .tablenav-pages_4 a.bwg-a.last-page-0,
.gallery-styles #bwg_container1_2 #bwg_container2_2 .tablenav-pages_2 a.bwg-a.last-page-0,
.gallery-styles #bwg_container2_3 .tablenav-pages_3 a.bwg-a.last-page-0,
.gallery-styles #bwg_container1_1 #bwg_container2_1 .tablenav-pages_1 a.bwg-a.last-page-0,
.gallery-styles #bwg_container1_0 #bwg_container2_0 .tablenav-pages_0 a.bwg-a.last-page-0 {
  display: none;
}

#bwg_container2_0,
.bwg_container {
  min-height: 230px;
}

span.paging-input_7,
span.paging-input_6,
span.paging-input_5,
span.paging-input_4,
span.paging-input_2,
span.paging-input_3,
span.paging-input_1,
#bwg_container1_0 #bwg_container2_0 .paging-input_0 {
  font-size: 16px !important;
  font-family: "Poppins", sans-serif !important;
  font-weight: 400 !important;
}

.gallery-alternate img {
  max-width: 100%;
  height: auto;
}

.kitchen-row2 {
  padding-top: 60px;
  padding-bottom: 50px;
}

.kitchen-row3 {
  background: #ededee;
  padding-top: 60px;
  padding-bottom: 70px;
  position: relative;
}
.kitchen-row3 .triangle-icon-white {
  top: -70px;
}

.kitchen-row4 {
  padding-top: 60px;
  padding-bottom: 70px;
}

.kitchen-footer-contact {
  background-image: url("/wp-content/themes/titan/images/kitchen-r4-bg.jpg");
}

.residential-row4 {
  padding-top: 60px;
  padding-bottom: 70px;
  position: relative;
}
.residential-row4 .triangle-icon-white {
  top: -70px;
}

.residential-row5 {
  padding-bottom: 0;
  margin-bottom: 60px;
}

.blue-wrap {
  background: #1C4077;
  color: white;
  max-width: 930px;
  margin: -65px auto 65px;
  border-radius: 17px;
  padding-top: 80px;
  padding-bottom: 65px;
  z-index: 2;
  position: relative;
}
.blue-wrap h3 {
  padding-bottom: 40px;
}
.blue-wrap ul {
  padding: 10px 0 0px 21px;
  list-style: none;
}
.blue-wrap ul li {
  position: relative;
}
.blue-wrap ul li .fa-circle {
  color: #5090CC;
  font-size: 6px;
  position: absolute;
  left: -16px;
  top: 7px;
}

.residential-row-7 h2 {
  padding-bottom: 40px;
}

.additions-remodel-box a, .additions-remodel-box a:visited {
  color: #ffffff !important;
}

/*---
Internal Content Blocks
---*/
span.bold {
  letter-spacing: 0.08rem !important;
  font-weight: 600 !important;
}

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

.gform_wrapper ul.gform_fields li.gfield {
  padding-right: 0px !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;
}

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: #1C4077;
  color: #ffffff;
  padding: 10px 25px 8px;
}
.gform_wrapper .gform_footer input.button:hover {
  background-color: #ffffff;
  color: #5090CC;
}

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

/*---
Custom Site Styles by Developer
---*/
.contact-row4 {
  padding-top: 60px;
  padding-bottom: 60px;
}

/*-- Hide newsletter on contact page --*/
.page-id-20 .footer-form {
  display: none;
}

/*--- Buttons --*/
.btn {
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  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;
}
.btn.primary-btn {
  color: #ffffff;
  padding: 10px 25px;
  background-color: #1C4077;
}
.btn.primary-btn:hover {
  background-color: #31ADC4;
  color: #ffffff;
}
.btn.primary-btn.header-btn {
  font-size: 14px;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  line-height: 25px;
  padding: 8px 10px 20px;
  height: 42px;
}
.btn.primary-btn.header-btn:hover {
  background-color: #5090CC;
  color: #ffffff;
}
.btn.secondary-btn {
  color: #ffffff;
  padding: 10px 25px;
  background-color: #5090CC;
}
.btn.secondary-btn:hover {
  background-color: #31ADC4;
  color: #ffffff;
}
.btn.third-btn {
  color: #ffffff;
  padding: 10px 25px;
  background-color: #31ADC4;
}
.btn.third-btn:hover {
  background-color: #5090CC;
  color: #ffffff;
}
.btn.white-btn {
  background-color: #ffffff;
  color: #1C4077;
  padding: 10px 25px;
}
.btn.white-btn:hover {
  color: #ffffff;
  background-color: #1C4077;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .mob-full-width {
    padding-bottom: 35px;
  }
}
@media (max-width: 991px) {
  .br {
    display: none;
  }

  .home-row4 {
    min-height: 640px;
  }

  .home-row4 h4 {
    font-style: italic;
    padding-bottom: 20px;
  }

  .footer-guide-box .footer-wrap-rsu-guide {
    position: inherit;
    top: 0px;
    text-align: left;
    max-width: 200px;
    padding: 20px 0 0;
  }
}
@media (max-width: 767px) {
  .home-row4 {
    min-height: 680px;
    padding-bottom: 140px;
  }

  .home-row4 img {
    top: -291px;
  }

  .home-row3 {
    padding-bottom: 120px;
  }

  .home-row4 h4 {
    font-style: italic;
    padding-top: 37px;
    padding-bottom: 40px;
    font-weight: 600;
    line-height: 28px;
  }
}
@media (max-width: 640px) {
  .gform_wrapper select {
    min-height: 2.5rem !important;
    padding: 5px 4px !important;
  }
}
.uppercase {
  text-transform: uppercase;
}

/*------*/

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