html, body {
  margin: 0;
  font-family: "Raleway", sans-serif;
}
html *, body * {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, p {
  margin: 0;
}

h1 {
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
}

h2 {
  font-size: 18px;
  font-weight: 600;
}

h3 {
  font-size: 18px;
  text-transform: uppercase;
}

h4 {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h5 {
  letter-spacing: 2px;
  text-transform: uppercase;
}

p {
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  h1 {
    font-size: 42px;
  }
  h2 {
    font-size: 25px;
  }
  h3 {
    font-size: 25px;
  }
  h4 {
    font-size: 11px;
  }
  p {
    font-size: 13px;
  }
}
@media screen and (min-width: 768px) {
  h1 {
    font-size: 50px;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 30px;
  }
  h4 {
    font-size: 12px;
  }
  p {
    font-size: 14px;
  }
}
img {
  max-width: 100%;
}

button, a {
  border: 0;
  outline: none;
  color: inherit;
  text-decoration: none;
}
button:hover, button:active, button:focus, a:hover, a:active, a:focus {
  border: 0;
  outline: none;
  text-decoration: none;
}

.container {
  max-width: 1400px;
}

.btn {
  color: #fff;
  cursor: pointer;
  font-size: 10px;
  font-weight: 600;
  padding: 5px 10px;
  text-align: center;
  letter-spacing: 1px;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 5px;
}
.btn-default {
  background-color: #A5DD5A;
}
.btn-alt {
  font-size: 14px;
  padding: 8px 15px;
  background-color: #A5DD5A;
}
.btn-round {
  padding: 0;
  width: 25px;
  height: 25px;
  line-height: 22px;
  border-radius: 100%;
  background-color: #A5DD5A;
}
.btn-form {
  padding: 8px 10px;
  font-size: 8px;
  background-color: #000;
}
.btn > * {
  vertical-align: middle;
}
.btn img {
  max-height: 14px;
  max-width: 14px;
}

.text-align-center {
  text-align: center;
}

.form-field {
  padding-right: 10px;
}
.form-field:last-child {
  padding-right: 0;
}
.form-field-100 {
  width: 100%;
}
.form-field label {
  color: #fff;
  display: block;
  font-size: 11px;
  padding-bottom: 10px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  border: none;
  resize: none;
  outline: none;
  line-height: 20px;
  background-color: #fff;
  padding: 5px 0 5px 10px;
  font-family: "Raleway", sans-serif;
}
.form-field input:hover, .form-field input:focus,
.form-field textarea:hover,
.form-field textarea:focus {
  border: none;
  outline: none;
}

@media screen and (max-width: 767px) {
  .hide-under-tablet {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .hide-above-tablet {
    display: none;
  }
}

@media screen and (max-width: 1199px) {
  .hide-under-desktop {
    display: none;
  }
}

@media screen and (min-width: 1200px) {
  .hide-above-desktop {
    display: none;
  }
}

header {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  position: fixed;
}
header .contact-nav {
  display: flex;
  padding: 10px;
  flex-wrap: wrap;
  background-color: #000;
}
@media screen and (min-width: 768px) {
  header .contact-nav {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media screen and (max-width: 767px) {
  header .contact-nav .contact-links {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
}
header .contact-nav .social-links {
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  header .contact-nav .social-links {
    display: block;
  }
}
header .contact-nav .social-links a {
  margin-left: 10px;
}
header nav {
  display: flex;
  padding: 10px;
  position: relative;
  align-items: center;
  margin-bottom: -1px;
  background-image: linear-gradient(to left, #a6dd5b 0, #a6dd5b 187.5px, #fff 187.5px);
}
@media screen and (min-width: 480px) {
  header nav {
    padding-left: 30px;
    padding-right: 30px;
    background-image: linear-gradient(to left, #a6dd5b 0, #a6dd5b 262px, #fff 262px);
  }
}
@media screen and (min-width: 720px) {
  header nav {
    background-image: linear-gradient(to right, white 0, white 63.54%, #a6dd5b 63.54%);
  }
}
@media screen and (min-width: 768px) {
  header nav {
    padding-left: 50px;
    padding-right: 50px;
    background-image: linear-gradient(to left, #a6dd5b 0, #a6dd5b 295.5px, #fff 295.5px);
  }
}
@media screen and (min-width: 810px) {
  header nav {
    background-image: linear-gradient(to right, white 0, white 63.54%, #a6dd5b 63.54%);
  }
}
@media screen and (min-width: 992px) {
  header nav {
    background-image: linear-gradient(to right, white 0, white 63.54%, #a6dd5b 63.54%);
  }
}
header nav .logo {
  margin-right: 100px;
  display: inline-block;
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  header nav .logo {
    margin-right: 50px;
  }
}
header nav .logo img {
  height: 30px;
}
@media screen and (min-width: 480px) {
  header nav .logo img {
    height: 40px;
  }
}
@media screen and (min-width: 768px) {
  header nav .logo img {
    height: 50px;
  }
}
header nav a:not(.logo) {
  color: #000;
  font-size: 13px;
  padding: 10px 5px;
  letter-spacing: 1px;
  text-transform: none;
}
header nav a:not(.logo):hover {
  border-bottom: 2px solid #A5DD5A;
}
header nav .menu {
  top: 99px;
  left: 100%;
  position: fixed;
  transition: all 0.25s;
}
@media screen and (max-width: 767px) {
  header nav .menu .btn-round {
    width: 35px;
    height: 35px;
  }
  header nav .menu .btn-round img {
    max-width: 24px;
    max-height: 24px;
  }
}
@media screen and (max-width: 991px) {
  header nav .menu {
    width: 187.5px;
    padding-top: 35px;
    height: calc(100vh - 99px);
    background-color: rgba(165, 221, 90, 0.95);
  }
  header nav .menu.open {
    display: block;
    text-align: right;
    transform: translateX(-100%);
  }
}
@media screen and (max-width: 991px) and (min-width: 480px) {
  header nav .menu.open {
    width: 262px;
  }
}
@media screen and (max-width: 991px) and (min-width: 720px) {
  header nav .menu.open {
    width: 36.5%;
  }
}
@media screen and (max-width: 991px) {
  header nav .menu a:not(.btn-round) {
    color: #fff;
    display: block;
    padding: 15px 10px;
    border-bottom: 1px solid #fff;
  }
}
@media screen and (min-width: 992px) {
  header nav .menu {
    position: static;
  }
  header nav .menu a {
    font-size: 14px;
    font-weight: bold;
  }
}
header nav .menu-toggler {
  width: 35px;
  height: 35px;
  margin-left: auto;
}
header nav .menu-toggler.active .bar-1 {
  transform: translateY(15px) rotate(45deg);
}
header nav .menu-toggler.active .bar-2 {
  opacity: 0;
}
header nav .menu-toggler.active .bar-3 {
  transform: translateY(-5px) rotate(-45deg);
}
@media screen and (min-width: 992px) {
  header nav .menu-toggler {
    display: none;
  }
}
header nav .menu-toggler .bar {
  width: 100%;
  height: 5px;
  display: block;
  margin-bottom: 5px;
  border-radius: 5px;
  transition: all 0.25s;
  background-color: #fff;
}

.banner {
  margin-top: 95px;
  background-size: cover;
  padding: 35px 10px 75px;
  background-color: #F9FFF2;
  background-position: top right;
  background-image: url("../images/banner.png");
}
@media screen and (min-width: 480px) {
  .banner {
    margin-top: 105px;
    padding: 75px 20px 150px;
  }
}
@media screen and (min-width: 768px) {
  .banner {
    margin-top: 115px;
  }
}
@media screen and (min-width: 1199px) {
  .banner {
    padding: 150px 50px 250px;
  }
}
.banner .banner-content {
  max-width: 450px;
}
.banner .banner-content h1 {
  margin-bottom: 35px;
}
.banner .banner-content h2 {
  margin-bottom: 35px;
}

.us-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 65px 0 45px;
  justify-content: center;
  background-color: #F9FFF2;
}
.us-section > div {
  width: 50%;
  padding: 0 10px;
  max-width: 550px;
}
@media screen and (min-width: 768px) {
  .us-section > div {
    padding: 0 60px;
  }
}
@media screen and (min-width: 480px) {
  .us-section > div:first-of-type {
    padding-left: 60px;
  }
}
.us-section > div.us-content {
  padding-top: 25px;
}
@media screen and (min-width: 768px) {
  .us-section > div.us-content {
    padding-top: 75px;
  }
}
.us-section > div.us-content h3 {
  text-align: left;
  padding-bottom: 30px;
}
.us-section > div img {
  margin: 0 auto;
  display: block;
  max-height: 600px;
}
.us-section > div p {
  margin-bottom: 20px;
}
.us-section h3 {
  width: 100%;
  text-align: center;
}

.services {
  padding-top: 20px;
  background-color: #F9FFF2;
}
@media screen and (min-width: 768px) {
  .services {
    padding-top: 0;
  }
}
.services h4 {
  margin-bottom: 10px;
}
.services h3 {
  margin-bottom: 40px;
}
.services #services-carousel .splide__slide {
  width: 250px;
  padding: 0 10px;
}
@media screen and (min-width: 768px) {
  .services #services-carousel .splide__slide {
    width: 350px;
  }
}
.services #services-carousel .splide__slide > div {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 5px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .services #services-carousel .splide__slide > div {
    height: 350px;
    max-width: 350px;
  }
}
.services #services-carousel .splide__slide > div:hover .service-name {
  opacity: 1;
}
.services #services-carousel .splide__slide > div img {
  top: 50%;
  left: 50%;
  height: 250px;
  min-width: 100%;
  max-width: none;
  position: absolute;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .services #services-carousel .splide__slide > div img {
    height: 350px;
  }
}
.services #services-carousel .splide__slide > div .service-name {
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  padding-top: 25px;
  position: absolute;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
}
.services #services-carousel .splide__slide > div .service-name h5 {
  color: #fff;
  width: 100%;
  text-align: center;
  margin-bottom: 35px;
}
.services #services-carousel .splide__slide > div .service-name p {
  color: #fff;
  width: 100%;
}

.customers {
  padding-top: 85px;
  padding-bottom: 30px;
}
.customers h3 {
  padding-bottom: 50px;
}
.customers #customers-carousel {
  margin: 0 auto;
  padding: 20px 0;
  width: 910px;
  max-width: calc(100% - 140px);
  border: 1px solid rgba(165, 221, 90, 0.25);
}
.customers #customers-carousel .splide__arrow--prev,
.customers #customers-carousel .splide__arrow--next {
  opacity: 1;
  width: 50px;
  height: 50px;
  border-radius: 0;
}
.customers #customers-carousel .splide__arrow--prev:hover,
.customers #customers-carousel .splide__arrow--next:hover {
  background-color: #A5DD5A;
}
.customers #customers-carousel .splide__arrow--prev:hover svg,
.customers #customers-carousel .splide__arrow--next:hover svg {
  fill: #fff;
}
.customers #customers-carousel .splide__arrow--prev {
  left: -60px;
}
.customers #customers-carousel .splide__arrow--next {
  right: -60px;
}
.customers #customers-carousel .splide__slide {
  padding: 0 15px;
  max-width: 130px;
  max-height: 75px;
  text-align: center;
  border-right: 1px solid rgba(165, 221, 90, 0.25);
}
.customers #customers-carousel .splide__slide:last-child {
  border-right: none;
}
.customers #customers-carousel .splide__slide > div {
  height: 100%;
  display: flex;
  align-items: center;
}
.customers #customers-carousel .splide__slide img {
  max-height: 100%;
}

