/*
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: #004E7D;
}

.secondary {
  color: #00B1E1;
}

.dkgray {
  color: #404041;
}

.primary-bg {
  background-color: #004E7D;
}

.secondary-bg {
  background-color: #00B1E1;
}

.tertiary-bg {
  background-color: #F36C23;
}

.third {
  color: #F36C23;
}

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

.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: #F36C23;
}

body {
  font-size: 10px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  color: #004E7D;
}

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

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

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

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

h4 {
  font-size: 19px;
  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: #004E7D;
}

nav ul li {
  font-size: inherit;
}

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

.bold {
  font-weight: 700;
}

.third,
.tertiary {
  color: #F36C23;
}

/*-----
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;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
  padding: 10px 25px;
  background-color: #004E7D;
  border: solid 3px #004E7D;
}
.search-submit:hover {
  background-color: transparent;
  color: #00B1E1;
  border-color: #00B1E1;
}

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

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

.primary {
  color: #004E7D;
}

.secondary {
  color: #00B1E1;
}

.dkgray {
  color: #404041;
}

.primary-bg {
  background-color: #004E7D;
}

.secondary-bg {
  background-color: #00B1E1;
}

.tertiary-bg {
  background-color: #F36C23;
}

.third {
  color: #F36C23;
}

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

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

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

@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;
  box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.3);
  height: 160px;
  padding: 0 10%;
}

.header-border-bottom {
  height: 10px;
  background: rgb(0, 104, 56);
  background: linear-gradient(90deg, rgb(0, 104, 56) 5%, rgb(139, 197, 63) 97%);
}

.searchform-header-box-wrapper, .nav-right-menu {
  margin-top: -20px;
}

.searchform-header a {
  width: 210px;
}

#menu-menu-right, #menu-primary {
  margin-top: 45px;
  color: #004E7D;
}

.nav-right-menu .px-0 {
  position: relative;
  top: 28px;
}

/*-------
Desktop
--------*/
@media (min-width: 992px) {
  body .navbar-nav .nav-header-phone a.nav-link {
    font-weight: 700;
    color: #004E7D;
  }
  body .navbar-nav .nav-header-phone a.nav-link:hover {
    color: #52B4CC;
  }
  body .navbar-nav .current-menu-item .nav-link {
    color: #5B47B2;
    background: #f1f1f2;
  }
  body .navbar-nav .current-menu-item .nav-link:hover {
    color: #5B47B2;
    background: #f1f1f2;
  }
  body .navbar-nav .nav-link {
    font-size: 12px;
    font-weight: 400;
    color: #004E7D;
    text-transform: uppercase;
    padding-left: 8px !important;
    padding-right: 8px !important;
    border-radius: 0;
    margin-left: 2px;
  }
  body .navbar-nav .nav-link:hover {
    color: #F36C23;
  }
  .dropdown-item {
    padding: 0.25rem 0.6rem 0.45rem 1rem;
    background-color: transparent;
    font-size: 12px;
    font-weight: 600;
    color: #404041;
    text-transform: uppercase;
    font-size: 12px !important;
    text-align: left !important;
    font-weight: 600 !important;
  }
  #magic-line {
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 90px;
    height: 3px;
    background: #52B4CC;
    text-decoration: none !important;
    overflow: hidden;
  }
}
@media (min-width: 992px) and (max-width: 1500px) {
  .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;
}

.navbar {
  padding: 0 3%;
}

.social-righ-box-icons, .social-righ-box-link {
  display: inline-block;
}

.svg-inline--fa {
  font-size: 25px;
  color: #F36C23;
}

