/*
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: #9F1436;
}

.secondary {
  color: #E32050;
}

.dkgray {
  color: #404041;
}

.primary-bg {
  background-color: #9F1436;
}

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

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

.white-bg {
  background-color: #ffffff;
}

body {
  overflow-x: hidden;
}

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

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

body {
  font-size: 10px;
  font-weight: 400;
  font-family: "Smooch Sans", sans-serif;
  color: #404041;
}

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

h1 {
  font-size: 56px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}
h1.hero {
  font-size: 48px;
  font-weight: 500;
}

h2 {
  font-size: 40px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}
@media (max-width: 992px) {
  h2 {
    font-size: 38px;
  }
}

h3 {
  font-size: 32px;
  font-weight: 700;
  font-style: normal;
  font-family: "Montserrat", sans-serif;
}

h4 {
  font-size: 23px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}

h5 {
  font-size: 20px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  color: #9F1436;
}

nav ul li {
  font-size: inherit;
}

body .navbar-nav .nav-link {
  font-family: "Smooch Sans", sans-serif;
}

/*-----
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: 22.5px;
  min-height: inherit;
  width: 22.5px;
}

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

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .wp-caption.aligncenter {
    position: relative;
    left: calc((66.6666666667vw - 28px) / 2);
    transform: translateX(-50%);
  }
}
@media only screen and (min-width: 1200px) {
  .wp-caption.aligncenter {
    left: calc((50vw - 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: 1.5rem;
}

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

/*--Dropdown Blue Box Fix--*/
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  background-color: transparent;
}

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

.primary {
  color: #9F1436;
}

.secondary {
  color: #E32050;
}

.dkgray {
  color: #404041;
}

.primary-bg {
  background-color: #9F1436;
}

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

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

.white-bg {
  background-color: #ffffff;
}

/*--- Collapse Header Navigation ---*/
img.custom-logo {
  width: 100%;
  max-width: 350px;
  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);
}

.header-border-bottom {
  height: 20px;
  background: rgb(0, 104, 56);
  background: linear-gradient(90deg, #9F1436 31.53%, #E32050 87.5%);
}
@media (max-width: 992px) {
  .header-border-bottom {
    display: none;
  }
}

/*-------
Desktop
--------*/
@media (min-width: 992px) {
  body .navbar-nav {
    bacground: red;
  }
  body .navbar-nav .nav-header-phone a.nav-link {
    font-weight: 700;
    color: #E32050;
  }
  body .navbar-nav .nav-header-phone a.nav-link:hover {
    color: #9F1436;
  }
  body .navbar-nav .current-menu-item .nav-link {
    color: #9F1436;
    background: #f1f1f2;
  }
  body .navbar-nav .current-menu-item .nav-link:hover {
    color: #9F1436;
    background: #f1f1f2;
  }
  body .navbar-nav .nav-link {
    font-size: 19px;
    font-weight: 400;
    color: #404041;
    text-transform: uppercase;
    padding-left: 6px !important;
    padding-right: 6px !important;
    border-radius: 0;
    margin-left: 3px;
  }
  body .navbar-nav .nav-link:hover {
    color: #9F1436;
    background: #f1f1f2;
  }
  .dropdown-item {
    padding: 0.25rem 0.6rem 0.45rem 1rem;
    background-color: transparent;
    font-size: 16px;
    font-weight: 400;
    color: #404041;
    text-transform: uppercase;
    font-size: 20px !important;
    text-align: left !important;
    font-weight: 400 !important;
  }
  #magic-line {
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 90px;
    height: 3px;
    background: #E32050;
    text-decoration: none !important;
    overflow: hidden;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav .nav-link {
    font-size: 14px;
    padding: 5px !important;
  }
  #magic-line {
    bottom: 0px;
  }
}
.navbar-nav .dropdown-menu {
  border-radius: 0;
  border: none;
  margin-top: 0;
}

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

/*-------
## Mobile
-------*/
@media (max-width: 991px) {
  #magic-line {
    display: none;
  }
  .header-nav-box .navbar-nav {
    padding-top: 80px;
  }
  .navbar-nav .nav-link {
    font-size: 34px;
    font-weight: 400;
    color: #404041;
    text-align: left;
    border-radius: 0px;
    text-transform: uppercase;
    padding: 0.8rem 1rem 0.8rem 2rem;
  }
  .navbar-nav .nav-link:hover,
.navbar-nav .active > .nav-link,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show,
.navbar-nav .show > .nav-link {
    color: #404041;
    background-color: #f1f1f2;
  }
  .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: #9F1436;
    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;
  }
  #titan-nav {
    position: absolute;
    z-index: 10;
    top: -196px;
    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.open {
    color: #404041;
  }
  #nav-icon4.open span {
    background: #404041 !important;
  }
  #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;
  }
  .navbar-nav .dropdown-menu {
    border-radius: 0;
    border: none;
    margin-top: 0;
    background: #9F1436;
    color: #ffffff;
  }
  .navbar-nav .dropdown-menu li a {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    background: #9F1436;
    text-align: center;
    border-bottom: solid 1.5px #ffffff;
    border-radius: 0px;
    text-transform: uppercase;
    padding: 0.8rem 1rem;
  }
  .navbar-nav .dropdown-menu li a:hover {
    color: #9F1436;
    background: #ffffff;
  }
}
/*--- Social Menu ---*/
.social-nav {
  display: flex;
  justify-content: flex-end;
}
.social-nav a.social-facebook, .social-nav a:visited.social-facebook {
  font-size: 30px;
  color: #E32050;
  position: relative;
  top: 5px;
  right: 0;
  margin: 0 0 0 0;
}
.social-nav a.social-facebook:hover, .social-nav a:visited.social-facebook:hover {
  color: #9F1436;
}

.social-menu li {
  display: inline-block;
}
.social-menu li a {
  color: #E32050;
  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: #9F1436;
}

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

