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

.secondary {
  color: #2F446A;
}

.dkgray {
  color: #58595B;
}

.primary-bg {
  background-color: #3360A7;
}

.secondary-bg {
  background-color: #2F446A;
}

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

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

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

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

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

p, .screen-reader-text,
input[type=search],
.tos-list,
li {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
}
@media (max-width: 991px) {
  p, .screen-reader-text,
  input[type=search],
  .tos-list,
  li {
    font-size: 18px;
  }
}

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

p.h1, .h1.screen-reader-text,
input.h1[type=search] {
  font-size: 80px;
  font-weight: 900;
  font-family: "Mulish", sans-serif;
}

h2 {
  font-size: 64px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}
h3 {
  font-size: 40px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

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

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: #3360A7;
  border: solid 3px #3360A7;
}
.search-submit:hover {
  background-color: transparent;
  color: #2F446A;
  border-color: #2F446A;
}

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

.secondary {
  color: #2F446A;
}

.dkgray {
  color: #58595B;
}

.primary-bg {
  background-color: #3360A7;
}

.secondary-bg {
  background-color: #2F446A;
}

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

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

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

@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: #F3F4F6;
}

/*-------
Desktop
--------*/
.navbar {
  border-bottom: 4px solid #2F446A;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 400;
    color: #3360A7;
    text-transform: capitalize;
    border-bottom: solid 3px transparent;
    border-radius: 0px;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 8px;
    margin-right: 8px;
    transition: all 0.3s ease-in-out;
  }
  .navbar-expand-lg .navbar-nav .nav-link:hover {
    border-bottom: solid 3px #2F446A;
  }
  .navbar-expand-lg .navbar-nav .active .nav-link {
    border-bottom: none;
  }
  .dropdown-item {
    padding: 0.25rem 0.45rem;
    background-color: transparent;
    color: #58595B;
  }
  .navbar-nav {
    margin-right: 118px;
  }
}
@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-top: 0;
}

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

/*-------
## Mobile
-------*/
@media (max-width: 991px) {
  .navbar-nav .nav-link {
    font-family: "Mulish", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    text-align: left;
    border-bottom: solid 1.5px #ffffff;
    border-radius: 0px;
    text-transform: uppercase;
    padding: 25px 0;
  }
  .navbar-nav .active > .nav-link,
  .navbar-nav .nav-link.active,
  .navbar-nav .nav-link.show,
  .navbar-nav .show > .nav-link {
    color: #ffffff;
    background-color: #2F446A;
  }
  .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: #3360A7;
    font-size: 18px;
    padding-right: 15px;
    font-weight: 700;
    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: 0px;
    padding-top: 60px;
    padding-left: 40px;
    padding-right: 40px;
    left: 0;
    transition: 0.001s;
    text-align: center;
    background: linear-gradient(180deg, #2f446a 0%, #3360a7 100%);
    mix-blend-mode: normal;
    width: 100%;
    height: 100vh;
  }
  /*---- Dropdown Toggle ----*/
  /* Icon 4 */
  #nav-icon4 {
    width: 25px;
    height: 20px;
    position: relative;
    transform: rotate(0deg);
    transition: 0.3s ease-in-out;
    cursor: pointer;
  }
  .collapsed #nav-icon4 span {
    background: #2F446A !important;
  }
  #nav-icon4.open span {
    background: #ffffff;
  }
  #nav-icon4 span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #2F446A;
    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-nav {
  display: flex;
  justify-content: flex-end;
}

.social-menu li {
  display: inline-block;
}
.social-menu li a {
  color: #3360A7;
  padding: 5px 10px;
  line-height: 0.1;
  transition: all 0.3s ease-in-out;
}
.social-menu li a:hover {
  color: #2F446A;
}

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

.social-btn {
  font-size: 16px !important;
  font-weight: 700 !important;
  padding: 10px 38px !important;
  transition: all 0.3s ease-in-out;
  margin-left: 10px;
}