/*-------
## 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: #ffffff;
    background-color: #5B47B2;
  }
  .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: #5B47B2;
    font-size: 18px;
    padding-right: 15px;
    font-weight: 700;
    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;
    transform: rotate(0deg);
    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: #5B47B2;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
  }
  #nav-icon4 span:nth-child(1) {
    top: 0px;
    transform-origin: left center;
  }
  #nav-icon4 span:nth-child(2) {
    top: 8px;
    transform-origin: left center;
  }
  #nav-icon4 span:nth-child(3) {
    top: 16px;
    transform-origin: left center;
  }
  #nav-icon4.open span:nth-child(1) {
    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) {
    transform: rotate(-45deg);
    top: 18px;
    left: 0px;
  }
  .navbar-nav .dropdown-menu {
    border-radius: 0;
    border: none;
    margin-top: 0;
    background: #5B47B2;
    color: #ffffff;
  }
  .navbar-nav .dropdown-menu li a {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    background: #5B47B2;
    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: #5B47B2;
    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: 22px;
  color: #5B47B2;
  position: relative;
  top: 5px;
  right: 0;
  margin: 0 4px 0 10px;
}

.social-nav a.social-facebook:hover, .social-nav a:visited.social-facebook:hover {
  color: #52B4CC;
}

.social-menu li {
  display: inline-block;
}

.social-menu li a {
  color: #52B4CC;
  padding: 5px 10px;
  line-height: 0.1;
  transition: all 0.3s ease-in-out;
}

.social-menu li a:hover {
  color: #172D99;
}

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

.social-btns {
  -webkit-clip-path: polygon(4% 0%, 100% 0%, 95% 100%, 0% 100%);
          clip-path: polygon(4% 0%, 100% 0%, 95% 100%, 0% 100%);
  display: flex;
  justify-content: space-evenly;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  align-items: flex-start;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  width: 210px;
  font-family: "Raleway", sans-serif;
  padding: 10px 0 !important;
  margin: 0 0 0 30px;
  color: #ffffff;
  background-color: #5B47B2;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

.social-btns:hover {
  background-color: #172D99;
  color: #ffffff;
  text-decoration: none;
}

.social-btns.social-btns2 {
  background-color: #52B4CC;
  color: #ffffff;
  text-decoration: none;
}

.social-btns.social-btns2:hover {
  color: #ffffff;
  background-color: #172D99;
  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: #52B4CC;
    padding: 5px 5px;
    line-height: 0.1;
  }
  .social-btns {
    border-radius: 0px;
    font-size: 15px;
  }
}
/*---
Footer Blocks
---*/
.white {
  color: #ffffff;
}

.primary {
  color: #004E7D;
}

.secondary {
  color: #00B1E1;
}

.dkgray {
  color: #404041;
}

.primary-bg {
  background-color: #004E7D;
}

.secondary-bg {
  background-color: #00B1E1;
}

.tertiary-bg {
  background-color: #F36C23;
}

.third {
  color: #F36C23;
}

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

.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: 18px;
  font-weight: 400;
  background: none !important;
  border-bottom: solid 1px transparent;
  border-radius: 0;
  text-align: left;
  padding: 13px 0 2px !important;
  flex-direction: row !important;
}
.navbar-nav.footer .nav-link:hover {
  color: #00B1E1;
  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: 13px;
  margin-bottom: 0px;
  color: #ffffff;
}

#menu-footerone li {
  border-right: solid #fff 2px;
  font-size: 15px;
}

#menu-footerone {
  margin-bottom: 25px;
}

#menu-item-111014 {
  border-right: none !important;
}

.footer_logo {
  margin-bottom: 22px;
}

@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-inner {
  -webkit-clip-path: polygon(100% 0, 100% 92%, 50% 100%, 0 92%, 0 0);
  clip-path: polygon(100% 0, 100% 80%, 50% 100%, 0 80%, 0 0);
}

.carousel-item {
  position: relative;
  z-index: 9;
  padding-bottom: 100px;
}

.carousel-item .slide-row {
  z-index: 6;
  position: relative;
}

.carousel-item::after {
  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: 80px;
  padding-bottom: 100px;
  background: #5b47b2;
  background: linear-gradient(270deg, rgba(1, 177, 225, 0.95) -1.88%, rgba(0, 78, 125, 0.95) 102.96%);
  -webkit-clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
}

.home-row1 .home-row1-left .left-box-content {
  max-width: 650px;
  float: right;
}

.home-row1 .home-row1-left .left-box-content .wrap {
  max-width: 550px;
}

.home-row1 .home-row1-left h1 {
  padding-bottom: 30px;
  color: #ffffff;
  font-size: 53px;
  font-weight: 700;
  font-style: italic;
}

.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: #5B47B2;
}

.home-row1 .home-row1-right {
  padding-top: 70px;
  padding-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
}

.home-row1 .home-row1-right .row {
  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-bottom: 0;
  margin: 50px auto;
}

.home-row2-left {
  position: relative;
  top: 150px;
}

.home-row2-left p, .home-row2-left .screen-reader-text, .home-row2-left input[type=search] {
  padding-right: 230px;
}

.page-id-18 .home-row2-left p, .page-id-18 .home-row2-left .screen-reader-text, .page-id-18 .home-row2-left input[type=search] {
  padding-right: 0px;
}