.social-btns {
  display: flex;
  justify-content: space-evenly;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  align-items: flex-start;
  text-align: center;
  font-size: 22px;
  font-weight: 400;
  padding: 4px 26px;
  margin: 0 0 0 30px;
  color: #ffffff;
  background-color: #E32050;
  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;
}
.social-btns:hover {
  background-color: #9F1436;
  color: #ffffff;
  text-decoration: none;
}
.social-btns.social-btns2 {
  background-color: #E32050;
  color: #ffffff;
  text-decoration: none;
}
.social-btns.social-btns2:hover {
  color: #ffffff;
  background-color: #9F1436;
  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: #E32050;
    padding: 5px 5px;
    line-height: 0.1;
  }
  .social-btns {
    border-radius: 0px;
    font-size: 15px;
  }
}
/*------*/
/*---
Footer Blocks
---*/
.white {
  color: #ffffff;
}

.primary {
  color: #9F1436;
}

.secondary {
  color: #E32050;
}

.dkgray {
  color: #404041;
}

.primary-bg {
  background-color: #9F1436;
}

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

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

.white-bg {
  background-color: #ffffff;
}

footer {
  background-color: #404041;
}

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

.navbar-nav.footer .nav-link {
  color: #ffffff !important;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 400;
  background: none !important;
  border-bottom: solid 1px transparent;
  border-radius: 0;
  text-align: left;
  padding: 4px 0 2px !important;
}
.navbar-nav.footer .nav-link:hover {
  color: #E32050;
  border-bottom: solid 1px white;
}

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

.foot-logo {
  max-width: 120px;
  margin-top: 5px;
}

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

@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;
  }
}
/*---
Home Hero Content Block
----*/
.home-hero {
  background-image: url("/wp-content/themes/titan/images/home-hero.jpg");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}

.carousel-item {
  position: relative;
  z-index: 9;
}
.carousel-item .slide-row {
  z-index: 6;
  position: relative;
}
.carousel-item::after {
  background-color: hsla(0deg, 0%, 0%, 0.5);
  background-size: cover;
  background-position: center;
  opacity: 1;
  left: 0;
  top: 0;
  pointer-events: none;
  content: "";
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
}

.home-row1 .row {
  display: block;
}
.home-row1 .slide-row {
  display: flex;
}
.home-row1 .home-row1-left {
  padding-top: 150px;
  padding-bottom: 170px;
  background: rgb(0, 104, 56);
  background: linear-gradient(90deg, #9F1436 31.53%, #E32050 87.5%) !important;
  clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%);
}
.home-row1 .home-row1-left .left-box-content {
  max-width: 540px;
  float: right;
}
.home-row1 .home-row1-left .left-box-content .wrap {
  max-width: 500px;
}
.home-row1 .home-row1-left h1 {
  padding-bottom: 30px;
  color: #ffffff;
}
.home-row1 .home-row1-left p, .home-row1 .home-row1-left .screen-reader-text, .home-row1 .home-row1-left input[type=search] {
  margin-bottom: 25px;
}
.home-row1 .home-row1-left .btn.primary-btn:hover, .home-row1 .home-row1-left .custom-login-form input#wp-submit:hover, .custom-login-form .home-row1 .home-row1-left input#wp-submit:hover {
  background-color: #ffffff;
  color: #9F1436;
}
.home-row1 .home-row1-right {
  padding-top: 70px;
  padding-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-row1 .home-row1-right .row {
  display: -webkit-flex;
  display: flex;
  list-style-type: none;
  justify-content: flex-end;
}
.home-row1 .home-row1-right .row .home-row1-right-wrap {
  display: flex;
  align-items: center;
  justify-content: left;
}
.home-row1 .home-row1-right img {
  max-width: 110px;
  margin: auto;
}
.home-row1 .home-row1-right h2 {
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
}
.home-row1 .home-row1-right p, .home-row1 .home-row1-right .screen-reader-text, .home-row1 .home-row1-right input[type=search] {
  margin-bottom: 25px;
  color: #ffffff;
}
.home-row1 .home-row1-right .btn.white-btn:hover, .home-row1 .home-row1-right .custom-login-form input.white-btn#wp-submit:hover, .custom-login-form .home-row1 .home-row1-right input.white-btn#wp-submit:hover {
  color: #ffffff;
  background: #58595b;
}

button.carousel-control-prev,
button.carousel-control-next {
  background: none !important;
  border: none;
  display: none;
}

.home-row2 {
  padding-top: 80px;
  padding-bottom: 0;
}
.home-row2 .home-video {
  width: 100%;
  height: 512px;
  border: solid 13px #ffffff;
  border-left: 0;
  box-shadow: 1px 2px 10px 4px rgba(0, 0, 0, 0.26);
}
.home-row2 .home-row2-right .btn, .home-row2 .home-row2-right .custom-login-form input#wp-submit, .custom-login-form .home-row2 .home-row2-right input#wp-submit {
  margin-top: 20px;
  margin-bottom: 30px;
}

.home-row2-mobile .home-video {
  width: 100%;
}

.home-row3 {
  background-image: url("/wp-content/themes/titan/images/home-row3-bg.jpg");
  background-color: #626262;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 255px;
  padding-bottom: 180px;
  z-index: 1;
  margin-top: -97px;
}
.home-row3.request-a-quote-row2 {
  background-image: url("/wp-content/themes/titan/images/hero-request-quote.jpg");
  background-color: #626262;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}
.home-row3.services-form-box {
  background-image: none;
  background-color: #626262;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 90px;
  padding-bottom: 80px;
}
.home-row3.services-form-box.contact-page-form {
  background-image: none;
  background-color: #626262;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 90px;
  padding-bottom: 80px;
}
.home-row3.services-form-box input#gform_submit_button_3 {
  background-color: #E32050;
  color: #ffffff;
  border: solid 3px #E32050;
  font-family: "Smooch Sans", sans-serif;
  font-weight: 400;
  font-size: 30px !important;
  padding: 5px 60px;
}
.home-row3.services-form-box input#gform_submit_button_3:hover {
  color: #ffffff;
  border: solid 3px #9F1436;
  background: #9F1436;
}
.home-row3.services-form-box .gform_wrapper .gform_footer {
  text-align: center;
  margin-top: 20px !important;
  padding-bottom: 0px !important;
}
.home-row3.services-form-box select#input_3_5 {
  background: transparent;
  border: none;
  border-bottom: solid 3px white;
  color: white;
}
.home-row3.services-form-box textarea#input_3_4 {
  background: transparent;
  border: none;
  border-bottom: solid 3px white;
  color: white;
}

.home-row3-left span {
  border-bottom: solid 1px #bbbdbf;
  display: block;
  margin-top: 50px;
  margin-bottom: 50px;
}

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