@media (max-width: 991px) {
  .social-menu {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  a.btn.social-btn {
    border-radius: 0px !important;
    font-size: 25px !important;
    margin-left: 0px;
    display: block !important;
    margin-top: 40px;
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 22px !important;
    font-weight: 700 !important;
    border-radius: 90px !important;
  }
  a.btn.social-btn:hover {
    color: #2F446A;
    background-color: #ffffff;
  }
}
/*------*/
/*---
Footer Blocks
---*/
.white {
  color: #ffffff;
}

.primary {
  color: #3360A7;
}

.secondary {
  color: #2F446A;
}

.dkgray {
  color: #58595B;
}

.primary-bg {
  background-color: #3360A7;
}

.secondary-bg {
  background-color: #2F446A;
}

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

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

footer {
  background: linear-gradient(180deg, #3360A7 0%, #2F446A 100%);
}

.navbar-nav.footer {
  margin-right: 15px;
}
@media (max-width: 991px) {
  .navbar-nav.footer {
    margin-right: 0;
  }
}

.navbar-nav.footer .nav-link {
  padding-top: 40px;
  padding-bottom: 30px;
  padding-right: 20px;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  font-family: "Mulish", sans-serif;
}
@media (max-width: 991px) {
  .navbar-nav.footer .nav-link {
    text-align: center;
  }
}

footer {
  padding-top: 15px;
  padding-bottom: 20px;
}
@media (max-width: 991px) {
  footer li {
    width: 100%;
  }
  footer li a {
    border-bottom: none !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    padding-right: 0 !important;
  }
}

.footer-carcard {
  padding: 30px 0;
  border-top: 1px solid #ffffff;
}
.footer-carcard p, .footer-carcard .screen-reader-text,
.footer-carcard input[type=search] {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  line-height: 23px;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.7);
  font-family: "Mulish", sans-serif;
}
.footer-carcard p:hover, .footer-carcard .screen-reader-text:hover,
.footer-carcard input[type=search]:hover {
  color: #2F446A;
}

.footer-disclaimer {
  border-top: 1px solid #ffffff;
  border-top: 1px solid #ffffff;
  padding: 40px 0;
}
.footer-disclaimer p, .footer-disclaimer .screen-reader-text,
.footer-disclaimer input[type=search] {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
}

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

.footer-text {
  padding-top: 20px;
  border-top: 1px solid #ffffff;
}
.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;
  }
}
.footer-disclaimer .indent {
  text-indent: -0.8em;
  padding-left: 0.8em;
}
.footer-disclaimer.disc-1 {
  display: none;
}
.footer-disclaimer.disc-2 .indent {
  text-indent: -0.8em;
  padding-left: 0.8em;
}

.page-id-11 .footer-disclaimer.disc-1, .page-id-12 .footer-disclaimer.disc-1 {
  display: block;
}
.page-id-11 .footer-disclaimer.disc-2, .page-id-12 .footer-disclaimer.disc-2 {
  display: none;
}

/*---
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(47, 68, 106, 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: 0;
  border: none;
}

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

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

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

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

.gform_wrapper .gform_footer input.button {
  font-size: 22px !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: #3360A7;
  color: #ffffff;
  padding: 10px 25px 8px;
}
.gform_wrapper .gform_footer input.button:hover {
  background-color: #ffffff;
  color: #2F446A;
}

/* 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: 22px;
  font-weight: 700;
  font-family: "Mulish", sans-serif;
  background-color: transparent;
  border-radius: 90px;
  text-transform: uppercase;
  white-space: normal;
  padding: 10px 30px;
  transition: all 0.3s ease-in-out;
}
.btn.primary-btn {
  color: #ffffff;
  background-color: #2F446A;
  border: none;
}
.btn.primary-btn:hover {
  background-color: #3360A7;
  color: #ffffff;
}
.btn.secondary-btn {
  color: #ffffff;
  background-color: #3360A7;
}
.btn.secondary-btn:hover {
  background-color: #2F446A;
  color: #ffffff;
  font-size: 20px;
}
.btn.secondary-btn-2 {
  color: #ffffff;
  background-color: #3360A7;
}
.btn.secondary-btn-2:hover {
  background-color: #2F446A;
  color: #ffffff;
  font-size: 24px;
}
.btn.secondary-outline {
  background-color: transparent;
  color: #2F446A;
  border: solid 3px #2F446A;
  padding: 3px 30px;
}
.btn.secondary-outline:hover {
  padding: 3px 30px;
  background-color: #3360A7;
  color: #ffffff;
  border: solid 3px #3360A7;
}
.btn.white-btn {
  background-color: transparent;
  color: #ffffff;
}
.btn.white-btn:hover {
  color: #2F446A;
  background-color: #ffffff;
}
.btn.white-outline {
  background-color: transparent;
  color: #ffffff;
  border: solid 3px #ffffff;
  padding: 3px 30px;
}
.btn.white-outline:hover {
  padding: 3px 30px;
  background-color: transparent;
  color: #ffffff;
  border: solid 3px #ffffff;
  font-size: 24px;
}

/*------*/
.italic {
  font-style: italic;
}

