/* guides */

/*
font-family: "Poppins", serif;
color: #86be54; (light green)
color: #628a3d; (dark green)
color: #000; (black)
color: #f5f5f5; (white)
-webkit-transition: all .2s ease-out;
-moz-transition: all .2s ease-out;
-o-transition: all .2s ease-out;
transition: all .2s ease-out;
*/

/* general */

html {
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  font-family: "Poppins", serif;
  background-color: #f5f5f5;
}

section {
  padding: 6rem 0;
}

.btn {
  padding: .75rem 2.5rem;
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
  background-color: #628a3d;
  border-radius: 30px;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.btn:hover {
  color: #fff;
  background-color: #86be54;
}

.btn-light-green {
  background-color: #86be54;
}

.btn-light-green:hover {
  color: #000;
  background-color: #f5f5f5;
}

.btn-light-green-dark:hover {
  color: #f5f5f5;
  background-color: #628a3d;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .d-none-for-lg {
    display: none !important;
  }

  .d-inline-block-for-lg {
    display: inline-block !important;
  }
}

@media (max-width: 991px) {
  .d-none-for-xs {
    display: none !important;
  }
}

/* navigation */

.navbar {
  flex-direction: column;
  gap: 0;
  box-shadow: none;
  background-color: #f5f5f5;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.navbar.navbar-shrink {
  box-shadow: none;
  background-color: #f5f5f5;
}

.navbar .top-bar-div {
  position: relative;
  justify-content: flex-end;
  gap: 3rem;
  background-color: #628a3d;
  z-index: 0;
}

.navbar .top-bar-div p {
  position: relative;
  margin-bottom: 0;
  color: #f5f5f5;
  font-size: .85rem;
  font-weight: 300;
  z-index: 1;
}