.about-row2 .home-row2-left img {
  width: 100%;
  height: auto;
}
.about-row2 .home-row2-right {
  padding-top: 80px;
}

/*.wmts_members img.wmts_element {
    margin: 0;
    display: block;
    position: absolute;
    padding: 0;
    left: 0;
    top: 0;
    border-radius: 50%;
    //border: solid 10px $white;
    //box-shadow: -1px 1px 11px 6px rgb(0 0 0 / 25%);
    max-width: 230px !important;
    height: 230px !important;
    left: 0 !important;
    top: 0px !important;
    right: 0 !important;
    margin: 28px auto 0 !important;
}*/
.wps-widget--team .wps-team--member-title {
  font-size: 27px !important;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 700 !important;
  margin-bottom: 0 !important;
}

.wps-widget--team .wps-team--divider {
  display: none;
}

.wps-widget--team .wps-team--member-desig {
  font-family: "Smooch Sans", sans-serif !important;
  font-size: 24px !important;
  font-weight: 400 !important;
  margin-bottom: var(--wps-desig-space);
  text-transform: initial;
}

.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/themes/titan/images/placeholder-1.jpg");
}
.service-bg.two {
  background-image: url("/wp-content/themes/titan/images/placeholder-1.jpg");
}
.service-bg.three {
  background-image: url("/wp-content/themes/titan/images/placeholder-1.jpg");
}

.color-overlay {
  min-height: 280px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(227, 32, 80, 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/themes/titan/images/swap-image-r.png");
}
.swapping-wrapper.image-l {
  background-image: url("/wp-content/themes/titan/images/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/themes/titan/images/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-row1 {
  background-color: #9F1436;
  background-image: url("/wp-content/themes/titan/images/hero-about.jpg");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  color: #ffffff;
  padding-top: 100px;
  padding-bottom: 110px;
  margin-bottom: 0;
  position: relative;
  text-align: center;
}
.internal-row1 h1 {
  color: #ffffff;
}
.internal-row1 .container {
  position: relative;
  z-index: 9;
}
.internal-row1::after {
  opacity: 0.3;
  left: 0;
  top: 0;
  background: #404041;
  content: "";
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
}

.about-row2 img {
  width: 100%;
}

img.shadow {
  border: solid 10px white;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.25) !important;
}

.about-row3 {
  padding-top: 30px;
}
.about-row3 .wmts_member {
  background: #ffffff;
}
.about-row3 a.wph_auto_a {
  font-size: 22px;
  color: #9F1436;
  font-style: italic;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}
.about-row3 .wmts_job_title {
  margin: 0 0 8px;
  font-size: 24px;
  font-family: "Smooch Sans", sans-serif;
}

.about-row4 {
  background: #E32050;
  padding-top: 80px;
  padding-bottom: 80px;
}

.about-employee-wrapper {
  padding-bottom: 40px;
}
.about-employee-wrapper svg {
  margin: 0px 0 0 3px;
  position: relative;
  top: 1px;
}
.about-employee-wrapper a:hover h3, .about-employee-wrapper a:visited:hover h3 {
  color: #E32050;
  text-decoration: underline;
}

.icon-max-service {
  border-radius: 50%;
  overflow: hidden;
  margin: 60px auto 30px;
  max-width: 214px;
}
.icon-max-service img {
  width: 100%;
  height: auto;
}

.serverice-wrap-box {
  padding-top: 40px;
  padding-bottom: 130px;
}

.service-row3.serice-renter,
.service-row2.serice-renter {
  background-position: 0;
}
.service-row3.serice-inland,
.service-row2.serice-inland {
  background-position: 0;
}
.service-row3.service-right-text,
.service-row2.service-right-text {
  background-position: 0;
}
.service-row3 .service-left,
.service-row2 .service-left {
  padding-top: 52px;
}
.service-row3 .service-left h2,
.service-row2 .service-left h2 {
  padding-bottom: 27px;
  color: #E32050;
}

.serice-row3 {
  background-image: url("/wp-content/themes/titan/images/hero-internal.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  text-align: right;
}

.content-form1 {
  background: #e6e7e8;
  padding-top: 80px;
  padding-bottom: 90px;
}
.content-form1 .gform_legacy_markup_wrapper .top_label .gfield_label,
.content-form1 .gform_legacy_markup_wrapper legend.gfield_label {
  display: none;
}
.content-form1 .gform_legacy_markup_wrapper .field_sublabel_below .ginput_complex.ginput_container label,
.content-form1 .gform_legacy_markup_wrapper .field_sublabel_below div[class*=gfield_time_].ginput_container label {
  display: none;
}
.content-form1 .gform_legacy_markup_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  border-bottom: solid 1px #58595b;
  background: transparent;
  padding: 11px 4px;
  margin-bottom: 5px;
  color: #58595b;
  margin-bottom: 5px;
}
.content-form1 input::-webkit-input-placeholder {
  color: #58595b;
}
.content-form1 ::-moz-placeholder {
  color: #58595b;
}
.content-form1 :-ms-input-placeholder {
  color: #58595b;
}
.content-form1 ::-webkit-input-placeholder {
  color: #58595b;
}
.content-form1 ::placeholder {
  color: #58595b;
}
.content-form1 select#input_3_5 {
  background: transparent;
  border: none;
  border-bottom: solid 1px #58595b;
  color: #58595b;
  padding: 10px 0;
  margin-bottom: 20px;
}
.content-form1 input#gform_submit_button_1 {
  background-color: #9F1436;
  color: #ffffff;
  border: solid 3px #9F1436;
  font-weight: 600;
  padding: 8px 50px;
}
.content-form1 input#gform_submit_button_1:hover {
  color: #ffffff;
  border: solid 3px #58595b;
  background: #58595b;
}
.content-form1 textarea#input_1_4 {
  border-bottom: solid 1px #58595b;
  margin-bottom: 40px;
  padding-top: 0;
  margin-top: 0;
  background: transparent;
}
.content-form1 .gform_legacy_markup_wrapper .gform_footer {
  padding: 0 0 10px 0;
  text-align: center;
}

