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

.secondary {
  color: #0094aa;
}

.dkgray {
  color: #333333;
}

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

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

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

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

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

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

body {
  font-size: 20px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  color: #333333;
}

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

.h1 {
  font-size: 48px;
  font-weight: 400;
  font-family: "Alfa Slab One", serif;
  text-align: center;
  color: #ffffff;
  text-shadow: 0px 4px 6px rgba(0, 0, 0, 0.35);
  text-transform: uppercase;
  line-height: 95.836%; /* 46.001px */
}

.hero-sub-title {
  text-shadow: 0px 4px 6px rgba(0, 0, 0, 0.35);
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 500;
  line-height: 95.836%; /* 23.001px */
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  margin-top: 24px;
}

h1 {
  font-size: 48px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}
h1.hero {
  font-size: 48px;
  font-weight: 400;
}

h2 {
  font-size: 40px;
  font-weight: 700;
  font-family: "Alfa Slab One", serif;
  line-height: normal;
}
h3 {
  font-size: 24px;
  font-weight: 700;
  font-family: "Alfa Slab One", serif;
}

h4 {
  font-size: 24px;
  font-weight: 400;
  font-family: "Alfa Slab One", serif;
  line-height: normal;
}

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: #D52650;
  border: solid 3px #D52650;
}
.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: #D52650;
}

.secondary {
  color: #0094aa;
}

.dkgray {
  color: #333333;
}

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

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

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

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

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

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

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

/*-------
Desktop
--------*/
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    border-bottom: solid 2px transparent;
    border-radius: 0px;
    margin-left: 10px;
    margin-right: 10px;
    padding: 2px 0px;
    transition: all 0.3s ease-in-out;
  }
  .navbar-expand-lg .navbar-nav .nav-link:hover {
    color: #D52650;
  }
  .navbar-expand-lg .navbar-nav .active .nav-link {
    color: #0094aa;
  }
  .dropdown-item {
    padding: 0.25rem 0.45rem;
    background-color: transparent;
    color: #333333;
  }
  .nav-phone .nav-link {
    font-weight: 900 !important;
    color: #D52650 !important;
  }
  .nav-phone .nav-link:hover {
    color: #333333 !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 14px;
    margin-left: 5px;
    margin-right: 5px;
  }
  img.custom-logo {
    max-width: 200px;
  }
}
.navbar-nav .dropdown-menu {
  border-radius: 0;
  border: none;
  margin-top: 0;
}

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

/*-------
## Mobile
-------*/
@media (max-width: 991px) {
  .navbar-nav .nav-link {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    text-align: center;
    border-bottom: solid 1.5px #333333;
    border-radius: 0px;
    text-transform: uppercase;
    padding: 10px 20px;
  }
  #menu-item-29 .nav-link {
    border: none;
  }
  .navbar-nav .active > .nav-link, .navbar-nav .nav-link.active, .navbar-nav .nav-link.show, .navbar-nav .show > .nav-link {
    color: #ffffff;
    background-color: #0094aa;
  }
  .navbar-brand img {
    width: 100%;
    max-width: 160px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  .dropdown-item {
    padding: 0.25rem 1.5rem;
    background-color: transparent;
    color: #ffffff;
    text-align: center;
  }
  .navbar-header {
    width: 100%;
  }
  .nav-phone {
    color: #D52650;
    font-size: 18px;
    padding-right: 15px;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
  }
  .navbar-toggler {
    top: 10px;
    border: none;
    position: absolute;
    right: 10px;
    z-index: 64;
  }
  .navbar-toggler:focus, .navbar-toggler:hover {
    outline: none;
  }
  #titan-nav {
    position: absolute;
    z-index: 10;
    top: 0px;
    padding-top: 60px;
    left: 0;
    transition: 0.001s;
    text-align: center;
    background-color: #ffffff;
    width: 100%;
  }
  /*---- Dropdown Toggle ----*/
  /* Icon 4 */
  #nav-icon4 {
    width: 25px;
    height: 20px;
    position: relative;
    transform: rotate(0deg);
    transition: 0.3s ease-in-out;
    cursor: pointer;
  }
  #nav-icon4 span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #0094aa;
    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 ---*/
.social-icons {
  margin: 0 10px;
  color: #D52650;
  margin-top: -35px;
  display: block;
  transition: all 0.3s ease-in-out;
}
.social-icons:hover {
  color: #333333;
}

