/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

/* ----------------------------------------- */
/* BASIC SETUP */
/* ----------------------------------------- */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  color: var(--black);
  background-color: var(--ghostWhite);
  font-family: "Open-sans", sans-serif;
  font-weight: 300;
  font-size: 18px;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.clearfix {
  zoom: 1;
}
.clearfix::after {
  content: " ";
  clear: both;
  display: block;
  height: 0;
  visibility: hidden;
}

:root {
  --white: #ffffff;
  --ghostWhite: #f8f8ff;
  --grey: #a4a4a4;
  --black: #000000;
  --red: #ff5757;
  --highlightRed: #fd4141;

  --fs-small: 16px;
  --fs-medium: 22px;
  --fs-large: 28px;
  --fs-xlarge: 32px;
  --fs-xxlarge: 0px;
}
/* ----------------------------------------- */
/* REUSEABLE COMPONENTS */
/* ----------------------------------------- */

.row {
  max-width: 1140px;
  margin: 0 auto;
}

section {
  padding: 60px 0;
}

/* ----- HEADINGS ----- */
h1,
h2,
h3 {
  font-weight: 300;
  text-transform: uppercase;
  font-family: "Anton", sans-serif;
}

h1 {
  margin-top: 0;
  margin-bottom: 20px;
  color: var(--white);
  font-size: var(--fs-xxlarge);
  word-spacing: 3px;
  letter-spacing: 1px;
}

h2 {
  font-size: var(--fs-xlarge);
  word-spacing: 2px;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

h3 {
  font-size: var(--fs-large);
}

p {
  font-size: var(--fs-small);
  margin-bottom: 1.25rem;
}

span {
  font-weight: bold;
}

/* ----- BUTTONS ----- */
.btn:link,
.btn:visited,
input[type="submit"] {
  display: inline-block;
  padding: 10px 30px;
  font-weight: 300;
  text-decoration: none;
  border-radius: 200px;
  -webkit-transition: background-color 0.235s, border 0.235s, color 0.235s;
  -o-transition: background-color 0.235s, border 0.235s, color 0.235s;
  transition: background-color 0.235s, border 0.235s, color 0.235s;
  margin-top: 10px;
}

.btn-full:link,
.btn-full:visited,
input[type="submit"] {
  color: var(--white);
  background-color: var(--red);
  border: 1px solid var(--red);
  margin-right: 15px;
}

.btn-ghost:link,
.btn-ghost:visited {
  color: var(--red);
  border: 1px solid var(--red);
}

.btn:hover,
.btn:active,
input[type="submit"]:hover,
input[type="submit"]:active {
  background-color: var(--highlightRed);
  cursor: pointer;
}

.btn-full:hover,
.btn-full:active,
input[type="submit"] {
  border: 1px solid var(--highlightRed);
}

.btn-ghost:hover,
.btn-ghost:active {
  border: 1px solid var(--highlightRed);
  color: var(--white);
}

/* ----------------------------------------- */
/* NAVBAR */
/* ----------------------------------------- */
nav {
  background-color: var(--white);
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}

.nav-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 15px 1%;
  height: 10vh;
}

.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  list-style: none;
}

.nav-links li {
  padding: 0px 20px;
}

.nav-links li a {
  color: var(--red);
  text-decoration: none;
  font-size: var(--fs-medium);
  font-family: "Anton", sans-serif;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.nav-links li a:hover {
  color: var(--black);
}

.nav-footer {
  display: none;
}

.navbar-icon {
  cursor: pointer;
  width: auto;
  margin-right: auto;
}

/* ----------------------------------------- */
/* LANDING */
/* ----------------------------------------- */

.landing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 95vh;
  background-image: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(rgba(0, 0, 0, 0.5)),
      to(rgba(0, 0, 0, 0.7))
    ),
    url(/resources/imgs/LGS-Img-MowerHalf-5.jpg);
  background-size: cover;
  background-position: center;
}

.landing-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  color: var(--white);
  text-align: center;
}

.landing-text p::after {
  content: "";
  display: block;
  height: 2px;
  background: var(--white);
  margin: 1em auto;
  width: 75%;
}

.contact-btn {
  display: inline-block;
  padding: 0.7em 1.4em;
  margin: 0 0.3em 0.3em 0;
  border-radius: 0.15em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 400;
  font-size: var(--fs-small);
  color: var(--white);
  background-color: var(--red);
  -webkit-box-shadow: inset 0 -0.6em 0 -0.35em rgba(0, 0, 0, 0.17);
  box-shadow: inset 0 -0.6em 0 -0.35em rgba(0, 0, 0, 0.17);
  text-align: center;
  position: relative;
}

