/*
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
---*/
.black {
  color: #000000;
}

.white {
  color: #ffffff;
}

.primary {
  color: #002440;
}

.secondary {
  color: #0094aa;
}

.dkgray {
  color: #33312F;
}

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

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

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

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

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

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

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

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

body {
  font-size: 10px;
  font-weight: 400;
  font-family: "Bicyclette", sans-serif;
  color: #000000;
}

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

h1 {
  font-size: 72px;
  font-weight: bold;
  font-family: "Bicyclette", sans-serif;
  line-height: 46px;
  text-transform: uppercase;
}
h1.hero {
  font-size: 48px;
  font-weight: 400;
}

h2 {
  font-size: 48px;
  font-weight: bold;
  font-family: "Bicyclette", sans-serif;
  line-height: 46px;
  text-transform: uppercase;
  color: #000000;
}
h3 {
  font-size: 32px;
  font-weight: bold;
  font-family: "Bicyclette", sans-serif;
  line-height: 46px;
  text-transform: uppercase;
  color: #000000;
}

h4 {
  font-size: 24px;
  font-weight: bold;
  font-family: "Bicyclette", sans-serif;
  line-height: 46px;
}

nav ul li {
  flex: 0 1 auto !important;
  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: #002440;
  border: solid 3px #002440;
}
.search-submit:hover {
  background-color: transparent;
  color: #0094aa;
  border-color: #0094aa;
}

/*---
Header Blocks
---*/
/*--Dropdown Blue Box Fix--*/
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  background-color: transparent;
}

/*--- Import Color Mixins ---*/
.black {
  color: #000000;
}

.white {
  color: #ffffff;
}

.primary {
  color: #002440;
}

.secondary {
  color: #0094aa;
}

.dkgray {
  color: #33312F;
}

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

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

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

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

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

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

@media (max-width: 991px) {
  .custom-logo-link {
    display: inline-block;
  }
  img.custom-logo {
    display: block;
    margin: 0 auto;
    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;
}

/*-------
Desktop
--------*/
@media (min-width: 992px) {
  .navbar-expand-lg .mobile-phone-number {
    display: none;
  }
  .navbar-expand-lg .navbar-nav {
    padding-top: 94px;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    color: #ffffff;
    border-bottom: solid 2px transparent;
    border-radius: 0px;
    margin-left: 10.5px;
    margin-right: 10.5px;
    padding: 2px 0px;
    transition: all 0.3s ease-in-out;
  }
  .navbar-expand-lg .navbar-nav .nav-link:hover {
    color: #ffffff;
  }
  .navbar-expand-lg .button-nav a {
    padding: 10.5px 17px;
  }
  .navbar-expand-lg .navbar-nav .active .nav-link {
    color: #ffffff;
  }
  .dropdown-item {
    padding: 0.25rem 0.45rem;
    background-color: transparent;
    color: #33312F;
  }
  .nav-phone .nav-link {
    font-weight: 900 !important;
    color: #002440 !important;
  }
  .nav-phone .nav-link:hover {
    color: #33312F !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 14px;
    margin-left: 5px;
    margin-right: 5px;
  }
  img.custom-logo {
    max-width: 200px;
  }
}
.navbar-nav .dropdown-menu {
  border-radius: 0;
  border: none;
  margin-top: 0;
}

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

/*-------
## Mobile
-------*/
@media (max-width: 991px) {
  .navbar .mobile-phone-number {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-top: 11px;
  }
  .navbar .mobile-phone-number .social-btns {
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
    color: #ffffff;
    text-transform: uppercase;
  }
  .navbar .mobile-phone-number .social-btns:hover {
    color: #ffffff;
  }
  .navbar .navbar-toggleable-lg .social-networks {
    padding: 10px 20px;
  }
  .navbar .navbar-toggleable-lg .social-networks .social-icons {
    margin: 0 16px 0 0;
    color: #000000;
    transition: all 0.3s ease-in-out;
  }
  .navbar .navbar-toggleable-lg .social-networks .social-icons:last-child {
    margin-right: 0px;
  }
  .navbar .navbar-toggleable-lg .mobile-phone {
    padding: 0px 20px 10px;
  }
  .navbar .navbar-toggleable-lg .mobile-phone .phone-button {
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
    color: #000000;
  }
  .navbar-nav .nav-link {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    border-bottom: solid 1.5px #000000;
    border-radius: 0px;
    text-transform: uppercase;
    padding: 10px 20px;
  }
  #menu-item-29 .nav-link {
    border: none;
  }
  .navbar-nav .active > .nav-link, .navbar-nav .nav-link.active, .navbar-nav .nav-link.show, .navbar-nav .show > .nav-link {
    color: #ffffff;
    background-color: #000000;
  }
  .navbar-brand img {
    width: 100%;
    max-width: 160px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  .dropdown-item {
    padding: 0.25rem 1.5rem;
    background-color: transparent;
    color: #ffffff;
    text-align: center;
  }
  .navbar-header {
    width: 100%;
  }
  .nav-phone {
    color: #002440;
    font-size: 18px;
    padding-right: 15px;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
  }
  .navbar-toggler {
    top: 10px;
    border: none;
    position: absolute;
    z-index: 64;
    width: initial;
    left: 10px;
  }
  .navbar-toggler:focus, .navbar-toggler:hover {
    outline: none;
    box-shadow: none;
  }
  #titan-nav {
    position: absolute;
    z-index: 10;
    top: 0px;
    padding: 60px 0 0;
    left: 0;
    transition: 0.001s;
    text-align: center;
    background-color: #ffffff;
    width: 100%;
  }
  /*---- Dropdown Toggle ----*/
  /* Icon 4 */
  #nav-icon4 {
    width: 25px;
    height: 20px;
    position: relative;
    transform: rotate(0deg);
    transition: 0.3s ease-in-out;
    cursor: pointer;
  }
  #nav-icon4.open span {
    background-color: #000000;
  }
  #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 {
  padding-top: 24px;
  padding-bottom: 35px;
}
.social .social-icons {
  margin: 0 16px 0 0;
  color: #ffffff;
  margin-top: -35px;
  transition: all 0.3s ease-in-out;
}
.social .social-icons:last-child {
  margin-right: 0px;
}
.social .social-icons:hover {
  color: #ffffff;
}
.social .social-icons svg {
  width: auto;
  height: 23px;
}
.social .social-btns {
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
  color: #ffffff;
  text-transform: uppercase;
  margin-right: 23px;
}
.social .social-btns:hover {
  color: #ffffff;
}