.navbar .container-liquid {
  position: relative;
  left: 12%;
  top: 10.5px;
}

.home-row2 .home-row2-left img {
  width: 100%;
  height: auto;
  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;
  padding: 14px 36px;
}

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

.home-row3 {
  background-image: url("/wp-content/uploads/2023/09/home-row3-bg.png");
  background-color: #f7f6fb;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 100px;
  padding-bottom: 100px;
  box-shadow: inset 0px 5px 30px 0px rgba(91, 71, 178, 0.3);
}

.home-row3.request-a-quote-row2 {
  background-image: url("/wp-content/themes/titan/images/hero-request-quote.jpg");
  background-color: #939598;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}

.home-row3.services-form-box {
  background-image: none;
  background-color: #5B47B2;
  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: url("/wp-content/themes/titan/images/contact-form-bg.jpg");
  background-color: rgba(91, 71, 178, 0.0005);
  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 .home-row3-left {
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-row3.services-form-box input#gform_submit_button_3 {
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  font-size: 19px !important;
  background-color: transparent;
  color: #ffffff;
  background-image: url("/wp-content/themes/titan/images/white-border-btn.png");
  background-position: bottom center;
  background-repeat: no-repeat;
  -webkit-clip-path: polygon(6% 0%, 100% 0%, 96% 100%, 0% 100%);
          clip-path: polygon(6% 0%, 100% 0%, 96% 100%, 0% 100%);
  background-size: 99% 100%;
}

.home-row3.services-form-box input#gform_submit_button_3:hover {
  color: #5B47B2;
  background-color: #ffffff;
}

.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 {
  background-color: #E8EEF4;
}

.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;
  box-shadow: -1px 1px 11px 6px rgba(0, 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;
}

.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(82, 180, 204, 0.7);
  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-image: url("/wp-content/uploads/2023/11/about-heroimg.png");
  height: 280px;
  background-color: #EEF2F4;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: #ffffff;
  padding-top: 90px;
  padding-bottom: 100px;
  margin-bottom: 0;
  position: relative;
  text-align: center;
}

.internal-row1.hero-agent-locator {
  background-color: #E8EEF4;
  background-image: url("/wp-content/uploads/2023/11/findandagent.png");
}

.internal-row1 h2 {
  text-transform: capitalize;
  color: #Fff;
}

.internal-row1.hero-agent-locator {
  background-color: #E8EEF4;
  background-image: url("/wp-content/uploads/2023/11/findandagent.png");
}

.hero-repo {
  background-color: #E8EEF4;
  background-image: url("/wp-content/uploads/2023/11/meeting.png");
}

.bluebird-head {
  background-color: #E8EEF4;
  background-image: url("/wp-content/uploads/2023/10/blue-bird-hero.png");
}

.internal-row1 h1 {
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0px 3px 13px rgba(0, 0, 0, 0.6117647059);
}

.internal-row1 .container {
  position: relative;
  z-index: 9;
}

.about-row2 img {
  width: 100%;
  border: 10px solid #ffffff;
  box-shadow: 0px 3px 13px rgba(0, 0, 0, 0.6117647059);
}

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

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

.about-row3 {
  padding-top: 90px;
  padding-bottom: 40px;
}

.about-row3 .wmts_member {
  background: #ffffff;
}