.make-payment-row2 {
  padding-top: 50px;
  padding-bottom: 30px;
}
.make-payment-row2 .make-payment-row2-left {
  padding-top: 30px;
  padding-bottom: 0;
}
.make-payment-row2 .make-payment-row2-left .gform_legacy_markup_wrapper li.gfield.gfield_creditcard_warning {
  background-color: rgba(255, 223, 224, 0);
}
.make-payment-row2 .make-payment-row2-left .shadow-form {
  box-shadow: 0 0.5rem 3rem rgba(0, 0, 0, 0.3) !important;
}
.make-payment-row2 .make-payment-row2-left .make-a-payment-form {
  padding: 20px 50px 30px;
  margin-top: 40px;
  margin-bottom: 50px;
}
.make-payment-row2 .make-payment-row2-left .make-a-payment-form .gform_legacy_markup_wrapper .top_label .gfield_label,
.make-payment-row2 .make-payment-row2-left .make-a-payment-form .gform_legacy_markup_wrapper legend.gfield_label {
  display: none;
}
.make-payment-row2 .make-payment-row2-left .make-a-payment-form .page-template-make-a-payment .gform_legacy_markup_wrapper span.ginput_total {
  color: #404041;
}
.make-payment-row2 .make-payment-row2-left .make-a-payment-form .gform_legacy_markup_wrapper .field_sublabel_below .ginput_complex.ginput_container label,
.make-payment-row2 .make-payment-row2-left .make-a-payment-form .gform_legacy_markup_wrapper .field_sublabel_below div[class*=gfield_time_].ginput_container label {
  display: none;
}
.make-payment-row2 .make-payment-row2-left .make-a-payment-form .gform_legacy_markup_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  border-bottom: solid 1px #000000;
  background: transparent;
  padding: 11px 4px;
  color: #58595b;
  margin-bottom: 0px;
}
.make-payment-row2 .make-payment-row2-left .make-a-payment-form input::-webkit-input-placeholder {
  color: #000000;
}
.make-payment-row2 .make-payment-row2-left .make-a-payment-form ::-moz-placeholder {
  color: #000000;
}
.make-payment-row2 .make-payment-row2-left .make-a-payment-form :-ms-input-placeholder {
  color: #000000;
}
.make-payment-row2 .make-payment-row2-left .make-a-payment-form ::-webkit-input-placeholder {
  color: #000000;
}
.make-payment-row2 .make-payment-row2-left .make-a-payment-form ::placeholder {
  color: #000000;
}
.make-payment-row2 .make-payment-row2-left .make-a-payment-form select#input_3_5 {
  background: transparent;
  border: none;
  border-bottom: solid 1px #58595b;
  color: #58595b;
  padding: 10px 0;
  margin-bottom: 20px;
}
.make-payment-row2 .make-payment-row2-left .make-a-payment-form input#gform_submit_button_4 {
  background-color: #E32050;
  color: #ffffff;
  border: solid 3px #E32050;
  font-family: "Smooch Sans", sans-serif;
  font-weight: 400;
  font-size: 30px !important;
  padding: 5px 60px;
}
.make-payment-row2 .make-payment-row2-left .make-a-payment-form input#gform_submit_button_4:hover {
  color: #ffffff;
  border: solid 3px #9F1436;
  background: #9F1436;
}
.make-payment-row2 .make-payment-row2-left .make-a-payment-form textarea#input_3_4 {
  border-bottom: solid 1px #58595b;
  margin-bottom: 40px;
  padding-top: 0;
  margin-top: 0;
}
.make-payment-row2 .make-payment-row2-left .make-a-payment-form .gform_legacy_markup_wrapper .gform_footer {
  padding: 30px 0 10px 0;
  text-align: left;
}
.make-payment-row2 .make-payment-row2-left .gform_legacy_markup_wrapper li.gfield.gfield_creditcard_warning {
  border-top: 0;
  border-bottom: 0;
}
.make-payment-row2 .make-payment-row2-left .gform_legacy_markup_wrapper li.gfield.gfield_creditcard_warning div.gfield_creditcard_warning_message {
  display: none;
}
.make-payment-row2 .make-payment-row2-left .gform_legacy_markup_wrapper li.gfield.gfield_creditcard_warning {
  padding: 0 !important;
  width: 100%;
}
.make-payment-row2 .make-payment-row2-right {
  padding-top: 30px;
  padding-bottom: 0;
}
.make-payment-row2 .make-payment-row2-right h3 span {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}
.make-payment-row2 .make-payment-row2-right ul {
  padding: 25px 0 0 20px;
}
.make-payment-row2 .make-payment-row2-right ul li {
  padding-bottom: 25px;
}

.make-payment-row3 {
  background: #e6e7e8;
  padding-top: 70px;
  padding-bottom: 70px;
}

.contact-row2 {
  padding-top: 68px;
  padding-bottom: 180px;
}
.contact-row2 h5 {
  padding-top: 35px;
}
.contact-row2 p, .contact-row2 .screen-reader-text, .contact-row2 input[type=search] {
  margin: 0;
}
.contact-row2 .contact-row2-right,
.contact-row2 .contact-row2-left {
  padding-bottom: 50px;
}

.file-a-claim-row2 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.file-a-claim-form {
  background: #e6e7e8;
  padding-top: 80px;
  padding-bottom: 90px;
}
.file-a-claim-form .gform_legacy_markup_wrapper .top_label .gfield_label,
.file-a-claim-form .gform_legacy_markup_wrapper legend.gfield_label {
  display: none;
}
.file-a-claim-form .gform_legacy_markup_wrapper .field_sublabel_below .ginput_complex.ginput_container label,
.file-a-claim-form .gform_legacy_markup_wrapper .field_sublabel_below div[class*=gfield_time_].ginput_container label {
  display: none;
}
.file-a-claim-form .gform_legacy_markup_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  border-bottom: solid 1px #58595b;
  background: transparent;
  padding: 11px 4px;
  margin-bottom: 5px;
  color: #58595b;
  margin-bottom: 5px;
}
.file-a-claim-form input::-webkit-input-placeholder {
  color: #58595b;
}
.file-a-claim-form ::-moz-placeholder {
  color: #58595b;
}
.file-a-claim-form :-ms-input-placeholder {
  color: #58595b;
}
.file-a-claim-form ::-webkit-input-placeholder {
  color: #58595b;
}
.file-a-claim-form ::placeholder {
  color: #58595b;
}
.file-a-claim-form select#input_5_15 {
  background: transparent;
  border: none;
  border-bottom: solid 1px #58595b;
  color: #58595b;
  padding: 10px 0;
  margin-bottom: 20px;
}
.file-a-claim-form input#gform_submit_button_5 {
  background-color: #E32050;
  color: #ffffff;
  border: solid 3px #E32050;
  font-weight: 600;
  padding: 8px 50px;
  font-weight: 400;
  font-size: 30px !important;
  padding: 5px 60px;
}
.file-a-claim-form input#gform_submit_button_5:hover {
  color: #ffffff;
  background: #9F1436;
  border: solid 3px #9F1436;
}
.file-a-claim-form textarea#input_5_4 {
  border-bottom: solid 1px #58595b;
  margin-bottom: 40px;
  padding-top: 0;
  margin-top: 10px;
  background: transparent;
}
.file-a-claim-form .gform_legacy_markup_wrapper .gform_footer {
  padding: 0 0 10px 0;
  text-align: center;
}
.file-a-claim-form .gform_legacy_markup_wrapper textarea.medium {
  height: 100px;
}

