/*
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: #005C87;
}

.secondary {
  color: #0094aa;
}

.dkgray {
  color: #58595B;
}

.primary-bg {
  background-color: #005C87;
}

.secondary-bg {
  background-color: #0094aa;
}

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

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

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

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

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

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

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

h2 {
  font-size: 56px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}
h3 {
  font-size: 56px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}

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

h5 {
  font-size: 36px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}

h6 {
  font-size: 32px;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
}

nav ul li {
  font-size: inherit;
}

.uppercase {
  text-transform: uppercase;
}

/*----
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: #005C87;
  border: solid 3px #005C87;
}
.search-submit:hover {
  background-color: transparent;
  color: #0094aa;
  border-color: #0094aa;
}

/*---
Header Blocks
---*/
/*--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: #005C87;
}

.secondary {
  color: #0094aa;
}

.dkgray {
  color: #58595B;
}

.primary-bg {
  background-color: #005C87;
}

.secondary-bg {
  background-color: #0094aa;
}

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

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

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

.brand-flex {
  display: block;
  width: 100%;
}

.custom-logo-link {
  display: block;
  margin: 0 auto;
}

@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 {
  background-color: transparent;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}

/*-------
Desktop
--------*/
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    border-bottom: solid 2px transparent;
    border-radius: 0px;
    margin-left: 15px;
    margin-right: 15px;
    text-transform: uppercase;
    padding: 0px;
    transition: all 0.3s ease-in-out;
  }
  .navbar-expand-lg .navbar-nav .nav-link:hover {
    color: #ffffff;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 12px;
    margin-left: 10px;
    margin-right: 10px;
  }
}
.navbar-nav .dropdown-menu {
  border-radius: 0;
  border: none;
  margin-top: 0;
}

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

/*-------
## Mobile
-------*/
@media (max-width: 991px) {
  .navbar {
    padding: 0px;
    background-color: #ffffff;
  }
  .navbar-nav .nav-link {
    font-size: 22px;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    background-color: #005C87;
    border-radius: 0px;
    text-transform: uppercase;
    padding: 10px 20px;
  }
  .navbar-nav .active > .nav-link, .navbar-nav .nav-link.active, .navbar-nav .nav-link.show, .navbar-nav .show > .nav-link {
    color: #ffffff;
    background-color: #2B2F36;
  }
  .navbar-brand img {
    width: 100%;
    max-width: 160px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  .dropdown-item {
    padding: 0.25rem 1.5rem;
    background-color: transparent;
    color: #ffffff;
    text-align: center;
  }
  .navbar-header {
    width: 100%;
  }
  .navbar-toggler {
    top: -90px;
    border: none;
    position: absolute;
    right: 10px;
    z-index: 64;
  }
  .navbar-toggler:focus, .navbar-toggler:hover {
    outline: none;
  }
  #titan-nav {
    z-index: 10;
    top: 0px;
    left: 0;
    transition: 0.001s;
    text-align: center;
    background-color: #005C87;
    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 span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #005C87;
    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;
  }
}
/*--- Social Menu ---*/
/*------*/
/*---
Footer Blocks
---*/
.white {
  color: #ffffff;
}

.primary {
  color: #005C87;
}

.secondary {
  color: #0094aa;
}

.dkgray {
  color: #58595B;
}

.primary-bg {
  background-color: #005C87;
}

.secondary-bg {
  background-color: #0094aa;
}

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

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

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

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

.header-social-links a, .header-social-links a:visited {
  font-size: 30px;
  color: #ffffff;
  margin: 0 5px;
}
.header-social-links a:hover, .header-social-links a:visited:hover {
  color: #FBFBFD;
}

.shiftnav-inner {
  background: rgba(0, 92, 135, 0.95) !important;
}
.shiftnav-inner a.shiftnav-toggle.shiftnav-toggle-mobile {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  padding: 50px 23px 20px;
  display: block;
}

.shiftnav ul.shiftnav-menu li.menu-item:hover,
.shiftnav.shiftnav-skin-slate ul.shiftnav-menu li.menu-item.current-menu-item > .shiftnav-target {
  color: #eee;
  background: #0094aa !important;
}