.about-row3 a.wph_auto_a {
  font-size: 25px;
  color: #172D99;
  font-style: italic;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

.about-row3 .wmts_job_title {
  margin: 7px 0 8px;
  font-size: 19px;
  font-weight: 600;
  color: #5B47B2;
}

.about-row-mission {
  background-image: url("/wp-content/uploads/2023/10/about-mission-bg-1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  padding-top: 90px;
  padding-bottom: 90px;
}

.about-row-mission h2, .about-row-mission h3,
.about-row-mission p,
.about-row-mission .screen-reader-text,
.about-row-mission input[type=search] {
  color: #ffffff;
}

.about-row4 {
  background: #52B4CC;
  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: #52B4CC;
  text-decoration: underline;
}

.icon-max-service {
  overflow: hidden;
  margin: 10px auto 30px;
  max-width: 125px;
  padding-top: 30px;
}

.icon-max-service img {
  width: 100%;
  height: auto;
  background: #F36C23;
  background: linear-gradient(90deg, rgba(243, 108, 35, 0.8996192227) 0%, #F36C23 100%);
}

.icon-max-service.icon-max-service-2 img {
  background: #F36C23;
  background: linear-gradient(90deg, rgba(243, 108, 35, 0.8996192227) 0%, #F36C23 100%);
  padding: 35px 22px 38px;
}

.icon-max-service.icon-max-service-3 img {
  background: #F36C23;
  background: linear-gradient(90deg, rgba(243, 108, 35, 0.8996192227) 0%, #F36C23 100%);
  padding: 24px 29px;
}

.icon-max-service.icon-max-service-4 img {
  background: #F36C23;
  background: linear-gradient(90deg, rgba(243, 108, 35, 0.8996192227) 0%, #F36C23 100%);
  padding: 19px 24px;
}

.icon-max-service.icon-max-service-5 img {
  background: #F36C23;
  background: linear-gradient(90deg, rgba(243, 108, 35, 0.8996192227) 0%, #F36C23 100%);
  padding: 34px 21px;
}

.icon-max-service.icon-max-service-6 img {
  background: #F36C23;
  background: linear-gradient(90deg, rgba(243, 108, 35, 0.8996192227) 0%, #F36C23 100%);
  padding: 24px;
}

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

.serverice-wrap-box .service-row2-left h2 {
  padding-bottom: 30px;
}

.service-row2-left {
  position: relative;
  top: 30px;
}

.service-row2-left h3 {
  padding-bottom: 20px;
}

.service-row2-intro {
  padding-top: 50px;
  padding-bottom: 50px;
}

.service-row2-intro p, .service-row2-intro .screen-reader-text, .service-row2-intro input[type=search] {
  margin: 15px 0 !important;
}

.service-row2-intro p, .service-row2-intro .screen-reader-text, .service-row2-intro input[type=search] {
  color: #004E7D;
}

.our_company_row {
  padding: 96px 0 270px;
  box-shadow: 4px 4px 55px 0px rgba(0, 78, 125, 0.4);
  margin-top: 110px;
}

.our_company_row h2 {
  padding-bottom: 49px;
}

.directors_row .about-row2-right img {
  position: relative;
  top: -200px;
  border: 10px solid #ffffff;
}

.company_text h2 {
  padding: 61px 0 43px;
}

.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;
  border: solid 1px red;
}

.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 ::-moz-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: #5B47B2;
  color: #ffffff;
  border: solid 3px #5B47B2;
  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 #172D99;
  background: transparent;
  padding: 11px 4px;
  color: #172D99;
  margin-bottom: 0px;
}

.make-payment-row2 .make-payment-row2-left .make-a-payment-form ::-moz-placeholder {
  color: #172D99;
}

.make-payment-row2 .make-payment-row2-left .make-a-payment-form ::placeholder {
  color: #172D99;
}

.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 {
  font-size: 19px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  background-color: #5B47B2;
  color: #ffffff;
  border-radius: 0px;
  white-space: normal;
  padding: 10px 35px;
  text-transform: uppercase;
  -webkit-clip-path: polygon(4% 0%, 100% 0%, 95% 100%, 0% 100%);
          clip-path: polygon(4% 0%, 100% 0%, 95% 100%, 0% 100%);
  border: 3px #5B47B2 solid;
}

.make-payment-row2 .make-payment-row2-left .make-a-payment-form input#gform_submit_button_4:hover {
  color: #ffffff;
  border: solid 3px #52B4CC;
  background: #52B4CC;
}

.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: #5B47B2;
  padding-top: 50px;
  padding-bottom: 70px;
  color: #ffffff;
}

.italic {
  font-style: italic;
}

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

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

.contact-row2 .contact-row2-left {
  text-align: center;
}

.contact-row2 .contact-row2-left h3 {
  padding-bottom: 25px;
  color: #5B47B2;
}

.contact-row2 .contact-row2-left p, .contact-row2 .contact-row2-left .screen-reader-text, .contact-row2 .contact-row2-left input[type=search] {
  color: #5B47B2;
  padding-bottom: 10px;
}

.contact-row2 .contact-row2-left img {
  max-width: 100px;
  margin: 0 auto;
}

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

.file-a-claim-form {
  padding-top: 80px;
  padding-bottom: 90px;
  box-shadow: inset 0px 5px 30px 0px rgba(91, 71, 178, 0.3);
}

.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 #172D99;
  background: transparent;
  padding: 11px 4px;
  margin-bottom: 5px;
  color: #172D99;
  margin-bottom: 5px;
}

.file-a-claim-form ::-moz-placeholder {
  color: #172D99;
}

.file-a-claim-form ::placeholder {
  color: #172D99;
}

.file-a-claim-form select#input_5_15 {
  background: transparent;
  border: none;
  border-bottom: solid 1px #172D99;
  color: #172D99;
  padding: 10px 0;
  margin-bottom: 20px;
}

.file-a-claim-form input#gform_submit_button_5 {
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  font-size: 19px !important;
  background-color: #5B47B2;
  color: #ffffff;
  -webkit-clip-path: polygon(6% 0%, 100% 0%, 96% 100%, 0% 100%);
          clip-path: polygon(6% 0%, 100% 0%, 96% 100%, 0% 100%);
  background-size: 99% 100%;
  background-image: none;
}

.file-a-claim-form input#gform_submit_button_5:hover {
  color: #ffffff;
  background-color: #52B4CC;
}

