@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
body {
  font-family: "Montserrat", sans-serif;
  background-color: #FFFFFF;
}

.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
}

.flex-container {
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  gap: 15px;
  justify-content: space-between;
}
.flex-container > div {
  flex: 0 0 calc(50% - 7.5px);
  min-width: 0;
}
.flex-container img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
@media only screen and (max-width: 991px) {
  .flex-container {
    flex-direction: column;
  }
  .flex-container > div {
    flex: 0 0 auto;
    width: 100%;
  }
}

.title-lg {
  font-size: 4.5rem;
  color: #95BB31;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .title-lg {
    font-size: 3rem;
  }
}

.title-md {
  font-size: 2.2rem;
  color: #95BB31;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.subtitle {
  font-size: 2rem;
  color: #6F6F6E;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 20px;
}

.text {
  font-size: 1.125rem;
  color: #6F6F6E;
}
@media only screen and (max-width: 767px) {
  .text {
    font-size: 1rem;
  }
}

.bg-gray {
  background-color: #F6F6F6;
}

.bold {
  font-weight: bold;
  color: #6F6F6E;
}

header {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}
header a {
  color: #6F6F6E;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.125rem;
}

.hero {
  background-image: linear-gradient(90deg, rgb(235, 235, 235) 0%, rgba(235, 235, 235, 0.6) 45%, rgba(235, 235, 235, 0) 65%), image-set(url("../assets/hero-bg.png") 1x, url("../assets/hero-bg2x.png") 2x);
  background-size: cover;
  background-repeat: no-repeat, no-repeat;
  height: 90dvh;
  position: relative;
}
.hero__container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  position: relative;
}
.hero .banner {
  position: absolute;
  bottom: -3px;
  right: 15px;
}
.hero__button {
  background-color: #6F6F6E;
  color: #FFFFFF;
  padding: 15px 30px;
  text-transform: uppercase;
  margin-top: 20px;
  font-weight: bold;
  transition: background-color 0.2s ease-in-out;
}
.hero__button:hover {
  background-color: rgb(85.3846153846, 85.3846153846, 84.6153846154);
}
@media only screen and (max-width: 767px) {
  .hero {
    height: 80vh;
    background-image: linear-gradient(90deg, rgba(235, 235, 235, 0.8) 0%, rgba(235, 235, 235, 0.6) 75%, rgba(235, 235, 235, 0) 100%), image-set(url("../assets/hero-bg.png"));
    background-position: center;
  }
}

.authorized h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #6F6F6E;
  text-transform: uppercase;
  font-weight: normal;
}
.authorized {
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  text-align: center;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.authorized img {
  width: 250px;
}

.products {
  padding-top: 40px;
  padding-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
@media only screen and (max-width: 991px) {
  .products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .products {
    grid-template-columns: 1fr;
  }
}
.products__item {
  padding: 15px;
  border-right: 1px solid #6F6F6E;
}
.products__item h4 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #95BB31;
  margin-bottom: 20px;
}
.products__item p {
  text-align: center;
  color: #6F6F6E;
}
.products__item:last-child {
  border-right: none;
}
@media only screen and (max-width: 991px) {
  .products__item {
    border-right: none;
    border-bottom: 1px solid #6F6F6E;
  }
  .products__item:last-child {
    border-bottom: none;
  }
}

.service .list-title {
  font-weight: 900;
  color: #6F6F6E;
  font-size: 1.2rem;
  margin-bottom: 25px;
}
.service .list-services {
  list-style: inside;
  padding-left: 0;
}
.service .list-services li {
  margin-bottom: 20px;
}

.gallery {
  padding-top: 40px;
  padding-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
@media only screen and (max-width: 991px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
.gallery__item {
  aspect-ratio: 1/1;
}
.gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.map iframe {
  width: 100%;
}

.footer {
  padding-top: 60px;
  padding-bottom: 60px;
  height: 400px;
}
@media only screen and (max-width: 991px) {
  .footer {
    height: 500px;
  }
}
.footer {
  position: relative;
  background-image: image-set(url("../assets/foto-footer.png") 1x, url("../assets/foto-footer2x.png") 2x);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #FFFFFF;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(149, 187, 49, 0.85);
  z-index: 1;
}
.footer > * {
  position: relative;
  z-index: 2;
}
.footer .container {
  height: 100%;
  display: flex;
  gap: 15px;
  justify-content: space-between;
}
.footer .container > div {
  flex: 0 0 calc(50% - 7.5px);
  min-width: 0;
}
@media only screen and (max-width: 991px) {
  .footer .container {
    flex-direction: column;
  }
  .footer .container > div {
    flex: 0 0 auto;
    width: 100%;
  }
}
.footer .title-lg {
  color: #FFFFFF;
}
.footer__info {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.footer__info p {
  font-size: 1.125rem;
}
.footer__info .bold {
  color: #FFFFFF;
}
.footer__logo {
  width: 230px;
}
.footer__contact {
  text-align: right;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-direction: column;
}
.footer__contact .fb {
  width: 50px;
  height: 50px;
}
.footer__contact div {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.footer__contact div a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 900;
  font-size: 2rem;
}
@media only screen and (max-width: 991px) {
  .footer__contact div a {
    font-size: 1.5rem;
  }
}

/*# sourceMappingURL=main.css.map */