/*---
Gravity Forms
---*/
.gform_wrapper {
  margin: 0 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: 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: #9F1436;
  color: #ffffff;
  padding: 10px 25px 8px;
}
.gform_wrapper .gform_footer input.button:hover {
  background-color: #ffffff;
  color: #E32050;
}

/* 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;
  }
}
.gform_legacy_markup_wrapper select option {
  color: #404041 !important;
}

/*---
Custom Site Styles by Developer
---*/
.home-row3 .gform_legacy_markup_wrapper .top_label .gfield_label,
.home-row3 .gform_legacy_markup_wrapper legend.gfield_label {
  display: none;
}
.home-row3 .gform_legacy_markup_wrapper .field_sublabel_below .ginput_complex.ginput_container label,
.home-row3 .gform_legacy_markup_wrapper .field_sublabel_below div[class*=gfield_time_].ginput_container label {
  display: none;
}
.home-row3 .gform_legacy_markup_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  border-bottom: solid 3px white;
  background: transparent;
  padding: 11px 4px;
  margin-bottom: 10px;
  color: #ffffff;
  margin-bottom: 20px;
}
.home-row3 input::-webkit-input-placeholder {
  color: #ffffff;
}
.home-row3 ::-moz-placeholder {
  color: #ffffff;
}
.home-row3 :-ms-input-placeholder {
  color: #ffffff;
}
.home-row3 ::-webkit-input-placeholder {
  color: #ffffff;
}
.home-row3 ::placeholder {
  color: #ffffff;
}
.home-row3 select#input_2_6 {
  background: transparent;
  border: none;
  border-bottom: solid 3px white;
  color: white;
  padding: 10px 0;
  margin-bottom: 30px;
}
.home-row3 input#gform_submit_button_2 {
  color: #ffffff;
  border: solid 3px #E32050;
  background: #E32050;
  font-weight: 400;
  font-family: "Smooch Sans", sans-serif;
  font-size: 30px !important;
  padding: 5px 60px;
}
.home-row3 input#gform_submit_button_2:hover {
  background-color: #9F1436;
  color: #ffffff;
  border: solid 3px #9F1436;
}
.home-row3 .gform_legacy_markup_wrapper .gform_footer {
  text-align: left;
}

.primary-bg.title-box-blue {
  color: white;
  padding: 15px 10px;
  display: block;
  max-width: 280px;
  margin: -32px auto 0;
}
.primary-bg.title-box-blue h2 {
  margin: 0;
}

.home-row4 {
  background-color: #9F1436;
  padding-top: 70px;
  padding-bottom: 60px;
}
.home-row4 h2 {
  color: #ffffff;
  padding: 15px 10px;
  display: block;
  margin: 0 auto 40px;
}
.home-row4 a h3, .home-row4 a:visited h3 {
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: #ffffff;
  text-transform: capitalize;
}
.home-row4 a:hover h3, .home-row4 a:visited:hover h3 {
  color: #E32050;
}
.home-row4 .btn.secondary-btn, .home-row4 .custom-login-form input.secondary-btn#wp-submit, .custom-login-form .home-row4 input.secondary-btn#wp-submit {
  background: #E32050;
  color: #ffffff;
}
.home-row4 .btn.secondary-btn:hover, .home-row4 .custom-login-form input.secondary-btn#wp-submit:hover, .custom-login-form .home-row4 input.secondary-btn#wp-submit:hover {
  background: #ffffff;
  color: #9F1436;
}

.home-row4-icon-box {
  text-align: center;
  padding-bottom: 90px;
}
.home-row4-icon-box img {
  width: 100%;
  max-width: 107px;
  margin: 0 auto 35px;
}
.home-row4-icon-box .home-row4-single-box {
  margin-bottom: 40px;
}

.home-row5 {
  background: rgb(225, 243, 255);
  background: linear-gradient(90deg, rgb(225, 243, 255) 0%, rgb(225, 243, 255) 50%, rgb(9, 94, 177) 50%, rgb(9, 94, 177) 100%);
}
.home-row5 img {
  max-width: 100px;
  margin: 30px auto 20px;
}

.nopad {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.custom-login-form {
  border: solid 1px #d1d3d4;
  border-radius: 8px;
  max-width: 475px;
  margin: 40px auto 100px;
  padding: 40px 20px;
  text-align: center;
}
.custom-login-form h3.pb-3.third {
  text-align: center;
}
.custom-login-form p.login-password, .custom-login-form .login-password.screen-reader-text, .custom-login-form input.login-password[type=search],
.custom-login-form p.login-username,
.custom-login-form .login-username.screen-reader-text,
.custom-login-form input.login-username[type=search] {
  max-width: 350px;
  margin: 0 auto;
}
.custom-login-form p.login-password, .custom-login-form .login-password.screen-reader-text, .custom-login-form input.login-password[type=search] {
  padding-top: 35px;
  padding-bottom: 20px;
}
.custom-login-form p.login-remember label, .custom-login-form .login-remember.screen-reader-text label, .custom-login-form input.login-remember[type=search] label {
  font-size: 16px;
}
.custom-login-form a, .custom-login-form a:visited {
  text-align: center;
  font-size: 18px;
}
.custom-login-form input#wp-submit {
  text-transform: uppercase;
  border: none !important;
}
.custom-login-form label {
  clear: both;
  width: 100%;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  font-family: "Smooch Sans", sans-serif;
}
.custom-login-form input#user_pass,
.custom-login-form input#user_login {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  padding: 13px 15px !important;
  border-radius: 5px !important;
  border: solid 1px #d1d3d4 !important;
  background: #f1f2f2;
}
.custom-login-form p.login-submit, .custom-login-form .login-submit.screen-reader-text, .custom-login-form input.login-submit[type=search] {
  text-align: center;
}