.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;
  transition: all 0.3s ease-in-out;
  background-color: #5B47B2;
  color: #ffffff;
  padding: 10px 25px 8px;
}

.gform_wrapper .gform_footer input.button:hover {
  background-color: #ffffff;
  color: #52B4CC;
}

.ginput_container_text::-moz-placeholder {
  color: #fff;
}

.ginput_container_text::placeholder {
  color: #fff;
}

/* 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
---*/
.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 ::-moz-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 {
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  font-size: 19px !important;
  background-color: transparent;
  color: #ffffff;
  background-image: url("/wp-content/themes/titan/images/white-border-btn.png");
  background-position: bottom center;
  background-repeat: no-repeat;
  -webkit-clip-path: polygon(6% 0%, 100% 0%, 96% 100%, 0% 100%);
          clip-path: polygon(6% 0%, 100% 0%, 96% 100%, 0% 100%);
  background-size: 99% 100%;
}

.home-row3 input#gform_submit_button_2:hover {
  color: #5B47B2;
  background-color: #ffffff;
}

.home-row3 .gform_legacy_markup_wrapper .gform_footer {
  text-align: center;
}

.home-row3.contact-page-form {
  box-shadow: 0px 5px 30px 0px rgba(91, 71, 178, 0.3);
}

.home-row3.contact-page-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 3px #172d99;
}

.home-row3.contact-page-form ::-moz-placeholder {
  color: #172D99;
}

.home-row3.contact-page-form ::placeholder {
  color: #172D99;
}

.home-row3.contact-page-form select#input_2_6 {
  background: transparent;
  border: none;
  border-bottom: solid 3px #172D99;
  color: #172D99;
  padding: 10px 0;
  margin-bottom: 30px;
}

.home-row3.contact-page-form textarea#input_3_4 {
  background: transparent;
  border-bottom: solid 3px #172D99;
  color: #172D99;
}

.home-row3.contact-page-form select#input_3_5 {
  border-bottom: solid 3px #172D99;
  color: #172D99;
}

.home-row3.contact-page-form input#gform_submit_button_3 {
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  font-size: 19px !important;
  background-color: #5B47B2;
  color: #ffffff;
  -webkit-clip-path: polygon(6% 0%, 100% 0%, 96% 100%, 0% 100%);
          clip-path: polygon(6% 0%, 100% 0%, 96% 100%, 0% 100%);
  background-size: 99% 100%;
  background-image: none;
}

.home-row3.contact-page-form input#gform_submit_button_3:hover {
  color: #ffffff;
  background-color: #52B4CC;
}

.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 {
  padding-top: 70px;
  padding-bottom: 40px;
}

.home-row4 h2 {
  color: #5B47B2;
  padding: 15px 10px;
  display: block;
  max-width: 280px;
  margin: 0 auto 40px;
}

.home-row4 h3 {
  margin-bottom: 50px;
}