.contact-btn:active {
  top: 0.1em;
}
/* ----------------------------------------- */
/* WHAT WE DO */
/* ----------------------------------------- */
.what-we-do {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.about-us-text {
  display: none;
}

.what-we-do-text {
  padding: 2%;
}

.what-we-do-text h3 {
  margin-bottom: 30px;
}

.what-we-do-hack {
  display: inline;
}

.what-we-do-hack::before {
  content: "";
  display: block;
  height: 2px;
  background: var(--black);
  margin: 1em auto;
  width: 75%;
}

.video-block {
  display: none;
}

/* ----------------------------------------- */
/* SERVICES */
/* ----------------------------------------- */
.services {
  background: var(--red);
  color: var(--white);
}

.services-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  text-align: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.services-content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30em;
  flex: 0 0 30em;
}

.content-heading::after {
  display: block;
  height: 2px;
  background-color: var(--white);
  content: " ";
  width: 25%;
  margin: 0 auto;
  margin-bottom: 20px;
}

.content-heading {
  display: block;
}

.content-heading svg,
.content-heading h3 {
  width: 32px;
  height: 32px;
  display: inline;
  fill: var(--white);
  vertical-align: middle;
}

.content-heading svg {
  margin-right: 2%;
}

#services-extras {
  margin: 40px 0 0 0;
  text-align: center;
}
/* ----------------------------------------- */
/* GALLERY */
/* ----------------------------------------- */
.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.gallery:hover .gallery-image {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}

.gallery-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.gallery-link {
  margin: 2px;
  overflow: hidden;
}

.gallery-link:hover .gallery-image {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

.gallery-link:hover .gallery-caption {
  opacity: 1;
}

.gallery-thumb {
  position: relative;
}

.gallery-image {
  display: block;
  width: 100%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.gallery-image:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 25px 15px 15px;
  width: 100%;
  font-size: 16px;
  color: var(--white);
  opacity: 0;
  background: -o-linear-gradient(
    bottom,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(255, 255, 255, 0))
  );
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 35px;
  font-size: 40px;
  color: var(--white);
  cursor: pointer;
  border: none;
  background: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.hidden {
  display: none;
}

.modal {
  position: fixed;
  color: var(--white);
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  margin: auto;
  display: block;
  width: 100%;
  max-width: 700px;
}

#modal-caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: var(--white);
  padding: 10px 0;
  height: 150px;
}

.modal-content,
#modal-caption,
.modal {
  -webkit-animation-name: zoom;
  animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes zoom {
  from {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  z-index: 5;
}

/* ----------------------------------------- */
/* REVIEWS */
/* ----------------------------------------- */
.reviews {
  background: var(--red);
  color: var(--white);
}

.reviews-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  text-align: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.reviews-container h4 {
  margin-bottom: 15px;
}

.review-container {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30em;
  flex: 0 0 30em;
  padding: 20px;
}

.stars svg {
  width: 2em;
  height: 2em;
  fill: var(--white);
}

.stars svg:hover {
  fill: gold;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.stars {
  display: inline-block;
}

/* ----------------------------------------- */
/* CONTACT */
/* ----------------------------------------- */

.contact-form {
  width: 60%;
  margin: 0 auto;
  padding-bottom: 20px;
}

.antispam {
  display: none;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 7px;
  border-radius: 3px;
  border: 1px solid #ccc;
}

textarea {
  height: 100px;
}

input[type="checkbox"] {
  margin: 10px 5px 10px 0;
}

*:focus {
  outline: none;
}

/* ----------------------------------------- */
/* FOOTER */
/* ----------------------------------------- */

.mobile-icons {
  display: none;
}

footer {
  background: var(--red);
  color: var(--white);
  padding: 20px;
}

.footer p {
  font-size: 0.75rem;
  text-align: center;
}

.footer-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
}

.footer-col {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.footer-col svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
  vertical-align: middle;
}

.footer-col a {
  color: var(--white);
}

.footer-col a:hover {
  color: var(--black);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.up-arrow {
  margin-left: auto;
}

.up-arrow svg:hover,
.facebook-icon svg:hover,
.icon-youtube-square svg:hover {
  fill: var(--black);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

#footer-copy {
  margin: 20px 0 0 0;
  margin-left: auto;
  margin-right: auto;
  width: 75%;
  text-align: center;
  font-size: 10px;
}

/* ----------------------------------------- */
/* CONTACT FORM ALERT */
/* ----------------------------------------- */

.alert-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ajax_response {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 33%;
  padding: 10px 20px;
  border: 0;
  text-align: center;
  -ms-grid-column-align: center;
  justify-self: center;
  margin-top: 20px;
  cursor: pointer;
  display: none;
  color: var(--white);
}
#error_message {
  background: var(--highlightRed);
}
#success_message {
  background: var(--red);
}
#loader {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.75) url(/resources/imgs/LGS-Loading-Spinner.svg)
    no-repeat center center;
  z-index: 10000;
}