.bold {
  font-weight: 700 !important;
}

@media (max-width: 991px) {
  .br {
    display: none;
  }
}

sup {
  font-size: 13px;
}

.carousel {
  height: 630px;
}
@media (max-width: 991px) {
  .carousel {
    height: 600px;
  }
}
.carousel .carousel-control-next-icon {
  background-image: url("/wp-content/themes/titan/images/slider-arrow-next.png");
  width: 60px;
  height: 60px;
}
.carousel .carousel-control-prev-icon {
  background-image: url("/wp-content/themes/titan/images/slider-arrow-prev.png");
  width: 60px;
  height: 60px;
}
.carousel .carousel-indicators li {
  opacity: 1;
  background-color: #C5C9D0;
  width: 70px;
  height: 4px;
  margin-left: 8px;
  margin-right: 8px;
}
.carousel .carousel-indicators li.active {
  background-color: #2F446A;
  opacity: 1;
}
.carousel .carousel-item {
  height: 630px;
}
@media (max-width: 991px) {
  .carousel .carousel-item {
    height: 600px;
  }
}
.carousel .item {
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.carousel .item .disclaimer {
  font-size: 14px !important;
}
@media (max-width: 991px) {
  .carousel .item .disclaimer {
    font-size: 10px !important;
  }
}
.carousel .item .container {
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .carousel .item .container p, .carousel .item .container .screen-reader-text,
  .carousel .item .container input[type=search] {
    font-size: 18px !important;
  }
  .carousel .item .container .disclaimer {
    font-size: 14px !important;
    line-height: 16px;
  }
}
.carousel .item .container ul li {
  margin-top: 15px;
}
@media (max-width: 991px) {
  .carousel .item .container ul li {
    font-size: 18px;
    margin-top: 8px;
  }
}
.carousel .item.item-1 {
  background-image: url("/wp-content/themes/titan/images/slider-1.jpg");
  color: #ffffff;
}
@media (max-width: 991px) {
  .carousel .item.item-1 .img-container {
    display: flex;
    justify-content: center;
  }
  .carousel .item.item-1 .img-container img {
    max-width: 230px;
  }
}
.carousel .item.item-1 p.italic, .carousel .item.item-1 .italic.screen-reader-text,
.carousel .item.item-1 input.italic[type=search] {
  font-family: "Mulish", sans-serif;
  font-weight: 600;
  font-size: 24px;
}
.carousel .item.item-1 ul {
  padding-left: 20px;
}
.carousel .item.item-1 ul,
.carousel .item.item-1 p,
.carousel .item.item-1 .screen-reader-text,
.carousel .item.item-1 input[type=search],
.carousel .item.item-1 h2 {
  text-shadow: 0px 0px 19px rgba(0, 0, 0, 0.3);
}
.carousel .item.item-1:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #2f446a 0%, rgba(47, 68, 106, 0.75) 36.84%, rgba(47, 68, 106, 0) 72.92%);
}
.carousel .item.item-2 {
  background-image: url("/wp-content/themes/titan/images/slider-2.jpg");
  color: #2F446A;
}
@media (max-width: 991px) {
  .carousel .item.item-2 .img-container {
    display: flex;
    justify-content: center;
  }
  .carousel .item.item-2 .img-container img {
    max-height: 240px;
  }
}
.carousel .item.item-2 img {
  max-height: 500px;
}
.carousel .item.item-2 .sup-title {
  font-size: 30px;
}
.carousel .item.item-3 {
  background-image: url("/wp-content/themes/titan/images/slider-3.jpg");
  color: #ffffff;
}
.carousel .item.item-3 .btn {
  font-size: 18px;
}
@media (max-width: 991px) {
  .carousel .item.item-3 .btn {
    font-size: 12px;
  }
}
.carousel .item.item-3 p, .carousel .item.item-3 .screen-reader-text,
.carousel .item.item-3 input[type=search] {
  font-size: 24px;
}
.carousel .item.item-3 p.italic, .carousel .item.item-3 .italic.screen-reader-text,
.carousel .item.item-3 input.italic[type=search] {
  font-family: "Mulish", sans-serif;
  font-weight: 600;
}
.carousel .item.item-3 .text-shadow {
  text-shadow: 0px 0px 19px rgba(0, 0, 0, 0.3);
}
.carousel .item.item-3 sup {
  font-weight: 700;
}
.carousel .item.item-3 .slide-card {
  background-color: #ffffff;
  color: #2F446A;
  padding: 30px;
  box-shadow: 0px 0px 68.4px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  width: 100%;
  max-width: 360px;
  max-height: 220px;
}
@media (max-width: 991px) {
  .carousel .item.item-3 .slide-card {
    text-align: center;
    padding: 10px;
  }
  .carousel .item.item-3 .slide-card h2 {
    font-size: 35px;
  }
}
.carousel .item.item-3 .slide-card p, .carousel .item.item-3 .slide-card .screen-reader-text,
.carousel .item.item-3 .slide-card input[type=search] {
  line-height: 1;
  margin-bottom: 0.5rem !important;
}
.carousel .item.item-3 .slide-card .card-info {
  font-size: 35px;
  font-weight: bold;
}
.carousel .item.item-3 .slide-card .card-info .card-text {
  font-size: 50px;
  font-weight: bold;
}
@media (max-width: 991px) {
  .carousel .item.item-3 .slide-card .card-info .card-text {
    font-size: 35px;
  }
}
.carousel .item.item-4 {
  background-image: url("/wp-content/themes/titan/images/slider-4.jpg");
  color: #ffffff;
  background-position: 60% center;
}
.carousel .item.item-4 .img-container {
  width: 274px;
  height: 274px;
}
@media (max-width: 991px) {
  .carousel .item.item-4 .img-container {
    width: 225px;
    height: 225px;
  }
}
.carousel .item.item-4 p, .carousel .item.item-4 .screen-reader-text,
.carousel .item.item-4 input[type=search] {
  line-height: 40px;
}
@media (max-width: 991px) {
  .carousel .item.item-4 p, .carousel .item.item-4 .screen-reader-text,
  .carousel .item.item-4 input[type=search] {
    line-height: 30px;
  }
}
.carousel .item.item-4 p, .carousel .item.item-4 .screen-reader-text,
.carousel .item.item-4 input[type=search],
.carousel .item.item-4 h2 {
  text-shadow: 0px 0px 19px rgba(0, 0, 0, 0.3);
}
.carousel .item.item-4 .flex-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.carousel .item.item-5 {
  color: #2F446A;
}
@media (max-width: 991px) {
  .carousel .item.item-5 .img-container {
    display: flex;
    justify-content: center;
  }
  .carousel .item.item-5 .img-container img {
    max-width: 185px;
  }
}