.navbar .top-bar-div p a {
  color: #f5f5f5;
  text-decoration: none;
  opacity: 1;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.navbar .top-bar-div p a:hover {
  color: #f5f5f5;
  text-decoration: none;
  opacity: .7;
}

.navbar .top-bar-div p i {
  margin-right: .75rem;
  color: #86be54;
}

.navbar .top-bar-div .left-background,
.navbar .top-bar-div .right-background {
  position: absolute;
  top: 0;
  width: 500px;
  height: 100%;
  background-color: #628a3d;
  z-index: 0;
}

.navbar .top-bar-div .left-background {
  left: -500px;
}

.navbar .top-bar-div .right-background {
  right: -500px;
}

.navbar .navbar-brand {
  color: #000;
  opacity: 1;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.navbar .navbar-brand:hover {
  color: #000;
  opacity: .7;
}

.navbar .navbar-brand img {
  height: 35px;
}

.navbar .navbar-nav .nav-item .nav-link {
  color: #000;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0 1.5rem;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.navbar .navbar-nav .nav-item .nav-link:hover,
.navbar .navbar-nav .nav-item .nav-link:active,
.navbar .navbar-nav .nav-item .nav-link.active {
  color: #628a3d;
}

.navbar .navbar-nav .nav-item .nav-link-cta {
  margin-left: 1.5rem;
  padding: .75rem 2.5rem;
  color: #f5f5f5;
  background-color: #628a3d;
  border-radius: 30px;
}

.navbar .navbar-nav .nav-item .nav-link-cta:hover {
  color: #f5f5f5;
  background-color: #86be54;
}

@media (max-width: 991px) {
  .navbar .navbar-nav .nav-item .nav-link {
    padding: 0.75rem 0;
  }

  .navbar .navbar-nav .nav-item .nav-link-cta {
    margin-left: 0;
    margin-top: .75rem;
    padding: 1rem 1.5rem;
  }

  .navbar .top-bar-div {
    justify-content: space-between;
    gap: 0;
  }
}

/* front page cover */

.front-page-cover {
  height: 100vh;
  padding-top: 130px;
  padding-bottom: 0;
  background: linear-gradient(to bottom, rgba(23, 23, 23, 0.2) 0%, rgba(23, 23, 23, 0.2) 100%), url("../images/cover2.jpg");
  /*background-image: url("../images/cover2.jpg");*/
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.front-page-cover h1 {
  margin-bottom: 1.5rem;
  color: #f5f5f5;
  font-size: 3rem;
  font-weight: 600;
}

.front-page-cover h2 {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: .6rem 1.2rem;
  color: #f5f5f5;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 30px;
}

.front-page-cover p {
  width: 80%;
  margin-bottom: 3rem;
  color: #f5f5f5;
  font-size: 1rem;
}

.front-page-cover .cover-div {
  padding-bottom: 4rem;
}

@media (min-width: 992px) and (max-width: 1399px) {
  .front-page-cover h1 {
    font-size: 3rem;
  }
}

@media (max-width: 991px) {
  .front-page-cover {
    height: auto;
  }

  .front-page-cover h1 {
    font-size: 2rem;
  }

  .front-page-cover .cover-div {
    padding-top: 4rem;
    padding-bottom: 8rem;
  }
}

/* front page intro */

.front-page-intro {
  padding-top: 0;
  background-color: transparent;
}

.front-page-intro .intro-div {
  display: flex;
  gap: 5rem;
  justify-content: space-evenly;
  margin-top: -4rem;
  padding: 2rem 5rem;
  background-color: #628a3d;
  border: 1px solid #f5f5f5;
}

.front-page-intro .intro-div h3 {
  margin-bottom: 0;
  color: #f5f5f5;
  font-size: 1rem;
  font-weight: 600;
}

.front-page-intro .intro-div p {
  margin-bottom: 0;
  color: #f5f5f5;
  font-size: .9rem;
  font-weight: 400;
}

.front-page-intro .intro-div img {
  width: auto;
  height: 60px;
  margin-bottom: .5rem;
}

.front-page-intro .intro-div > div {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .front-page-intro .intro-div {
    gap: 3rem;
  }
}

@media (max-width: 991px) {
  .front-page-intro {
    padding-bottom: 3rem;
  }

  .front-page-intro .intro-div {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
  }
}

/* front page about */

.front-page-about {
  padding-top: 0;
}

.front-page-about h2 {
  font-size: 1.75rem;
  font-weight: 600;
}

.front-page-about h3 {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: .6rem 1.2rem;
  color: #628a3d;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  background-color: transparent;
  border: 2px solid #628a3d;
  border-radius: 30px;
}

.front-page-about p {
  font-size: .9rem;
  font-weight: 400;
}

.front-page-about .individual-stat h4 {
  margin-bottom: 1rem;
  color: #628a3d;
  font-size: 1.75rem;
  font-weight: 600;
}

.front-page-about .individual-stat p {
  font-size: 1.25rem;
  font-weight: 600;
}

@media (max-width: 991px) {
  .front-page-about {
    padding-bottom: 3rem;
  }

  .front-page-about h3 {
    margin-top: 2rem;
  }
}

/* front page services */

.front-page-services {
  background-color: #628a3d;
}

.front-page-services h2 {
  color: #f5f5f5;
  font-size: 1.75rem;
  font-weight: 600;
}

.front-page-services h3 {
  margin-bottom: 0;
  color: #628a3d;
  font-size: 1.25rem;
  font-weight: 600;
}

.front-page-services h4 {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: .6rem 1.2rem;
  color: #86be54;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  background-color: transparent;
  border: 2px solid #86be54;
  border-radius: 30px;
}

.front-page-services p {
  color: #f5f5f5;
  font-size: .9rem;
  font-weight: 400;
}

.front-page-services a {
  color: #86be54;
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}

.front-page-services a:hover {
  color: #86be54;
  text-decoration: none;
}

.front-page-services a i {
  margin-left: .75rem;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-services .individual-service:hover a i {
  margin-left: 1.5rem;
}

.front-page-services img {
  width: auto;
  height: 90px;
}

.front-page-services .individual-service {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 2.5rem 2rem 2rem 2rem;
  background-color: #f5f5f5;
  cursor: pointer;
}

.front-page-services .individual-service p {
  color: #000;
}

.front-page-services .individual-service div {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -1.75rem;
  left: 1.75rem;
  width: 3.5rem;
  height: 3.5rem;
  background-color: #f5f5f5;
}

.front-page-services .individual-service div img {
  width: auto;
  height: 40px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .front-page-services h3 {
    min-height: 48px;
  }

  .front-page-services .individual-service {
    min-height: 252px;
  }

  .front-page-services .individual-service p {
    min-height: 65px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .front-page-services h3 {
    min-height: 48px;
  }

  .front-page-services .individual-service {
    min-height: 274px;
  }

  .front-page-services .individual-service p {
    min-height: 87px;
  }
}

@media (max-width: 991px) {
  .front-page-services {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .front-page-services img {
    height: 75px;
  }
}

/* front page faq */

.front-page-faq h2 {
  font-size: 1.75rem;
  font-weight: 600;
}

.front-page-faq h4 {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: .6rem 1.2rem;
  color: #628a3d;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  background-color: transparent;
  border: 2px solid #628a3d;
  border-radius: 30px;
}

.front-page-faq p {
  font-size: .9rem;
  font-weight: 400;
}

.front-page-faq img {
  width: auto;
  height: 90px;
}

.front-page-faq .contacts img {
  width: 24px;
  height: auto;
  margin-right: 1rem;
}

.front-page-faq .contacts .contact-a {
  color: #000;
  text-decoration: none;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-faq .contacts .contact-a:hover {
  color: #86be54;
  text-decoration: none;
}

@media (max-width: 991px) {
  .front-page-faq {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .front-page-faq img {
    height: 75px;
  }
}

/* front page testimonials */

.front-page-testimonials {
  background-size: cover;
  background-position: center center;
}

.front-page-testimonials p {
  margin-bottom: .5rem;
  color: #f5f5f5;
  font-weight: 800;
}

.front-page-testimonials p:last-child {
  margin-bottom: 0;
}

.front-page-testimonials p.author {
  font-weight: 500;
  font-style: italic;
}

.front-page-testimonials img {
  margin-bottom: 3rem;
  height: 50px;
}

.front-page-testimonials .dot {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: .6rem;
  margin-right: .6rem;
  background-color: #92c457;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-testimonials .dot:hover,
.front-page-testimonials .dot.active {
  background-color: #628a3d;
}

@media (max-width: 991px) {
  .front-page-testimonials {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .front-page-testimonials img {
    height: 30px;
  }
}

/* front page gallery */

.front-page-gallery h2 {
  font-size: 1.75rem;
  font-weight: 600;
}

.front-page-gallery h4 {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: .6rem 1.2rem;
  color: #628a3d;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  background-color: transparent;
  border: 2px solid #628a3d;
  border-radius: 30px;
}

.front-page-gallery p {
  font-size: .9rem;
  font-weight: 400;
}

.front-page-gallery .arrows {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: flex-end;
}

.front-page-gallery .arrows i {
  color: #92c457;
  font-size: 1.5rem;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-gallery .arrows i:hover {
  color: #628a3d;
}

.front-page-gallery .gallery-div {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.front-page-gallery .gallery-div img {
  width: 100%;
  border: 2px solid #628a3d;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-gallery .gallery-div img:hover {
  border: 2px solid #86be54;
}

.front-page-gallery .gallery-div > div {
  flex: 1 1 calc(50% - 1.5rem);
  width: calc(50% - 1.5rem);
  max-width: calc(50% - 1.5rem);
  min-width: calc(50% - 1.5rem);
}

.front-page-gallery .dot {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: .6rem;
  margin-right: .6rem;
  background-color: #92c457;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-gallery .dot:hover,
.front-page-gallery .dot.active {
  background-color: #628a3d;
}

@media (max-width: 991px) {
  .front-page-gallery {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .front-page-gallery .gallery-div {
    gap: 1.5rem;
  }

  .front-page-gallery .gallery-div > div {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }
}

/* front page cta */

.front-page-cta {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
  background-color: #f5ffec;
}

.front-page-cta h2 {
  color: #628a3d;
  font-size: 3rem;
  font-weight: 600;
}

.front-page-cta p {
  width: 80%;
  font-size: .9rem;
  font-weight: 400;
}

.front-page-cta .cta-description {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.front-page-cta .cta-background {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
}

.front-page-cta .testimonial {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.front-page-cta .testimonial p {
  margin-top: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 700;
}

.front-page-cta .testimonial p.author {
  margin-bottom: 0;
  font-weight: 500;
  font-style: italic;
}

.front-page-cta .testimonial i {
  color: #ffd700;
  font-size: 1.25rem;
}

.front-page-cta .testimonial div {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.front-page-cta .front-page-cta-testimonial-background {
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  height: 100%;
  background-image: url("../images/testimonial_pattern_2.png");
  background-size: cover;
  pointer-events: none;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .front-page-cta h2 {
    font-size: 2rem;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .front-page-cta h2 {
    font-size: 2rem;
  }

  .front-page-cta p {
    width: 90%;
  }

  .front-page-cta .cta-background {
    display: none;
  }

  .front-page-cta .front-page-cta-testimonial-background {
    width: 50%;
  }
}

@media (max-width: 991px) {
  .front-page-cta {
    padding-bottom: 4.5rem;
  }

  .front-page-cta h2 {
    font-size: 2rem;
  }

  .front-page-cta p {
    width: 90%;
  }

  .front-page-cta .testimonial p.author {
    margin-top: 0;
  }

  .front-page-cta .cta-description {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .front-page-cta .front-page-cta-testimonial-background {
    display: none;
  }
}

/* footer */

footer {
  position: relative;
  margin-top: 6rem;
  padding-top: 4.5rem;
  padding-bottom: 3rem;
  background-color: #628a3d;
}

footer h5 {
  margin-bottom: 1.5rem;
  color: #92C457;
  font-size: 1rem;
  font-weight: 700;
}

footer p {
  margin-bottom: 3rem;
  color: #f5ffec;
  font-size: .95rem;
  font-weight: 400;
}

footer p:last-child {
  margin-bottom: 0;
}

footer p a {
  color: #f5ffec;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

footer p a:hover {
  color: #f5ffec;
  text-decoration: none;
  border-bottom: 1px solid #f5ffec;
}

footer img {
  height: 35px;
  width: auto;
}

footer img.contact-img {
  width: 24px;
  height: auto;
  margin-right: 1rem;
}

footer .left-side {
  display: flex;
  flex-direction: column;
  align-items: self-start;
  justify-content: space-between;
}

footer .left-side div {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-right: 1.5rem;
}

footer .left-side div p {
  margin-bottom: 0;
  font-size: .9rem;
}

footer .front-page-footer-left-side-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-image: url("../images/testimonial_pattern_2.png");
  background-size: 120%;
  background-position-x: 100%;
  background-repeat: no-repeat;
  pointer-events: none;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  footer .left-side div {
    padding-right: 0;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  footer .left-side div p {
    flex: 1;
  }

  footer .left-side div p:last-child {
    text-align: right;
  }

  footer .front-page-footer-left-side-background {
    background-size: cover;
  }
}

@media (max-width: 991px) {
  footer {
    margin-top: 0;
    padding-top: 4.5rem;
  }

  footer p {
    margin-bottom: 2rem;
  }

  footer .left-side {
    margin-bottom: 2.25rem;
    flex-direction: row;
    justify-content: center;
  }

  footer .front-page-footer-left-side-background {
    display: none;
  }
}

/* */
