/*
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=DM+Sans:opsz,wght@9..40,700&family=Roboto:wght@400;500;700&display=swap");
.white {
  color: #fcfcfc; }

.primary {
  color: #AF1C2E; }

.secondary {
  color: #EF592E; }

.dkgray {
  color: #58595B; }

.primary-bg {
  background-color: #AF1C2E; }

.secondary-bg {
  background-color: #EF592E; }

.ltgray-bg {
  background-color: #f1f2f2; }

.white-bg {
  background-color: #fcfcfc; }

.black-bg {
  background-color: #151515; }

.gray-80-bg {
  background-color: rgba(0, 0, 0, 0.8); }

.gray-60-bg {
  background-color: rgba(0, 0, 0, 0.6); }

.gray-40-bg {
  background-color: rgba(0, 0, 0, 0.4); }

.gray-20-bg {
  background-color: rgba(0, 0, 0, 0.2); }

.gray-10-bg {
  background-color: rgba(0, 0, 0, 0.1); }

.gray-5-bg {
  background-color: rgba(0, 0, 0, 0.05); }

/*---
Typography
---*/
.font-primary {
  font-family: "Roboto", sans-serif; }

.font-secondary {
  font-family: "DM Sans", sans-serif; }

a {
  font-size: inherit;
  color: inherit; }

a:hover {
  text-decoration: none;
  color: #AF1C2E; }

body {
  font-size: 18px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  color: #151515; }

p, .screen-reader-text, input[type=search], .tos-list, li {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  font-family: "Roboto", sans-serif; }

p, .screen-reader-text, input[type=search] {
  margin-bottom: 35px; }

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 25px; }

h1 {
  font-size: 64px;
  font-family: "Roboto", sans-serif; }

h2 {
  font-size: 40px;
  font-family: "Roboto", sans-serif; }

h3 {
  font-size: 36px;
  font-family: "Roboto", sans-serif; }

h4 {
  font-size: 32px;
  font-family: "Roboto", sans-serif; }

h5 {
  font-size: 24px;
  font-family: "Roboto", sans-serif; }

nav ul li {
  font-size: inherit; }

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle; }

/*---
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: calc(2.25 * 10px);
  min-height: inherit;
  width: calc(2.25 * 10px); }

svg {
  transition: fill 120ms ease-in-out;
  fill: currentColor; }

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: calc(1.5 * 1rem); }
  @media only screen and (min-width: 768px) {
    .wp-caption.aligncenter {
      position: relative;
      left: calc( calc(8 * (100vw / 12) - 28px) / 2 );
      transform: translateX(-50%); } }
  @media only screen and (min-width: 1200px) {
    .wp-caption.aligncenter {
      left: calc( calc(6 * (100vw / 12) - 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: calc(1.5 * 1rem); }

.gallery-item {
  display: inline-block;
  margin-right: 16px;
  margin-bottom: 16px;
  text-align: center;
  vertical-align: top;
  width: 100%; }
  .gallery-columns-2 .gallery-item {
    max-width: calc((100% - 16px * 1) / 2); }
    .gallery-columns-2 .gallery-item:nth-of-type(2n+2) {
      margin-right: 0; }
  .gallery-columns-3 .gallery-item {
    max-width: calc((100% - 16px * 2) / 3); }
    .gallery-columns-3 .gallery-item:nth-of-type(3n+3) {
      margin-right: 0; }
  .gallery-columns-4 .gallery-item {
    max-width: calc((100% - 16px * 3) / 4); }
    .gallery-columns-4 .gallery-item:nth-of-type(4n+4) {
      margin-right: 0; }
  .gallery-columns-5 .gallery-item {
    max-width: calc((100% - 16px * 4) / 5); }
    .gallery-columns-5 .gallery-item:nth-of-type(5n+5) {
      margin-right: 0; }
  .gallery-columns-6 .gallery-item {
    max-width: calc((100% - 16px * 5) / 6); }
    .gallery-columns-6 .gallery-item:nth-of-type(6n+6) {
      margin-right: 0; }
  .gallery-columns-7 .gallery-item {
    max-width: calc((100% - 16px * 6) / 7); }
    .gallery-columns-7 .gallery-item:nth-of-type(7n+7) {
      margin-right: 0; }
  .gallery-columns-8 .gallery-item {
    max-width: calc((100% - 16px * 7) / 8); }
    .gallery-columns-8 .gallery-item:nth-of-type(8n+8) {
      margin-right: 0; }
  .gallery-columns-9 .gallery-item {
    max-width: calc((100% - 16px * 8) / 9); }
    .gallery-columns-9 .gallery-item:nth-of-type(9n+9) {
      margin-right: 0; }
  .gallery-item:last-of-type {
    padding-right: 0; }

.gallery-caption {
  display: block;
  font-size: 14px;
  margin: 0;
  padding: 15px; }

.gallery-item > div > a {
  display: block;
  line-height: 0;
  box-shadow: 0 0 0 0 transparent; }
  .gallery-item > div > a:focus {
    box-shadow: 0 0 0 2px #0073aa; }

/*-------
Transition Mixin and Normalizing Styles
-------*/
html {
  scroll-behavior: smooth; }