/*------*/
/*---
Footer Blocks
---*/
.black {
  color: #000000;
}

.white {
  color: #ffffff;
}

.primary {
  color: #002440;
}

.secondary {
  color: #0094aa;
}

.dkgray {
  color: #33312F;
}

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

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

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

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

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

@media (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav.footer .nav-link {
    padding: 0px 10px;
    font-size: 12px;
  }
  .footer-text p, .footer-text .screen-reader-text, .footer-text input[type=search], .footer-text a {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  footer .contact-information .footer-address {
    display: block;
    margin-bottom: 8px;
  }
  footer .footer-text {
    margin-top: 2px;
  }
}
/*---
Home Hero Content Block
---*/
.home-top .slider-button .rev-btn {
  font-family: "Bicyclette", sans-serif !important;
}

/*---
Home Content Blocks
---*/
.section-get-started {
  padding-top: 19px;
}
.section-get-started .form .gform_wrapper .gform_body .gform_fields {
  grid-row-gap: 20px;
}
.section-get-started .form .gform_wrapper .gform_body .gform_fields input:not(.gfield-choice-input) {
  background: transparent;
  border: solid 2px #000000 !important;
  border-radius: 30px !important;
  padding: 22.5px 25px 22.5px 25px;
  color: #000000;
  font-size: 20px !important;
  line-height: normal;
}
.section-get-started .form .gform_wrapper .gform_body .gform_fields input:not(.gfield-choice-input)::-moz-placeholder {
  opacity: 1;
  color: #000000;
}
.section-get-started .form .gform_wrapper .gform_body .gform_fields input:not(.gfield-choice-input)::placeholder {
  opacity: 1;
  color: #000000;
}
.section-get-started .form .gform_wrapper .gform_body .gform_fields input:not(.gfield-choice-input)::-webkit-input-placeholder {
  opacity: 1;
  color: #000000;
}
.section-get-started .form .gform_wrapper .gform_body .gform_fields .textarea {
  background: transparent;
  border: solid 2px #000000 !important;
  border-radius: 30px !important;
  padding: 22.5px 25px 22.5px 25px;
  color: #000000;
  font-size: 20px !important;
}
.section-get-started .form .gform_wrapper .gform_body .gform_fields .textarea::-moz-placeholder {
  opacity: 1;
  color: #000000;
}
.section-get-started .form .gform_wrapper .gform_body .gform_fields .textarea::placeholder {
  opacity: 1;
  color: #000000;
}
.section-get-started .form .gform_wrapper .gform_body .gform_fields .textarea::-webkit-input-placeholder {
  opacity: 1;
  color: #000000;
}
.section-get-started .form .gform_wrapper .gform_body .gform_fields .textarea.small {
  height: 96px;
}
.section-get-started .form .gform_wrapper .gform_body .gform_fields select {
  background: url("/wp-content/themes/titan/images/drop.svg");
  background-repeat: no-repeat;
  background-position: right 30px center;
  background-size: 14px;
  border: solid 2px #000000 !important;
  border-radius: 30px;
  padding: 10px 25px 10px 25px;
  height: 49px;
  color: #000000;
  font-size: 20px !important;
  line-height: normal;
}
.section-get-started .form .gform_wrapper .gform_body .gform_fields select::-moz-placeholder {
  opacity: 1;
  color: #000000;
}
.section-get-started .form .gform_wrapper .gform_body .gform_fields select::placeholder {
  opacity: 1;
  color: #000000;
}
.section-get-started .form .gform_wrapper .gform_body .gform_fields select::-webkit-input-placeholder {
  opacity: 1;
  color: #000000;
}
.section-get-started .form .gform_wrapper .gform_body .gform_fields select option {
  color: #000000;
}
.section-get-started .form .gform_wrapper .gform_body .gform_fields .gfield--type-radio legend {
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  text-align: center;
  margin: 0 auto;
  color: #000000;
}
.section-get-started .form .gform_wrapper .gform_body .gform_fields .gfield--type-radio .gfield_radio {
  flex-direction: row;
  justify-content: center;
}
.section-get-started .form .gform_wrapper .gform_body .gform_fields .gfield--type-radio .gfield_radio .gform-field-label {
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  color: #000000;
}
.section-get-started .form .gform_wrapper .gform_body .gform_fields .gfield--type-fileupload {
  margin-top: 25px;
}
.section-get-started .form .gform_wrapper .gform_body .gform_fields .gfield--type-fileupload label {
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  color: #000000;
  text-align: center;
  display: block;
  margin: 0 auto -70px;
  max-width: 191px;
  position: relative;
  z-index: 1;
}
.section-get-started .form .gform_wrapper .gform_body .gform_fields .gfield--type-fileupload .ginput_container_fileupload .gform_fileupload_multifile .gform_drop_area {
  height: 96px;
  border: 2px dashed #000000 !important;
  border-radius: 30px !important;
  border-block-end: transparent;
  border-block-start: transparent;
  border-inline-end: transparent;
  border-inline-start: transparent;
}
.section-get-started .form .gform_wrapper .gform_body .gform_fields .gfield--type-fileupload .ginput_container_fileupload .gform_fileupload_multifile .gform_drop_area::before {
  content: none;
}
.section-get-started .form .gform_wrapper .gform_body .gform_fields .gfield--type-fileupload .ginput_container_fileupload .gform_fileupload_multifile .gform_drop_area span {
  display: none;
}
.section-get-started .form .gform_wrapper .gform_body .gform_fields .gfield--type-fileupload .ginput_container_fileupload .gform_fileupload_multifile .gform_drop_area button {
  position: absolute;
  top: 0;
  right: 0;
  color: transparent;
  background-color: transparent;
  --gf-local-min-height: 96px;
  --gf-local-min-width: 100%;
  padding-right: 0px;
  padding-left: 0px;
  box-shadow: none;
  --gf-local-border-color: transparent;
  --gf-local-border-width: 0px;
}
.section-get-started .form .gform_wrapper .gform_page_footer {
  justify-content: center;
  padding: 28px 0px;
}
.section-get-started .form .gform_wrapper .gform_page_footer .gform_next_button,
.section-get-started .form .gform_wrapper .gform_page_footer .gform_previous_button,
.section-get-started .form .gform_wrapper .gform_page_footer .gform_button {
  color: #ffffff !important;
  background-color: #000000 !important;
  border: 2px solid #000000 !important;
  border-radius: 30px !important;
  font-family: "Bicyclette", sans-serif !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  line-height: normal !important;
  text-transform: uppercase !important;
  padding: 15px 88px;
  --gf-local-padding-y: 15px !important;
  --gf-local-padding-x: 88px !important;
  margin-bottom: 0px;
  min-width: 428px;
  min-inline-size: 428px !important;
}
.section-get-started .form .gform_wrapper .gform_page_footer .gform_next_button:hover,
.section-get-started .form .gform_wrapper .gform_page_footer .gform_previous_button:hover,
.section-get-started .form .gform_wrapper .gform_page_footer .gform_button:hover {
  color: #000000 !important;
  background-color: #ffffff !important;
}
.section-get-started .form .gform_wrapper .gform_page_footer .gform_next_button .last-word,
.section-get-started .form .gform_wrapper .gform_page_footer .gform_previous_button .last-word,
.section-get-started .form .gform_wrapper .gform_page_footer .gform_button .last-word {
  background-color: #D9D9D9;
  padding: 5px 4px;
  border-radius: 50%;
  color: #000000;
}
.section-get-started.about {
  padding-top: 153px;
}

.section-cta {
  padding-top: 60px;
  overflow: hidden;
}
.section-cta .container-fluid {
  max-width: 1440px;
}
.section-cta .container-fluid .cta-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-cta .container-fluid .cta-text .cta-right-img,
.section-cta .container-fluid .cta-text .cta-left-img {
  width: 28%;
  z-index: -1;
  position: relative;
  top: -5px;
}
.section-cta.home {
  padding-top: 0px;
}

.section-video .video-box {
  height: 294px;
  position: relative;
  overflow: hidden;
}
.section-video .video-box .video-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-video .video-box .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.section-video .video {
  display: none;
}
.section-video.about {
  padding-top: 63px;
}
.section-video.about .lists .list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-top: 21px;
}
.section-video.about .lists .list .list-image {
  margin-right: 16px;
}
.section-video.about .lists .list .list-text p, .section-video.about .lists .list .list-text .screen-reader-text, .section-video.about .lists .list .list-text input[type=search] {
  margin-bottom: 0px;
}