.home-row-2 {
  border-top: 5px solid #ffffff;
  background: linear-gradient(180deg, #2f446a 0%, #3360a7 100%);
  color: #ffffff;
  position: relative;
  padding-top: 80px;
}
@media (min-width: 992px) {
  .home-row-2:after {
    content: "";
    background-image: url("/wp-content/themes/titan/images/home-row-2-image.png");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    width: 40%;
    height: 100%;
    top: 15% !important;
    right: 0;
  }
}
@media (min-width: 768px) {
  .home-row-2:after {
    content: "";
    background-image: url("/wp-content/themes/titan/images/home-row-2-image.png");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    width: 40%;
    height: 100%;
    top: 30%;
    right: 0;
  }
}
.home-row-2 .home-logo {
  width: 100%;
  display: flex;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
}
.home-row-2 .home-logo img {
  width: 113px;
  height: 113px;
}
.home-row-2 .check-icon {
  width: 40px;
  height: 40px;
}
.home-row-2 .border-botton {
  border-bottom: 1px solid #ffffff;
}
.home-row-2 .col-2,
.home-row-2 .col-10 {
  padding: 30px 0;
}

.home-row-3 {
  color: #2F446A;
}
.home-row-3 .margin-row {
  margin: 80px 0;
}
@media (max-width: 991px) {
  .home-row-3 .margin-row {
    margin: 50px 0;
  }
}
.home-row-3 .icon img {
  width: 90px;
  height: 90px;
}

.home-row-4 {
  color: #2F446A;
  margin-bottom: 80px;
}
.home-row-4 .welcome-card {
  background: #f3f4f6;
  box-shadow: 0px 0px 19px rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  padding: 50px 70px;
  max-width: 930px;
  width: 100%;
}
@media (max-width: 991px) {
  .home-row-4 .welcome-card {
    padding: 50px 20px;
  }
}
.home-row-4 .welcome-card p, .home-row-4 .welcome-card .screen-reader-text,
.home-row-4 .welcome-card input[type=search] {
  font-size: 22px;
  font-family: "Roboto", sans-serif;
  line-height: 40px;
}
@media (max-width: 991px) {
  .home-row-4 .welcome-card p, .home-row-4 .welcome-card .screen-reader-text,
  .home-row-4 .welcome-card input[type=search] {
    font-size: 18px;
    line-height: 40px;
  }
}

.meet-row-1 {
  height: 630px;
  background-image: url("/wp-content/themes/titan/images/meet-car-hero.jpg");
  background-position: 77% center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #2F446A;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  position: relative;
}
@media (max-width: 991px) {
  .meet-row-1 {
    text-align: center;
  }
  .meet-row-1:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #ffffff;
    opacity: 0.7;
  }
  .meet-row-1 .container {
    z-index: 1;
  }
}
.meet-row-1 .font-mulish {
  font-family: "Mulish", sans-serif;
}
.meet-row-1 p, .meet-row-1 .screen-reader-text,
.meet-row-1 input[type=search] {
  line-height: 40px;
}