.home-row4 img {
  background: #00B1E1;
  background: linear-gradient(270deg, #00B1E1 0%, #004E7D 99%);
}

.home-row4 .home-row4-sbox2 .blue_title_box {
  font-size: 17px;
}

.home-row4 .home-row4-sbox2 img {
  background: #00B1E1;
  background: linear-gradient(90deg, #00B1E1 0%, #004E7D 100%);
}

.home-row4 .home-row4-sbox3 img {
  background: #5773bc;
  background: linear-gradient(90deg, #00B1E1 0%, #004E7D 100%);
}

.home-row4 .home-row4-sbox4 img {
  background: #5497c5;
  background: linear-gradient(90deg, #00B1E1 0%, #004E7D 100%);
}

.home-row4 a h3, .home-row4 a:visited h3 {
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: #5B47B2;
}

.home-row4 a:hover h3, .home-row4 a:visited:hover h3 {
  color: #52B4CC;
}

.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: #52B4CC;
  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: #F36C23;
}

.page-id-110798 .home-row4 {
  padding-top: 0;
  margin-top: -10px;
}

.home-row4-icon-box {
  text-align: center;
  padding: 27px 23px;
}

.home-row4-icon-box img {
  width: 100%;
  max-width: 127px;
  padding: 27px 23px;
  height: 123px;
  margin: 0 auto 35px;
}

.home-row4-icon-box .home-row4-single-box {
  margin: 0 15px 40px;
}

.home-row5 {
  background: #e1f3ff;
  background: linear-gradient(90deg, #e1f3ff 0%, #e1f3ff 50%, #095eb1 50%, #095eb1 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: 21px;
  font-style: italic;
  font-weight: 700;
}

.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: 155px;
  padding-bottom: 100px;
  background: #F36C23;
  -webkit-clip-path: polygon(50% 0%, 100% 17%, 100% 100%, 0 100%, 0 17%);
  clip-path: polygon(50% 0%, 100% 17%, 100% 100%, 0 100%, 0 17%);
}

.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 #ffffff;
  background: transparent;
  padding: 11px 4px;
  margin-bottom: 10px;
  color: #ffffff;
  margin-bottom: 20px;
}

.home-row6 ::-moz-placeholder {
  color: #ffffff;
}

.home-row6 ::placeholder {
  color: #ffffff;
}

.home-row6 select#input_3_5 {
  background: transparent;
  border: none;
  border-bottom: solid 1px #ffffff;
  color: #ffffff;
  padding: 10px 0;
  margin-bottom: 20px;
}

.home-row6 input#gform_submit_button_2,
.home-row6 input#gform_submit_button_3 {
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  font-size: 19px !important;
  background-color: transparent;
  color: #ffffff;
  background-image: url("/wp-content/themes/titan/images/white-border-btn.png");
  background-position: bottom center;
  background-repeat: no-repeat;
  -webkit-clip-path: polygon(6% 0%, 100% 0%, 96% 100%, 0% 100%);
          clip-path: polygon(6% 0%, 100% 0%, 96% 100%, 0% 100%);
  background-size: 99% 100%;
}

.home-row6 input#gform_submit_button_2:hover,
.home-row6 input#gform_submit_button_3:hover {
  color: #5B47B2;
  background-color: #ffffff;
}

.home-row6 input#gform_submit_button_2 {
  margin-top: 24px;
}

.home-row6 textarea#input_3_4 {
  border-bottom: solid 1px #ffffff;
  background-color: transparent;
  margin-bottom: 40px;
  padding-top: 0;
  margin-top: 0;
}

.home-row6 select#input_2_6 {
  border: none;
  border-bottom: solid 1px #ffffff;
}

.rating-wrapper {
  margin: 17px 0px 10px !important;
}

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

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

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

.about-mission-left {
  position: relative;
  left: 10%;
  top: 3%;
}

.carousel-indicators li {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #004E7D;
}

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

#wpsl-result-list a, #wpsl-result-list a:visited {
  outline: 0;
  color: #5B47B2;
}

#wpsl-result-list a:hover, #wpsl-result-list a:visited:hover {
  text-decoration: underline;
}

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

.services-form-box.contact-page-form {
  overflow: hidden;
}

.contact-hours-box {
  background: #5B47B2;
  padding: 80px 120px 80px;
  position: relative;
  z-index: 2;
}

.contact-hours-box h2 {
  padding-bottom: 10px;
}

.contact-hours-box:after {
  background: #5B47B2;
  content: " ";
  position: absolute;
  width: 5000px;
  height: 100%;
  right: 100%;
  top: 0;
  z-index: 1;
}