.home-row6 {
  padding-top: 80px;
  padding-bottom: 100px;
}
.home-row6 .gform_legacy_markup_wrapper .top_label .gfield_label,
.home-row6 .gform_legacy_markup_wrapper legend.gfield_label {
  display: none;
}
.home-row6 .gform_legacy_markup_wrapper .field_sublabel_below .ginput_complex.ginput_container label,
.home-row6 .gform_legacy_markup_wrapper .field_sublabel_below div[class*=gfield_time_].ginput_container label {
  display: none;
}
.home-row6 .gform_legacy_markup_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  border-bottom: solid 1px #58595b;
  background: transparent;
  padding: 11px 4px;
  margin-bottom: 10px;
  color: #58595b;
  margin-bottom: 20px;
}
.home-row6 input::-webkit-input-placeholder {
  color: #58595b;
}
.home-row6 ::-moz-placeholder {
  color: #58595b;
}
.home-row6 :-ms-input-placeholder {
  color: #58595b;
}
.home-row6 ::-webkit-input-placeholder {
  color: #58595b;
}
.home-row6 ::placeholder {
  color: #58595b;
}
.home-row6 select#input_3_5 {
  background: transparent;
  border: none;
  border-bottom: solid 1px #58595b;
  color: #58595b;
  padding: 10px 0;
  margin-bottom: 20px;
}
.home-row6 input#gform_submit_button_2,
.home-row6 input#gform_submit_button_3 {
  background-color: #E32050;
  color: #ffffff;
  border: solid 3px #E32050;
  font-family: "Smooch Sans", sans-serif;
  font-weight: 400;
  font-size: 30px !important;
  padding: 5px 60px;
}
.home-row6 input#gform_submit_button_2:hover,
.home-row6 input#gform_submit_button_3:hover {
  color: #ffffff;
  border: solid 3px #9F1436;
  background: #9F1436;
}
.home-row6 input#gform_submit_button_2 {
  margin-top: 24px;
}
.home-row6 textarea#input_3_4 {
  border-bottom: solid 1px #58595b;
  margin-bottom: 40px;
  padding-top: 0;
  margin-top: 0;
}
.home-row6 select#input_2_6 {
  border: none;
  border-bottom: solid 1px #abacad;
}

#wpsl-search-wrap .wpsl-input label {
  font-size: 21px;
}

#wpsl-search-wrap div label {
  font-size: 21px;
}

#wpsl-wrap #wpsl-result-list ul li {
  margin-top: 70px;
}

.wpsl-dropdown .wpsl-selected-item,
.wpsl-dropdown li, .wpsl-selected-item {
  padding: 5px 13px !important;
  font-size: 21px;
}

#wpsl-search-btn,
#wpsl-search-wrap input {
  font-size: 21px;
  padding: 5px 20px;
}

#wpsl-result-list a, #wpsl-result-list a:visited {
  outline: 0;
  color: #9F1436;
}
#wpsl-result-list a:hover, #wpsl-result-list a:visited:hover {
  text-decoration: underline;
}

#wpsl-gmap * {
  border: none;
  outline: none;
}

.wpsl-search {
  margin-bottom: 30px;
  padding: 13px 12px 3px 15px;
  background: #D9D9D9;
}

#wpsl-search-wrap div {
  margin-right: 23px;
  float: left;
}

rs-module-wrap#rev_slider_1_1_wrapper {
  background: rgb(159, 20, 54) !important;
}

@media (max-width: 992px) {
  rs-arrow.tp-leftarrow.tparrows.hesperiden {
    left: -41px !important;
  }
}

@media (max-width: 992px) {
  rs-arrow.tp-rightarrow.tparrows.hesperiden {
    left: 128% !important;
  }
}

.text-slide {
  font-style: italic;
}

.footer-bottom-row {
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 10px;
  background: #404041;
}
.footer-bottom-row a, .footer-bottom-row p, .footer-bottom-row .screen-reader-text, .footer-bottom-row input[type=search] {
  font-family: "Montserrat", sans-serif;
}

.uppercase {
  text-transform: uppercase;
}

.footer-menu-box {
  padding-top: 16px;
  padding-bottom: 20px;
}
.footer-menu-box .nav-fill .nav-item {
  width: 100%;
  text-align: left;
}

.footer-menu-box-third .nav-fill .nav-item {
  width: 100%;
  text-align: left;
}
.footer-menu-box-third p, .footer-menu-box-third .screen-reader-text, .footer-menu-box-third input[type=search] {
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
}

.footer-address,
.footer-menu-box.footer-menu-box-third {
  padding-top: 29px;
  padding-bottom: 16px;
}
.footer-address .footer-border,
.footer-menu-box.footer-menu-box-third .footer-border {
  width: 100%;
  margin-bottom: 3px;
  border-bottom: solid 1px white;
  padding-bottom: 6px;
  color: #ffffff;
}

.footer-address .footer-single-map-box {
  padding-top: 12px;
}
.footer-address .footer-single-map-box a, .footer-address .footer-single-map-box a:visited {
  color: #ffffff;
  padding-bottom: 10px;
  display: block;
  line-height: 20px;
  padding-bottom: 10px;
  display: block;
  line-height: 24px;
  font-size: 18px;
  font-weight: 400;
}
.footer-address .footer-single-map-box a:hover, .footer-address .footer-single-map-box a:visited:hover {
  text-decoration: underline;
}

.mobile-secial-links {
  display: none;
}

.home-content .list ul {
  padding-left: 2px;
  margin-bottom: 0;
}

.br-directors {
  font-size: 32px;
  font-style: normal !important;
  font-weight: 700 !important;
  font-family: "Montserrat", sans-serif;
  color: #E32050;
}

.wpsl-direction-wrap {
  display: none;
}

.sub-t {
  font-size: 32px;
  font-weight: 400;
  font-family: "Smooch Sans", sans-serif;
}

