/*
Theme Name: Titan
Theme URI: https://titanwms.com
Author: Ryan Miller Front-End Developer at Titan Web Marketing Solutions
Author URI: https://titanwms.com
Description: A Gutenberg-ready bootstrap 4 theme created and modified based off of the Twenty Nineteen Theme.
Requires at least: WordPress 4.9.6
Version: 3.2
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: titan
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

Titan is based on Underscores https://underscores.me/, (C) 2012-2018 Automattic, Inc and the Twenty Nineteen Theme.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Titan Utilizes Reboot from Bootstrap to provide normalizing styles.
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

#Website Colors
#Typography
#Bootstrap Margin Fix
#Media
  ## Captions
  ## Galleries
#Transition Mixin and Normalizing Styles
#Header Blocks
#Footer Blocks
#Home Hero Content Block
#Home Content Blocks
#Internal Hero Content Block
#Internal Content Blocks
#Gravity Forms
#Custom Site Style by Developer

--------------------------------------------------------------*/
/*---
Website Colors
---*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@1,500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital@0;1&family=Playfair+Display:ital@0;1&family=Raleway&display=swap");
.white {
  color: #ffffff;
}

.primary {
  color: #0b3c49;
}

.secondary {
  color: #ed6916;
}

.gray {
  color: #787882;
}

.dkgray {
  color: #787882;
}

.primary-bg {
  background-color: #0b3c49;
}

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

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

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

/*---
Typography
---*/
/* Define Fonts for the Website */
/*
	font-family: 'Open Sans', sans-serif;
	font-family: 'Playfair Display', serif;
	font-family: 'Raleway', sans-serif;
*/
a {
  font-size: inherit;
  color: inherit;
}

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

body {
  font-size: 17px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  color: #787882;
}

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

h1 {
  font-size: 48px;
  font-weight: 400;
  font-family: "Playfair Display", serif;
}
h1.hero {
  font-size: 60px;
  font-weight: 400;
  font-style: italic;
}

p.sub, .sub.screen-reader-text, input.sub[type=search] {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  font-family: "Open Sans", sans-serif;
  font-style: italic;
}

h2, .h2 {
  font-size: 30px;
  font-weight: 400;
  font-family: "Playfair Display", serif;
}
h3 {
  font-size: 24px;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
}

h4, .h4 {
  font-size: 20px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  font-style: italic;
}

nav ul li {
  font-size: inherit;
}

/*---
Bootstrap Margin Fix
---*/
.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/*---
Media
---*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

embed,
iframe,
object {
  max-width: 100%;
}

.custom-logo-link {
  display: inline-block;
}

.avatar {
  border-radius: 100%;
  display: block;
  height: 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: #0b3c49;
  border: solid 3px #0b3c49;
}
.search-submit:hover {
  background-color: transparent;
  color: #ed6916;
  border-color: #ed6916;
}

/*---
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: #0b3c49;
}

.secondary {
  color: #ed6916;
}

.gray {
  color: #787882;
}

.dkgray {
  color: #787882;
}

.primary-bg {
  background-color: #0b3c49;
}

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

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

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

/*--- Collapse Header Navigation ---*/
img.custom-logo {
  width: 100%;
  max-width: 204px;
  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: #0b3c49;
  box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.3);
}

/*-------
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: #787882;
  }
  .navbar-expand-lg .navbar-nav .active .nav-link {
    color: #787882;
  }
}
@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: #787882;
}

/*-------
## 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: #0b3c49;
    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: #000000;
  }
  .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 {
    position: absolute;
    z-index: 10;
    top: 0px;
    left: 0;
    transition: 0.001s;
    text-align: center;
    background-color: #0b3c49;
    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: #0b3c49;
    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: #0b3c49;
}

.secondary {
  color: #ed6916;
}

.gray {
  color: #787882;
}

.dkgray {
  color: #787882;
}

.primary-bg {
  background-color: #0b3c49;
}

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

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

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

footer {
  background-color: #0b3c49;
}

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

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

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

.foot-logo {
  max-width: 48px;
}

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

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

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

.service-bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 1.5px;
}
.service-bg.one {
  background-image: url("/wp-content/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(237, 105, 22, 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;
}

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

.gform_heading {
  text-align: center;
  margin-bottom: 40px;
}

h2.gform_title, .gform_title.h2 {
  color: white;
  text-align: center !important;
  font-family: "Playfair Display", serif;
}

span.gform_description {
  color: white;
  text-align: center;
  font-family: "Open Sans", sans-serif;
}

.gform_wrapper.gravity-theme .gform_fields {
  display: flex !important;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-name, .contact-phone {
  width: 49%;
}

.contact-email, .contact-textarea {
  width: 100%;
}

.gform_wrapper.gravity-theme .gfield_label {
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  font-weight: 600 !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;
  background-color: transparent;
  border-bottom: solid 2px #ffffff;
  color: #ffffff;
}

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 {
  display: flex;
  justify-content: center;
}

.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: #ed6916;
  color: #ffffff;
  padding: 10px 25px 8px;
}
.gform_wrapper .gform_footer input.button:hover {
  background-color: #85917c;
  color: #ffffff;
}

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

div#gform_confirmation_message_1 {
  color: #ffffff;
  text-align: center;
}
div#gform_confirmation_message_1 h3 {
  color: #ffffff;
  text-align: center;
}

@media (max-width: 640px) {
  .gform_wrapper select {
    min-height: 2.5rem !important;
    padding: 5px 4px !important;
  }
}
/*---
Custom Site Styles by Developer
---*/
/*--- GENERAL ---*/
.container {
  height: 100%;
}
.container .row {
  height: 100%;
}