.section-we-are-looking {
  padding-top: 116px;
}
.section-we-are-looking .sp-lc-pagination {
  padding: 39px 0 35px !important;
}

.section-why-choose {
  padding-top: 93px;
}
.section-why-choose .options {
  margin-bottom: 66px;
}
.section-why-choose .options p, .section-why-choose .options .screen-reader-text, .section-why-choose .options input[type=search] {
  line-height: 20px;
  margin-bottom: 0;
}
.section-why-choose.about {
  padding-top: 65px;
}
.section-why-choose.about .options {
  margin-bottom: 0px;
}

.section-gallery {
  padding-top: 73px;
  padding-bottom: 93px;
}
.section-gallery .gallery-box {
  max-width: 1305px;
}
.section-gallery .gallery-box .gallery-images {
  padding-bottom: 57px;
}
.section-gallery .gallery-box .gallery-images .fg-item {
  position: relative !important;
  overflow: hidden;
}
.section-gallery .gallery-box .gallery-images .fg-item .fg-item-inner {
  transform: scale(1);
  transition: all 0.8s;
}
.section-gallery .gallery-box .gallery-images .fg-item .fg-item-inner:hover {
  transform: scale(1.2);
}
.section-gallery.about {
  padding-top: 128px;
}

.section-reviews {
  padding-top: 59px;
  max-width: 1440px;
  margin: 0 auto;
  background-image: url("/wp-content/themes/titan/images/reviews-background.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 112% center;
  height: 502px;
}
.section-reviews .google-reviews-img {
  padding-bottom: 36px;
}
.section-reviews .google-reviews .wp-gr {
  width: 638px !important;
}
.section-reviews .google-reviews .wp-gr .grw-content-inner {
  width: 638px !important;
}
.section-reviews .google-reviews .wp-gr .grw-content-inner .grw-review {
  flex: none;
}
.section-reviews .google-reviews .wp-gr .grw-content-inner .grw-review .grw-review-inner {
  height: 285px;
}
.section-reviews .google-reviews .wp-gr .grw-content-inner .grw-review .grw-review-inner .rplg-review-avatar {
  width: 64px !important;
  height: 64px !important;
  margin-right: 29px !important;
}
.section-reviews .google-reviews .wp-gr .grw-content-inner .grw-review .grw-review-inner .wp-google-name {
  color: #000000 !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  font-family: "Bicyclette", sans-serif !important;
}
.section-reviews .google-reviews .wp-gr .grw-content-inner .grw-review .grw-review-inner svg {
  display: none;
}
.section-reviews .google-reviews .wp-gr .grw-content-inner .grw-review .grw-review-inner .wp-google-time {
  display: none;
}
.section-reviews .google-reviews .wp-gr .grw-content-inner .grw-review .grw-review-inner .wp-google-stars {
  margin: -32px 0 14px 90px !important;
}
.section-reviews .google-reviews .wp-gr .grw-content-inner .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-review .grw-review-inner .wp-google-feedback .wp-google-text {
  font-size: 20px !important;
  font-weight: 400 !important;
  line-height: normal !important;
  font-family: "Bicyclette", sans-serif !important;
  color: #5F5F5F !important;
}
.section-reviews .google-reviews .wp-gr .grw-content-inner .grw-controls {
  top: 98% !important;
}
.section-reviews .google-reviews .wp-gr .grw-content-inner .grw-controls .grw-btns.grw-prev {
  left: 30% !important;
  margin-left: 0px !important;
}
.section-reviews .google-reviews .wp-gr .grw-content-inner .grw-controls .grw-btns.grw-next {
  right: 30% !important;
  margin-right: 0px !important;
}
.section-reviews .google-reviews .wp-gr .grw-dot {
  width: 17px !important;
  height: 17px !important;
}
.section-reviews .google-reviews .wp-gr .grw-dot.active {
  background-color: #ffffff !important;
}

.section-faq {
  padding-top: 111px;
  padding-bottom: 107px;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}
.section-faq .faq-img {
  margin-top: 30px;
}
.section-faq #accordionFrequentlyAsked {
  padding-left: 6.5px;
}
.section-faq #accordionFrequentlyAsked .accordion-item {
  border: none;
}
.section-faq #accordionFrequentlyAsked .accordion-item .accordion-header {
  border-bottom: 1px solid #000000;
  margin-bottom: 17px;
}
.section-faq #accordionFrequentlyAsked .accordion-item .accordion-header .accordion-button {
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  color: #33312F;
  padding: 0px 12px 26px 0;
  background-color: #ffffff;
  box-shadow: none;
  align-items: flex-start !important;
  justify-content: space-between;
}
.section-faq #accordionFrequentlyAsked .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  background-image: url("/wp-content/themes/titan/images/close-icon.svg");
  margin-top: 8px;
  margin-left: 70px;
}
.section-faq #accordionFrequentlyAsked .accordion-item .accordion-header .accordion-button::after {
  background-image: url("/wp-content/themes/titan/images/plus-icon.svg");
  margin-top: 8px;
  margin-left: 50px;
}
.section-faq #accordionFrequentlyAsked .accordion-item .accordion-body {
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  color: #33312F;
  padding: 10px;
}