.faq-row-2 {
  padding: 100px 0;
}
.faq-row-2 .card {
  border: none;
  border-top: 0.25px solid #E32050 !important;
  border-radius: 0;
}
.faq-row-2 .card .card-header {
  background-color: transparent;
  padding-left: 0;
  border-bottom: none;
}
.faq-row-2 .card .card-header .title-faq {
  font-size: 32px;
  font-weight: 700;
  font-style: normal;
  font-family: "Montserrat", sans-serif;
  color: #9F1436;
  padding-right: 60px;
}
@media (max-width: 767px) {
  .faq-row-2 .card .card-header .title-faq {
    font-size: 24px;
  }
}
.faq-row-2 .card .card-header [aria-expanded=true] img {
  transform: rotate(180deg);
  transition: 0.2s all ease;
}
.faq-row-2 .card .card-header [aria-expanded=false] img {
  transform: rotate(0deg);
  transition: 0.2s all ease;
}
.faq-row-2 .card .card-body {
  font-weight: bold;
}
.faq-row-2 .card .card-body p, .faq-row-2 .card .card-body .screen-reader-text, .faq-row-2 .card .card-body input[type=search] {
  padding: 10px 0;
}
.faq-row-2 .card .last-card {
  border-bottom: 2px solid rgba(9, 137, 147, 0.6509803922);
}
.faq-row-2 .card p, .faq-row-2 .card .screen-reader-text, .faq-row-2 .card input[type=search] {
  color: #000000;
  text-transform: none;
  padding-left: 0;
  clip-path: none;
  font-weight: 400;
  width: 100%;
  text-align: left;
  margin-bottom: 0;
  font-size: 24px;
}
.faq-row-2 .card p img, .faq-row-2 .card .screen-reader-text img, .faq-row-2 .card input[type=search] img {
  right: 0;
  position: absolute;
  top: 34px;
}
.faq-row-2 .first-line {
  border-top: none !important;
}

.our-mission {
  font-size: 19px;
  font-style: italic;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: 0;
}

.hours-t {
  font-style: italic;
}

.pay-by {
  font-size: 37px;
}

.doc {
  margin-left: -15px;
}

.doc-title {
  color: #0563C1 !important;
}

.co-op-secrete,
.documents-section {
  display: none;
}

.logged-in .content-logged-out {
  display: none;
}
.logged-in .co-op-secrete,
.logged-in .documents-section {
  display: block;
}

.wps-row {
  justify-content: center;
}

/*.team-sp{
	margin-top: -110px !important;
}*/
.parallax {
  position: relative;
  background-attachment: fixed;
  background-position: center 0;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}
.parallax .container {
  position: relative;
  z-index: 9;
}
.parallax.quote-full-width::after {
  background-image: none;
  background-color: #E32050;
  opacity: 0.5;
}

@media only screen and (max-device-width: 1024px) {
  .parallax {
    background-attachment: scroll !important;
  }
}
@media (max-width: 991px) {
  .parallax {
    background-attachment: scroll !important;
    background-position: center !important;
  }
}
.header-banner.Banner.off {
  display: none;
}

.Banner.on {
  display: block;
}

.Banner.on {
  display: block;
  padding-top: 20px;
  padding-bottom: 10px;
}
.Banner.on .row {
  max-width: 1400px;
}

/*--- Buttons ---*/
.btn, .custom-login-form input#wp-submit {
  font-size: 20px;
  font-weight: 400;
  font-family: "Smooch Sans", sans-serif;
  background-color: transparent;
  border-radius: 0px;
  white-space: normal;
  padding: 10px 35px;
  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, .custom-login-form input#wp-submit {
  color: #ffffff;
  background-color: #9F1436;
}
.btn.primary-btn:hover, .custom-login-form input#wp-submit:hover {
  color: #ffffff;
  background: #E32050;
}
.btn.secondary-btn, .custom-login-form input.secondary-btn#wp-submit {
  color: #ffffff;
  background-color: #E32050;
}
.btn.secondary-btn:hover, .custom-login-form input.secondary-btn#wp-submit:hover {
  background-color: #9F1436;
  color: #ffffff;
}
.btn.third-btn, .custom-login-form input.third-btn#wp-submit {
  background-color: transparent;
  color: #9F1436;
  border: solid 2px #9F1436;
  font-size: 32px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 991px) {
  .btn.third-btn, .custom-login-form input.third-btn#wp-submit {
    font-size: 21px;
  }
}
.btn.third-btn:hover, .custom-login-form input.third-btn#wp-submit:hover {
  color: #ffffff;
  background-color: #9F1436;
  border: solid 2px #9F1436;
}
.btn.white-btn, .custom-login-form input.white-btn#wp-submit {
  background-color: transparent;
  color: #ffffff;
  border: solid 2px #ffffff;
}
.btn.white-btn:hover, .custom-login-form input.white-btn#wp-submit:hover {
  color: #9F1436;
  background-color: #ffffff;
  border: solid 2px #ffffff;
}

.home-row1 .hero-header-only {
  display: none;
}