.contact {
  color: #fff;
  background-size: cover;
  padding: 100px 15px 20px;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-image: url("../images/contact-bg.svg");
}
.contact h3 {
  padding-bottom: 30px;
}
.contact p, .contact b {
  font-size: 13px;
}
.contact b {
  display: block;
  padding-bottom: 25px;
}
.contact .contact-content {
  display: flex;
  margin: 0 auto;
  max-width: 1200px;
}
@media screen and (min-width: 768px) {
  .contact .contact-content .form-container {
    width: calc(100% - 200px);
  }
}
.contact .contact-content .shape-container {
  max-width: 400px;
  padding-left: 75px;
}
.contact .contact-content .row {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 20px;
}
.contact .contact-content .row:nth-child(1) > *:nth-child(1) {
  width: 40%;
}
@media screen and (max-width: 991px) {
  .contact .contact-content .row:nth-child(1) > *:nth-child(1) {
    width: 100%;
    padding-bottom: 10px;
  }
}
.contact .contact-content .row:nth-child(1) > *:nth-child(2), .contact .contact-content .row:nth-child(1) > *:nth-child(3) {
  width: 30%;
}
@media screen and (max-width: 991px) {
  .contact .contact-content .row:nth-child(1) > *:nth-child(2), .contact .contact-content .row:nth-child(1) > *:nth-child(3) {
    width: 50%;
    padding-bottom: 10px;
  }
}
.contact .contact-content .row:nth-child(2) > *:nth-child(1), .contact .contact-content .row:nth-child(2) > *:nth-child(4) {
  width: 30%;
}
.contact .contact-content .row:nth-child(2) > *:nth-child(2), .contact .contact-content .row:nth-child(2) > *:nth-child(3) {
  width: 20%;
}
@media screen and (max-width: 991px) {
  .contact .contact-content .row:nth-child(2) .form-field {
    width: 50%;
  }
}
@media screen and (max-width: 991px) {
  .contact .contact-content .row .form-field {
    padding-left: 5px;
    padding-right: 5px;
  }
}
.contact .contact-content .row textarea {
  width: 100%;
}
.contact .btn-form img {
  margin-left: 10px;
}