.shiftnav.shiftnav-skin-slate, .shiftnav.shiftnav-skin-slate ul.shiftnav-menu {
  background: transparent !important;
}

.shiftnav.shiftnav-skin-slate ul.shiftnav-menu li.menu-item > .shiftnav-target {
  display: block;
  color: #eee;
  font-size: 40px;
  line-height: 88px !important;
  border-bottom: solid white 2px;
}

.shiftnav.shiftnav-skin-slate ul.shiftnav-menu li.menu-item:last-child a {
  border-bottom: solid transparent 2px;
}

.logo-img {
  top: 50px;
  max-width: 350px;
}

/*---
Home Hero Content Block
---*/
.home-her-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.home-row8 .carousel-control-next:focus,
.home-row8 .carousel-control-next:hover,
.home-row8 .carousel-control-prev:focus,
.home-row8 .carousel-control-prev:hover {
  opacity: 0.7;
  color: #005C87;
}
.home-row8 .carousel-control-next {
  right: -100px;
}
.home-row8 .carousel-control-prev {
  left: -100px;
}
.home-row8 .carousel-control-prev,
.home-row8 .carousel-control-next {
  right: -100px;
  opacity: 1;
  color: #005C87;
  font-size: 40px;
}

.home-hero {
  background-color: transparent;
  background-image: url("/wp-content/themes/titan/images/home-vidoe-coverpng.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  color: #ffffff;
  padding-top: 300px;
  padding-bottom: 0;
}

img.about-header-image {
  margin: 0 auto;
  text-align: center;
  position: relative;
  left: 0;
  right: 0;
  display: block;
  bottom: -15px;
}

p.home-subtitle, .home-subtitle.screen-reader-text, input.home-subtitle[type=search] {
  font-weight: 500;
  font-size: 32px;
  margin-bottom: 32px;
}

.home-row2 {
  background: #FBFBFD;
  padding-top: 100px;
  padding-bottom: 80px;
}
.home-row2 img {
  margin-bottom: 5px;
}
.home-row2 p, .home-row2 .screen-reader-text, .home-row2 input[type=search] {
  color: #005C87;
}
.home-row2 p.home-number-p, .home-row2 .home-number-p.screen-reader-text, .home-row2 input.home-number-p[type=search] {
  font-weight: 700;
  font-size: 60px;
  line-height: 73px;
}
.home-row2 p.home-row2-desc, .home-row2 .home-row2-desc.screen-reader-text, .home-row2 input.home-row2-desc[type=search] {
  font-weight: 600;
  font-size: 16px;
  color: #7A7A7B;
  line-height: 20px;
}

.home-row3 {
  background: linear-gradient(180.31deg, #005C87 -9.11%, #0297DD 92.34%);
  position: relative;
}
.home-row3.video-content-box.coaching-row2 .home-row3-intro {
  padding-top: 145px;
}
.home-row3.video-content-box.coaching-row2 .img-building {
  left: -160px;
}
.home-row3.video-content-box .home-row3-intro {
  padding-top: 225px;
}
.home-row3.video-content-box a.btn[data-toggle=modal], .home-row3.video-content-box a:visited.btn[data-toggle=modal] {
  border: none;
  background: transparent;
}
.home-row3.video-content-box a.btn:focus, .home-row3.video-content-box a:visited.btn:focus {
  border: none;
  box-shadow: none;
  background: transparent;
}
.home-row3 .img-building {
  position: relative;
  top: 2px;
}
.home-row3 p.home-row3-intro, .home-row3 .home-row3-intro.screen-reader-text, .home-row3 input.home-row3-intro[type=search] {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 16px;
  color: #ffffff;
  padding-top: 75px;
}
.home-row3 .btn {
  margin-bottom: 90px;
}
.home-row3 p, .home-row3 .screen-reader-text, .home-row3 input[type=search] {
  text-align: justify;
  margin-bottom: 30px;
}

.home-row4 {
  margin-top: 100px;
}
.home-row4 h4 {
  font-size: 40px;
}
.home-row4 .home-row4-boxes {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.home-row4 .home-row4-boxes .home-row4-box {
  padding: 0;
  max-width: 220px;
  margin-bottom: 35px;
}
.home-row4 .home-row4-boxes .home-row4-box img {
  margin-bottom: 15px;
}
.home-row4 .home-row4-boxes .home-row4-box p, .home-row4 .home-row4-boxes .home-row4-box .screen-reader-text, .home-row4 .home-row4-boxes .home-row4-box input[type=search] {
  padding: 0 20px;
}

.home-row5 {
  background: linear-gradient(94.81deg, #005C87 -1.15%, #0297DD 73.78%);
  position: relative;
  padding-top: 60px;
}
.home-row5 h2 {
  padding-top: 75px;
}
.home-row5 .btn {
  margin-bottom: 90px;
}
.home-row5 p, .home-row5 .screen-reader-text, .home-row5 input[type=search] {
  text-align: justify;
  margin-bottom: 30px;
}
.home-row5 .home-row5-wrap.white {
  margin: 88px 0 35px;
}
.home-row5 .home-row5-wrap.white h4 {
  font-size: 32px;
}
.home-row5 .home-row5-wrap.white p, .home-row5 .home-row5-wrap.white .screen-reader-text, .home-row5 .home-row5-wrap.white input[type=search] {
  font-weight: 400;
}

.home-row6 {
  background-color: #ffffff;
  background-image: url("/wp-content/themes/titan/images/home-row6-bg.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding-top: 140px;
  padding-bottom: 180px;
}
.home-row6 h3 {
  color: #2B2F36;
  margin-bottom: 22px;
}
.home-row6 p, .home-row6 .screen-reader-text, .home-row6 input[type=search] {
  text-align: justify;
}
.home-row6 span {
  font-style: italic;
  padding-left: 10px;
  position: relative;
  top: 3px;
}
.home-row6 span img {
  margin-left: 10px;
  top: -3px;
  position: relative;
}
.home-row6 .home-row6-left-img {
  border-radius: 14px;
  border-bottom-left-radius: 50px;
}
.home-row6 .home-row7-left-img {
  border-radius: 14px;
  border-top-right-radius: 50px;
}

.home-row7-bottom {
  margin-top: 160px;
}
.home-row7-bottom .home-row7-left {
  display: flex;
  align-content: center;
  flex-wrap: wrap;
}
.home-row7-bottom .home-row7-left h2, .home-row7-bottom .home-row7-left h3, .home-row7-bottom .home-row7-left p, .home-row7-bottom .home-row7-left .screen-reader-text, .home-row7-bottom .home-row7-left input[type=search] {
  width: 100%;
}
.home-row7-bottom .home-row7-left h2.primary {
  margin-bottom: 0;
  line-height: 1.1;
}

.home-row8 {
  padding-bottom: 100px;
}
.home-row8 h2.primary {
  margin-bottom: 0;
  line-height: 1.1;
}
.home-row8 h2, .home-row8 h3 {
  padding-left: 30px;
}
.home-row8 h3 {
  margin-bottom: 70px;
}
.home-row8 .carousel-indicators .active {
  opacity: 1;
  background: #0370A3;
  border: 1px solid #0370A3;
  box-shadow: 0px 6px 8px -2px rgba(5, 190, 249, 0.31);
  border-radius: 8px;
}
.home-row8 .carousel-indicators li {
  background-color: transparent;
  opacity: 1;
  transition: opacity 0.6s ease;
  border: 1px solid #0370A3;
  border-radius: 8px;
  width: 50px;
  height: 5px;
}
.home-row8 .carousel-indicators {
  bottom: -50px;
}
.home-row8 .carousel-item {
  padding-top: 62px;
  padding-bottom: 62px;
  padding-right: 120px;
  border-radius: 32px;
  min-height: 700px;
}
.home-row8 #carouselExampleIndicators {
  padding: 0;
}
.home-row8 .slide-wrap {
  max-width: 500px;
  float: right;
  background: #005C87;
  padding: 50px;
  mix-blend-mode: normal;
  opacity: 0.9;
  border-radius: 16px 16px 16px 62px;
}
.home-row8 .slide-wrap h4, .home-row8 .slide-wrap p, .home-row8 .slide-wrap .screen-reader-text, .home-row8 .slide-wrap input[type=search] {
  color: #ffffff;
}
.home-row8 .slide-wrap h4 {
  font-size: 40px;
  max-width: 305px;
}
.home-row8 .slide-wrap p.pro-location, .home-row8 .slide-wrap .pro-location.screen-reader-text, .home-row8 .slide-wrap input.pro-location[type=search] {
  font-size: 32px;
  font-weight: 400;
  border-bottom: solid 1px #ffffff;
  margin-bottom: 50px;
  padding-bottom: 30px;
  color: #ffffff;
}
.home-row8 .slide-wrap p.pro-hold_period, .home-row8 .slide-wrap .pro-hold_period.screen-reader-text, .home-row8 .slide-wrap input.pro-hold_period[type=search],
.home-row8 .slide-wrap p.pro-increase_in,
.home-row8 .slide-wrap .pro-increase_in.screen-reader-text,
.home-row8 .slide-wrap input.pro-increase_in[type=search],
.home-row8 .slide-wrap p.pro-valuation,
.home-row8 .slide-wrap .pro-valuation.screen-reader-text,
.home-row8 .slide-wrap input.pro-valuation[type=search] {
  margin-bottom: 20px;
}
.home-row8 .slide-wrap p.pro-hold_period img, .home-row8 .slide-wrap .pro-hold_period.screen-reader-text img, .home-row8 .slide-wrap input.pro-hold_period[type=search] img {
  position: relative;
  left: 9px;
}
.home-row8 .slide-wrap p, .home-row8 .slide-wrap .screen-reader-text, .home-row8 .slide-wrap input[type=search] {
  font-size: 24px;
  font-weight: 600;
}
.home-row8 .slide-wrap p.pro-increase_in img, .home-row8 .slide-wrap .pro-increase_in.screen-reader-text img, .home-row8 .slide-wrap input.pro-increase_in[type=search] img {
  margin-right: 6px;
}
.home-row8 .slide-wrap p.pro-additional_information, .home-row8 .slide-wrap .pro-additional_information.screen-reader-text, .home-row8 .slide-wrap input.pro-additional_information[type=search] {
  font-size: 13px;
  font-weight: 400;
}
.home-row8 .slide-wrap img {
  padding-top: 10px;
  margin-right: 20px;
  margin-bottom: 10px;
}

.home-row10 h3 {
  margin-bottom: 80px;
}
.home-row10 .slide-wrap-sold {
  min-height: 500px;
  color: #ffffff;
  padding: 0 15px 40px;
  margin-bottom: 50px;
  position: relative;
  border-radius: 16px;
  text-align: center;
  overflow: hidden;
}
.home-row10 .slide-wrap-sold::after {
  background: linear-gradient(180deg, rgba(0, 92, 135, 0) 41.73%, #005C87 68.19%);
  opacity: 1;
  left: 0;
  bottom: 0;
  pointer-events: none;
  content: "";
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
}
.home-row10 .slide-wrap-sold h4 {
  padding-top: 480px;
  font-style: normal;
  font-weight: 500;
  font-size: 40px;
  color: #ffffff;
  z-index: 3;
  position: relative;
  padding-bottom: 30px;
}
.home-row10 .slide-wrap-sold p, .home-row10 .slide-wrap-sold .screen-reader-text, .home-row10 .slide-wrap-sold input[type=search] {
  color: #ffffff;
  margin-bottom: 0;
  z-index: 3;
  position: relative;
}
.home-row10 .slide-wrap-sold .img-fluid {
  max-width: auto;
  max-height: 42px;
  height: auto;
  clear: both;
  display: block;
  margin: 0 auto 12px;
}
.home-row10 .slide-wrap-sold span.title-sold-box {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  padding-bottom: 10px;
  display: inline-block;
}
.home-row10 .slide-wrap-sold span.title-sold-desc {
  font-size: 16px;
  font-weight: 400;
}
.home-row10 .slide-wrap-sold .list-info-home {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-content: flex-end;
  flex-wrap: nowrap;
}

.home .titan-portfolio {
  padding-bottom: 52px;
}

.nolink {
  pointer-events: none !important;
}

.hp-icons {
  max-width: 135px;
}

.home-testimonial-box {
  padding-top: 40px;
  padding-bottom: 20px;
}
.home-testimonial-box .img-testimonial img {
  padding-right: 30px !important;
  height: auto !important;
  width: 100% !important;
  max-width: 470px !important;
}
.home-testimonial-box p, .home-testimonial-box .screen-reader-text, .home-testimonial-box input[type=search] {
  color: #2B2F36;
  position: relative;
}
.home-testimonial-box p.test-intro, .home-testimonial-box .test-intro.screen-reader-text, .home-testimonial-box input.test-intro[type=search] {
  color: #0370A3;
  font-size: 25px;
  position: relative;
  margin-bottom: 40px;
  background-image: url("/wp-content/themes/titan/images/icon-title-line.png");
  background-position: center left;
  background-repeat: no-repeat;
  background-size: unset;
  padding-left: 30px;
}
.home-testimonial-box p.test-title, .home-testimonial-box .test-title.screen-reader-text, .home-testimonial-box input.test-title[type=search] {
  font-size: 42px;
  line-height: 95% !important;
  font-weight: 700 !important;
  padding: 15px 30px 20px 0;
  margin-bottom: 16px;
  background-image: url("/wp-content/themes/titan/images/icon-quote.png");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: contain;
}
.home-testimonial-box p.test-title span, .home-testimonial-box .test-title.screen-reader-text span, .home-testimonial-box input.test-title[type=search] span {
  font-weight: 400 !important;
}
.home-testimonial-box p.test-content, .home-testimonial-box .test-content.screen-reader-text, .home-testimonial-box input.test-content[type=search] {
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 25px !important;
}
.home-testimonial-box p.test-giver, .home-testimonial-box .test-giver.screen-reader-text, .home-testimonial-box input.test-giver[type=search] {
  font-weight: 600;
  font-size: 27.638px;
  line-height: 34px;
  color: #005C87;
  display: inline;
}
.home-testimonial-box p .test-giver-title, .home-testimonial-box .screen-reader-text .test-giver-title, .home-testimonial-box input[type=search] .test-giver-title {
  font-size: 18px !important;
  font-weight: 400 !important;
}

.home-row12 .insta-gallery-feed .insta-gallery-actions .insta-gallery-button.follow, .home-row12 .qligg-mfp-wrap .insta-gallery-actions .insta-gallery-button.follow {
  padding: 16px 25px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #05BEF9;
  border-radius: 16px;
  font-weight: 600;
  font-size: 18px;
  line-height: 20px;
  color: #ffffff;
  max-width: 250px;
  margin: 50px auto 0;
}
.home-row12 p.title-instagram, .home-row12 .title-instagram.screen-reader-text, .home-row12 input.title-instagram[type=search] {
  font-style: normal;
  font-weight: 700;
  font-size: 23px;
  line-height: 31px;
  color: #005C87;
  margin-bottom: 35px;
}

.footer-address {
  font-weight: 400;
  font-size: 14px;
  margin-top: 20px;
}

.hero-about {
  background-color: #fbfbfd;
  background-image: url("/wp-content/themes/titan/images/hero-about.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  color: #ffffff;
  padding-top: 260px;
  padding-bottom: 200px;
}
.hero-about.hero-coaching {
  background-image: url("/wp-content/themes/titan/images/hero-coaching.png");
}

.home-row3.about-row3.video-content-box.coaching-row2 {
  margin-bottom: 130px;
}

.align-left {
  padding: 30px 70px 28px 0;
  margin-bottom: 20px;
  float: left;
}

.book-appointment-row #calendly-inline-widget {
  height: 100% !important;
}
.book-appointment-row .calendly-inline-widget iframe, .book-appointment-row .calendly-badge-widget iframe, .book-appointment-row .calendly-overlay iframe {
  display: inline;
  width: 100%;
  height: 100%;
  min-height: 700px;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 0.5rem;
  border-bottom: none;
}

.seminar-row {
  padding-top: 60px;
  padding-bottom: 60px;
}

.seminar-box-body {
  padding-top: 30px;
}

#default-img {
  padding-bottom: 0;
}

.box-info-funds-only h2 {
  font-size: 51px;
}

.form-contact-wrap {
  box-shadow: 1px 22px 19px 0px #dadada;
  padding: 0 90px 50px;
  margin-bottom: 10px;
}

.site-footer {
  background: transparent;
  background-image: url("/wp-content/themes/titan/images/footer-bg.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 170px;
}

.footer-subcription-form h4 {
  font-size: 32px;
}
.footer-subcription-form input#gform_submit_button_2 {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-transform: capitalize;
  padding: 13px 24px;
  border-radius: 8px;
  background: #F2F2F2;
  color: #7A7A7B;
}

.footer-subcription-form-right input#input_2_1 {
  max-width: 330px;
  border-radius: 8px;
  padding: 12px 0 12px 15px;
}

.footer-social-links {
  text-align: center;
}
.footer-social-links a, .footer-social-links a:visited {
  font-size: 35px;
  margin-right: 5px;
  margin-left: 5px;
}

.footer-menu {
  padding-bottom: 20px;
  margin: 40px auto 0 !important;
}
.footer-menu .navbar-nav .nav-link {
  padding-right: 40px;
  padding-left: 40px;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
}

.footer-bottom-row {
  border-top: 3px solid rgba(255, 255, 255, 0.42);
  max-width: 950px;
  margin: 0px auto 20px;
  padding-top: 30px;
}
.footer-bottom-row p, .footer-bottom-row .screen-reader-text, .footer-bottom-row input[type=search] {
  font-size: 14px;
}

.titan-portfolio .locations {
  padding-top: 100px;
}
.titan-portfolio .locations .card {
  height: unset !important;
  margin-bottom: 50px;
}
.titan-portfolio .locations .card .card-img-top {
  max-height: 322px;
}

.instagram-box {
  padding-top: 70px;
}

.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(0, 148, 170, 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-head {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  min-height: 310px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.shiftnav-loading {
  display: none;
}

/*---
Internal Content Blocks
---*/
/*---
Internal Bottom Blocks
---*/
.modal-backdrop {
  z-index: 0;
}

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

.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), .gform_wrapper textarea {
  border-radius: 0;
  border: none;
}

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

.gform_wrapper textarea {
  margin-top: 12px;
}

body .gform_wrapper ul li.gfield {
  margin-top: 7px !important;
}

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

.gform_wrapper .gform_footer input.button {
  font-size: 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: #005C87;
  color: #ffffff;
  padding: 10px 25px 8px;
}
.gform_wrapper .gform_footer input.button:hover {
  background-color: #ffffff;
  color: #0094aa;
}

/* 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
---*/
.modal.pop-up-video .modal-dialog {
  width: 100%;
  max-width: 900px;
}
.modal.pop-up-video .modal-dialog .modal-body p, .modal.pop-up-video .modal-dialog .modal-body .screen-reader-text, .modal.pop-up-video .modal-dialog .modal-body input[type=search] {
  display: none;
}

.header-nav-open a, .header-nav-open a:visited {
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: white;
  text-transform: uppercase;
  padding-top: 14px;
  display: block;
}
.header-nav-open a:hover, .header-nav-open a:visited:hover {
  color: #FBFBFD;
}

/*---- Buttons ---*/
.btn {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 106.9%;
  font-family: "Montserrat", sans-serif;
  background-color: transparent;
  border-radius: 0px;
  white-space: normal;
  padding: 16px 46px;
  border-radius: 16px;
  transition: all 0.3s ease-in-out;
}
.btn.primary-btn {
  color: #ffffff;
  background-color: #05BEF9;
}
.btn.primary-btn:hover {
  background-color: #7A7A7B;
  color: #ffffff;
}
.btn.secondary-btn {
  color: #ffffff;
  background-color: #2B2F36;
}
.btn.secondary-btn:hover {
  background-color: #005C87;
  color: #ffffff;
}
.btn.white-btn {
  color: #ffffff;
  background-color: transparent;
  border: solid 2px #ffffff;
  padding: 10px 36px;
  border-radius: 8px;
}
.btn.white-btn:hover {
  background-color: #ffffff;
  color: #005C87;
}

@media (min-width: 1200px) {
  .circle-full-img {
    position: absolute;
    width: 100%;
    min-width: 847px;
    right: 40px;
    top: -80px;
  }
  .about-row3.video-content-box .circle-full-img {
    right: 110px;
  }
  .page-id-9 .book-appointment-row {
    margin-top: 350px;
  }
  .home-row5-left-img {
    position: absolute;
    width: auto;
    min-width: auto;
    left: 0;
    bottom: 0;
    max-height: 556px;
  }
  .home-row6-left {
    padding-right: 90px;
  }
  .home-row7-bottom .home-row7-left {
    padding-left: 79px;
  }
  .footer-subcription-form input#gform_submit_button_2 {
    position: absolute;
    left: 368px;
    top: 0;
  }
  .footer-subcription-form h4 {
    padding-left: 73px;
  }
  h2.inline {
    padding-right: 12px;
  }
  .inline {
    display: inline-block;
  }
  .footer-address-box {
    padding-left: 90px;
  }
  .footer-social-links {
    text-align: right;
    padding-right: 74px;
  }
  .book-appointment-row {
    margin-top: 80px;
  }
}
@media (min-width: 1281px) and (max-width: 1550px) {
  .home-row5-left-img {
    left: -100px;
  }
}
@media (min-width: 1281px) {
  .home-row5 .home-row5-wrap.white {
    margin: 145px 0 35px 220px;
  }
}
@media (max-width: 1199px) {
  .br {
    display: none;
  }
  .home-row3-left {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    margin-bottom: 0px;
  }
  .home-row4 .home-row4-boxes .home-row4-box {
    max-width: 250px;
    margin: 0 auto 35px;
  }
  img.img-fluid.home-row5-left-img {
    position: absolute;
    max-width: 541px;
    bottom: 0;
  }
  .home-row3 .img-building {
    display: none !important;
  }
  .book-appointment-row .calendly-inline-widget iframe,
.book-appointment-row .calendly-badge-widget iframe,
.book-appointment-row .calendly-overlay iframe {
    min-height: 1110px;
  }
  .book-appointment-row .book-appointment-box {
    background-color: transparent;
    margin-top: 0;
  }
  .call-to-action-row .call-to-action {
    flex-direction: column;
  }
  .footer-menu .navbar-nav .nav-link {
    padding-right: 20px;
    padding-left: 20px;
    background-color: rgba(255, 255, 255, 0);
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .home-row3.video-content-box .home-row3-intro {
    padding-top: 155px;
  }
  .home-hero {
    padding-top: 200px;
  }
}
@media (max-width: 991px) {
  .header-social-links {
    text-align: center;
    padding-top: 15px;
  }
  .header-nav-open a.shiftnav-toggle.shiftnav-toggle-mobile {
    text-align: center;
    margin-top: 10px;
  }
  .hero-about {
    padding-top: 250px;
    padding-bottom: 60px;
  }
  .navbar.navbar-default {
    background: transparent;
  }
  .home-row5-wrap,
img.img-fluid.home-row5-left-img {
    display: none;
  }
  .home-row5 h2 {
    padding-top: 0;
  }
  .circle-full-img {
    max-width: 290px;
  }
  .footer-subcription-form {
    text-align: center;
  }
  .footer-subcription-form .gform_wrapper.gravity-theme .gform_footer {
    display: block;
    margin-bottom: 50px;
  }
  .footer-address-box {
    text-align: center;
    margin-bottom: 20px;
  }
  .footer-social-links {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .site-footer {
    padding-top: 80px;
  }
  .video-content-box .home-row3-left {
    margin-top: 50px;
  }
  .video-content-box .home-row3-left .btn {
    margin-bottom: 0 !important;
  }
  .video-content-box .home-row3 .btn {
    margin-bottom: 10px;
  }
  .video-content-box .home-row3-right {
    text-align: center;
  }
  .video-content-box .home-row3-right p, .video-content-box .home-row3-right .screen-reader-text, .video-content-box .home-row3-right input[type=search] {
    text-align: center;
  }
  .video-content-box .home-row3-intro {
    padding-top: 0 !important;
  }
  .book-appointment-box h6 {
    color: #ffffff;
  }
  .book-appointment-row .book-appointment-box .calendar-box {
    width: 100%;
    min-height: auto;
  }
  .footer-subcription-form h4 {
    margin-bottom: 30px;
  }
  .book-appointment-row .book-appointment-box {
    overflow: hidden;
  }
  .book-appointment-row #calendly-inline-widget {
    min-width: auto !important;
    text-align: center;
  }
  .home-row6 {
    background-image: none;
    padding-top: 100px;
    padding-bottom: 60px;
  }
  .home-row6 img {
    margin-bottom: 35px;
  }
  .home-row7-bottom {
    margin-top: 60px;
  }
  .primary-btn.inv-btn {
    margin-top: 30px;
  }
  .home-row8 .slide-wrap {
    max-width: 100%;
    padding: 20px;
    border-radius: 10px;
  }
  .home-row8 .carousel-item {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
    border-radius: 32px;
    min-height: auto;
  }
  .home .titan-portfolio {
    padding-bottom: 0;
  }
  .home-testimonial-box rs-layer:not(.rs-wtbindex), .home-testimonial-box .rs-layer:not(.rs-wtbindex), .home-testimonial-box rs-alyer *:not(.rs-wtbindex), .home-testimonial-box .rs-layer *:not(.rs-wtbindex) {
    outline: none !important;
    text-align: center;
    margin: 0 auto 20px !important;
  }
  .home-testimonial-box p.test-giver, .home-testimonial-box .test-giver.screen-reader-text, .home-testimonial-box input.test-giver[type=search] {
    display: inline-block;
    margin-top: 20px !important;
  }
  .home .instagram-box {
    padding-top: 0;
  }
}
@media (max-width: 769px) {
  .book-appointment-row .calendly-inline-widget iframe, .book-appointment-row .calendly-badge-widget iframe, .book-appointment-row .calendly-overlay iframe {
    min-height: 1110px;
    max-width: 340px;
    margin: 50px auto 0 !important;
  }
  h1 {
    font-size: 38px;
  }
  h3,
h2 {
    font-size: 34px;
  }
  .home-hero {
    padding-top: 260px;
    padding-bottom: 30px;
  }
  .home-hero img.about-header-image {
    display: none;
  }
  .home-hero .home-hero-links .primary-btn {
    margin-bottom: 20px;
  }
  p.home-subtitle, .home-subtitle.screen-reader-text, input.home-subtitle[type=search] {
    font-size: 28px;
  }
  .titan-fund .block-text {
    padding-bottom: 40px;
  }
  .titan-portfolio .info-box .sub-h2,
.titan-portfolio .info-box h2 {
    font-size: 34px;
    margin-top: 20px;
  }
  .home-row3 .home-row3-left .btn {
    margin-bottom: 0;
    padding: 16px 0px 0;
    border: none;
  }
  .home-row6 span {
    font-style: italic;
    padding-left: 10px;
    position: relative;
    top: 0;
    display: inline-block;
    padding-top: 10px;
  }
  .home-row6 span img {
    top: 0;
    position: relative;
    margin: 20px 0;
  }
  .home-featured-pro .carousel-inner {
    padding-left: 0;
    padding-right: 0;
  }
  .home-row8 .slide-wrap p, .home-row8 .slide-wrap .screen-reader-text, .home-row8 .slide-wrap input[type=search] {
    font-size: 18px;
  }
  .titan-portfolio .portfolio-locations .text-location h1 {
    font-size: 36px;
  }
  .titan-portfolio .portfolio-locations .text-location {
    max-width: 360px;
    padding-top: 50px !important;
    padding-bottom: 50px !important;
    padding-left: 20px;
    padding-right: 15px;
  }
  .home-row10 .slide-wrap-sold {
    min-height: 210px;
    padding: 0 15px 40px;
    margin-bottom: 50px;
  }
  .home-row10 .slide-wrap-sold h4 {
    padding-top: 250px;
    font-size: 24px;
    padding-bottom: 30px;
  }
  .home-row10 .slide-wrap-sold::after {
    background: linear-gradient(180deg, rgba(0, 92, 135, 0.15) 0.93%, #005C87 73.19%);
  }
}/*# sourceMappingURL=style.css.map */