/*
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:wght@200;300;400;500;600;700&family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
.white {
  color: #ffffff;
}

.primary {
  color: #ea4949;
}

.secondary {
  color: #404041;
}

.dkgray {
  color: #58595B;
}

.primary-bg {
  background-color: #ea4949;
}

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

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

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

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

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

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: 72px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
}
h1.hero {
  font-size: 48px;
  font-weight: 400;
}

@media (max-width: 991px) {
  h1 {
    line-height: 45px !important;
    font-size: 37px !important;
  }
}
h2 {
  font-size: 32px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
}

h3 {
  font-size: 22px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
}

h4 {
  font-size: 23px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
}

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: #ea4949;
  border: solid 3px #ea4949;
}
.search-submit:hover {
  background-color: transparent;
  color: #404041;
  border-color: #404041;
}

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

.primary {
  color: #ea4949;
}

.secondary {
  color: #404041;
}

.dkgray {
  color: #58595B;
}

.primary-bg {
  background-color: #ea4949;
}

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

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

/*--- Collapse Header Navigation ---*/
img.custom-logo {
  width: 100%;
  max-width: 175px;
  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) {
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 18px;
    font-weight: 400;
    color: #ea4949;
    border-bottom: solid 2px transparent;
    border-radius: 0px;
    margin-left: 15px;
    margin-right: 15px;
    padding: 2px 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 {
    border-bottom: solid 2px #ea4949;
  }

  .nav-fill .nav-item {
    border-right: solid 2px #ea4949;
  }
  .nav-fill .nav-item:last-child {
    border: none;
  }

  .navbar-expand-lg .navbar-nav .active .nav-link {
    color: #ea4949;
    border-bottom: solid 2px #ea4949;
  }

  .dropdown-item {
    padding: 0.25rem 0.45rem;
    background-color: transparent;
    color: #58595B;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 16px;
  }

  img.custom-logo {
    max-width: 200px;
  }
}
.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-nav .nav-link {
    font-size: 18px;
    font-weight: 600;
    color: #58595B;
    text-align: center;
    border-bottom: solid 1.5px #58595B;
    border-radius: 0px;
    text-transform: uppercase;
    padding: 10px 20px;
  }

  #menu-item-29 .nav-link {
    border: none;
  }

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

  .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%;
  }

  .nav-phone {
    color: #ea4949;
    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 {
    top: 10px;
    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;
    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: #404041;
    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-nav p, .social-nav .screen-reader-text, .social-nav input[type=search] {
  font-size: 18px;
}

.social-menu {
  margin-left: 15px;
}

.social-menu li {
  display: inline-block;
}
.social-menu li a {
  color: #ffffff;
  padding: 0px 7.5px;
  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: #404041;
}

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

.social-phone {
  font-size: 18px;
  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;
}
.social-phone:hover {
  color: #ea4949;
}

@media (max-width: 991px) {
  .social-menu {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .social-btns {
    border-radius: 0px;
    font-size: 25px;
    display: block;
  }

  .social-menu li a {
    color: #ea4949;
    -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: #404041;
  }
}
@media (max-width: 767px) {
  .social-phone {
    display: block;
  }

  .social-nav {
    flex-flow: column;
    justify-content: center;
    text-align: center;
  }

  .social-menu {
    margin-left: 0px;
  }
}
/*------*/
/*---
Footer Blocks
---*/
.white {
  color: #ffffff;
}

.primary {
  color: #ea4949;
}

.secondary {
  color: #404041;
}

.dkgray {
  color: #58595B;
}

.primary-bg {
  background-color: #ea4949;
}

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

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

footer {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #58595B;
}

.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;
}

/*---
Home Content Blocks
---*/
.hp-icons {
  max-width: 135px;
}

.service-bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 1.5px;
}
.service-bg.one {
  background-image: url("/wp-content/uploads/placeholder-1.jpg");
}
.service-bg.two {
  background-image: url("/wp-content/uploads/placeholder-1.jpg");
}
.service-bg.three {
  background-image: url("/wp-content/uploads/placeholder-1.jpg");
}

.color-overlay {
  min-height: 280px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 148, 178, 0.7);
  -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-overlay:hover {
  background-color: transparent;
  visibility: hidden;
}
.color-overlay:hover .service-box-text {
  display: none;
  visibility: hidden;
}

.swapping-wrapper {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.swapping-wrapper.image-r {
  background-image: url("/wp-content/uploads/swap-image-r.png");
}
.swapping-wrapper.image-l {
  background-image: url("/wp-content/uploads/swap-image-l.png");
}
@media (max-width: 991px) {
  .swapping-wrapper.image-r, .swapping-wrapper.image-l {
    background-image: none;
  }
}
@media (min-width: 992px) {
  .swapping-wrapper img {
    display: none !important;
  }
}

/*---
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;
}

/*---
Internal Hero Content Block
---*/
.internal-head {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  min-height: 310px;
  padding-top: 40px;
  padding-bottom: 40px;
}

/*---
Internal Content Blocks
---*/
/*---
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;
}

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: 24px !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: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 5px 60px 5px;
  border-radius: 8px;
}
.gform_wrapper .gform_footer input.button:hover {
  background-color: #ffffff;
  border: 2px solid #ffffff;
  color: #404041;
}

/* 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;
  }
}
/*---
Custom Site Styles by Developer
---*/
/*--- Buttons ---*/
.btn {
  font-size: 24px;
  min-width: 220px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  background-color: transparent;
  border-radius: 0px;
  white-space: normal;
  text-transform: uppercase;
  -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: 5px 20px;
  background-color: #ea4949;
  border: 3px solid #ea4949;
  border-radius: 10px;
}
.btn.primary-btn:hover {
  background-color: #ffffff;
  color: #ea4949;
  border: 3px solid #ffffff;
}
.btn.secondary-btn {
  color: #ffffff;
  padding: 5px 20px;
  background-color: transparent;
  color: #404041;
  border: 3px solid #404041;
  border-radius: 10px;
}
.btn.secondary-btn:hover {
  background-color: #404041;
  color: #ffffff;
  border: 3px solid #404041;
}
.btn.secondary-btn.active {
  background-color: transparent;
  color: #ea4949;
  border: 3px solid #ea4949;
}
.btn.third-btn {
  color: #ffffff;
  padding: 5px 20px;
  background-color: transparent;
  border: 3px solid #ffffff;
  border-radius: 10px;
}
.btn.third-btn:hover {
  background-color: #ffffff;
  color: #404041;
  border: 3px solid #ffffff;
}
.btn.fourth-btn {
  color: #ea4949;
  padding: 5px 20px;
  background-color: transparent;
  border: 3px solid #ea4949;
  border-radius: 10px;
}
.btn.fourth-btn:hover {
  background-color: transparent;
  color: #404041;
  border: 3px solid #404041;
}
.btn.white-btn {
  color: #ffffff;
  padding: 5px 20px;
  background-color: #ffffff;
  color: #ea4949;
  border: 3px solid #ffffff;
  border-radius: 15px;
}
.btn.white-btn:hover {
  background-color: transparent;
  color: #ffffff;
  border: 3px solid #ffffff;
}
.btn.primary-btn2 {
  color: #ffffff;
  padding: 1px 20px;
  min-width: 100px;
  background-color: #ea4949;
  border: 3px solid #ea4949;
  border-radius: 10px;
}
.btn.primary-btn2:hover {
  background-color: #ffffff;
  color: #ea4949;
  border: 3px solid #ffffff;
}
.btn.contact-btn {
  color: #ffffff;
  padding: 5px 20px;
  background-color: transparent;
  border: 3px solid #ffffff;
  border-radius: 10px;
}
.btn.contact-btn:hover {
  background-color: #ffffff;
  color: #ea4949;
  border: 3px solid #ffffff;
}

@media (max-width: 375px) {
  .btn {
    min-width: 100px;
  }
}
.nav-link.active .secondary-btn {
  color: #ffffff;
  padding: 5px 20px;
  background-color: transparent;
  color: #ea4949;
  border: 3px solid #ea4949;
  border-radius: 10px;
}
.nav-link.active .secondary-btn:hover {
  background-color: #ea4949;
  color: #ffffff;
  border: 3px solid #ea4949;
}

.uppercase {
  text-transform: uppercase;
}

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

.home-hero {
  min-width: 590px;
  background-image: url("/wp-content/themes/titan/images/home-hero.jpg");
  background-position: center;
  background-size: cover;
  padding: 190px 0 190px 0;
  color: #ffffff;
}

.hero-line {
  background-color: #ea4949;
  height: 7px;
  max-width: 215px;
}

.home-1 {
  min-height: 530px;
  padding: 90px 60px;
}

.home-1-a {
  background-image: url("/wp-content/themes/titan/images/home-1.jpg");
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.square {
  display: block;
  border: 3px solid #ffffff;
  border-radius: 15px;
  width: 350px;
  min-height: 280px;
  padding: 50px;
}

.home-2 {
  background-color: #404041;
  min-height: 435px;
  padding: 90px 0 90px 0;
}

.border-l {
  border-left: 1px solid #404041;
}

.map-border {
  border: solid 10px #ffffff;
  -webkit-box-shadow: 0px 0px 15px 8px rgba(0, 0, 0, 0.23);
}

.home-redbox {
  background-color: #ea4949;
  height: 265px;
  width: 570px;
  margin-left: -30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.red-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 991px) {
  .red-display {
    display: none;
  }

  .home-hero {
    min-width: 250px;
    background-image: url("/wp-content/themes/titan/images/home-hero.jpg");
    padding: 70px 50px;
  }

  .home-1 {
    min-height: 0px;
    padding: 50px 30px;
  }
}
.ltgray-bg {
  background-color: #f1f2f2;
}

.inner-hero {
  min-height: 225px;
  padding: 85px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
}
.inner-hero.floorplans {
  background-image: url("/wp-content/themes/titan/images/floor-hero.png");
}
.inner-hero.amenities {
  background-image: url("/wp-content/themes/titan/images/amenities-hero.png");
}
.inner-hero.neighbor {
  background-image: url("/wp-content/themes/titan/images/neighbor-hero.png");
}
.inner-hero.contact {
  background-image: url("/wp-content/themes/titan/images/contact-hero.png");
}

.n-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pay-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .pay-btn {
    display: block;
  }
}
.dkgray-bg {
  background-color: #58595B;
}

.contactbg {
  background: #58595b;
  background: linear-gradient(90deg, #58595b 30%, white 30%);
}

@media (max-width: 991px) {
  .contactbg {
    background: #ffffff;
  }
}
.box-1 {
  width: 50%;
  float: left;
}

.box-2 {
  width: 50%;
  float: right;
}

@media (max-width: 767px) {
  .box-1 {
    width: 100%;
    float: left;
  }

  .box-2 {
    width: 100%;
    float: right;
  }
}
img.custom-logo {
  width: 100%;
  max-width: 175px;
  height: auto;
  padding-top: 15px;
  padding-bottom: 15px;
}

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

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

  .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) {
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 18px;
    font-weight: 400;
    font-family: "Oswald", sans-serif;
    color: #58595B;
    border-bottom: solid 2px transparent;
    border-radius: 0px;
    margin-left: 25px;
    margin-right: 25px;
    padding: 2px 0px;
    text-transform: uppercase;
    -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 {
    border-bottom: none;
  }

  .nav-fill .nav-item {
    border-right: none;
  }
  .nav-fill .nav-item:last-child {
    border: none;
  }

  .navbar-expand-lg .navbar-nav .active .nav-link {
    color: #ea4949;
    border-bottom: none;
  }

  .dropdown-item {
    padding: 0.25rem 0.45rem;
    background-color: transparent;
    color: #58595B;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 16px;
  }

  img.custom-logo {
    max-width: 200px;
  }
}
.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-nav .nav-link {
    font-size: 37px;
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    color: #ffffff;
    text-align: left;
    border-bottom: none;
    border-radius: 0px;
    text-transform: uppercase;
    padding: 10px 20px;
  }

  #menu-item-29 .nav-link {
    border: none;
  }

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

  .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%;
  }

  .nav-phone {
    color: #ea4949;
    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 {
    top: 10px;
    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;
    padding-top: 60px;
    left: 0;
    transition: 0.001s;
    text-align: center;
    background-color: #ea4949;
    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: #404041;
    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-nav p, .social-nav .screen-reader-text, .social-nav input[type=search] {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 18px;
}

.social-menu {
  margin-left: 15px;
}

.social-menu li {
  display: inline-block;
}
.social-menu li a {
  color: #ffffff;
  padding: 0px 7.5px;
  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: #404041;
}

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

.social-phone {
  font-size: 18px;
  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;
}
.social-phone:hover {
  color: #ea4949;
}

@media (max-width: 991px) {
  .social-menu {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .social-btns {
    border-radius: 0px;
    font-size: 25px;
    display: block;
  }

  .social-menu li a {
    color: #ea4949;
    -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: #404041;
  }
}
@media (max-width: 767px) {
  .social-phone {
    display: block;
  }

  .social-nav {
    flex-flow: column;
    justify-content: center;
    text-align: center;
  }

  .social-menu {
    margin-left: 0px;
  }
}
.brand-flex {
  position: block;
}

@media (min-width: 1199px) {
  .brand-flex {
    position: absolute;
    top: -76px;
    left: 0;
    background-color: #ffffff;
    padding: 26px 50px 20px 74px;
  }
}
@media (max-width: 1199px) and (min-width: 991px) {
  .brand-flex {
    position: absolute;
    top: -76px;
    left: 0;
    background-color: #ffffff;
    padding: 17px 50px 19px 74px;
  }
}
@media (min-width: 992px) {
  .grad {
    background: #58595b;
    background: linear-gradient(90deg, #58595b 0%, white 25%);
  }
}
.soc {
  font-family: "Oswald", sans-serif !important;
  font-weight: 600 !important;
  font-size: 24px !important;
}

.pad {
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 991) {
  .pad {
    padding-left: 100px;
    padding-right: 100px;
  }
}
.con a {
  color: #404041;
}

.con:hover a {
  color: #ea4949;
  text-decoration: underline;
}

.cvs {
  border: 1px solid #ECEDEE;
}

input#input_1_1 {
  border-bottom: solid 1px white;
  background-color: transparent;
  color: white;
}

input#input_1_2 {
  border-bottom: solid 1px white;
  background-color: transparent;
  color: white;
}

input#input_1_3 {
  border-bottom: solid 1px white;
  background-color: transparent;
  color: white;
}

textarea#input_1_4 {
  border-bottom: solid 1px white;
  background-color: transparent;
  color: white;
}

/* gform placeholders*/
::-webkit-input-placeholder {
  color: #FFF;
}

:-moz-placeholder {
  opacity: 1;
  color: #FFF;
}

/* Firefox 18- */
::-moz-placeholder {
  opacity: 1;
  color: #FFF;
}

/* firefox 19+ */
:-ms-input-placeholder {
  color: #FFF;
}

/* ie */
input:-moz-placeholder {
  color: #FFF;
}

.floor {
  -webkit-box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.25);
}

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