.shadow-text, .row-2 .hero-box p, .row-2 .hero-box .screen-reader-text, .row-2 .hero-box input[type=search], .row-2 .hero-box h1 {
  text-shadow: 2px 9px 16px rgb(0, 0, 0);
}

.overflow-h {
  overflow: hidden;
}

/*--- Header ---*/
.row-1 {
  border-bottom: solid 6px #ffffff;
}

.row-2 {
  height: 440px;
  width: 100%;
  background-image: url("/wp-content/themes/titan/images/hero-img-bg.jpg");
  background-position: center;
  background-size: cover;
}
.row-2 .hero-box {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-content: center;
  justify-content: center;
}
.row-3 {
  height: 270px;
  width: 100%;
}
.row-3 .about-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.row-3 .about-location-box {
  display: flex;
  align-items: center;
}
.row-3 .about-location-box .about-location {
  background-color: #ed6916;
  position: absolute;
  width: 700px;
  height: 113px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 85px;
}
.row-3 .about-location-box .about-location p, .row-3 .about-location-box .about-location .screen-reader-text, .row-3 .about-location-box .about-location input[type=search] {
  line-height: 0.1;
}

.row-4 {
  box-shadow: 0px 29px 12px -1px rgba(0, 0, 0, 0.2) inset;
  -webkit-box-shadow: 0px 29px 12px -1px rgba(0, 0, 0, 0.2) inset;
  -moz-box-shadow: 0px 29px 12px -1px rgba(0, 0, 0, 0.2) inset;
  height: 500px;
  width: 100%;
  background-color: #EAEAEA;
  background-image: url("/wp-content/themes/titan/images/bg-pattern.png");
  background-size: 195px;
}
.row-4 .row {
  max-height: 100% !important;
}
.row-4 .row .feautured-box {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.row-4 .row .feautured-box .f-floor-box {
  width: 100%;
  display: flex;
  justify-content: center;
}
.row-4 .row .feautured-box .f-floor-box .f-floor-1, .row-4 .row .feautured-box .f-floor-box .f-floor-2 {
  cursor: pointer;
  height: 295px;
  box-shadow: 12px 2px 12px -2px rgba(0, 0, 0, 0.28);
  -webkit-box-shadow: 12px 2px 12px -2px rgba(0, 0, 0, 0.28);
  -moz-box-shadow: 12px 2px 12px -2px rgba(0, 0, 0, 0.28);
}
.row-4 .row .feautured-box .f-floor-box .f-floor-1 img, .row-4 .row .feautured-box .f-floor-box .f-floor-2 img {
  width: 100%;
}
.row-4 .row .feautured-box .f-floor-box .f-floor-1 {
  width: 245px;
  background-color: #fff;
  margin-right: 15px;
}
.row-4 .row .feautured-box .f-floor-box .f-floor-2 {
  width: 445px;
  background-color: #fff;
  margin-left: 15px;
}
.row-4 .row .feautured-box .f-floor-box .f-floor-2 .img-box {
  width: 100%;
  display: flex;
  justify-content: space-around;
}
.row-4 .row .feautured-box .f-floor-box .f-floor-2 .img-box img {
  width: 35%;
  display: inline;
}
.row-4 .row .feautured-box .f-floor-box .f-floor-descrip {
  background-color: #0b3c49;
  height: 50px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}
.row-4 .row .feautured-box .f-floor-box .f-floor-descrip p, .row-4 .row .feautured-box .f-floor-box .f-floor-descrip .screen-reader-text, .row-4 .row .feautured-box .f-floor-box .f-floor-descrip input[type=search] {
  margin: 0;
}

.row-5 {
  height: 485px;
  width: 100%;
  position: relative;
  display: flex;
}
.row-5 .img-box {
  background-image: url("/wp-content/themes/titan/images/Tullahoma.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  height: 345px;
  width: 50%;
  top: 14%;
}
.row-5 .explore-box {
  display: flex;
  align-items: center;
}
.row-5 .explore-box .explore-box-img {
  height: 100%;
  display: flex;
  align-items: center;
  /*.img-box{
  	background-image: url('/wp-content/themes/titan/images/Tullahoma.png');
  	background-position: center;
  	background-size: cover;
  	background-repeat: no-repeat;
  	position: absolute;
  	height: 345px;
  	width: 655px;
  	margin-left: -136px;
  }*/
}
.row-5 .explore-box .explore-box-desc {
  padding-left: 90px;
}
.row-5 .explore-box .explore-box-desc ul {
  padding: 0;
  margin: 0;
  padding-left: 20px;
}
.row-5 .explore-box .explore-box-desc ul li {
  margin-bottom: 15px;
  color: #787882;
}

.row-6 {
  height: 685px;
  width: 100%;
  background-image: url("/wp-content/themes/titan/images/contact-bg.jpg");
  background-position: center;
  background-size: cover;
}
.row-6 .contact-box {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 0 60px;
}

.row-7 {
  height: 150px;
  width: 100%;
}
.row-7 .m-and-m-box {
  display: flex;
  align-items: center;
}
.row-7 .m-and-m-box .m-and-m-text {
  /*p, a{
  	font-weight: 600;
  }*/
}
.row-7 .m-and-m-box .m-and-m-text .title {
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 21px;
  margin: 0;
}
.row-7 .m-and-m-box .m-and-m-text a {
  color: #1F5480;
}
.row-7 .m-and-m-box .v-divider {
  height: 100px;
  width: 2px;
  background-color: rgba(120, 120, 130, 0.5);
  position: absolute;
  position: absolute;
  top: -30px;
  left: 650px;
}
.row-7 .m-and-m-box .logo-box {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.row-7 .m-and-m-box .logo-box a {
  margin-left: 20px;
  width: 90%;
}
.row-7 .m-and-m-box .logo-box a img {
  width: 75%;
  height: auto;
}

/*--- Buttons ---*/
.btn {
  font-size: 20px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  background-color: transparent;
  border-radius: 0px;
  white-space: normal;
  padding: 10px 25px;
  transition: all 0.3s ease-in-out;
}
.btn.primary-btn {
  color: #ffffff;
  background-color: #0b3c49;
}
.btn.primary-btn:hover {
  background-color: #85917c;
  color: #ffffff;
}
.btn.secondary-btn {
  color: #ffffff;
  background-color: #ed6916;
}
.btn.secondary-btn:hover {
  background-color: #85917c;
  color: #ffffff;
}
.btn.white-btn {
  background-color: #ffffff;
  color: #0b3c49;
}
.btn.white-btn:hover {
  color: #ffffff;
  background-color: #0b3c49;
}

/*------*/
@media screen and (min-width: 1025px) and (max-width: 1280px) {
  .row-5 .explore-box .explore-box-img .img-box {
    width: 560px;
  }
}
@media (max-width: 1024px) {
  h1.hero {
    font-size: 50px;
  }
  h2, .h2 {
    font-size: 25px;
  }
  p, .screen-reader-text, input[type=search] {
    font-size: 15px;
  }
  p.sub, .sub.screen-reader-text, input.sub[type=search] {
    font-size: 24px;
  }
  .row-3 {
    height: auto;
  }
  .row-3 .about-box {
    margin-bottom: 20px;
    margin-top: 50px;
  }
  .row-3 .about-location-box .about-location {
    position: revert;
    align-items: center;
    padding: 0;
  }
  .row-4 {
    height: auto;
    padding-top: 70px;
  }
  .row-4 .row {
    height: 100%;
  }
  .row-4 .row .feautured-box {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .row-4 .row .feautured-box .f-floor-box {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
  .row-4 .row .feautured-box .f-floor-box .f-floor-1, .row-4 .row .feautured-box .f-floor-box .f-floor-2 {
    width: 100%;
    height: auto;
  }
  .row-4 .row .feautured-box .f-floor-box .f-floor-1 img, .row-4 .row .feautured-box .f-floor-box .f-floor-2 img {
    width: 100%;
  }
  .row-4 .row .feautured-box .f-floor-box .f-floor-1 {
    margin: 0;
    margin-bottom: 30px;
  }
  .row-4 .row .feautured-box .f-floor-box .f-floor-2 {
    margin: 0;
    margin-bottom: 50px;
  }
  .row-5 {
    width: 100%;
    height: unset;
    background-image: url("/wp-content/themes/titan/images/Tullahoma-mobile.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .row-5 .img-box {
    background-image: unset;
  }
  .row-5 .explore-box {
    display: flex;
    align-items: center;
  }
  .row-5 .explore-box .explore-box-img {
    display: none;
  }
  .row-5 .explore-box .explore-box-desc {
    padding: 30px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .row-5 .explore-box .explore-box-desc h3 {
    color: #ffffff;
  }
  .row-5 .explore-box .explore-box-desc ul {
    padding: 0;
    padding-left: 20px;
  }
  .row-5 .explore-box .explore-box-desc ul li {
    margin-bottom: 25px;
    color: #ffffff;
  }
  .contact-name, .contact-phone {
    width: 100%;
  }
  .row-6 {
    height: unset;
    padding: 45px 0;
  }
  .row-6 .contact-box {
    padding: 0 15px;
  }
  .row-7 {
    height: unset;
    padding: 55px 0;
  }
  .row-7 .col-lg-7.m-and-m-text {
    text-align: center;
    margin-bottom: 20px;
  }
  .row-7 .col-lg-7.m-and-m-text p, .row-7 .col-lg-7.m-and-m-text .screen-reader-text, .row-7 .col-lg-7.m-and-m-text input[type=search] {
    font-size: 16px;
  }
  .row-7 .v-divider {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */