* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-padding-top: 74px;
}

body {
  font-family: "Montserrat", sans-serif;
}

.green-text {
  color: #4b7441;
}

.shadow-bg {
  background-color: rgba(0, 0, 0, 0.8);
}

.section-title {
  text-align: center;
  text-transform: uppercase;
}

.underline {
  margin: 0 auto 40px;
  width: 60px;
  height: 4px;
  background-color: #4b7441;
}

nav {
  text-transform: uppercase;
  transition: background-color 0.6s;
  z-index: 5;
}
nav .navbar-toggler {
  padding: 10px 15px;
}
nav .nav-link,
nav .navbar-nav .show > .nav-link,
nav .navbar-brand,
nav .fa-bars {
  color: #fff;
}
nav .nav-link:focus,
nav .nav-link:hover,
nav .navbar-brand:hover,
nav .navbar-nav .nav-link.active,
nav .navbar-nav {
  color: #4b7441;
}

header.hero-img {
  position: relative;
  height: 100vh;
  background-image: url("../img/hero-small.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  z-index: 0;
}
header.hero-img h1 {
  text-transform: uppercase;
}
header.hero-img .hero-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -5;
}
header.hero-img .hero-text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
}
header.hero-img .fa-chevron-down {
  position: absolute;
  bottom: 20px;
  font-size: 30px;
  color: #fff;
  left: 50%;
  transform: translateX(-50%);
}

.services i {
  margin-top: 20px;
  font-size: 30px;
}
.services .aboutus-card-title {
  font-size: 18px;
  text-transform: uppercase;
}
.services .aboutus-card-text {
  font-size: 16px;
}

.textAboutUs {
  text-align: justify;
}

.prices {
  background-color: #ebecf2;
}
.prices i {
  font-size: 30px;
}
.prices .price-box {
  margin: 20px;
  padding: 30px;
  border-radius: 5%;
  background-color: #fff;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
  transition: scale 0.5s;
}
.prices .price-title {
  color: #4b7441;
  text-transform: uppercase;
  font-weight: bold;
}
.prices .price-box:hover {
  scale: 1.1;
}

.linkColor {
  color: #4b7441;
  text-decoration: none;
}

.cookies {
  font-size: 12px;
}

@media (min-width: 768px) {
  .hero-text h1 {
    font-size: 40px;
  }
  .hero-text p {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  html {
    scroll-padding-top: 72px;
  }
}
@media (min-width: 800px) {
  header.hero-img {
    background-image: url("../img/hero-big.jpg");
  }
}/*# sourceMappingURL=main.css.map */