footer {
  color: #fff;
  padding: 25px 0 35px;
  background-color: #000;
}
footer h3 {
  padding-bottom: 45px;
}
footer .row:not(.row-info) {
  display: flex;
  justify-content: center;
  padding-bottom: 25px;
}
@media screen and (min-width: 768px) {
  footer .row:not(.row-info) {
    padding-bottom: 25px;
  }
}
footer .row:not(.row-info) .payment-method {
  width: 100px;
  display: flex;
  margin: 0 10px;
  padding: 5px 10px;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 5px;
}
footer .row:not(.row-info) .payment-method img {
  max-height: 40px;
}
footer .row-info-content {
  margin: 0 auto;
  font-size: 12px;
  max-width: 1200px;
}
@media screen and (min-width: 768px) {
  footer .row-info-content {
    display: flex;
    justify-content: space-between;
  }
}
footer .row-info-content > div {
  max-width: 400px;
  margin: 10px auto 0;
}
footer .row-info-content .rounded-icon {
  width: 25px;
  height: 25px;
  padding-top: 5px;
  text-align: center;
  border-radius: 100%;
  margin-right: 15px;
  display: inline-block;
  vertical-align: middle;
  background-color: #A5DD5A;
}
footer .row-info-content .rounded-icon img {
  height: 15px;
  max-width: 15px;
  line-height: 25px;
}

.modal {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 99999;
  position: fixed;
  transition: all 0.35s;
}
.modal.active {
  display: block;
}
.modal .modal-overlay {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(165, 221, 90, 0.35);
}
.modal .modal-body {
  top: 50%;
  left: 50%;
  max-width: 375px;
  position: absolute;
  text-align: center;
  border-radius: 5px;
  padding: 15px 25px;
  background-color: #fff;
  border: 1px solid #A5DD5A;
  transform: translate(-50%, -50%);
}
.modal .modal-body h4 {
  padding-bottom: 35px;
}/*# sourceMappingURL=main.css.map */