/*------*/
/*---
Footer Blocks
---*/
.white {
  color: #ffffff;
}

.primary {
  color: #D52650;
}

.secondary {
  color: #0094aa;
}

.dkgray {
  color: #333333;
}

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

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

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

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

footer {
  background-color: #D52650;
}

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

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

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

.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), .gform_wrapper textarea {
  border-radius: 2px;
  border: solid 1px #ffffff;
  background-color: transparent;
  color: #F3F7F9;
  font-size: 20px;
}
.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::-moz-placeholder, .gform_wrapper textarea::-moz-placeholder {
  color: #F3F7F9;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::placeholder, .gform_wrapper textarea::placeholder {
  color: #F3F7F9;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.gform_wrapper.gravity-theme .gfield textarea.small {
  height: 145px !important;
}

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 {
  justify-content: center;
}
.gform_wrapper .gform_footer input.button {
  font-size: 18px !important;
  font-weight: 500;
  text-transform: uppercase;
  background-color: transparent;
  border-radius: 5px;
  border: solid 2px #ffffff;
  white-space: normal;
  margin-right: 0px !important;
  transition: all 0.3s ease-in-out;
  background-color: transparent;
  color: #ffffff;
  line-height: normal;
  padding: 10px 25px;
}
.gform_wrapper .gform_footer input.button:hover {
  background-color: #ffffff;
  color: #D52650;
  border: solid 2px #ffffff;
}

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

@media (max-width: 640px) {
  .gform_wrapper select {
    min-height: 2.5rem !important;
    padding: 5px 4px !important;
  }
}
/*---
Custom Site Styles by Developer
---*/
/*--- Buttons ---*/
.btn {
  font-size: 20px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  background-color: transparent;
  border-radius: 5px;
  white-space: normal;
  padding: 10px 15px;
  line-height: 1;
  transition: all 0.3s ease-in-out;
}
.btn.primary-btn {
  color: #ffffff;
  background-color: #D52650;
}
.btn.primary-btn:hover {
  background-color: #ffffff;
  color: #D52650;
}
.btn.secondary-btn {
  color: #ffffff;
  background-color: #0094aa;
}
.btn.secondary-btn:hover {
  background-color: #ffffff;
  color: #0094aa;
}
.btn.btn-white-outline {
  border-radius: 5px;
  border: 2px solid #F3F7F9;
  background-color: transparent;
  color: #ffffff;
}
.btn.btn-white-outline:hover {
  background-color: #ffffff;
  color: #D52650;
}
.btn.white-btn {
  padding: 0;
  background-color: #ffffff;
  color: #D52650;
}
.btn.white-btn:hover {
  background-color: #ffffff;
  color: #D52650;
}

@media screen and (max-width: 768px) {
  .br {
    display: none;
  }
}
.text-uppercase {
  text-transform: uppercase;
}

.italic {
  font-style: italic;
}

/*------*/
.navbar {
  width: 100%;
  position: absolute;
  box-shadow: none;
}

.navbar-expand-lg .navbar-nav .active .nav-link {
  color: #ffffff;
}

.navbar-expand-lg .navbar-nav .nav-link {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
  font-size: 20px;
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
  color: #D52650;
}

.navbar-nav.footer .nav-link {
  font-size: 20px;
}

.navbar-nav.footer .nav-link:hover {
  color: #ffffff;
}

footer {
  padding-bottom: 30px;
}

.foot-logo {
  max-width: 160px;
  margin-top: 30px;
  margin-bottom: 50px;
}

.navbar-nav.footer {
  margin-right: 0;
  margin-bottom: 60px;
}

.home-hero-row {
  height: 717px;
  background-image: url("/wp-content/themes/titan/images/homepage/hero.png");
  background-size: cover;
  background-position: center;
}

.hero-internal-row {
  padding: 230px 0 105px;
  background-image: url("/wp-content/themes/titan/images/hero-internal.png");
  background-size: cover;
  background-position: center;
}

.about-box {
  margin-top: -100px;
  padding: 50px 50px;
  background-color: #D52650;
  border-radius: 5px;
}
.about-box p, .about-box .screen-reader-text, .about-box input[type=search] {
  text-align: center;
  color: #ffffff;
}
.about-box .btn {
  margin-top: 35px;
}