.section-contact {
  padding-bottom: 78px;
}
.section-contact .contact-information a {
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  display: block;
  color: #5F5F5F;
}
.section-contact .contact-information a svg {
  color: #000000;
  height: 20px;
  width: 20px;
  margin-right: 5px;
}
.section-contact .map p, .section-contact .map .screen-reader-text, .section-contact .map input[type=search] {
  margin-bottom: 0px;
}

.hp-icons {
  max-width: 135px;
}

.service-bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 1.5px;
}
.service-bg.one {
  background-image: url("/wp-content/themes/titan/images/placeholder-1.jpg");
}
.service-bg.two {
  background-image: url("/wp-content/themes/titan/images/placeholder-1.jpg");
}
.service-bg.three {
  background-image: url("/wp-content/themes/titan/images/placeholder-1.jpg");
}

.color-overlay {
  min-height: 280px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 148, 170, 0.7);
  transition: all 0.3s ease-in-out;
}
.color-overlay:hover {
  background-color: transparent;
  visibility: hidden;
}
.color-overlay:hover .service-box-text {
  display: none;
  visibility: hidden;
}

.swapping-wrapper {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.swapping-wrapper.image-r {
  background-image: url("/wp-content/themes/titan/images/swap-image-r.png");
}
.swapping-wrapper.image-l {
  background-image: url("/wp-content/themes/titan/images/swap-image-l.png");
}
@media (max-width: 991px) {
  .swapping-wrapper.image-r, .swapping-wrapper.image-l {
    background-image: none;
  }
}
@media (min-width: 992px) {
  .swapping-wrapper img {
    display: none !important;
  }
}

/*---
Home Bottom Blocks
---*/
.home-bot {
  background-image: url("/wp-content/themes/titan/images/home-bot.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  min-height: 240px;
  padding-top: 40px;
  padding-bottom: 40px;
}

/*---
Internal Hero Content Block
---*/
.internal-head {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  min-height: 310px;
  padding-top: 40px;
  padding-bottom: 40px;
}

/*---
Internal Content Blocks
---*/
/* About - Page */
.section-cta.about {
  padding-top: 149px;
}

.section-second-gallery {
  padding-top: 117px;
  padding-bottom: 113px;
}
.section-second-gallery .images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.section-text-with-image {
  padding-top: 155px;
}
.section-text-with-image img {
  right: 5%;
  position: relative;
}

.section-about-faq {
  padding-bottom: 140px;
  overflow: hidden;
}
.section-about-faq #accordionFrequentlyAsked {
  padding-left: 6.5px;
}
.section-about-faq #accordionFrequentlyAsked .accordion-item {
  border: none;
}
.section-about-faq #accordionFrequentlyAsked .accordion-item .accordion-header {
  border-bottom: 1px solid #000000;
  margin-bottom: 17px;
}
.section-about-faq #accordionFrequentlyAsked .accordion-item .accordion-header .accordion-button {
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  color: #33312F;
  padding: 0px 12px 26px 0;
  background-color: #ffffff;
  box-shadow: none;
  align-items: flex-start !important;
  justify-content: space-between;
}
.section-about-faq #accordionFrequentlyAsked .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  background-image: url("/wp-content/themes/titan/images/close-icon.svg");
  margin-top: 8px;
  margin-left: 70px;
}
.section-about-faq #accordionFrequentlyAsked .accordion-item .accordion-header .accordion-button::after {
  background-image: url("/wp-content/themes/titan/images/plus-icon.svg");
  margin-top: 8px;
  margin-left: 50px;
}
.section-about-faq #accordionFrequentlyAsked .accordion-item .accordion-body {
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  color: #33312F;
  padding: 10px;
}
.section-about-faq .about-faq-img {
  margin-top: 30px;
}