.search-submit {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  background-color: transparent;
  border-radius: 0px;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #fcfcfc;
  padding: 10px 25px;
  background-color: #AF1C2E;
  border: solid 3px #AF1C2E; }
  .search-submit:hover {
    background-color: transparent;
    color: #EF592E;
    border-color: #EF592E; }

/*---
Header Blocks
---*/
/*--Dropdown Blue Box Fix--*/
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  background-color: transparent; }

/*--- Import Color Mixins ---*/
.white {
  color: #fcfcfc; }

.primary {
  color: #AF1C2E; }

.secondary {
  color: #EF592E; }

.dkgray {
  color: #58595B; }

.primary-bg {
  background-color: #AF1C2E; }

.secondary-bg {
  background-color: #EF592E; }

.ltgray-bg {
  background-color: #f1f2f2; }

.white-bg {
  background-color: #fcfcfc; }

.black-bg {
  background-color: #151515; }

.gray-80-bg {
  background-color: rgba(0, 0, 0, 0.8); }

.gray-60-bg {
  background-color: rgba(0, 0, 0, 0.6); }

.gray-40-bg {
  background-color: rgba(0, 0, 0, 0.4); }

.gray-20-bg {
  background-color: rgba(0, 0, 0, 0.2); }

.gray-10-bg {
  background-color: rgba(0, 0, 0, 0.1); }

.gray-5-bg {
  background-color: rgba(0, 0, 0, 0.05); }

/*--- Collapse Header Navigation ---*/
img.custom-logo {
  width: 100%;
  max-width: 180px;
  height: 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: #fcfcfc;
  padding-top: 0;
  border-bottom: 4px solid #AF1C2E; }

ul#menu-social-menu svg {
  width: 24px; }

/*-------
Desktop
--------*/
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    font-weight: 500;
    border-bottom: solid 3px transparent;
    border-radius: 0px;
    padding-right: 0px;
    padding-left: 0px;
    padding-top: 15px;
    margin-left: 25px;
    margin-right: 25px;
    color: rgba(0, 0, 0, 0.8);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    .navbar-expand-lg .navbar-nav .nav-link:hover {
      color: #AF1C2E;
      text-decoration: underline; }

  .navbar-expand-lg .navbar-nav .active .nav-link {
    color: #AF1C2E; }

  .dropdown-menu {
    padding: 10px 0 !important;
    border-bottom: 3px solid #fcfcfc !important; }
    .dropdown-menu li {
      padding: 9px 15px;
      text-align: left !important; }
      .dropdown-menu li .dropdown-item {
        font-size: 18px;
        color: #fcfcfc;
        padding: 0;
        font-weight: 500; }
        .dropdown-menu li .dropdown-item:hover {
          display: inline;
          background: #fcfcfc;
          color: #AF1C2E; } }
@media (min-width: 992px) and (max-width: 1199px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 14px;
    padding: 0px !important; }

  img.custom-logo {
    max-width: 120px; } }
.navbar-nav .dropdown-menu {
  border-radius: 0;
  border: none;
  margin-left: 25px;
  margin-top: 35px;
  background: #AF1C2E;
  padding: 0; }

.navbar-nav .show > .nav-link {
  color: #58595B; }

/*-------
## Mobile
-------*/
@media (max-width: 991px) {
  .navbar-nav .nav-link {
    font-size: 30px;
    font-weight: 400;
    color: #58595B;
    text-align: center;
    border-bottom: solid 1.5px #EF592E;
    border-radius: 0px;
    text-transform: uppercase; }

  .navbar-nav .active > .nav-link, .navbar-nav .nav-link.active, .navbar-nav .nav-link.show, .navbar-nav .show > .nav-link {
    color: #fcfcfc;
    background-color: #AF1C2E; }

  .navbar-brand img {
    width: 100%;
    max-width: 160px;
    margin-left: auto;
    margin-right: auto;
    display: block; }

  .dropdown-item {
    padding: .25rem 1.5rem;
    background-color: transparent;
    color: #fcfcfc;
    text-align: center; }

  .navbar-header {
    width: 100%; }

  .nav-phone {
    color: #AF1C2E;
    font-size: 18px;
    padding-right: 15px;
    font-weight: 700;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }

  .navbar-toggler {
    top: 15px;
    border: none;
    position: absolute;
    right: 15px;
    z-index: 64; }
    .navbar-toggler:focus, .navbar-toggler:hover {
      outline: none; }

  #titan-nav {
    position: absolute;
    z-index: 10;
    top: 111px;
    padding: 0;
    left: 0;
    transition: .001s;
    text-align: center;
    background-color: #fcfcfc;
    width: 100%; }

  /*---- Dropdown Toggle ----*/
  /* Icon 4 */
  #nav-icon4 {
    width: 25px;
    height: 20px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    cursor: pointer; }

  #nav-icon4 span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #AF1C2E;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out; }

  #nav-icon4 span:nth-child(1) {
    top: 0px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center; }

  #nav-icon4 span:nth-child(2) {
    top: 8px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center; }

  #nav-icon4 span:nth-child(3) {
    top: 16px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center; }

  #nav-icon4.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0px;
    left: 0px; }

  #nav-icon4.open span:nth-child(2) {
    width: 0%;
    opacity: 0; }

  #nav-icon4.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 18px;
    left: 0px; } }
/*--- Social Menu ---*/
.social-nav {
  display: flex;
  justify-content: flex-end; }

.social-menu li {
  display: inline-block; }
  .social-menu li a {
    color: #AF1C2E;
    padding: 5px 8px;
    line-height: .1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    .social-menu li a:hover {
      color: #EF592E; }

.screen-reader-text {
  display: none; }

.social-btns {
  background-color: #AF1C2E;
  color: #fcfcfc;
  font-size: 16px;
  font-weight: 700;
  padding: 7.5px 15px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .social-btns:hover {
    background-color: #EF592E;
    color: #fcfcfc;
    text-decoration: none; }

@media (max-width: 991px) {
  .social-menu {
    margin-top: 10px;
    margin-bottom: 10px; }

  .social-btns {
    border-radius: 0px;
    font-size: 25px;
    display: block; } }
/*------*/
/*---
Footer Blocks
---*/
.white {
  color: #fcfcfc; }

.primary {
  color: #AF1C2E; }

.secondary {
  color: #EF592E; }

.dkgray {
  color: #58595B; }

.primary-bg {
  background-color: #AF1C2E; }

.secondary-bg {
  background-color: #EF592E; }

.ltgray-bg {
  background-color: #f1f2f2; }

.white-bg {
  background-color: #fcfcfc; }

.black-bg {
  background-color: #151515; }

.gray-80-bg {
  background-color: rgba(0, 0, 0, 0.8); }

.gray-60-bg {
  background-color: rgba(0, 0, 0, 0.6); }

.gray-40-bg {
  background-color: rgba(0, 0, 0, 0.4); }

.gray-20-bg {
  background-color: rgba(0, 0, 0, 0.2); }

.gray-10-bg {
  background-color: rgba(0, 0, 0, 0.1); }

.gray-5-bg {
  background-color: rgba(0, 0, 0, 0.05); }

footer {
  background-color: #AF1C2E; }

.navbar-nav.footer {
  margin-right: 15px; }

.navbar-nav.footer .nav-link {
  padding: 0px 20px;
  color: #fcfcfc;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700; }
  .navbar-nav.footer .nav-link:hover {
    color: #EF592E; }

footer {
  padding-top: 65px; }
  footer p, footer .screen-reader-text, footer input[type=search] {
    font-size: 16px;
    margin-bottom: 20px; }
  footer .social-menu {
    gap: 15px;
    margin: 0 25px; }
    footer .social-menu li a {
      background-color: #fcfcfc;
      border-radius: 50%;
      width: 34px;
      height: 34px;
      padding: 0;
      text-align: center; }
      footer .social-menu li a svg {
        width: 24px; }
  footer ul#menu-footer-menu li {
    flex: 0 0 50%;
    text-align: left;
    display: flex;
    align-items: center; }
    footer ul#menu-footer-menu li:before {
      content: '';
      background-image: url("./images/menu-arrow.svg");
      height: 14px;
      width: 9px;
      display: inline-block; }
    footer ul#menu-footer-menu li a {
      padding-left: 5px; }
      footer ul#menu-footer-menu li a:hover {
        text-decoration: underline;
        color: #fcfcfc; }

.footer-text p, .footer-text .screen-reader-text, .footer-text input[type=search], .footer-text a {
  font-size: 14px;
  margin-bottom: 0px;
  color: #fcfcfc; }

@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 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(239, 89, 46, 0.7);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .color-overlay:hover {
    background-color: transparent;
    visibility: hidden; }
    .color-overlay:hover .service-box-text {
      display: none;
      visibility: hidden; }

.swapping-wrapper {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }
  .swapping-wrapper.image-r {
    background-image: url("/wp-content/themes/titan/images/swap-image-r.png"); }
  .swapping-wrapper.image-l {
    background-image: url("/wp-content/themes/titan/images/swap-image-l.png"); }
  @media (max-width: 991px) {
    .swapping-wrapper.image-r, .swapping-wrapper.image-l {
      background-image: none; } }
  @media (min-width: 992px) {
    .swapping-wrapper img {
      display: none !important; } }

/*---
Gravity Forms
---*/
.gform_wrapper {
  margin: 0px 0px 5px !important; }
  .gform_wrapper ::placeholder {
    color: rgba(0, 0, 0, 0.4) !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, .gform_wrapper select {
  border-radius: 8px !important;
  border: none !important;
  width: 100% !important; }

.gform-theme--foundation .gform_fields {
  gap: 25px 0 !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: 25px !important;
  padding-bottom: 0px !important;
  justify-content: center; }

.gform_wrapper .gform_footer input.button {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #fcfcfc !important;
  border-radius: 0px;
  border: 2px solid transparent !important;
  color: #AF1C2E !important;
  font-size: 18px !important;
  font-weight: 500;
  margin-right: 0px !important;
  padding: 25px !important;
  text-transform: uppercase !important;
  white-space: normal; }
  .gform_wrapper .gform_footer input.button:hover {
    background-color: #AF1C2E !important;
    color: #fcfcfc !important;
    border-color: #fcfcfc !important; }

.gform_validation_errors {
  background-color: #fcfcfc !important; }

.validation_message {
  color: #fff !important; }

/* 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; } }
/*--- Buttons ---*/
.btn, button, input[type="submit"] {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 500;
  background-color: transparent;
  border-radius: 8px;
  white-space: normal;
  padding: 15px 20px;
  border: 3px solid transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .btn.primary-btn, button.primary-btn, input[type="submit"].primary-btn {
    color: #fcfcfc;
    background-color: #AF1C2E; }
    .btn.primary-btn:hover, button.primary-btn:hover, input[type="submit"].primary-btn:hover {
      background-color: #fcfcfc;
      color: #AF1C2E;
      border-color: #AF1C2E; }
  .btn.secondary-btn, button.secondary-btn, input[type="submit"].secondary-btn {
    color: #fcfcfc;
    background-color: #EF592E; }
    .btn.secondary-btn:hover, button.secondary-btn:hover, input[type="submit"].secondary-btn:hover {
      background-color: #fcfcfc;
      color: #EF592E;
      border-color: #EF592E; }
  .btn.white-btn, button.white-btn, input[type="submit"].white-btn {
    background-color: #fcfcfc;
    color: #AF1C2E; }
    .btn.white-btn:hover, button.white-btn:hover, input[type="submit"].white-btn:hover {
      color: #fcfcfc;
      background-color: #AF1C2E; }
  .btn.large-btn, button.large-btn, input[type="submit"].large-btn {
    max-width: 580px;
    width: 100%;
    padding: 33px 0;
    text-transform: uppercase; }

/*------*/
section {
  padding: 90px 0; }

.bold {
  font-weight: 700; }

.icon-list li {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 10px 0; }

img.border-down {
  border-bottom: 4px solid #AF1C2E;
  border-radius: 9px; }

.container {
  max-width: 1180px; }

.hero {
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 545px; }
  .hero h1 {
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); }
  .hero .slider {
    position: absolute;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0; }
    .hero .slider:after {
      content: '';
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      background-color: rgba(0, 0, 0, 0.4); }
    .hero .slider .slick-list,
    .hero .slider .slick-track {
      height: 100%; }
    .hero .slider .slide {
      background-size: cover; }

.cones-banner {
  background-image: url("./images/homepage/cones_background.png");
  background-size: cover; }
  .cones-banner .image {
    min-height: 125px;
    display: flex;
    justify-content: center;
    align-items: center; }
    .cones-banner .image img {
      filter: brightness(0) invert(1); }

.points-of-contact img {
  width: 100%; }
.points-of-contact .address {
  background: #fcfcfc;
  border-radius: 8px;
  border-bottom: 8px solid #AF1C2E;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  width: calc(100% - 40px);
  margin: -45px auto 0;
  position: relative;
  padding: 20px 0 0 0; }

.form-wrapper {
  padding: 44px 80px;
  border-radius: 16px; }
  .form-wrapper h2.gform_title {
    max-width: 500px;
    margin: 0 auto;
    color: #fcfcfc;
    text-align: center; }

.equipment-section .equipment-wrapper {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
  /*change repeat(x, 1fr) in responsive*/ }
.equipment-section .equipment {
  background: #AF1C2E;
  background-size: cover !important;
  border-radius: 8px;
  position: relative;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  height: 388px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .equipment-section .equipment:not(.equipment-cat):after {
    background: linear-gradient(0deg, #000 -24.24%, rgba(0, 0, 0, 0) 96.97%);
    border-radius: 0px 0px 8px 8px;
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%; }
  .equipment-section .equipment h2, .equipment-section .equipment h3, .equipment-section .equipment h4, .equipment-section .equipment p, .equipment-section .equipment .screen-reader-text, .equipment-section .equipment input[type=search] {
    margin-bottom: 0; }
  .equipment-section .equipment h2 {
    padding-bottom: 0; }
  .equipment-section .equipment-truck-mounted {
    background: url("./images/products/truck_mounted.png"); }
  .equipment-section .equipment-arrow-boards {
    background: url("./images/products/arrow_bards.png"); }
  .equipment-section .equipment-portable-chaneable {
    background: url("./images/products/portable_chaneable.png"); }
  .equipment-section .equipment-crash-barrels {
    background: url("./images/products/crash_barrels.png"); }
  .equipment-section .equipment-portable-traffic-signs {
    background: url("./images/products/portable_traffic_signs.png"); }
  .equipment-section .equipment-portable-cones {
    background: url("./images/products/cones.png"); }
  .equipment-section .equipment-delineators {
    background: url("./images/products/delineators.png"); }
  .equipment-section .equipment-barricades {
    background: url("./images/products/barricades.png"); }
  .equipment-section .equipment-plastic-drums {
    background: url("./images/products/plastic_drums.png"); }
  .equipment-section .equipment-tubular-markers {
    background: url("./images/products/tubular_markers.png"); }
  .equipment-section .equipment-portable-traffic-signs2 {
    background: url("./images/products/portable_traffic_signs2.png"); }
  .equipment-section .equipment-rollup {
    background: url("./images/products/rollup.png"); }
  .equipment-section .equipment-sign-mounting {
    background: url("./images/products/sign_mounting.png"); }
  .equipment-section .equipment-sign-manufacturing {
    background: url("./images/products/sign_manufacturing.png"); }
  .equipment-section .equipment-flagger-paddle-signs {
    background: url("./images/personal-safety/flagger.png"); }
  .equipment-section .equipment-reflective-flagger-vests {
    background: url("./images/personal-safety/reflective.png"); }
  .equipment-section .equipment-flagger-safety-glasses {
    background: url("./images/personal-safety/safety_glasses.png"); }
  .equipment-section .equipment-flagger-flashlights {
    background: url("./images/personal-safety/flashlights.png"); }
  .equipment-section .equipment-flagger-hard-hats {
    background: url("./images/personal-safety/hard_hats.png"); }
  .equipment-section .equipment-ear-muffs {
    background: url("./images/personal-safety/ear_muffs.png"); }
  .equipment-section .equipment-flagger-ear-plugs {
    background: url("./images/personal-safety/ear_plugs.png"); }
  .equipment-section .equipment-jackets {
    background: url("./images/personal-safety/jackets.png"); }
  .equipment-section .equipment-paper-masks {
    background: url("./images/personal-safety/paper_masks.png"); }
  .equipment-section .equipment-rain-gear {
    background: url("./images/personal-safety/rain_gear.png"); }
  .equipment-section .equipment .equipment-title {
    padding: 25px 30px;
    z-index: 99;
    position: absolute;
    bottom: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
  .equipment-section .equipment .equipment-description {
    background: #fcfcfc;
    border-radius: 0px 0px 8px 8px;
    color: #151515;
    padding: 0 15px;
    position: relative;
    z-index: 99;
    transition: all 0.5s ease;
    max-height: 0;
    overflow: hidden; }
    .equipment-section .equipment .equipment-description p, .equipment-section .equipment .equipment-description .screen-reader-text, .equipment-section .equipment .equipment-description input[type=search] {
      line-height: 105%; }
  .equipment-section .equipment:hover:not(.no-hover):after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) -24.24%, rgba(0, 0, 0, 0) 96.97%);
    border-radius: 8px; }
  .equipment-section .equipment:hover:not(.no-hover) .equipment-title {
    bottom: 100%;
    transform: translateY(100%);
    padding-top: 15px; }
  .equipment-section .equipment:hover:not(.no-hover) .equipment-description {
    padding: 15px;
    max-height: 390px;
    border-bottom: 4px solid #AF1C2E; }

iframe {
  border: 0; }

.contact-content iframe {
  border-bottom: 4px solid #AF1C2E;
  border-radius: 8px; }
.contact-content .icon-list li {
  padding: 5px 0;
  gap: 18px; }

.request-quote .social-menu svg {
  fill: #EF592E; }

/*
 * Responsive
 */
@media screen and (max-width: 1024px) {
  h1 {
    font-size: 50px; }

  .equipment-section .equipment-wrapper {
    grid-template-columns: repeat(3, 1fr); } }
@media screen and (max-width: 990px) {
  h1 {
    font-size: 40px; }

  h2 {
    font-size: 32px; }

  p, .screen-reader-text, input[type=search] {
    font-size: 20px; }

  .icon-list li {
    flex-direction: column; }

  .cones-banner {
    padding-top: 0;
    padding-bottom: 0;
    background-image: none; }
    .cones-banner p, .cones-banner .screen-reader-text, .cones-banner input[type=search], .cones-banner h5 {
      color: #AF1C2E; }
    .cones-banner .image img {
      filter: none; }

  .contact-content iframe {
    width: 100%;
    margin-bottom: 30px; }
  .contact-content .icon-list li {
    padding: 5px 0;
    gap: 18px; }

  .request-quote {
    padding-top: 0; }
    .request-quote .social-menu {
      justify-content: center; } }
@media screen and (max-width: 768px) {
  .equipment-section .equipment-wrapper {
    grid-template-columns: repeat(2, 1fr); } }
@media screen and (max-width: 640px) {
  .hero-home .container .hero-content {
    padding-top: 60px;
    padding-bottom: 60px; }
    .hero-home .container .hero-content .btn {
      margin-bottom: 25px; }

  .form-wrapper {
    padding: 40px 30px; }

  footer ul#menu-footer-menu {
    margin: 40px 0; }
    footer ul#menu-footer-menu li {
      flex: 0 0 100%; }

  .equipment-section .equipment-wrapper {
    grid-template-columns: repeat(1, 1fr); }

  .large-btn {
    word-break: break-all;
    font-size: 16px; }

  .contact-content iframe {
    height: 320px; } }
@media screen and (max-width: 390px) {
  h3 {
    font-size: 30px; } }

/*# sourceMappingURL=style.css.map */