.products-row {
  position: relative;
  z-index: 2;
  margin-top: 64px;
}
.products-row h2 {
  margin-bottom: 42px;
  color: #ffffff;
}
.products-row .products-box {
  gap: 14px;
}
.products-row .product-item {
  border-radius: 5px;
  overflow: hidden;
  width: 23.5%;
  height: 310px;
  position: relative;
}
.products-row .product-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease;
}
.products-row .product-item .title-box {
  transition: all 0.5s ease;
  padding: 0 12px;
  height: 118px;
  background-color: #D52650;
  width: 100%;
  position: absolute;
  z-index: 1;
  text-align: center;
  bottom: -50px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
}
.products-row .product-item .title {
  color: #ffffff;
  text-transform: uppercase;
}
.products-row .product-item .link {
  color: #EBE0CE;
  text-transform: uppercase;
}
.products-row .product-item:hover {
  cursor: pointer;
}
.products-row .product-item:hover .title-box {
  bottom: 0;
}
.products-row .product-item:hover img {
  transform: scale(1.2);
}

.about-products-wrapper {
  height: 507px;
  background-image: url("/wp-content/themes/titan/images/homepage/section_2_background.png");
  background-size: cover;
  background-position: center;
}

.pds-resources-row {
  position: relative;
  overflow: hidden;
  padding: 296px 0 190px;
  background-image: url("/wp-content/themes/titan/images/homepage/section_3_background.png");
  background-size: cover;
  background-position: center;
}
.pds-resources-row h2 {
  margin-bottom: 17px;
}
.pds-resources-row p, .pds-resources-row .screen-reader-text, .pds-resources-row input[type=search] {
  margin-bottom: 22px;
}
.pds-resources-row::before {
  content: none;
  background-image: url("/wp-content/themes/titan/images/homepage/pds_resources.png");
  background-position: center;
  background-size: 826px;
  background-repeat: no-repeat;
  height: 503px;
  width: 100%;
  position: absolute;
  z-index: 0;
  bottom: 0;
  right: -145px;
}
.pds-resources-row .right-image {
  width: 100%;
  height: 100%;
  max-height: 373px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}