.contact-hours-box:before {
  background: #ffffff;
  content: " ";
  position: absolute;
  width: 50px;
  height: 100%;
  left: 100%;
  top: 0;
  z-index: 1;
  -webkit-clip-path: polygon(99% 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(99% 0, 100% 0, 100% 100%, 0 100%);
  margin-left: -49px;
}

.contact-hours-box.contact-request-quote {
  padding: 80px 120px 80px 0;
}

.contact-hours-box.contact-request-quote h2 {
  text-align: left;
}

.home-row3.services-form-box.contact-page-form.contac-request-a-quote {
  padding-top: 0;
  padding-bottom: 80px;
  box-shadow: none;
}

.blue-row2-intro p, .blue-row2-intro .screen-reader-text, .blue-row2-intro input[type=search] {
  font-size: 16px;
  padding-top: 35px;
}

.blue_vision {
  margin: 80px auto;
}

.page-id-111335 .home-row4-icon-box .home-row4-single-box {
  margin: 0;
}

.carrusel_row2 p, .carrusel_row2 .screen-reader-text, .carrusel_row2 input[type=search] {
  padding-bottom: 85px;
}

.blue_title_box {
  font-size: 19px;
  font-weight: 700;
  font-style: italic;
  line-height: 23px;
}

.page-id-111335 .home-row4 {
  padding-bottom: 260px;
}

.page-id-111335 .home-row6 {
  margin-top: -215px;
}

.conected {
  background: linear-gradient(270deg, rgba(1, 177, 225, 0.8) -1.43%, rgba(0, 78, 125, 0.8) 78.27%);
  padding: 90px 0;
}

.carrusel_row1 h2 {
  padding: 34px 0 27px;
}

.carrusel_row2 h3 {
  padding: 62px 0 27px;
}

.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: "Catamaran", 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: 21px;
  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;
}

.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: 23px;
  margin-bottom: 0;
}

.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: #52B4CC;
  opacity: 0.5;
}

@media (min-width: 1500px) {
  .row3_block2 {
    margin-left: 35%;
  }
  .row3_form {
    margin-left: -150px;
  }
}
@media (min-width: 992px) and (max-width: 1500px) {
  .row3_form {
    margin-left: -70px;
  }
  .row3_block2 {
    margin-left: 25%;
  }
  .navbar .container-liquid {
    position: relative;
    left: 1% !important;
    top: 7px !important;
  }
}
@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;
  }
  .company_text {
    margin-top: -45%;
  }
  .home-row4-icon-box .home-row4-single-box {
    margin: 0 15px 40px;
    position: relative;
    left: 60px;
  }
  .home-row4 {
    padding-top: 0px;
    padding-bottom: 40px;
  }
  .page-id-111335 .home-row4 {
    margin-left: -100px;
  }
}
.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: 19px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  background-color: transparent;
  border-radius: 0px;
  white-space: normal;
  padding: 10px 35px;
  text-transform: uppercase;
  -webkit-clip-path: polygon(4% 0%, 100% 0%, 95% 100%, 0% 100%);
          clip-path: polygon(4% 0%, 100% 0%, 95% 100%, 0% 100%);
  transition: all 0.3s ease-in-out;
}

.btn.primary-btn, .custom-login-form input#wp-submit {
  color: #ffffff;
  background-color: #F36C23;
}

.btn.primary-btn:hover, .custom-login-form input#wp-submit:hover {
  color: #ffffff;
  background: #52B4CC;
}

.btn.secondary-btn, .custom-login-form input.secondary-btn#wp-submit {
  color: #ffffff;
  background-color: #52B4CC;
}

.btn.secondary-btn:hover, .custom-login-form input.secondary-btn#wp-submit:hover {
  background-color: #F36C23;
  color: #ffffff;
}

.btn.white-btn, .custom-login-form input.white-btn#wp-submit {
  background-color: transparent;
  color: #ffffff;
  background-image: url("/wp-content/themes/titan/images/white-border-btn.png");
  background-position: bottom center;
  background-repeat: no-repeat;
  -webkit-clip-path: polygon(6% 0%, 100% 0%, 95% 100%, 0% 100%);
          clip-path: polygon(6% 0%, 100% 0%, 95% 100%, 0% 100%);
  background-size: 100% 101%;
}

.btn.white-btn:hover, .custom-login-form input.white-btn#wp-submit:hover {
  color: #5B47B2;
  background-color: #ffffff;
}

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

.claim_title1 {
  padding: 70px 0 20px;
}

.claim_p2 {
  padding-bottom: 100px;
}

.claim_p3 {
  padding-bottom: 130px;
}