.meet-row-2 {
  background: linear-gradient(180deg, #2f446a 0%, #3360a7 100%);
  color: #ffffff;
  padding-top: 80px;
}
.meet-row-2 p, .meet-row-2 .screen-reader-text,
.meet-row-2 input[type=search] {
  line-height: 30px;
}
@media (max-width: 991px) {
  .meet-row-2 {
    text-align: center;
  }
}
.meet-row-2 img.img-fluid {
  width: 100%;
  aspect-ratio: 6/2;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 20px;
}
.meet-row-2 .icon {
  height: 100%;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
}
.meet-row-2 .icon.icon-paid img {
  width: 72px;
  height: 81px;
}
.meet-row-2 .icon.icon-car img {
  width: 113px;
  height: 58px;
}
.meet-row-2 .icon.icon-warranty img {
  width: 61px;
  height: 84px;
}
.meet-row-2 .icon.icon-coupon img {
  width: 98px;
  height: 81px;
}
.meet-row-2 .icon.icon-increase img {
  width: 83px;
  height: 81px;
}

.meet-row-3 {
  color: #2F446A;
  padding: 80px 0;
}
.meet-row-3 p, .meet-row-3 .screen-reader-text,
.meet-row-3 input[type=search] {
  font-size: 22px;
  line-height: 40px;
}

.faq-row-1 {
  height: 320px;
  background-image: url("/wp-content/themes/titan/images/faq-image.jpg");
  background-position: 77% center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #2F446A;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  position: relative;
}
.faq-row-1 p, .faq-row-1 .screen-reader-text,
.faq-row-1 input[type=search] {
  font-family: "Mulish", sans-serif;
  font-style: italic;
  font-weight: 600;
}
@media (max-width: 991px) {
  .faq-row-1 {
    text-align: center;
  }
  .faq-row-1:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #ffffff;
    opacity: 0.7;
  }
  .faq-row-1 .container {
    z-index: 1;
  }
}