.resources-row {
  padding: 84px 0 88px;
}
.resources-row h2 {
  color: #D52650;
  margin-bottom: 23px;
  text-align: center;
  font-weight: 400;
}
.resources-row span {
  color: #ffffff;
  font-size: 24px;
  font-weight: 500;
  font-style: italic;
  text-align: center;
  position: relative;
  z-index: 2;
}
.resources-row .resource-box {
  padding: 0 20px;
  border-radius: 5px;
  position: relative;
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.resources-row .resource-box::before {
  transition: all 0.5s ease;
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
}
.resources-row .spray .resource-box {
  background-image: url("/wp-content/themes/titan/images/resources/solvent_borne_spray.png");
  background-size: cover;
  background-position: center;
}
.resources-row .water-borne-dip .resource-box {
  background-image: url("/wp-content/themes/titan/images/resources/water_borne_dip.png");
  background-size: cover;
  background-position: center;
}
.resources-row .solvent-borne .resource-box {
  background-image: url("/wp-content/themes/titan/images/resources/solvent_borne_dip.png");
  background-size: cover;
  background-position: center;
}
.resources-row .water-borne-coil .resource-box {
  background-image: url("/wp-content/themes/titan/images/resources/water_borne_coil.png");
  background-size: cover;
  background-position: center;
}
.resources-row a {
  display: flex;
  margin-bottom: 17px;
}
.resources-row a:hover .resource-box::before {
  opacity: 1;
}

.news-home-row {
  padding: 61px 0 122px;
  position: relative;
  background: linear-gradient(270deg, #1E1E1E 53.78%, rgba(30, 30, 30, 0) 60%);
}
.news-home-row::before {
  content: "";
  background-image: url("/wp-content/themes/titan/images/homepage/news.png");
  background-position: center;
  background-size: cover;
  height: 100%;
  width: 50%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}
.news-home-row h2 {
  margin-bottom: 12px;
}
.news-home-row p, .news-home-row .screen-reader-text, .news-home-row input[type=search] {
  color: #F3F7F9;
  margin-bottom: 25px;
}

.location-home-row {
  padding: 269px 0 77px;
  background-image: url("/wp-content/themes/titan/images/homepage/section_5_background.png");
  background-size: cover;
  background-position: center;
}
.location-home-row .black-box {
  background-image: url("/wp-content/themes/titan/images/homepage/map_background.png");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  height: 445px;
  border-radius: 5px;
}
.location-home-row .map-box {
  width: 80%;
  height: 416px;
  margin-top: -240px;
}
.location-home-row .map-box iframe {
  border-radius: 5px;
}
.location-home-row .contact-box {
  margin-top: 50px;
  width: 80%;
  display: flex;
  justify-content: center;
}
.location-home-row .contact-box .address, .location-home-row .contact-box .phone {
  width: 48%;
  display: flex;
  gap: 25px;
  justify-content: center;
  align-items: center;
}
.location-home-row .contact-box .address span, .location-home-row .contact-box .address a, .location-home-row .contact-box .phone span, .location-home-row .contact-box .phone a {
  color: #F3F7F9;
  line-height: normal;
}
.location-home-row .btn {
  margin-top: 47px;
}

.about-row {
  padding: 54px 0 268px;
  background-image: url("/wp-content/themes/titan/images/about/section_1_background.png");
  background-size: cover;
  background-position: center;
}
.about-row img {
  max-width: 167px;
  margin-bottom: 39px;
}
.about-row h2, .about-row p, .about-row .screen-reader-text, .about-row input[type=search] {
  color: white;
}
.about-row h2 {
  margin-bottom: 21px;
  font-weight: 400;
}

.what-sets-us-apart-row {
  height: 405px;
  background-color: #ffffff;
}
.what-sets-us-apart-row .info-box-1, .what-sets-us-apart-row .info-box-2 {
  margin-top: -190px;
  border-radius: 5px;
  box-shadow: 4px 4px 16px 0px rgba(0, 0, 0, 0.25);
  background-image: url("/wp-content/themes/titan/images/about/boxes.svg");
  background-size: cover;
  background-position: center;
  height: 500px;
  padding: 33px 38px;
  text-align: center;
}
.what-sets-us-apart-row .info-box-1 h2, .what-sets-us-apart-row .info-box-2 h2 {
  margin-bottom: 16px;
  color: #D52650;
}

.history-row, .call-to-action-row {
  padding: 105px 0;
  background-image: url("/wp-content/themes/titan/images/about/background_2.png");
  background-size: cover;
  background-position: center;
}
.history-row h2, .call-to-action-row h2 {
  color: #D52650;
  margin-bottom: 21px;
}

.call-to-action-row {
  padding: 90px 0;
}
.call-to-action-row p, .call-to-action-row .screen-reader-text, .call-to-action-row input[type=search] {
  margin-bottom: 23px;
}

.process-row, .core-departments-row {
  padding: 65px 0;
  background-image: url("/wp-content/themes/titan/images/about/background_1.png");
  background-size: cover;
  background-position: center;
}
.process-row h2, .core-departments-row h2 {
  margin-bottom: 21px;
  color: #D52650;
}
.process-row p, .process-row .screen-reader-text, .process-row input[type=search], .core-departments-row p, .core-departments-row .screen-reader-text, .core-departments-row input[type=search] {
  color: #ffffff;
  font-size: 16px;
}
.process-row h2, .process-row p, .process-row .screen-reader-text, .process-row input[type=search], .core-departments-row h2, .core-departments-row p, .core-departments-row .screen-reader-text, .core-departments-row input[type=search] {
  text-align: center;
}
.process-row img, .core-departments-row img {
  max-width: 128px;
  margin-top: 35px;
  margin-bottom: 25px;
  border-radius: 5px;
}

@media screen and (min-width: 1200px) {
  .process-row .truck-icon {
    max-width: 65%;
    margin: 0;
    margin-top: 24px;
  }
}
.core-departments-row img {
  max-width: 100%;
}
.core-departments-row h4, .core-departments-row p, .core-departments-row .screen-reader-text, .core-departments-row input[type=search] {
  color: #ffffff;
}
.core-departments-row h4 {
  height: 73px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 13px;
}

.milestones-row {
  padding: 71px 0 79px;
}
.milestones-row h2 {
  margin-bottom: 32px;
}
.milestones-row .icon {
  height: 42px;
  width: 42px;
  -o-object-fit: contain;
     object-fit: contain;
}
.milestones-row p, .milestones-row .screen-reader-text, .milestones-row input[type=search] {
  display: flex;
  align-items: center;
  gap: 20px;
}
.milestones-row .milestones-image {
  max-width: 480px;
  height: auto;
}

.product-row {
  padding: 65px 0;
}
.product-row img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.product-row h2, .product-row p, .product-row .screen-reader-text, .product-row input[type=search] {
  color: #ffffff;
  font-weight: 400;
}
.product-row h2 {
  margin-bottom: 21px;
}
.product-row.coil-primers {
  background-image: url("/wp-content/themes/titan/images/products/coil_primers_background.png");
  background-size: cover;
  background-position: center;
}
.product-row.acrylic-primers {
  background-image: url("/wp-content/themes/titan/images/products/dmt_acrylic_background.png");
  background-size: cover;
  background-position: center;
}
.product-row.dip-primers, .product-row.alkyd-primers {
  background-size: cover;
  background-position: center;
}
.product-row.dip-primers h2, .product-row.alkyd-primers h2 {
  color: #D52650;
}
.product-row.dip-primers p, .product-row.dip-primers .screen-reader-text, .product-row.dip-primers input[type=search], .product-row.alkyd-primers p, .product-row.alkyd-primers .screen-reader-text, .product-row.alkyd-primers input[type=search] {
  color: #333333;
}
.product-row.alkyd-primers {
  background-image: url("/wp-content/themes/titan/images/products/dmt_alkyd_background.png");
}
.product-row.dip-primers {
  background-image: url("/wp-content/themes/titan/images/products/dip_background.png");
}

.blog-list-row {
  padding: 61px 0 115px;
}
.blog-list-row .date {
  color: #D52650;
  font-family: "Alfa Slab One", serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  width: 20%;
}
.blog-list-row .blog-post {
  padding-top: 54px;
  padding-bottom: 52px;
  border-bottom: solid 1px rgba(51, 51, 51, 0.2);
}
.blog-list-row .btn {
  text-transform: capitalize;
}
.blog-list-row .post-image {
  max-width: 80%;
  margin-left: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.wp-pagenavi {
  text-align: center;
  margin-top: 27px;
}
.wp-pagenavi .pages {
  display: none;
}
.wp-pagenavi a, .wp-pagenavi span {
  color: rgba(0, 0, 0, 0.44);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 13.3px;
  border: none !important;
}
.wp-pagenavi span.current {
  color: #333;
  font-weight: 400;
}
.wp-pagenavi .nextpostslink, .wp-pagenavi .previouspostslink {
  display: none;
}

.contact-info-row {
  padding: 67px 0 320px;
  background-image: url("/wp-content/themes/titan/images/contact-us/coil_primers_background.png");
  background-size: cover;
  background-position: center;
}
.contact-info-row svg {
  height: 54px;
  width: 54px;
}
.contact-info-row .info-box {
  width: 30%;
  display: flex;
  align-items: center;
  gap: 15px;
}
.contact-info-row .info-box.phone {
  width: 25%;
}
.contact-info-row .info-box.email {
  width: 40%;
}

.contact-form-row {
  background-image: url("/wp-content/themes/titan/images/contact-us/contact-form.png");
  background-size: cover;
  background-position: center;
  height: 305px;
}
.contact-form-row .contact-box {
  margin-top: -225px;
  border-radius: 5px;
  padding: 28px 57px 33px;
  background-color: #D52650;
}
.contact-form-row .contact-box h2 {
  font-weight: 400;
  text-align: center;
  color: #ffffff;
  margin-bottom: 32px;
}

img.custom-logo {
  max-width: 185px;
}

@media screen and (max-width: 1200px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 18px;
  }
  .products-row .product-item .title {
    font-size: 16px;
  }
  .what-sets-us-apart-row {
    height: auto;
    padding-bottom: 60px;
  }
  .what-sets-us-apart-row .info-box-1, .what-sets-us-apart-row .info-box-2 {
    height: 640px;
  }
  .contact-info-row .info-box.email {
    margin-top: 30px;
    width: 49%;
  }
}
@media (max-width: 991px) {
  #titan-nav {
    background-color: #D52650;
  }
  .navbar-nav .active > .nav-link, .navbar-nav .nav-link.active, .navbar-nav .nav-link.show, .navbar-nav .show > .nav-link {
    color: #D52650 !important;
    background-color: #F3F7F9;
  }
  .navbar-nav .nav-link {
    border-bottom-color: #F3F7F9;
    padding: 20px 20px;
  }
  #nav-icon4 span {
    background-color: #F3F7F9;
  }
  footer .navbar-nav.footer .nav-link {
    font-size: 18px;
  }
  footer .nav-fill .nav-item {
    width: 50%;
  }
  footer .navbar-nav .active > .nav-link, footer .navbar-nav .nav-link.active, footer .navbar-nav .nav-link.show, footer .navbar-nav .show > .nav-link {
    background-color: transparent;
    color: #ffffff !important;
  }
  footer .navbar-nav .nav-link {
    border-bottom: none;
  }
  footer .navbar-nav.footer .nav-link {
    padding: 10px 20px;
  }
  .about-products-wrapper {
    height: auto;
    padding-bottom: 80px;
  }
  .products-row .product-item {
    width: 47.5%;
  }
  .products-row .product-item .title {
    font-size: 20px;
  }
  .about-row {
    padding: 60px 0;
  }
  .what-sets-us-apart-row {
    padding: 80px 0;
  }
  .what-sets-us-apart-row .info-box-1, .what-sets-us-apart-row .info-box-2 {
    margin: 30px 0;
    height: auto;
  }
  .milestones-row .milestones-image {
    max-width: 100%;
  }
  .product-row h2 {
    font-size: 28px;
  }
  .blog-list-row .post-image {
    margin-left: 0;
    margin-bottom: 40px;
  }
  .blog-list-row .date {
    width: 100%;
    margin-bottom: 25px;
  }
  .contact-info-row .info-box {
    margin-top: 30px;
    width: 100%;
  }
  .contact-info-row .info-box.phone, .contact-info-row .info-box.email {
    width: 100%;
  }
  .pds-resources-row {
    padding: 120px 0;
  }
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 30px;
  }
  p, .screen-reader-text, input[type=search] {
    font-size: 18px;
  }
  .h1 {
    font-size: 42px;
  }
  .about-box {
    padding: 50px 30px;
  }
  .products-row .product-item {
    width: 100%;
    height: 400px;
    margin: 10px 0;
  }
  .products-row .product-item .title {
    width: 100%;
    font-size: 22px;
  }
  .news-home-row {
    background: rgba(30, 30, 30, 0.9);
  }
  .news-home-row::before {
    width: 100%;
  }
  .location-home-row .black-box {
    height: auto;
    padding-bottom: 50px;
  }
  .location-home-row .contact-box {
    width: 100%;
    flex-wrap: wrap;
  }
  .location-home-row .contact-box .address, .location-home-row .contact-box .phone {
    justify-content: flex-start;
    margin: 20px 0;
    width: 90%;
    gap: 10px;
  }
  .location-home-row .contact-box .address svg, .location-home-row .contact-box .phone svg {
    width: 80px;
  }
  .location-home-row .contact-box .address span, .location-home-row .contact-box .phone span {
    width: 60%;
  }
  .hero-internal-row .h1 {
    font-size: 35px;
  }
  .milestones-row .milestones-image {
    width: 100%;
    margin-top: 40px;
  }
  .core-departments-row img {
    margin-bottom: 10px;
  }
  .core-departments-row h4 {
    margin-bottom: 5px;
  }
  .core-departments-row p, .core-departments-row .screen-reader-text, .core-departments-row input[type=search] {
    margin-bottom: 50px;
  }
  .product-row h2 {
    margin-top: 50px;
  }
  .blog-list-row h2 {
    font-size: 22px;
  }
  .contact-form-row {
    height: auto;
    padding-bottom: 60px;
  }
  .contact-info-row .info-box p, .contact-info-row .info-box .screen-reader-text, .contact-info-row .info-box input[type=search] {
    width: 80%;
    font-size: 16px;
  }
  .pds-resources-row::before {
    content: none;
  }
}
@media screen and (max-width: 568px) {
  .hero-internal-row .h1 {
    font-size: 28px;
  }
  .hero-internal-row .hero-sub-title {
    font-size: 20px;
  }
  .contact-info-row .info-box p, .contact-info-row .info-box .screen-reader-text, .contact-info-row .info-box input[type=search] {
    font-size: 13px;
  }
  .contact-form-row .contact-box {
    padding: 28px 15px 33px;
  }
}/*# sourceMappingURL=style.css.map */