@media (min-width: 1200px) {
  .home-row2-left {
    position: relative;
    bottom: -60px;
  }
  .home-row1 .hero-header-only {
    position: absolute;
    z-index: 999;
    width: 100%;
    height: 100%;
  }
  .home-row1 .home-row1-left {
    visibility: visible;
    height: 100%;
    max-height: 400px;
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .home-row1 .hero-header-only {
    display: block;
  }
  .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: 60px;
  }
  .about-row2 .about-row2-right .row {
    max-width: 550px;
    justify-content: flex-end;
    float: right;
  }
  .about-row2-right img, .directors_row .about-row2-right img {
    height: 518px;
  }
  .make-payment-row3 {
    margin-top: -570px;
    z-index: 0;
    position: relative;
  }
  .make-payment-row2 .make-payment-row2-left .make-a-payment-form {
    z-index: 2;
    position: relative;
    background: white;
  }
  .reports_row2 {
    padding: 150px 0;
  }
  .contact-row2-map {
    padding-right: 45px;
  }
  .contact-row2-map iframe {
    box-shadow: 1px 1px 16px 5px rgba(0, 0, 0, 0.21);
    border: solid 10px #ffffff !important;
  }
}
@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 {
    background-image: none;
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  .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: #5B47B2;
  }
  .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: #5B47B2;
    color: white;
    border-bottom: solid 1px #5B47B2;
  }
  .mobile-secial-links a.nav-link.file-a-claim-link:hover,
  .mobile-secial-links a.nav-link.request-quote-link:hover {
    background: #52B4CC;
    color: #ffffff;
  }
  .mobile-secial-links a.nav-link.file-a-claim-link {
    background: #52B4CC;
    color: #ffffff;
  }
  .mobile-secial-links a.nav-link.file-a-claim-link:hover {
    background: #5B47B2 !important;
    color: white;
    border-bottom: solid 1px #5B47B2;
  }
  .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: #5B47B2;
    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: #52B4CC;
  }
  .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 h1 {
    padding-bottom: 30px;
    font-size: 33px;
    max-width: 350px;
    margin: 0 auto;
  }
  .home-row1 .home-row1-left {
    margin-top: 100px;
    padding-top: 60px;
    padding-bottom: 60px;
    -webkit-clip-path: none;
            clip-path: none;
  }
  .home-row1 .home-row1-left .left-box-content {
    float: left;
    text-align: center;
  }
  .home-row1 .home-row1-right {
    min-height: 500px;
    display: none;
  }
  .home-row1 .carousel-inner {
    -webkit-clip-path: polygon(100% 0, 100% 92%, 50% 100%, 0 92%, 0 0);
    clip-path: polygon(100% 0, 100% 90%, 50% 100%, 0 90%, 0 0);
  }
  .home-row1 .carousel-item {
    padding-bottom: 140px;
  }
  .home-row1 .home-row1-left .left-box-content .wrap {
    margin: 0 auto;
  }
  .home-row2 {
    background-image: none;
    padding-top: 50px;
    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-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-row2-right,
  .service-row2 .service-row2-right {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-bottom: 0;
    padding-top: 0;
  }
  .service-row3 .service-row2-right.service-row3-right,
  .service-row2 .service-row2-right.service-row3-right {
    background: url("/wp-content/themes/titan/images/services-home-mobile.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .service-row3 .service-row2-right.service-row4-right,
  .service-row2 .service-row2-right.service-row4-right {
    background: url("/wp-content/themes/titan/images/services-renter-mobile.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .service-row3 .service-row2-right.service-row5-right,
  .service-row2 .service-row2-right.service-row5-right {
    background: url("/wp-content/themes/titan/images/services-inland-mobile.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .service-row3 .service-left,
  .service-row2 .service-left {
    padding-top: 40px;
    padding-bottom: 30px;
  }
  .home-row3 {
    background-image: none;
    padding-top: 0;
  }
  .home-row3 .container {
    max-width: 100% !important;
    width: 100% !important;
  }
  .home-row3-right.aos-init.aos-animate {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 70px;
  }
  .home-row6 {
    padding-top: 90px;
    padding-bottom: 60px;
    -webkit-clip-path: polygon(50% 0%, 100% 4%, 100% 100%, 0 100%, 0 5%);
    clip-path: polygon(50% 0%, 100% 4%, 100% 100%, 0 100%, 0 5%);
  }
  .about-mission-left {
    background-image: url("/wp-content/themes/titan/images/about-mission-bg-mobile.jpg");
    margin-top: 160px;
  }
  .home-row3-right.aos-init.aos-animate {
    background-image: url("/wp-content/themes/titan/images/home-row3-bg-mobile.png");
    background-size: cover;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .mobile-social-box {
    text-align: center;
  }
  .mobile-buttons-box {
    text-align: center;
    max-width: 300px;
    margin: 0 auto;
  }
  .mobile-buttons-box a, .mobile-buttons-box a:visited {
    margin-bottom: 20px;
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  body,
  html {
    overflow-x: hidden;
  }
  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;
  }
}/*# sourceMappingURL=style.css.map */