.faq-row-2 {
  padding: 45px 0;
}
.faq-row-2 .card {
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #c5c9d0;
}
.faq-row-2 .card.no-border {
  border-bottom: none;
}
.faq-row-2 .card .card-header {
  background-color: transparent;
  padding-left: 0;
  padding-top: 25px;
  padding-bottom: 25px;
  border-bottom: none;
}
.faq-row-2 .card .card-header .btn-link:hover {
  text-decoration: none;
}
.faq-row-2 .card .card-header p, .faq-row-2 .card .card-header .screen-reader-text,
.faq-row-2 .card .card-header input[type=search] {
  font-size: 50px;
  font-weight: 900;
  line-height: 63px;
  color: #2F446A;
  transition: 0.3s all ease;
  position: relative;
  padding-right: 70px;
  text-indent: -1.3em;
  padding-left: 1.3em;
}
@media (max-width: 991px) {
  .faq-row-2 .card .card-header p, .faq-row-2 .card .card-header .screen-reader-text,
  .faq-row-2 .card .card-header input[type=search] {
    text-indent: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 25px;
    line-height: 30px;
  }
}
.faq-row-2 .card .card-header p img, .faq-row-2 .card .card-header .screen-reader-text img,
.faq-row-2 .card .card-header input[type=search] img {
  position: absolute;
  top: 20px;
  right: 0;
  display: none;
}
@media (max-width: 991px) {
  .faq-row-2 .card .card-header p img, .faq-row-2 .card .card-header .screen-reader-text img,
  .faq-row-2 .card .card-header input[type=search] img {
    width: 25px;
    height: 25px;
    top: 15px;
    right: -30px;
  }
}
.faq-row-2 .card .card-header [aria-expanded=true] .show-card {
  display: block;
}
.faq-row-2 .card .card-header [aria-expanded=false] .hide-card {
  display: block;
}
.faq-row-2 .card .card-body {
  font-weight: bold;
}
.faq-row-2 .card .card-body p, .faq-row-2 .card .card-body .screen-reader-text,
.faq-row-2 .card .card-body input[type=search] {
  padding: 10px 60px 10px 60px;
}
@media (max-width: 991px) {
  .faq-row-2 .card .card-body p, .faq-row-2 .card .card-body .screen-reader-text,
  .faq-row-2 .card .card-body input[type=search] {
    line-height: 25px;
    text-indent: 0;
    padding: 10px 0px 10px 0px;
  }
}
.faq-row-2 .card p, .faq-row-2 .card .screen-reader-text,
.faq-row-2 .card input[type=search] {
  color: #2F446A;
  text-transform: none;
  -webkit-clip-path: none;
          clip-path: none;
  font-weight: 400;
  width: 100%;
  text-align: left;
  margin-bottom: 0;
  font-size: 22px;
  line-height: 40px;
  text-indent: -1em;
}

.faq-row-3 {
  background-color: #F3F4F6;
  color: #2F446A;
  padding: 80px 0;
}
.faq-row-3 p, .faq-row-3 .screen-reader-text,
.faq-row-3 input[type=search] {
  font-weight: bold;
}