/* Contact us - Page */
.section-cta.contact {
  padding-top: 52px;
}

.section-get-started.contact {
  padding-top: 82px;
}

.section-contact.contact {
  padding-top: 62px;
  padding-bottom: 111px;
}

.section-contact-faq {
  padding-bottom: 81px;
  overflow: hidden;
}
.section-contact-faq #accordionFrequentlyAsked {
  padding-left: 6.5px;
}
.section-contact-faq #accordionFrequentlyAsked .accordion-item {
  border: none;
}
.section-contact-faq #accordionFrequentlyAsked .accordion-item .accordion-header {
  border-bottom: 1px solid #000000;
  margin-bottom: 17px;
}
.section-contact-faq #accordionFrequentlyAsked .accordion-item .accordion-header .accordion-button {
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  color: #33312F;
  padding: 0px 12px 26px 0;
  background-color: #ffffff;
  box-shadow: none;
  align-items: flex-start !important;
  justify-content: space-between;
}
.section-contact-faq #accordionFrequentlyAsked .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  background-image: url("/wp-content/themes/titan/images/close-icon.svg");
  margin-top: 8px;
  margin-left: 70px;
}
.section-contact-faq #accordionFrequentlyAsked .accordion-item .accordion-header .accordion-button::after {
  background-image: url("/wp-content/themes/titan/images/plus-icon.svg");
  margin-top: 8px;
  margin-left: 50px;
}
.section-contact-faq #accordionFrequentlyAsked .accordion-item .accordion-body {
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  color: #33312F;
  padding: 10px;
}
.section-contact-faq .contact-faq-img {
  margin-top: 65px;
  right: 5%;
  position: relative;
}

