/*
Theme Name: Dream Digital
Theme URI: https://noe1lopez.com
Author: Noe Lopez
Author URI: https://noe1lopez.com
Description: Custom Theme with Bootstrap.
Requires at least: WordPress 4.9.6
Version: 3.2
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: Dream Digital
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.

Dream Digital Theme 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.

Dream Digital Theme 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: #00A1FF;
}

.secondary {
  color: #005F97;
}

.dkgray {
  color: #040404;
}

.primary-bg {
  background-color: #00A1FF;
}

.secondary-bg {
  background-color: #005F97;
}

.primary-gr {
  background: linear-gradient(180deg, #00A1FF 33.58%, #005F97 64.18%);
}

.secondary-gr {
  background: linear-gradient(180deg, #7FD0FF 33.58%, #00A1FF 64.18%);
}

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

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

/*---
Typography
---*/
.font-primary {
  font-family: "Arial", sans-serif;
}

.font-secondary {
  font-family: "Sans", sans-serif;
}

@font-face {
  font-family: "Arial";
  src: url("./fonts/Arial");
  src: url("./fonts/Arial.eot?#iefix") format("embedded-opentype"), url("./fonts/Arial.woff2") format("woff2"), url("./fonts/Arial.woff") format("woff"), url("./fonts/Arial.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Arial";
  src: url("./fonts/Arial-Bold.eot");
  src: url("./fonts/Arial-Bold.eot?#iefix") format("embedded-opentype"), url("./fonts/Arial-Bold.woff2") format("woff2"), url("./fonts/Arial-Bold.woff") format("woff"), url("./fonts/Arial-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Arial";
  src: url("./fonts/Arial-Black.eot");
  src: url("./fonts/Arial-Black.eot?#iefix") format("embedded-opentype"), url("./fonts/Arial-Black.woff2") format("woff2"), url("./fonts/Arial-Black.woff") format("woff"), url("./fonts/Arial-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
/* Define Fonts for the Website */
a {
  font-size: inherit;
  color: inherit;
  margin-bottom: 0px;
}

a:hover {
  font-size: 17px;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  color: #00A1FF;
}

body {
  font-size: 10px;
  font-weight: 400;
  font-family: "Arial", sans-serif;
  color: #040404;
  background-color: #040404;
}

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

h1 {
  font-size: 45px;
  font-weight: 700;
  line-height: 54px;
  font-family: "Arial", sans-serif;
  margin-bottom: 0px;
}
h1.hero {
  font-size: 45px;
  font-weight: 700;
  line-height: 54px;
  text-transform: uppercase;
  font-family: "Arial", sans-serif;
}

.sub {
  font-size: 24px;
  font-weight: 400;
  line-height: 21.6px;
}

h2 {
  font-size: 45px;
  font-weight: 700;
  line-height: normal;
  font-family: "Arial", sans-serif;
  text-transform: uppercase;
  background: linear-gradient(180deg, #00A1FF 33.58%, #005F97 64.18%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0px;
}

h3 {
  font-size: 38px;
  font-weight: 700;
  line-height: normal;
  font-family: "Arial", sans-serif;
  margin-bottom: 0px;
}

h4 {
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
  font-family: "Arial", sans-serif;
  margin-bottom: 0px;
}

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: #00A1FF;
  border: solid 3px #00A1FF;
}
.search-submit:hover {
  background-color: transparent;
  color: #005F97;
  border-color: #005F97;
}

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

.secondary {
  color: #005F97;
}

.dkgray {
  color: #040404;
}

.primary-bg {
  background-color: #00A1FF;
}

.secondary-bg {
  background-color: #005F97;
}

.primary-gr {
  background: linear-gradient(180deg, #00A1FF 33.58%, #005F97 64.18%);
}

.secondary-gr {
  background: linear-gradient(180deg, #7FD0FF 33.58%, #00A1FF 64.18%);
}

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

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

/*--- Collapse Header Navigation ---*/
img.custom-logo {
  width: 100%;
  max-width: 332px;
  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;
    max-width: 285px;
    padding-top: 50px;
  }
  .brand-flex {
    display: flex;
    flex-grow: 1;
    justify-content: center;
  }
}
/*-------
Transition Mixin
-------*/
/*--------*/
.navbar {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 0 !important;
}

/*-------
Desktop
--------*/
@media (min-width: 992px) {
  nav .navbar-nav .nav-link {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
  }
  nav .navbar-nav .nav-link::after {
    background-image: url("/wp-content/themes/titan/images/dropdown-white-icon.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 14px;
    height: 14px;
    vertical-align: middle !important;
    border: none;
  }
  nav .navbar-nav .nav-link:hover {
    background: linear-gradient(180deg, #7FD0FF 33.58%, #00A1FF 64.18%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  nav .navbar-nav .nav-link:hover::after {
    background-image: url("/wp-content/themes/titan/images/dropdown-icon.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 14px;
    height: 14px;
    vertical-align: middle !important;
    border: none;
  }
  .dropdown-menu {
    background: linear-gradient(180deg, #040404 0%, #00A1FF 100%);
    border-radius: 15px;
    padding: 14px 12px;
    border: none;
    margin-top: 20px;
    max-width: 364px;
  }
  .dropdown-menu .menu-item {
    text-align: left;
    padding: 10px 67px 10px 15px;
  }
  .dropdown-menu .dropdown-item {
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    background-color: transparent;
    color: #ffffff;
    text-transform: uppercase;
    width: 364px;
    overflow: hidden;
    white-space: initial;
    padding: 0;
  }
  .dropdown-menu .dropdown-item:hover {
    font-size: 18px;
    color: #ffffff;
    background-color: transparent;
  }
  #magic-line {
    display: none;
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 90px;
    height: 3px;
    background: #005F97;
    text-decoration: none !important;
    overflow: hidden;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav .nav-link {
    font-size: 14px;
    padding: 5px !important;
  }
  #magic-line {
    bottom: 0px;
  }
}
/*-------
## Mobile
-------*/
@media (max-width: 991px) {
  #magic-line {
    display: none;
  }
  .navbar-nav .nav-link {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    border-bottom: solid 1.5px #ffffff;
    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: #00A1FF;
    background-color: #ffffff;
  }
  .navbar-brand img {
    width: 100%;
    max-width: 160px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  .dropdown-menu {
    border-radius: 0px;
  }
  .dropdown-menu .menu-item .dropdown-item {
    padding: 0.5rem 1rem;
    background-color: transparent;
    font-size: 20px;
    font-weight: 400;
    color: #00A1FF;
    text-align: center;
    text-transform: uppercase;
    border: 1px solid transparent;
    border-radius: 0px;
    white-space: normal;
  }
  .navbar-brand {
    display: block;
    text-align: center;
  }
  .navbar-header {
    width: 100%;
  }
  .nav-phone {
    color: #00A1FF;
    font-size: 18px;
    padding-right: 15px;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
  }
  .navbar-toggler {
    margin-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: -196px;
    padding-top: 80px;
    left: 0;
    transition: 0.001s;
    text-align: center;
    background: linear-gradient(180deg, #00A1FF 33.58%, #005F97 64.18%);
    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: #ffffff;
    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;
  gap: 16px;
  margin-top: 20px;
}
.social-nav .social-network img {
  height: 23px;
}

.social-menu li {
  display: inline-block;
}
.social-menu li a {
  color: #005F97;
  padding: 5px 10px;
  line-height: 0.1;
  transition: all 0.3s ease-in-out;
}
.social-menu li a:hover {
  color: #00A1FF;
}

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

.social-btns {
  background: linear-gradient(180deg, #00A1FF 33.58%, #005F97 64.18%);
  color: #ffffff;
  font-size: 20px !important;
  font-weight: 700 !important;
  line-height: normal !important;
  border-radius: 10px;
  padding: 5px 35px;
  margin: 0px 0px 0px 27px;
  max-height: 33px;
  transition: all 0.3s ease-in-out;
}
.social-btns:hover {
  background: linear-gradient(180deg, #7FD0FF 33.58%, #00A1FF 64.18%);
  color: #040404;
  text-decoration: none;
}

@media (min-width: 992px) {
  .social-menu-mob {
    display: none;
  }
}
@media (max-width: 991px) {
  .navbar-toggleable-lg .social-nav {
    padding: 15px 20px;
    margin-top: 0px;
  }
  .navbar-toggleable-lg .mobile-phone {
    padding: 5px 20px 15px;
  }
  .navbar-toggleable-lg .mobile-phone a {
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    color: #ffffff;
  }
  .social-nav {
    justify-content: center;
    padding-bottom: 15px;
  }
  .social-menu {
    display: none;
  }
  .social-menu-mob li {
    display: inline-block;
  }
  .social-menu-mob li a {
    color: #005F97;
    padding: 5px 5px;
    line-height: 0.1;
  }
  .social-btns {
    border-radius: 0px;
    font-size: 15px;
  }
}
/*------*/
/*---
Footer Blocks
---*/
.white {
  color: #ffffff;
}

.primary {
  color: #00A1FF;
}

.secondary {
  color: #005F97;
}

.dkgray {
  color: #040404;
}

.primary-bg {
  background-color: #00A1FF;
}

.secondary-bg {
  background-color: #005F97;
}

.primary-gr {
  background: linear-gradient(180deg, #00A1FF 33.58%, #005F97 64.18%);
}

.secondary-gr {
  background: linear-gradient(180deg, #7FD0FF 33.58%, #00A1FF 64.18%);
}

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

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

footer {
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  margin-top: 55px;
  padding-top: 115px;
  padding-bottom: 45px;
}
footer .foot-logo {
  max-width: 254px;
}
footer .navbar-nav.footer {
  margin-right: 15px;
}
footer .navbar-nav.footer .nav-link {
  padding: 0px 10px;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}
footer .navbar-nav.footer .nav-link:hover {
  color: #ffffff;
}
footer .contact-information a {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  color: #ffffff;
}
footer .contact-information .footer-reviews-img {
  margin-right: 25px;
}
footer .contact-information .phone,
footer .contact-information .address {
  display: inline-block;
  margin-right: 25px;
}
footer .contact-information .social-network {
  display: inline-block;
  margin-right: 16px;
}
footer .contact-information .social-network:last-child {
  margin-right: 0px;
}
footer .contact-information .social-network img {
  height: 19px;
}
footer .footer-text p, footer .footer-text .screen-reader-text, footer .footer-text input[type=search], footer .footer-text a {
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0px;
  color: #ffffff;
}

@media screen and (min-width: 3840px) {
  footer {
    padding-top: 260px;
    padding-bottom: 115px;
  }
}
@media screen and (min-width: 1920px) and (max-width: 3839px) {
  footer {
    padding-top: 145px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 1280px) {
  footer {
    padding-bottom: 35px;
  }
}
@media screen and (max-width: 1200px) {
  footer {
    padding-top: 100px;
  }
}
@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;
  }
}
@media screen and (max-width: 991px) {
  footer {
    padding-top: 70px;
  }
  footer .footer-text {
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  footer {
    padding-top: 61px;
    padding-bottom: 15px;
  }
  footer .contact-information .address {
    display: block;
    margin-bottom: 8px;
  }
}
/*---
Home Hero Content Block
---*/
.home-top {
  position: relative;
}
.home-top .content {
  position: absolute;
  z-index: 1;
  width: 100%;
  top: 23%;
  left: 50%;
  transform: translate(-50%, 0%);
}
.home-top .content .hero-form {
  display: flex;
  justify-content: end;
}
.home-top .content .hero-form .form-box {
  border-radius: 5px;
  background: linear-gradient(180deg, rgba(0, 161, 255, 0.7) 33.58%, rgba(0, 95, 151, 0.7) 64.18%);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  padding: 26px 20px 31px;
  max-width: 420px;
}
.home-top .content .hero-form .form-box h3 {
  font-size: 28px;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
}
.home-top .video {
  position: relative;
}

/*---
Home Content Blocks
---*/
.section-video-text-list {
  padding-top: 52px;
  padding-bottom: 52px;
  color: #ffffff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.section-video-text-list .video-box {
  height: 359px;
  position: relative;
  overflow: hidden;
}
.section-video-text-list .video-box .video-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
.section-video-text-list .video-box .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.section-video-text-list .video {
  display: none;
}
.section-video-text-list .lists .list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-top: 21px;
}
.section-video-text-list .lists .list .list-image {
  margin-right: 16px;
}
.section-video-text-list .lists .list .list-image .video-img {
  width: 67px;
  height: auto;
}
.section-video-text-list .lists .list .list-text p, .section-video-text-list .lists .list .list-text .screen-reader-text, .section-video-text-list .lists .list .list-text input[type=search] {
  color: #ffffff;
  margin-bottom: 0px;
}

.section-characteristics {
  padding-top: 60px;
  padding-bottom: 130px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #ffffff;
}
.section-characteristics .box {
  transform: scale(1);
  transition: all 0.5s;
}
.section-characteristics .box:hover {
  transform: scale(1.04);
}
.section-characteristics .box .why-xpel-image {
  margin-bottom: 22px;
}

.section-packages {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-bottom: 50px;
  color: #ffffff;
}
.section-packages .package-box {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.17);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  padding: 31px 10px 25px;
  transform: scale(1);
  transition: all 0.5s;
}
.section-packages .package-box:hover {
  transform: scale(1.04);
}
.section-packages .package-box h3 {
  font-size: 38px;
  font-weight: 700;
  line-height: normal;
  color: #00A1FF;
  text-transform: uppercase;
}
.section-packages .package-box .package-price p, .section-packages .package-box .package-price .screen-reader-text, .section-packages .package-box .package-price input[type=search] {
  color: #040404;
  margin-bottom: 0px;
}
.section-packages .package-box .package-price .price {
  font-size: 20px;
  font-weight: 900;
  line-height: normal;
}
.section-packages .btn {
  margin-top: 50px;
}

.section-gallery {
  padding-top: 70px;
  padding-bottom: 69px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.section-gallery .images-gallery {
  display: grid;
  grid-template-columns: auto 24% auto;
  grid-column-gap: 12px;
  grid-row-gap: 12px;
}
.section-gallery .images-gallery .gallery-box {
  position: relative !important;
  overflow: hidden;
}
.section-gallery .images-gallery .gallery-box .image {
  height: 364px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: all 0.5s;
}
.section-gallery .images-gallery .gallery-box .image:hover {
  transform: scale(1.1);
}

.section-reviews {
  padding-top: 61px;
  padding-bottom: 74px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.section-reviews .google-reviews {
  padding-bottom: 51px;
}
.section-reviews .google-reviews .wp-gr .grw-content-inner .grw-reviews {
  margin-bottom: 43px !important;
}
.section-reviews .google-reviews .wp-gr .grw-content-inner .grw-reviews .grw-review {
  flex: 0 0 50%;
}
.section-reviews .google-reviews .wp-gr .grw-content-inner .grw-reviews .grw-review .grw-review-inner {
  height: 288px;
  border-radius: 20px !important;
  background: rgba(255, 255, 255, 0.17) !important;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
}
.section-reviews .google-reviews .wp-gr .grw-content-inner .grw-reviews .grw-review .grw-review-inner .rplg-review-avatar {
  width: 55px !important;
  height: 55px !important;
  margin-right: 29px !important;
}
.section-reviews .google-reviews .wp-gr .grw-content-inner .grw-reviews .grw-review .grw-review-inner .wp-google-name {
  color: #ffffff !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  font-family: "Arial", sans-serif !important;
  line-height: normal;
}
.section-reviews .google-reviews .wp-gr .grw-content-inner .grw-reviews .grw-review .grw-review-inner svg {
  display: none;
}
.section-reviews .google-reviews .wp-gr .grw-content-inner .grw-reviews .grw-review .grw-review-inner .wp-google-time {
  display: none;
}
.section-reviews .google-reviews .wp-gr .grw-content-inner .grw-reviews .grw-review .grw-review-inner .wp-google-stars {
  margin: -32px 0 14px 83px !important;
}
.section-reviews .google-reviews .wp-gr .grw-content-inner .grw-reviews .grw-review .grw-review-inner .wp-google-stars .wp-star svg path {
  fill: #F8B404 !important;
}
.section-reviews .google-reviews .wp-gr .grw-content-inner .grw-reviews .grw-review .grw-review-inner .wp-google-feedback {
  margin-top: 24px !important;
  height: 160px !important;
}
.section-reviews .google-reviews .wp-gr .grw-content-inner .grw-reviews .grw-review .grw-review-inner .wp-google-feedback .wp-google-text {
  font-size: 17px !important;
  font-weight: 400 !important;
  line-height: normal !important;
  font-family: "Arial", sans-serif !important;
  color: #ffffff !important;
}
.section-reviews .google-reviews .wp-gr .grw-content-inner .grw-controls {
  top: 111% !important;
}
.section-reviews .google-reviews .wp-gr .grw-content-inner .grw-controls .grw-btns.grw-prev {
  left: 44% !important;
  margin-left: 0px !important;
}
.section-reviews .google-reviews .wp-gr .grw-content-inner .grw-controls .grw-btns.grw-next {
  right: 44% !important;
  margin-right: 0px !important;
}

.section-packages-2 {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-bottom: 70px;
  color: #ffffff;
}
.section-packages-2 .package-box {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.17);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  padding: 20px;
  min-height: 247px;
  transform: scale(1);
  transition: all 0.5s;
}
.section-packages-2 .package-box:hover {
  transform: scale(1.04);
}
.section-packages-2 .package-box h3 {
  text-transform: uppercase;
}
.section-packages-2 .package-box p, .section-packages-2 .package-box .screen-reader-text, .section-packages-2 .package-box input[type=search] {
  margin-bottom: 0px;
}
.section-packages-2 .package-box .package-price .price {
  font-size: 24px;
  font-weight: 900;
  line-height: normal;
}
.section-packages-2 .featured {
  padding-top: 44px;
  padding-bottom: 32px;
}
.section-packages-2 .featured h4 {
  text-transform: uppercase;
  padding-bottom: 29px;
}
.section-packages-2 .featured .featured-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 28px;
}
.section-packages-2 .featured .featured-item .image {
  margin-right: 21px;
}
.section-packages-2 .featured .featured-item .image img {
  width: 35px;
  height: 35px;
}
.section-packages-2 .featured .featured-item .text p, .section-packages-2 .featured .featured-item .text .screen-reader-text, .section-packages-2 .featured .featured-item .text input[type=search] {
  text-transform: capitalize;
  margin-bottom: 0px;
}

.section-contact {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 53px;
  padding-bottom: 70px;
  color: #ffffff;
}
.section-contact h2 {
  -webkit-text-fill-color: #ffffff;
}
.section-contact .contact-information .phone,
.section-contact .contact-information .email,
.section-contact .contact-information .address {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 11px;
}
.section-contact .contact-information a {
  font-size: 17px;
  font-weight: 400;
  line-height: normal;
}
.section-contact .contact-information a:hover {
  color: #ffffff;
}
.section-contact .contact-information a img {
  margin-right: 5px;
}
.section-contact .map p, .section-contact .map .screen-reader-text, .section-contact .map input[type=search] {
  margin-bottom: 0px;
}
.section-contact .map p iframe, .section-contact .map .screen-reader-text iframe, .section-contact .map input[type=search] iframe {
  border-radius: 15px;
  border: none;
}

.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, 95, 151, 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-hero {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  height: 440px;
  padding-top: 241px;
}

/*---
Internal Content Blocks
---*/
/* About - Page */
.section-characteristics.about {
  padding-top: 146px;
  padding-bottom: 14px;
}
.section-characteristics.about .btn {
  margin-top: 66px;
}

.section-gallery.about {
  padding-top: 72px;
  padding-bottom: 79px;
}

.section-reviews.about {
  padding-bottom: 0px;
}

.section-cta {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 86px;
  padding-bottom: 100px;
}
.section-cta .box {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0px 49px 36.6px 0px rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  padding: 65px 63px;
  max-width: 844px;
  margin: 0 auto;
}
.section-cta .box h3 {
  font-size: 33px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  background: linear-gradient(180deg, #7FD0FF 33.58%, #00A1FF 64.18%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 33px;
}
.section-cta .box .buttons .btn:first-child {
  margin-right: 18px;
}

.section-contact.about {
  padding-top: 28px;
}

/* Paint Protection - Page */
.section-featured-items {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 60px;
  padding-bottom: 118px;
}
.section-featured-items .featured-item {
  padding: 0px 20px;
  transform: scale(1);
  transition: all 0.5s;
}
.section-featured-items .featured-item:hover {
  transform: scale(1.04);
}
.section-featured-items .featured-item .featured-image {
  max-width: 258px;
}
.section-featured-items .featured-item p, .section-featured-items .featured-item .screen-reader-text, .section-featured-items .featured-item input[type=search] {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  text-transform: uppercase;
  background: linear-gradient(180deg, #7FD0FF 33.58%, #00A1FF 64.18%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-top: 28px;
}

.section-packages.paint-protection {
  padding-bottom: 50px;
}

.section-characteristics.paint-protection {
  padding-top: 118px;
  padding-bottom: 0px;
}

.section-gallery.paint-protection {
  padding-top: 87px;
}

.section-reviews.paint-protection {
  padding-bottom: 114px;
}

.section-video-contact {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 39px;
  padding-bottom: 70px;
}

.section-video {
  padding-top: 0px;
  padding-bottom: 131px;
  color: #ffffff;
}
.section-video .btn {
  margin-top: 33px;
}
.section-video .video-box-2 {
  height: 359px;
  position: relative;
  overflow: hidden;
}
.section-video .video-box-2 .video-img-2 {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
.section-video .video-box-2 .play-icon-2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.section-video .video-2 {
  display: none;
}

.section-contact.paint-protection {
  padding-top: 0px;
  padding-bottom: 0px;
}

/* Paint Correction - Page */
.section-packages-2.paint-correction {
  padding-bottom: 0px;
}

.section-characteristics.paint-correction {
  padding-top: 118px;
  padding-bottom: 155px;
}

.section-gallery.paint-correction {
  padding-top: 0px;
  padding-bottom: 79px;
}

.section-reviews.paint-correction {
  padding-bottom: 114px;
}

.section-contact.paint-correction {
  padding-top: 0px;
  padding-bottom: 0px;
}

/* Contact us - Page */
.section-contact.contact {
  padding-top: 0px;
  padding-bottom: 0px;
}
.section-contact.contact .contact-form {
  display: flex;
  justify-content: end;
}
.section-contact.contact .contact-form .form-box {
  border-radius: 5px;
  background: linear-gradient(180deg, rgba(0, 161, 255, 0.7) 33.58%, rgba(0, 95, 151, 0.7) 64.18%);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  padding: 26px 20px 31px;
  max-width: 420px;
}
.section-contact.contact .contact-form .form-box h3 {
  font-size: 28px;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
}
.section-contact.contact .map {
  margin-top: 104px;
}

.section-cta.contact {
  padding-top: 171px;
  padding-bottom: 100px;
}

/* Thank You */
.thank-you {
  padding-top: 52px;
  padding-bottom: 70px;
}

/* Terms of service - Page */
.terms-of-service {
  padding-top: 52px;
  padding-bottom: 70px;
}
.terms-of-service h1, .terms-of-service h2, .terms-of-service h3, .terms-of-service h4, .terms-of-service h5, .terms-of-service h6 {
  margin-bottom: 0.5rem;
}
.terms-of-service p, .terms-of-service .screen-reader-text, .terms-of-service input[type=search] {
  margin-bottom: 1rem;
}

/*---
Internal Bottom Blocks
---*/
/*---
Gravity Forms
---*/
.gform_wrapper {
  margin: 0px 0px 5px !important;
}
.gform_wrapper .gform_body .gform_fields {
  grid-row-gap: 12px;
}
.gform_wrapper .gform_body .gform_fields .ginput_container {
  margin-top: 0px !important;
}
.gform_wrapper .gform_body .gform_fields input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.gform_wrapper .gform_body .gform_fields textarea {
  background: transparent;
  border: none;
  border-bottom: 2px solid #ffffff !important;
  border-radius: 0px !important;
  box-shadow: none;
  padding: 10px 3px;
  color: #ffffff;
  font-size: 14px !important;
  font-weight: 400;
  line-height: 17.5px;
}
.gform_wrapper .gform_body .gform_fields input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::-moz-placeholder, .gform_wrapper .gform_body .gform_fields textarea::-moz-placeholder {
  opacity: 1;
  color: #ffffff;
}
.gform_wrapper .gform_body .gform_fields input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::placeholder,
.gform_wrapper .gform_body .gform_fields textarea::placeholder {
  opacity: 1;
  color: #ffffff;
}
.gform_wrapper .gform_body .gform_fields input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::-webkit-input-placeholder,
.gform_wrapper .gform_body .gform_fields textarea::-webkit-input-placeholder {
  opacity: 1;
  color: #ffffff;
}
.gform_wrapper .gform_body .gform_fields textarea {
  margin-top: 0px;
}
.gform_wrapper .gform_body .gform_fields textarea.small {
  height: 78px;
  min-height: 64px;
}
.gform_wrapper .gform_footer {
  text-align: center;
  justify-content: center;
  margin-top: 34px !important;
  padding-bottom: 0px !important;
}
.gform_wrapper .gform_footer .button {
  font-size: 24px !important;
  background-color: #ffffff !important;
  border-radius: 10px !important;
  border: none;
  white-space: normal;
  margin-right: 0px !important;
  padding: 5px 35px;
  --gf-local-padding-y: 5px !important;
  --gf-local-padding-x: 35px !important;
  --gf-local-min-height: auto !important;
  transition: all 0.3s ease-in-out;
}
.gform_wrapper .gform_footer .button span {
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  background: linear-gradient(180deg, #040404 0%, #00A1FF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gform-theme--framework .gform_validation_errors {
  --gf-form-validation-margin-y: 0px !important;
}

body .gform_wrapper ul li.gfield {
  margin-top: 7px !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;
  }
}
/*---
Custom Site Styles by Developer
---*/
/*--- Buttons ---*/
.btn {
  font-size: 15px !important;
  font-weight: 700 !important;
  font-family: "Arial", sans-serif !important;
  line-height: normal !important;
  background-color: transparent;
  border-radius: 10px;
  white-space: normal;
  padding: 5px 35px;
  text-transform: uppercase;
  max-height: 33px;
  transition: all 0.3s ease-in-out;
}
.btn.primary-btn {
  color: #ffffff;
  background: linear-gradient(180deg, #00A1FF 33.58%, #005F97 64.18%);
}
.btn.primary-btn:hover {
  background: linear-gradient(180deg, #7FD0FF 33.58%, #00A1FF 64.18%);
  color: #040404;
}
.btn.secondary-btn {
  color: #ffffff;
  background-color: #005F97;
}
.btn.secondary-btn:hover {
  background-color: #ffffff;
  color: #005F97;
}
.btn.white-btn {
  background-color: #ffffff;
  color: #00A1FF;
}
.btn.white-btn:hover {
  color: #ffffff;
  background-color: #00A1FF;
}

/*--- Media Queries ---*/
@media only screen and (max-width: 1200px) {
  h1.hero {
    font-size: 44px;
  }
  h2 {
    font-size: 39px;
  }
  h3 {
    font-size: 30px;
  }
  /* Home - Page */
  .section-packages .package-box h3 {
    font-size: 30px;
  }
  .section-packages-2 .package-box h3 {
    font-size: 30px;
  }
  .section-gallery .images-gallery {
    grid-template-columns: auto auto;
  }
  .section-reviews .google-reviews .wp-gr .grw-content-inner .grw-controls .grw-btns.grw-prev {
    left: 41% !important;
  }
  .section-reviews .google-reviews .wp-gr .grw-content-inner .grw-controls .grw-btns.grw-next {
    right: 41% !important;
  }
  /* Thank You - Page */
  .thank-you h3 {
    font-size: 30px;
  }
}
@media only screen and (min-width: 992px) {
  /* Home - Page */
  .section-packages .package-box .package-text {
    height: 182px;
  }
}
@media only screen and (max-width: 991px) {
  /* Home - Page */
  .home-top .content .hero-form {
    justify-content: center;
    margin-top: 15px;
  }
  .section-video-text-list .lists .list {
    justify-content: center !important;
  }
  .section-characteristics {
    padding-bottom: 60px;
  }
  .section-characteristics .box {
    margin-bottom: 50px;
  }
  .section-packages .package-box {
    margin-bottom: 50px;
  }
  .section-gallery .images-gallery {
    grid-template-columns: auto;
  }
  .section-gallery .images-gallery .gallery-box .image {
    height: 550px;
  }
  .section-reviews .google-reviews .wp-gr .grw-content-inner .grw-reviews .grw-review {
    flex: 0 0 100%;
  }
  .section-reviews .google-reviews .wp-gr .grw-content-inner .grw-controls .grw-btns.grw-prev {
    left: 34% !important;
  }
  .section-reviews .google-reviews .wp-gr .grw-content-inner .grw-controls .grw-btns.grw-next {
    right: 34% !important;
  }
  .section-packages-2 .packages .package-box {
    margin-bottom: 50px;
    min-height: auto;
  }
  .section-packages-2 .featured .featured-item {
    justify-content: center !important;
  }
  .section-contact .contact-information .phone,
  .section-contact .contact-information .email,
  .section-contact .contact-information .address {
    justify-content: center;
  }
  .section-contact .map p iframe, .section-contact .map .screen-reader-text iframe, .section-contact .map input[type=search] iframe {
    display: block;
    margin: 0 auto;
  }
  /* About - Page */
  .section-cta .box .buttons {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .section-cta .box .buttons .btn {
    margin-bottom: 18px;
  }
  .section-cta .box .buttons .btn:first-child {
    margin-right: 0px;
  }
  /* Paint correction ceramic coatings - Page */
  .section-featured-items {
    padding-bottom: 60px;
  }
  .section-featured-items .featured-item {
    margin-bottom: 50px;
  }
  .section-characteristics.paint-correction {
    padding-bottom: 87px;
  }
  /* Paint protection - Page */
  .section-characteristics.paint-protection {
    padding-top: 60px;
  }
  /* Contact Us - Page */
  .section-contact.contact .contact-form {
    justify-content: center;
  }
}
@media only screen and (max-width: 768px) {
  h1.hero {
    font-size: 40px;
  }
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 28px;
  }
  /* Home - Page */
  .section-packages .package-box h3 {
    font-size: 28px;
  }
  .section-gallery .images-gallery .gallery-box .image {
    height: 450px;
  }
  .section-reviews .google-reviews .wp-gr .grw-content-inner .grw-controls .grw-btns.grw-prev {
    left: 30% !important;
  }
  .section-reviews .google-reviews .wp-gr .grw-content-inner .grw-controls .grw-btns.grw-next {
    right: 30% !important;
  }
  .section-packages-2 .package-box h3 {
    font-size: 28px;
  }
  /* About - Page */
  .section-cta .box h3 {
    font-size: 28px;
  }
  /* Paint Correction Ceramic Coatings - Page */
  .section-featured-items .featured-item p, .section-featured-items .featured-item .screen-reader-text, .section-featured-items .featured-item input[type=search] {
    font-size: 28px;
  }
  /* Thank You - Page */
  .thank-you h3 {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  h1.hero {
    font-size: 25px;
    line-height: 34px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 22px;
  }
  /* Home - Page */
  .home-top .content .hero-form .form-box h3 {
    font-size: 22px;
  }
  .home-top .content .hero-form .form-box .gform_wrapper .gform_footer .button span {
    font-size: 20px;
  }
  .section-characteristics {
    padding-top: 0px;
    padding-bottom: 32px;
  }
  .section-characteristics .box {
    margin-bottom: 20px;
  }
  .section-packages {
    padding-bottom: 52px;
    background-position: right;
  }
  .section-packages .package-box {
    margin-bottom: 20px;
  }
  .section-packages .package-box h3 {
    font-size: 22px;
  }
  .section-packages .btn {
    margin-top: 16px;
  }
  .section-gallery {
    padding-top: 0px;
    padding-bottom: 52px;
  }
  .section-reviews {
    padding-top: 0px;
    padding-bottom: 52px;
  }
  .section-reviews .google-reviews {
    padding-bottom: 36px;
  }
  .section-reviews .google-reviews .wp-gr .grw-content-inner .grw-controls .grw-btns.grw-prev {
    left: 4% !important;
  }
  .section-reviews .google-reviews .wp-gr .grw-content-inner .grw-controls .grw-btns.grw-next {
    right: 4% !important;
  }
  .section-packages-2 {
    padding-bottom: 52px;
    background-position: right;
  }
  .section-packages-2 .packages .package-box {
    margin-bottom: 20px;
  }
  .section-packages-2 .packages .package-box h3 {
    font-size: 26px;
  }
  .section-packages-2 .featured {
    padding-top: 12px;
    padding-bottom: 8px;
  }
  .section-packages-2 .featured .featured-item {
    justify-content: start !important;
  }
  .section-contact {
    padding-top: 0px;
    padding-bottom: 52px;
  }
  /* About Us - Page */
  .section-characteristics.about {
    padding-top: 0px;
    padding-bottom: 52px;
  }
  .section-characteristics.about .btn {
    margin-top: 16px;
  }
  .section-gallery.about {
    padding-top: 0px;
    padding-bottom: 52px;
  }
  .section-reviews.about {
    padding-bottom: 52px !important;
  }
  .section-cta {
    padding-top: 0px;
    padding-bottom: 52px;
  }
  .section-cta .box {
    padding: 20px;
  }
  .section-cta .box h3 {
    font-size: 22px;
  }
  .section-contact.about {
    padding-top: 0px;
    padding-bottom: 52px;
  }
  /* Paint correction ceramic coatings - Page */
  .section-featured-items.paint-correction {
    padding-top: 0px;
    padding-bottom: 32px;
  }
  .section-featured-items .featured-item {
    margin-bottom: 20px;
  }
  .section-featured-items .featured-item .featured-image {
    max-width: 158px;
  }
  .section-featured-items .featured-item p, .section-featured-items .featured-item .screen-reader-text, .section-featured-items .featured-item input[type=search] {
    font-size: 22px;
  }
  .section-characteristics.paint-correction {
    padding-top: 52px;
    padding-bottom: 32px;
  }
  .section-gallery.paint-correction {
    padding-bottom: 52px;
  }
  .section-reviews.paint-correction {
    padding-bottom: 52px;
  }
  .section-video-contact.paint-correction {
    padding-top: 0px;
    padding-bottom: 52px;
  }
  .section-video.paint-correction {
    padding-bottom: 52px;
  }
  /* Paint Protection - Page */
  .section-featured-items.paint-protection {
    padding-top: 0px;
    padding-bottom: 32px;
  }
  .section-packages.paint-protection {
    padding-bottom: 52px;
  }
  .section-characteristics.paint-protection {
    padding-top: 0px;
    padding-bottom: 32px;
  }
  .section-gallery.paint-protection {
    padding-top: 0px;
  }
  .section-reviews.paint-protection {
    padding-bottom: 52px;
  }
  .section-video-contact.paint-protection {
    padding-top: 0px;
    padding-bottom: 52px;
  }
  .section-video.paint-protection {
    padding-bottom: 52px;
  }
  /* Contact Us - Page */
  .section-contact.contact .contact-form .form-box h3 {
    font-size: 22px;
  }
  .section-contact.contact .contact-form .form-box .gform_wrapper .gform_footer .button span {
    font-size: 20px;
  }
  .section-contact.contact .map {
    margin-top: 52px;
  }
  .section-cta.contact {
    padding-top: 52px;
    padding-bottom: 52px;
  }
  /* Thank You - Page */
  .thank-you {
    padding-bottom: 52px;
  }
  .thank-you h3 {
    font-size: 22px;
  }
  /* Terms of service - Page */
  .terms-of-service {
    padding-bottom: 52px;
  }
}
@media only screen and (max-width: 630px) {
  .section-gallery .images-gallery .gallery-box .image {
    height: 370px;
  }
}
@media only screen and (max-width: 520px) {
  .section-gallery .images-gallery .gallery-box .image {
    height: 300px;
  }
}
@media only screen and (max-width: 430px) {
  .section-gallery .images-gallery .gallery-box .image {
    height: 241px;
  }
}
@media only screen and (max-width: 360px) {
  .section-gallery .images-gallery .gallery-box .image {
    height: 195px;
  }
}
@media only screen and (max-width: 310px) {
  .section-gallery .images-gallery .gallery-box .image {
    height: 150px;
  }
}/*# sourceMappingURL=style.css.map */