.contact-row-1 {
  height: 320px;
  background-image: url("/wp-content/themes/titan/images/contact-image.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #2F446A;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}
.contact-row-1 p, .contact-row-1 .screen-reader-text,
.contact-row-1 input[type=search] {
  font-family: "Mulish", sans-serif;
  font-style: italic;
  font-weight: 600;
}
@media (max-width: 991px) {
  .contact-row-1 {
    text-align: center;
  }
}

.contact-row-2 {
  color: #ffffff;
  padding: 80px 0;
}
.contact-row-2 h2 {
  font-size: 40px;
}
.contact-row-2 .form-box {
  background: linear-gradient(180deg, #2f446a 0%, #3360a7 100%);
  box-shadow: 0px 0px 19px rgba(0, 0, 0, 0.3);
  border-radius: 16px;
}
.contact-row-2 .form-box input#gform_submit_button_1 {
  border: 1px solid #ffffff;
  border-radius: 90px;
}
.contact-row-2 .form-box input#gform_submit_button_1:hover {
  background-color: #ffffff;
}
.contact-row-2 .form-box input,
.contact-row-2 .form-box textarea {
  background-color: transparent;
  border-bottom: 1px solid #ffffff !important;
  color: #ffffff;
  margin-top: 20px !important;
}
.contact-row-2 .form-box input::-moz-placeholder, .contact-row-2 .form-box textarea::-moz-placeholder {
  color: #ffffff;
}
.contact-row-2 .form-box input::placeholder,
.contact-row-2 .form-box textarea::placeholder {
  color: #ffffff;
}

.thank-you-row {
  margin: 80px 0;
}
.thank-you-row .container {
  background: linear-gradient(180deg, #2f446a 0%, #3360a7 100%);
  box-shadow: 0px 0px 19px rgba(0, 0, 0, 0.3);
  border-radius: 16px;
}
.thank-you-row .container h2 {
  color: #ffffff;
  font-size: 50px;
  font-weight: 900;
}
@media (max-width: 991px) {
  .thank-you-row .container h2 {
    font-size: 35px;
  }
}
.thank-you-row .container h3 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 400;
}

.soon-row-1 {
  height: auto;
  background-image: url(/wp-content/uploads/2023/03/image001_transp.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
}
@media (max-width: 991px) {
  .soon-row-1 {
    background-image: none;
  }
}

.fs-16 {
  font-size: 16px;
}

.home-hero-row {
  position: relative;
  height: 852px;
  background-image: url("/wp-content/themes/titan/images/home-hero.jpg");
  background-size: cover;
  background-position: center;
}
.home-hero-row .sub-title {
  margin-top: 12px;
}
.home-hero-row .btn-box {
  margin-top: 56px;
}
.home-hero-row .home-phone {
  position: absolute;
  bottom: -35px;
  height: 825px;
  width: auto;
  right: 0;
}

.home-features-row {
  padding: 78px 0 58px;
  background: linear-gradient(180deg, #2f446a 0%, #3360a7 100%);
}
.home-features-row h2 {
  margin-bottom: 27px;
}
.home-features-row img {
  margin-bottom: 36px;
}

.simplify-row {
  position: relative;
  padding: 75px 0;
}
.simplify-row .steps-box {
  border-radius: 16px;
  padding: 47px 58px 16px 80px;
  background: linear-gradient(180deg, #3360a7 0%, #2f446a 100%);
  color: white;
}
.simplify-row .item {
  border-bottom: solid 1px white;
}
.simplify-row .number {
  font-size: 64px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
.simplify-row::before {
  content: "";
  background-image: url("/wp-content/themes/titan/images/hand-phone.png");
  background-position: left;
  background-size: contain;
  background-repeat: no-repeat;
  height: 915px;
  width: 790px;
  position: absolute;
  z-index: 1;
  top: 8%;
  left: 0;
}

.why-partner-row {
  padding: 47px 0 55px;
  color: #ffffff;
  background-image: url("/wp-content/themes/titan/images/why-partner-with-vbi_home-section.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.why-partner-row .number {
  font-size: 64px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
.why-partner-row::before {
  content: "";
  background-image: url("/wp-content/themes/titan/images/woman-phone.png");
  background-position: bottom;
  background-size: contain;
  background-repeat: no-repeat;
  height: 670px;
  width: 995px;
  position: absolute;
  z-index: 0;
  bottom: -55px;
  right: -110px;
}

.how-car-card-works-row {
  padding: 55px 0 70px;
  color: #ffffff;
  background: linear-gradient(180deg, #3360a7 0%, #2f446a 100%);
}
.how-car-card-works-row .cta-box {
  height: 60px;
  display: flex;
  align-items: center;
}

.cta-row {
  background-color: #ffffff;
  padding: 55px 0 75px;
}
.cta-row h3 {
  margin-bottom: 55px;
}

.hero-register-row {
  height: 630px;
  background-image: url("/wp-content/themes/titan/images/hero-register.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #2F446A;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  position: relative;
}
@media (max-width: 991px) {
  .hero-register-row {
    text-align: center;
  }
  .hero-register-row:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #ffffff;
    opacity: 0.7;
  }
  .hero-register-row .container {
    z-index: 1;
  }
}
.hero-register-row .font-mulish {
  font-family: "Mulish", sans-serif;
}
.hero-register-row p, .hero-register-row .screen-reader-text,
.hero-register-row input[type=search] {
  line-height: 40px;
}

.p-before-fixed::before {
  top: 18%;
  position: fixed;
  z-index: -1;
}

.register-row {
  background-color: #F3F4F6;
  color: #2F446A;
  padding: 146px 0 140px;
  background-image: url("/wp-content/themes/titan/images/register-today.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 60px 0;
}

.how-register-row {
  padding: 47px 0 54px;
}
.how-register-row .steps-box {
  margin-top: 47px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 105px;
}
.how-register-row .steps-box .step {
  width: 16%;
}
.how-register-row .steps-box .step p, .how-register-row .steps-box .step .screen-reader-text,
.how-register-row .steps-box .step input[type=search] {
  margin-top: 30px;
  color: #2F446A;
}
.how-register-row .number {
  position: relative;
  border-radius: 50%;
  width: 96px;
  height: 96px;
  background-color: #2F446A;
  display: flex;
  justify-content: center;
  align-items: center;
}
.how-register-row .number span {
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.how-register-row .number::before {
  content: "";
  background-image: url("/wp-content/themes/titan/images/right-arrow-icon.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 10px;
  width: 152px;
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translate(0, -50%);
  right: -165px;
}
.how-register-row .number.check {
  background-color: #6FE97B;
}
.how-register-row .number.check::before {
  content: none;
}

.download-row {
  padding: 50px 0 77px;
  color: #ffffff;
  background: linear-gradient(180deg, #3360a7 0%, #2f446a 100%);
}
.download-row .cta-box {
  margin-top: 35px;
  text-align: center;
}

.btn-box {
  height: 60px;
}

@media screen and (min-width: 1500px) {
  .register-row {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
  }
  .hero-register-row {
    background-color: #F3F4F6;
    background-size: contain;
    background-position: left;
  }
}
.navbar {
  top: 0;
  left: 0;
  position: fixed;
  width: 100%;
  z-index: 9999;
}

.top-blank-space {
  height: 164px;
}

@media screen and (max-width: 1250px) {
  .home-hero-row .home-phone {
    height: 735px;
  }
  .why-partner-row::before {
    width: 800px;
  }
}
@media screen and (max-width: 1200px) {
  p.h1, .h1.screen-reader-text,
  input.h1[type=search] {
    font-size: 70px;
  }
  .home-hero-row .sub-title {
    font-size: 41px;
  }
  .register-row {
    padding: 90px 0 100px;
    background-position: -90px 0;
  }
}
@media screen and (max-width: 1024px) {
  .home-hero-row {
    overflow: hidden;
    height: 880px;
    padding: 30px 0;
  }
  .home-hero-row .home-phone {
    bottom: 10px;
    right: -75px;
  }
}
@media screen and (max-width: 991px) {
  .home-hero-row {
    height: 990px;
  }
  .home-hero-row p.h1, .home-hero-row .h1.screen-reader-text,
  .home-hero-row input.h1[type=search] {
    font-size: 70px;
  }
  .home-hero-row h2 {
    font-size: 41px;
  }
  .home-hero-row .home-phone {
    height: 455px;
    bottom: unset;
    top: 65px;
    right: unset;
    left: 18%;
  }
  .simplify-row h2 {
    font-size: 45px;
  }
  .simplify-row::before {
    height: 475px;
    width: 450px;
  }
  .why-partner-row::before {
    width: 700px;
  }
  .register-row {
    padding: 45px 0 75px;
    background-position: 70px 0;
  }
  .register-row h2 {
    font-size: 45px;
  }
  .how-register-row .steps-box {
    flex-wrap: wrap;
    justify-content: center;
  }
  .how-register-row .steps-box .step {
    width: 32%;
  }
  .how-register-row .number::before {
    content: none;
  }
}
@media screen and (max-width: 767px) {
  .home-features-row h2 {
    font-size: 45px;
  }
  .home-features-row .feature-box {
    margin: 40px 0;
    padding: 0 100px;
  }
  .simplify-row::before {
    content: none;
  }
  .simplify-row .steps-box {
    padding: 30px;
  }
  .home-hero-row .home-phone {
    height: 420px;
    left: 25%;
  }
  .why-partner-row::before {
    content: none;
  }
  .how-car-card-works-row h2 {
    font-size: 50px;
  }
  .register-row {
    text-align: center;
    color: #ffffff;
    background-image: none;
    background-color: #2F446A;
  }
  .register-row h2 {
    font-size: 46px;
  }
}
@media screen and (max-width: 576px) {
  .home-hero-row .home-phone {
    height: 310px;
    left: 30%;
  }
  .hero-register-row p.h1, .hero-register-row .h1.screen-reader-text,
  .hero-register-row input.h1[type=search] {
    font-size: 65px;
  }
  .hero-register-row h2 {
    font-size: 40px;
  }
  .simplify-row h2 {
    font-size: 36px;
  }
  .how-register-row h2 {
    font-size: 42px;
  }
  .download-row h2 {
    font-size: 45px;
  }
}/*# sourceMappingURL=style.css.map */