/*---
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: 30px;
  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: 18px !important;
  font-weight: 500;
  text-transform: uppercase;
  background-color: transparent;
  border-radius: 0px;
  border: none;
  white-space: normal;
  margin-right: 0px !important;
  transition: all 0.3s ease-in-out;
  background-color: #002440;
  color: #ffffff;
  padding: 10px 25px 8px;
}
.gform_wrapper .gform_footer input.button:hover {
  background-color: #ffffff;
  color: #0094aa;
}

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

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

/*--- Media Queires ---*/
@media only screen and (min-width: 1440px) {
  /* Home - Page */
  .section-reviews {
    background-position: 106% center;
  }
}
@media only screen and (max-width: 1366px) {
  /* Home- Page */
}
@media only screen and (max-width: 1280px) {
  /* Home - Page */
  .section-cta .container-fluid .cta-text .cta-right-img,
  .section-cta .container-fluid .cta-text .cta-left-img {
    width: 26%;
  }
  .section-gallery .gallery-box .fg-default .fg-item-inner {
    width: 295px;
  }
  .section-gallery .gallery-box .fg-default .fg-item-inner .fg-image {
    height: 205px;
    width: 295px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .section-reviews {
    background-position: 121% center;
  }
  .section-reviews .google-reviews .wp-gr {
    width: 574px !important;
  }
  .section-reviews .google-reviews .wp-gr .grw-content-inner {
    width: 574px !important;
  }
  /* About us - Page */
  .section-second-gallery .images img {
    width: 31%;
  }
}
@media only screen and (max-width: 1279px) {
  /* Home - Page */
  .section-reviews {
    background-position: 146% center;
  }
  .section-reviews .google-reviews .wp-gr {
    width: 490px !important;
  }
  .section-reviews .google-reviews .wp-gr .grw-content-inner {
    width: 490px !important;
  }
}
@media only screen and (max-width: 1114px) {
  h2 {
    font-size: 38px;
    line-height: 36px;
  }
  h3 {
    font-size: 26px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 1115px) {
  /* Home - Page */
  .section-reviews {
    background-position: 177% center;
  }
  .section-reviews .google-reviews .wp-gr {
    width: 100% !important;
  }
  .section-reviews .google-reviews .wp-gr .grw-content-inner {
    width: 100% !important;
  }
  .section-reviews .google-reviews .wp-gr .grw-content-inner .grw-controls .grw-btns.grw-prev {
    left: 25% !important;
  }
  .section-reviews .google-reviews .wp-gr .grw-content-inner .grw-controls .grw-btns.grw-next {
    right: 25% !important;
  }
}
@media only screen and (max-width: 1024px) {
  /* Home - Page */
  .section-get-started .form .gform_wrapper .gform_body input:not(.gfield-choice-input),
  .section-get-started .form .gform_wrapper .gform_body .textarea {
    padding: 22.5px 25px 22.5px 25px;
  }
  .section-get-started .form .gform_wrapper .gform_body select {
    padding: 10px 25px 10px 25px !important;
  }
}
@media only screen and (max-width: 992px) {
  /* Home - Page */
  .section-reviews {
    background-position: 182% center;
  }
}
@media only screen and (max-width: 991px) {
  h2 {
    font-size: 37px;
    line-height: 35px;
  }
  h3 {
    font-size: 25px;
    line-height: 23px;
  }
  /* Home - Page */
  .section-get-started .form .gform_wrapper .gform_body .gform_fields select {
    background-position: right 10px center;
  }
  .section-cta {
    padding-top: 117px;
  }
  .section-cta .container-fluid .cta-text {
    display: block;
  }
  .section-cta .container-fluid .cta-left-img {
    display: none;
  }
  .section-cta .container-fluid .cta-right-img {
    display: block;
    margin: 0 auto;
    width: auto !important;
    top: 0;
  }
  .section-cta.home {
    padding-top: 89px;
  }
  .section-we-are-looking {
    padding-top: 117px;
  }
  .section-why-choose {
    padding-top: 117px;
  }
  .section-why-choose .options img {
    max-width: 176px;
  }
  .section-gallery {
    padding-top: 117px;
    padding-bottom: 117px;
  }
  .section-reviews {
    background-image: none;
    height: 100%;
  }
  .section-reviews .google-reviews-img {
    margin: 0 auto;
  }
  .section-reviews .google-reviews .wp-gr .grw-content-inner .grw-reviews {
    margin: 0px !important;
  }
  .section-reviews .google-reviews .wp-gr .grw-dot.active {
    background-color: #000000 !important;
  }
  .section-faq {
    padding-top: 117px;
    padding-bottom: 117px;
  }
  .section-faq .faq-img {
    margin-top: 0px;
  }
  .section-contact .map iframe {
    margin: 0 auto;
    display: block;
  }
  /* About us - Page */
  .section-video .lists .list {
    justify-content: center !important;
  }
  .section-why-choose.about {
    padding-top: 117px;
  }
  .section-second-gallery {
    padding-top: 117px;
    padding-bottom: 117px;
  }
  .section-reviews {
    padding-top: 0px;
  }
  .section-text-with-image {
    padding-top: 117px;
  }
  .section-text-with-image img {
    right: 0;
  }
  .section-get-started.about {
    padding-top: 117px;
  }
  .section-gallery.about {
    padding-top: 89px;
    padding-bottom: 60px;
  }
  .section-about-faq {
    padding-bottom: 17px;
  }
  .section-about-faq .about-faq-img {
    margin-top: 0px;
  }
  /* Contact us - Page */
  .section-get-started.contact {
    padding-top: 117px;
  }
  .section-contact.contact {
    padding-top: 89px;
    padding-bottom: 117px;
  }
  .section-contact-faq .contact-faq-img {
    margin-top: 0px;
    right: 0;
  }
}
@media only screen and (max-width: 768px) {
  h2 {
    font-size: 34px;
    line-height: 32px;
  }
  h3 {
    font-size: 20px;
    line-height: 18px;
  }
  /* About us - Page */
  .section-second-gallery .images {
    flex-direction: column;
  }
  .section-second-gallery .images img {
    width: 295px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media only screen and (max-width: 767px) {
  .home-top .slider-title .rs-layer {
    font-size: 24px !important;
  }
  h2 {
    font-size: 24px;
    line-height: 22px;
  }
  /* Home - Page */
  .section-get-started .form .gform_wrapper .gform_body .gform_fields select {
    background-position: right 30px center;
  }
  .section-get-started .form .gform_wrapper .gform_page_footer .gform_next_button,
  .section-get-started .form .gform_wrapper .gform_page_footer .gform_previous_button,
  .section-get-started .form .gform_wrapper .gform_page_footer .gform_button {
    min-inline-size: auto !important;
    --gf-local-padding-x: 20px !important;
  }
  .section-cta.home {
    padding-top: 22px;
  }
  .section-we-are-looking {
    padding-top: 50px;
  }
  .section-why-choose {
    padding-top: 50px;
  }
  .section-gallery {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .section-gallery .gallery-box {
    max-width: 960px;
  }
  .section-gallery .gallery-box .fg-default .fg-item-inner {
    width: 100%;
  }
  .section-gallery .gallery-box .fg-default .fg-item-inner .fg-image {
    width: 100%;
  }
  .section-reviews {
    padding-top: 0px;
  }
  .section-faq {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .section-faq #accordionFrequentlyAsked .accordion-item .accordion-header .accordion-button::after {
    margin-left: 20px;
  }
  .section-contact {
    padding-bottom: 50px;
  }
  /* About us - Page */
  .section-cta.about {
    padding-top: 50px;
  }
  .section-why-choose.about {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .section-second-gallery {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .section-text-with-image {
    padding-top: 50px;
  }
  .section-get-started.about {
    padding-top: 50px;
  }
  .section-gallery.about {
    padding-top: 22px;
    padding-bottom: 50px;
  }
  .section-gallery.about .gallery-images {
    padding-bottom: 0px;
  }
  .section-about-faq {
    padding-bottom: 50px;
  }
  .section-about-faq #accordionFrequentlyAsked .accordion-item .accordion-header .accordion-button::after {
    margin-left: 20px;
  }
  /* Contact us - Page */
  .section-cta.contact {
    padding-top: 50px;
  }
  .section-get-started.contact {
    padding-top: 50px;
  }
  .section-contact.contact {
    padding-top: 22px;
    padding-bottom: 50px;
  }
  .section-contact-faq {
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 540px) {
  /* Home - Page */
  .section-reviews .google-reviews .wp-gr .grw-content-inner .grw-controls .grw-btns.grw-prev {
    left: 15% !important;
  }
  .section-reviews .google-reviews .wp-gr .grw-content-inner .grw-controls .grw-btns.grw-next {
    right: 15% !important;
  }
}
@media only screen and (max-width: 400px) {
  /* Home - Page */
  .section-reviews .google-reviews .wp-gr .grw-content-inner .grw-controls .grw-btns.grw-prev {
    left: 5% !important;
  }
  .section-reviews .google-reviews .wp-gr .grw-content-inner .grw-controls .grw-btns.grw-next {
    right: 5% !important;
  }
}/*# sourceMappingURL=style.css.map */