@media (min-width: 1200px) {
  .home-row1 .hero-header-only {
    position: absolute;
    z-index: 999;
    width: 100%;
    height: 100%;
  }
  .home-row1 .hero-header-only .home-row1-left {
    visibility: visible;
    height: 100%;
  }
  .home-row1 .hero-header-only {
    display: block;
  }
  .home-row1 .home-row1-left {
    visibility: hidden;
  }
  .home-row1-right-wrap {
    padding-left: 0;
  }
  .home-row2-right .row {
    max-width: 550px;
  }
  .home-row2 .home-row2-left img {
    margin-bottom: -80px;
  }
  .about-row2 .about-row2-right {
    padding-right: 90px;
    padding-top: 90px;
  }
  .about-row2 .about-row2-right .row {
    max-width: 550px;
    justify-content: flex-end;
    float: right;
  }
  .make-payment-row3 {
    margin-top: -630px;
    z-index: 0;
    position: relative;
  }
  .make-payment-row2 .make-payment-row2-left .make-a-payment-form {
    z-index: 2;
    position: relative;
    background: white;
  }
  .contact-row2-map {
    padding-right: 45px;
  }
}
@media (min-width: 992px) {
  .afer-nav-mobile {
    display: none;
  }
  .home-row2-mobile {
    display: none;
  }
  .home-row1 .home-row1-right {
    background: none !important;
  }
  .home-row6 .gform_legacy_markup_wrapper {
    max-width: 540px;
    margin: 0 auto !important;
  }
  .service-row2-left {
    padding-bottom: 60px;
  }
  .service-row3-left {
    padding-bottom: 60px;
    padding-top: 100px !important;
  }
  .service-row4-left {
    padding-bottom: 60px;
    padding-top: 100px !important;
  }
  .service-row5-left {
    padding-bottom: 60px;
    padding-top: 100px !important;
  }
  .social-nav {
    text-align: center;
  }
  .home-row3.services-form-box.contact-page-form {
    padding-top: 148px;
    margin-top: -80px;
  }
}
@media (max-width: 991px) {
  body,
html {
    overflow-x: hidden;
  }
  .social-nav {
    display: none;
  }
  .br {
    display: none;
  }
  .left-box-content .btn.white-btn, .left-box-content .custom-login-form input.white-btn#wp-submit, .custom-login-form .left-box-content input.white-btn#wp-submit {
    color: #ffffff;
  }
  .left-box-content .btn.white-btn:hover, .left-box-content .custom-login-form input.white-btn#wp-submit:hover, .custom-login-form .left-box-content input.white-btn#wp-submit:hover {
    color: #9F1436;
  }
  .mobile-secial-links {
    text-align: left;
    display: block;
  }
  .mobile-secial-links a.nav-link.file-a-claim-link,
.mobile-secial-links a.nav-link.request-quote-link {
    font-size: 34px;
    font-weight: 400;
    border-radius: 0px;
    text-transform: uppercase;
    padding: 0.8rem 1rem 0.8rem 2rem;
    background: #9F1436;
    color: white;
    border-bottom: solid 1px #9F1436;
  }
  .mobile-secial-links a.nav-link.file-a-claim-link:hover,
.mobile-secial-links a.nav-link.request-quote-link:hover {
    background: #E32050;
    color: #ffffff;
  }
  .mobile-secial-links a.nav-link.file-a-claim-link {
    background: #E32050;
    color: #ffffff;
  }
  .mobile-secial-links a.nav-link.file-a-claim-link:hover {
    background: #9F1436 !important;
    color: white;
    border-bottom: solid 1px #9F1436;
  }
  .mobile-secial-links a.afer-nav-mobile.social-facebook.afer-nav-mobile,
.mobile-secial-links a.afer-nav-mobile:visited.social-facebook.afer-nav-mobile {
    font-size: 30px;
    color: #9F1436;
    position: relative;
    margin: 0 0 20px;
    text-align: left;
    padding-left: 2rem;
  }
  .mobile-secial-links a.afer-nav-mobile.social-facebook.afer-nav-mobile:hover,
.mobile-secial-links a.afer-nav-mobile:visited.social-facebook.afer-nav-mobile:hover {
    color: #E32050;
  }
  .mobile-secial-links a.afer-nav-mobile.social-facebook.afer-nav-mobile svg:not(:root).svg-inline--fa,
.mobile-secial-links a.afer-nav-mobile:visited.social-facebook.afer-nav-mobile svg:not(:root).svg-inline--fa {
    overflow: visible;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .home-row1 .home-row1-left {
    padding-top: 60px;
    padding-bottom: 60px;
    background: #006838;
    background: linear-gradient(90deg, #006838 5%, #8bc53f 97%);
    clip-path: none;
    display: none;
  }
  .home-row1 .home-row1-left .left-box-content {
    float: left;
  }
  .home-row1 .home-row1-right {
    min-height: 500px;
  }
  .home-row1 .home-row1-left .left-box-content .wrap {
    margin: 0 auto;
  }
  .home-row2 {
    background-image: none;
    padding-top: 0;
    padding-bottom: 40px;
  }
  .home-row2 .home-row2-left img {
    border-left: 0;
    border-right: 0;
    margin-top: 30px;
    margin-bottom: 35px;
  }
  .home-row2-mobile img {
    width: 100%;
  }
  .home-row3-left {
    padding-left: 30px;
    padding-right: 30px;
  }
  .home-row3 {
    background-image: none;
    padding-top: 60px;
    padding-bottom: 0;
    background-color: #ffffff;
  }
  .home-row3 .home-row3-right {
    background-color: #626262;
    background-image: url("/wp-content/themes/titan/images/home-row3-bg-mobile.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 50px;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 30px;
    padding-right: 30px;
  }
  .home-row3.services-form-box .home-row3-right,
.home-row3.services-form-box.contact-page-form .home-row3-right {
    background-color: transparent;
    background-image: none;
    margin-top: 0;
  }
  .home-row5 {
    background: transparent !important;
  }
  .home-row5 .container {
    padding-left: 0;
    padding-right: 0;
  }
  .home-row5 .container .home-row5-right,
.home-row5 .container .home-row5-left {
    padding-top: 40px;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .home-row5 .container img {
    max-width: 100px;
    margin: 0px 0 20px;
  }
  .service-row3 .service-left,
.service-row2 .service-left {
    padding-top: 40px;
    padding-bottom: 30px;
  }
  .home-row3.services-form-box {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 42px;
  }
  .home-hero {
    padding-top: 60px;
    padding-bottom: 120px;
  }
  .home-row1 .home-row1-right {
    min-height: 300px;
  }
  .home-row1 .home-row1-right .row .home-row1-right-wrap {
    justify-content: center;
  }
  .home-row1 .home-row1-right .row .home-row1-right-wrap h2 {
    font-size: 28px;
    padding-top: 10px;
  }
  .home-row1 .home-row1-right img {
    max-width: 57px;
  }
  .about-row2 {
    padding-top: 40px;
  }
  .footer-menu-box {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .foot-logo {
    max-width: 120px;
    margin-top: 25px;
    margin-bottom: 20px;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .home-row1 .top-hero-mobile {
    width: 100%;
    height: 363px;
    background: linear-gradient(90deg, #9F1436 31.53%, #E32050 87.5%) !important;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .home-row1 .top-hero-mobile h1 {
    color: #ffffff;
    padding-bottom: 30px;
  }
}
/*------*/
.agent-resources {
  display: none;
}

.logged-in .content-logged-out {
  display: none;
}
.logged-in .agent-resources {
  display: block;
}

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