@charset "UTF-8";
.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
@media (min-width: 1440px) {
  .container {
    width: 1320px;
    min-width: 1320px;
  }
}
@keyframes flash {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
.bg-cover {
  background-size: cover;
  background-position: center center;
}

.text-white {
  color: #fff !important;
}

.text-black {
  color: #000 !important;
}

.text-green {
  color: #8cc63f !important;
}

.text-gray {
  color: #e5e5e5 !important;
}

.text-dark-gray {
  color: #666666 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-black {
  background-color: #000 !important;
}

.bg-green {
  background-color: #8cc63f !important;
}

.bg-gray {
  background-color: #e5e5e5 !important;
}

.bg-dark-gray {
  background-color: #666666 !important;
}

.font-100 {
  font-weight: 100 !important;
}

.font-200 {
  font-weight: 200 !important;
}

.font-300 {
  font-weight: 300 !important;
}

.font-400 {
  font-weight: 400 !important;
}

.font-500 {
  font-weight: 500 !important;
}

.font-600 {
  font-weight: 600 !important;
}

.font-700 {
  font-weight: 700 !important;
}

.font-800 {
  font-weight: 800 !important;
}

.font-900 {
  font-weight: 900 !important;
}

.padding-x-md {
  padding: 60px 0;
}

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

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

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

@media (max-width: 992px) {
  .text-left-sm {
    text-align: left;
  }
  .text-center-sm {
    text-align: center;
  }
  .text-right-sm {
    text-align: right;
  }
}
@media (max-width: 480px) {
  .text-left-xs {
    text-align: left;
  }
  .text-center-xs {
    text-align: center;
  }
  .text-right-xs {
    text-align: right;
  }
}
.section-padding {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .section-padding {
    padding: 50px 0;
  }
}

.title-1 {
  font-size: 6rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 767px) {
  .title-1 {
    font-size: 36px;
  }
}

.link-green a {
  color: #8cc63f;
  transition: all 0.3s ease;
}
.link-green a:hover {
  color: #000;
}

.link-black a {
  color: #000;
  transition: all 0.3s ease;
}
.link-black a:hover {
  color: #8cc63f;
}

.button-1 {
  background-color: #8cc63f;
  color: #000;
  padding: 11px 20px;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-block;
}

.button-1:hover {
  color: #fff;
}

.content-text p {
  margin-bottom: 20px;
}
.content-text ul {
  list-style: disc;
}
.content-text strong {
  font-weight: 700;
}

.section-single-post p:first-of-type:first-letter,
.section-single-post .dropcaps {
  background-color: #8cc63f;
  color: #ffffff;
  padding: 0 13px;
  line-height: 1;
  font-size: 32px;
  margin: 0 5px 0 0;
}
.section-single-post h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.025em;
  text-align: inherit;
  color: #000000;
  margin: 20px 0;
  text-transform: uppercase;
}
@media screen and (min-width: 993px) {
  .section-single-post h3 {
    font-size: 30px;
  }
}

.pagination-news {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
}
.pagination-news .page-numbers {
  display: inline-block;
  min-width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  background: #fff;
  color: #8cc63f;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border: 1px solid #8cc63f;
  transition: all 0.2s;
}
.pagination-news .page-numbers:hover, .pagination-news .page-numbers.current {
  background: #8cc63f;
  color: #fff;
  border-color: #8cc63f;
  text-decoration: none;
}
.pagination-news .prev,
.pagination-news .next {
  font-size: 18px;
  font-weight: 700;
  background: transparent;
  color: #8cc63f;
  border: none;
  min-width: unset;
  border-radius: 50%;
  padding: 0 10px;
}
.pagination-news .prev:hover,
.pagination-news .next:hover {
  background: none;
  color: #000;
}

#news-category-filter {
  margin-top: 15px;
}
#news-category-filter select {
  height: 35px;
  width: 90px;
  font-size: 16px;
}

.mt-10 {
  margin-top: 10px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.ml-25 {
  margin-left: 25px !important;
}

.mr-25 {
  margin-right: 25px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.mt-35 {
  margin-top: 35px !important;
}

.mb-35 {
  margin-bottom: 35px !important;
}

.ml-35 {
  margin-left: 35px !important;
}

.mr-35 {
  margin-right: 35px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.mt-45 {
  margin-top: 45px !important;
}

.mb-45 {
  margin-bottom: 45px !important;
}

.ml-45 {
  margin-left: 45px !important;
}

.mr-45 {
  margin-right: 45px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.ml-50 {
  margin-left: 50px !important;
}

.mr-50 {
  margin-right: 50px !important;
}

.mt-55 {
  margin-top: 55px !important;
}

.mb-55 {
  margin-bottom: 55px !important;
}

.ml-55 {
  margin-left: 55px !important;
}

.mr-55 {
  margin-right: 55px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.ml-60 {
  margin-left: 60px !important;
}

.mr-60 {
  margin-right: 60px !important;
}

.mt-65 {
  margin-top: 65px !important;
}

.mb-65 {
  margin-bottom: 65px !important;
}

.ml-65 {
  margin-left: 65px !important;
}

.mr-65 {
  margin-right: 65px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.ml-70 {
  margin-left: 70px !important;
}

.mr-70 {
  margin-right: 70px !important;
}

.mt-75 {
  margin-top: 75px !important;
}

.mb-75 {
  margin-bottom: 75px !important;
}

.ml-75 {
  margin-left: 75px !important;
}

.mr-75 {
  margin-right: 75px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.ml-80 {
  margin-left: 80px !important;
}

.mr-80 {
  margin-right: 80px !important;
}

.mt-85 {
  margin-top: 85px !important;
}

.mb-85 {
  margin-bottom: 85px !important;
}

.ml-85 {
  margin-left: 85px !important;
}

.mr-85 {
  margin-right: 85px !important;
}

.mt-90 {
  margin-top: 90px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.ml-90 {
  margin-left: 90px !important;
}

.mr-90 {
  margin-right: 90px !important;
}

.mt-95 {
  margin-top: 95px !important;
}

.mb-95 {
  margin-bottom: 95px !important;
}

.ml-95 {
  margin-left: 95px !important;
}

.mr-95 {
  margin-right: 95px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.ml-100 {
  margin-left: 100px !important;
}

.mr-100 {
  margin-right: 100px !important;
}

@media (min-width: 768px) {
  .mt-md-10 {
    margin-top: 10px !important;
  }
  .mb-md-10 {
    margin-bottom: 10px !important;
  }
  .ml-md-10 {
    margin-left: 10px !important;
  }
  .mr-md-10 {
    margin-right: 10px !important;
  }
  .mt-md-15 {
    margin-top: 15px !important;
  }
  .mb-md-15 {
    margin-bottom: 15px !important;
  }
  .ml-md-15 {
    margin-left: 15px !important;
  }
  .mr-md-15 {
    margin-right: 15px !important;
  }
  .mt-md-20 {
    margin-top: 20px !important;
  }
  .mb-md-20 {
    margin-bottom: 20px !important;
  }
  .ml-md-20 {
    margin-left: 20px !important;
  }
  .mr-md-20 {
    margin-right: 20px !important;
  }
  .mt-md-25 {
    margin-top: 25px !important;
  }
  .mb-md-25 {
    margin-bottom: 25px !important;
  }
  .ml-md-25 {
    margin-left: 25px !important;
  }
  .mr-md-25 {
    margin-right: 25px !important;
  }
  .mt-md-30 {
    margin-top: 30px !important;
  }
  .mb-md-30 {
    margin-bottom: 30px !important;
  }
  .ml-md-30 {
    margin-left: 30px !important;
  }
  .mr-md-30 {
    margin-right: 30px !important;
  }
  .mt-md-35 {
    margin-top: 35px !important;
  }
  .mb-md-35 {
    margin-bottom: 35px !important;
  }
  .ml-md-35 {
    margin-left: 35px !important;
  }
  .mr-md-35 {
    margin-right: 35px !important;
  }
  .mt-md-40 {
    margin-top: 40px !important;
  }
  .mb-md-40 {
    margin-bottom: 40px !important;
  }
  .ml-md-40 {
    margin-left: 40px !important;
  }
  .mr-md-40 {
    margin-right: 40px !important;
  }
  .mt-md-45 {
    margin-top: 45px !important;
  }
  .mb-md-45 {
    margin-bottom: 45px !important;
  }
  .ml-md-45 {
    margin-left: 45px !important;
  }
  .mr-md-45 {
    margin-right: 45px !important;
  }
  .mt-md-50 {
    margin-top: 50px !important;
  }
  .mb-md-50 {
    margin-bottom: 50px !important;
  }
  .ml-md-50 {
    margin-left: 50px !important;
  }
  .mr-md-50 {
    margin-right: 50px !important;
  }
  .mt-md-55 {
    margin-top: 55px !important;
  }
  .mb-md-55 {
    margin-bottom: 55px !important;
  }
  .ml-md-55 {
    margin-left: 55px !important;
  }
  .mr-md-55 {
    margin-right: 55px !important;
  }
  .mt-md-60 {
    margin-top: 60px !important;
  }
  .mb-md-60 {
    margin-bottom: 60px !important;
  }
  .ml-md-60 {
    margin-left: 60px !important;
  }
  .mr-md-60 {
    margin-right: 60px !important;
  }
  .mt-md-65 {
    margin-top: 65px !important;
  }
  .mb-md-65 {
    margin-bottom: 65px !important;
  }
  .ml-md-65 {
    margin-left: 65px !important;
  }
  .mr-md-65 {
    margin-right: 65px !important;
  }
  .mt-md-70 {
    margin-top: 70px !important;
  }
  .mb-md-70 {
    margin-bottom: 70px !important;
  }
  .ml-md-70 {
    margin-left: 70px !important;
  }
  .mr-md-70 {
    margin-right: 70px !important;
  }
  .mt-md-75 {
    margin-top: 75px !important;
  }
  .mb-md-75 {
    margin-bottom: 75px !important;
  }
  .ml-md-75 {
    margin-left: 75px !important;
  }
  .mr-md-75 {
    margin-right: 75px !important;
  }
  .mt-md-80 {
    margin-top: 80px !important;
  }
  .mb-md-80 {
    margin-bottom: 80px !important;
  }
  .ml-md-80 {
    margin-left: 80px !important;
  }
  .mr-md-80 {
    margin-right: 80px !important;
  }
  .mt-md-85 {
    margin-top: 85px !important;
  }
  .mb-md-85 {
    margin-bottom: 85px !important;
  }
  .ml-md-85 {
    margin-left: 85px !important;
  }
  .mr-md-85 {
    margin-right: 85px !important;
  }
  .mt-md-90 {
    margin-top: 90px !important;
  }
  .mb-md-90 {
    margin-bottom: 90px !important;
  }
  .ml-md-90 {
    margin-left: 90px !important;
  }
  .mr-md-90 {
    margin-right: 90px !important;
  }
  .mt-md-95 {
    margin-top: 95px !important;
  }
  .mb-md-95 {
    margin-bottom: 95px !important;
  }
  .ml-md-95 {
    margin-left: 95px !important;
  }
  .mr-md-95 {
    margin-right: 95px !important;
  }
  .mt-md-100 {
    margin-top: 100px !important;
  }
  .mb-md-100 {
    margin-bottom: 100px !important;
  }
  .ml-md-100 {
    margin-left: 100px !important;
  }
  .mr-md-100 {
    margin-right: 100px !important;
  }
}
@media (min-width: 992px) {
  .mt-lg-10 {
    margin-top: 10px !important;
  }
  .mb-lg-10 {
    margin-bottom: 10px !important;
  }
  .ml-lg-10 {
    margin-left: 10px !important;
  }
  .mr-lg-10 {
    margin-right: 10px !important;
  }
  .mt-lg-15 {
    margin-top: 15px !important;
  }
  .mb-lg-15 {
    margin-bottom: 15px !important;
  }
  .ml-lg-15 {
    margin-left: 15px !important;
  }
  .mr-lg-15 {
    margin-right: 15px !important;
  }
  .mt-lg-20 {
    margin-top: 20px !important;
  }
  .mb-lg-20 {
    margin-bottom: 20px !important;
  }
  .ml-lg-20 {
    margin-left: 20px !important;
  }
  .mr-lg-20 {
    margin-right: 20px !important;
  }
  .mt-lg-25 {
    margin-top: 25px !important;
  }
  .mb-lg-25 {
    margin-bottom: 25px !important;
  }
  .ml-lg-25 {
    margin-left: 25px !important;
  }
  .mr-lg-25 {
    margin-right: 25px !important;
  }
  .mt-lg-30 {
    margin-top: 30px !important;
  }
  .mb-lg-30 {
    margin-bottom: 30px !important;
  }
  .ml-lg-30 {
    margin-left: 30px !important;
  }
  .mr-lg-30 {
    margin-right: 30px !important;
  }
  .mt-lg-35 {
    margin-top: 35px !important;
  }
  .mb-lg-35 {
    margin-bottom: 35px !important;
  }
  .ml-lg-35 {
    margin-left: 35px !important;
  }
  .mr-lg-35 {
    margin-right: 35px !important;
  }
  .mt-lg-40 {
    margin-top: 40px !important;
  }
  .mb-lg-40 {
    margin-bottom: 40px !important;
  }
  .ml-lg-40 {
    margin-left: 40px !important;
  }
  .mr-lg-40 {
    margin-right: 40px !important;
  }
  .mt-lg-45 {
    margin-top: 45px !important;
  }
  .mb-lg-45 {
    margin-bottom: 45px !important;
  }
  .ml-lg-45 {
    margin-left: 45px !important;
  }
  .mr-lg-45 {
    margin-right: 45px !important;
  }
  .mt-lg-50 {
    margin-top: 50px !important;
  }
  .mb-lg-50 {
    margin-bottom: 50px !important;
  }
  .ml-lg-50 {
    margin-left: 50px !important;
  }
  .mr-lg-50 {
    margin-right: 50px !important;
  }
  .mt-lg-55 {
    margin-top: 55px !important;
  }
  .mb-lg-55 {
    margin-bottom: 55px !important;
  }
  .ml-lg-55 {
    margin-left: 55px !important;
  }
  .mr-lg-55 {
    margin-right: 55px !important;
  }
  .mt-lg-60 {
    margin-top: 60px !important;
  }
  .mb-lg-60 {
    margin-bottom: 60px !important;
  }
  .ml-lg-60 {
    margin-left: 60px !important;
  }
  .mr-lg-60 {
    margin-right: 60px !important;
  }
  .mt-lg-65 {
    margin-top: 65px !important;
  }
  .mb-lg-65 {
    margin-bottom: 65px !important;
  }
  .ml-lg-65 {
    margin-left: 65px !important;
  }
  .mr-lg-65 {
    margin-right: 65px !important;
  }
  .mt-lg-70 {
    margin-top: 70px !important;
  }
  .mb-lg-70 {
    margin-bottom: 70px !important;
  }
  .ml-lg-70 {
    margin-left: 70px !important;
  }
  .mr-lg-70 {
    margin-right: 70px !important;
  }
  .mt-lg-75 {
    margin-top: 75px !important;
  }
  .mb-lg-75 {
    margin-bottom: 75px !important;
  }
  .ml-lg-75 {
    margin-left: 75px !important;
  }
  .mr-lg-75 {
    margin-right: 75px !important;
  }
  .mt-lg-80 {
    margin-top: 80px !important;
  }
  .mb-lg-80 {
    margin-bottom: 80px !important;
  }
  .ml-lg-80 {
    margin-left: 80px !important;
  }
  .mr-lg-80 {
    margin-right: 80px !important;
  }
  .mt-lg-85 {
    margin-top: 85px !important;
  }
  .mb-lg-85 {
    margin-bottom: 85px !important;
  }
  .ml-lg-85 {
    margin-left: 85px !important;
  }
  .mr-lg-85 {
    margin-right: 85px !important;
  }
  .mt-lg-90 {
    margin-top: 90px !important;
  }
  .mb-lg-90 {
    margin-bottom: 90px !important;
  }
  .ml-lg-90 {
    margin-left: 90px !important;
  }
  .mr-lg-90 {
    margin-right: 90px !important;
  }
  .mt-lg-95 {
    margin-top: 95px !important;
  }
  .mb-lg-95 {
    margin-bottom: 95px !important;
  }
  .ml-lg-95 {
    margin-left: 95px !important;
  }
  .mr-lg-95 {
    margin-right: 95px !important;
  }
  .mt-lg-100 {
    margin-top: 100px !important;
  }
  .mb-lg-100 {
    margin-bottom: 100px !important;
  }
  .ml-lg-100 {
    margin-left: 100px !important;
  }
  .mr-lg-100 {
    margin-right: 100px !important;
  }
}
.font-12 {
  font-size: 12px;
}

@media (min-width: 768px) {
  .font-md-12 {
    font-size: 12px;
  }
}
@media (min-width: 992px) {
  .font-lg-12 {
    font-size: 12px;
  }
}
.font-14 {
  font-size: 14px;
}

@media (min-width: 768px) {
  .font-md-14 {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  .font-lg-14 {
    font-size: 14px;
  }
}
.font-16 {
  font-size: 16px;
}

@media (min-width: 768px) {
  .font-md-16 {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .font-lg-16 {
    font-size: 16px;
  }
}
.font-18 {
  font-size: 18px;
}

@media (min-width: 768px) {
  .font-md-18 {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .font-lg-18 {
    font-size: 18px;
  }
}
.font-20 {
  font-size: 20px;
}

@media (min-width: 768px) {
  .font-md-20 {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .font-lg-20 {
    font-size: 20px;
  }
}
.font-22 {
  font-size: 22px;
}

@media (min-width: 768px) {
  .font-md-22 {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  .font-lg-22 {
    font-size: 22px;
  }
}
.font-24 {
  font-size: 24px;
}

@media (min-width: 768px) {
  .font-md-24 {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .font-lg-24 {
    font-size: 24px;
  }
}
.font-26 {
  font-size: 26px;
}

@media (min-width: 768px) {
  .font-md-26 {
    font-size: 26px;
  }
}
@media (min-width: 992px) {
  .font-lg-26 {
    font-size: 26px;
  }
}
.font-28 {
  font-size: 28px;
}

@media (min-width: 768px) {
  .font-md-28 {
    font-size: 28px;
  }
}
@media (min-width: 992px) {
  .font-lg-28 {
    font-size: 28px;
  }
}
.font-30 {
  font-size: 30px;
}

@media (min-width: 768px) {
  .font-md-30 {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  .font-lg-30 {
    font-size: 30px;
  }
}
.font-32 {
  font-size: 32px;
}

@media (min-width: 768px) {
  .font-md-32 {
    font-size: 32px;
  }
}
@media (min-width: 992px) {
  .font-lg-32 {
    font-size: 32px;
  }
}
.font-34 {
  font-size: 34px;
}

@media (min-width: 768px) {
  .font-md-34 {
    font-size: 34px;
  }
}
@media (min-width: 992px) {
  .font-lg-34 {
    font-size: 34px;
  }
}
.font-36 {
  font-size: 36px;
}

@media (min-width: 768px) {
  .font-md-36 {
    font-size: 36px;
  }
}
@media (min-width: 992px) {
  .font-lg-36 {
    font-size: 36px;
  }
}
.font-38 {
  font-size: 38px;
}

@media (min-width: 768px) {
  .font-md-38 {
    font-size: 38px;
  }
}
@media (min-width: 992px) {
  .font-lg-38 {
    font-size: 38px;
  }
}
.font-40 {
  font-size: 40px;
}

@media (min-width: 768px) {
  .font-md-40 {
    font-size: 40px;
  }
}
@media (min-width: 992px) {
  .font-lg-40 {
    font-size: 40px;
  }
}
.font-42 {
  font-size: 42px;
}

@media (min-width: 768px) {
  .font-md-42 {
    font-size: 42px;
  }
}
@media (min-width: 992px) {
  .font-lg-42 {
    font-size: 42px;
  }
}
.font-44 {
  font-size: 44px;
}

@media (min-width: 768px) {
  .font-md-44 {
    font-size: 44px;
  }
}
@media (min-width: 992px) {
  .font-lg-44 {
    font-size: 44px;
  }
}
.font-46 {
  font-size: 46px;
}

@media (min-width: 768px) {
  .font-md-46 {
    font-size: 46px;
  }
}
@media (min-width: 992px) {
  .font-lg-46 {
    font-size: 46px;
  }
}
.font-48 {
  font-size: 48px;
}

@media (min-width: 768px) {
  .font-md-48 {
    font-size: 48px;
  }
}
@media (min-width: 992px) {
  .font-lg-48 {
    font-size: 48px;
  }
}
.font-50 {
  font-size: 50px;
}

@media (min-width: 768px) {
  .font-md-50 {
    font-size: 50px;
  }
}
@media (min-width: 992px) {
  .font-lg-50 {
    font-size: 50px;
  }
}
.font-52 {
  font-size: 52px;
}

@media (min-width: 768px) {
  .font-md-52 {
    font-size: 52px;
  }
}
@media (min-width: 992px) {
  .font-lg-52 {
    font-size: 52px;
  }
}
.font-54 {
  font-size: 54px;
}

@media (min-width: 768px) {
  .font-md-54 {
    font-size: 54px;
  }
}
@media (min-width: 992px) {
  .font-lg-54 {
    font-size: 54px;
  }
}
.font-56 {
  font-size: 56px;
}

@media (min-width: 768px) {
  .font-md-56 {
    font-size: 56px;
  }
}
@media (min-width: 992px) {
  .font-lg-56 {
    font-size: 56px;
  }
}
.lh-16 {
  line-height: 16px !important;
}

@media (min-width: 768px) {
  .lh-md-16 {
    line-height: 16px !important;
  }
}
@media (min-width: 992px) {
  .lh-lg-16 {
    line-height: 16px !important;
  }
}
.lh-17 {
  line-height: 17px !important;
}

@media (min-width: 768px) {
  .lh-md-17 {
    line-height: 17px !important;
  }
}
@media (min-width: 992px) {
  .lh-lg-17 {
    line-height: 17px !important;
  }
}
.lh-18 {
  line-height: 18px !important;
}

@media (min-width: 768px) {
  .lh-md-18 {
    line-height: 18px !important;
  }
}
@media (min-width: 992px) {
  .lh-lg-18 {
    line-height: 18px !important;
  }
}
.lh-19 {
  line-height: 19px !important;
}

@media (min-width: 768px) {
  .lh-md-19 {
    line-height: 19px !important;
  }
}
@media (min-width: 992px) {
  .lh-lg-19 {
    line-height: 19px !important;
  }
}
.lh-20 {
  line-height: 20px !important;
}

@media (min-width: 768px) {
  .lh-md-20 {
    line-height: 20px !important;
  }
}
@media (min-width: 992px) {
  .lh-lg-20 {
    line-height: 20px !important;
  }
}
.lh-21 {
  line-height: 21px !important;
}

@media (min-width: 768px) {
  .lh-md-21 {
    line-height: 21px !important;
  }
}
@media (min-width: 992px) {
  .lh-lg-21 {
    line-height: 21px !important;
  }
}
.lh-22 {
  line-height: 22px !important;
}

@media (min-width: 768px) {
  .lh-md-22 {
    line-height: 22px !important;
  }
}
@media (min-width: 992px) {
  .lh-lg-22 {
    line-height: 22px !important;
  }
}
.lh-23 {
  line-height: 23px !important;
}

@media (min-width: 768px) {
  .lh-md-23 {
    line-height: 23px !important;
  }
}
@media (min-width: 992px) {
  .lh-lg-23 {
    line-height: 23px !important;
  }
}
.lh-24 {
  line-height: 24px !important;
}

@media (min-width: 768px) {
  .lh-md-24 {
    line-height: 24px !important;
  }
}
@media (min-width: 992px) {
  .lh-lg-24 {
    line-height: 24px !important;
  }
}
.lh-25 {
  line-height: 25px !important;
}

@media (min-width: 768px) {
  .lh-md-25 {
    line-height: 25px !important;
  }
}
@media (min-width: 992px) {
  .lh-lg-25 {
    line-height: 25px !important;
  }
}
.lh-26 {
  line-height: 26px !important;
}

@media (min-width: 768px) {
  .lh-md-26 {
    line-height: 26px !important;
  }
}
@media (min-width: 992px) {
  .lh-lg-26 {
    line-height: 26px !important;
  }
}
.lh-27 {
  line-height: 27px !important;
}

@media (min-width: 768px) {
  .lh-md-27 {
    line-height: 27px !important;
  }
}
@media (min-width: 992px) {
  .lh-lg-27 {
    line-height: 27px !important;
  }
}
.lh-28 {
  line-height: 28px !important;
}

@media (min-width: 768px) {
  .lh-md-28 {
    line-height: 28px !important;
  }
}
@media (min-width: 992px) {
  .lh-lg-28 {
    line-height: 28px !important;
  }
}
.lh-29 {
  line-height: 29px !important;
}

@media (min-width: 768px) {
  .lh-md-29 {
    line-height: 29px !important;
  }
}
@media (min-width: 992px) {
  .lh-lg-29 {
    line-height: 29px !important;
  }
}
.lh-30 {
  line-height: 30px !important;
}

@media (min-width: 768px) {
  .lh-md-30 {
    line-height: 30px !important;
  }
}
@media (min-width: 992px) {
  .lh-lg-30 {
    line-height: 30px !important;
  }
}
.lh-31 {
  line-height: 31px !important;
}

@media (min-width: 768px) {
  .lh-md-31 {
    line-height: 31px !important;
  }
}
@media (min-width: 992px) {
  .lh-lg-31 {
    line-height: 31px !important;
  }
}
.lh-32 {
  line-height: 32px !important;
}

@media (min-width: 768px) {
  .lh-md-32 {
    line-height: 32px !important;
  }
}
@media (min-width: 992px) {
  .lh-lg-32 {
    line-height: 32px !important;
  }
}
.lh-33 {
  line-height: 33px !important;
}

@media (min-width: 768px) {
  .lh-md-33 {
    line-height: 33px !important;
  }
}
@media (min-width: 992px) {
  .lh-lg-33 {
    line-height: 33px !important;
  }
}
.lh-34 {
  line-height: 34px !important;
}

@media (min-width: 768px) {
  .lh-md-34 {
    line-height: 34px !important;
  }
}
@media (min-width: 992px) {
  .lh-lg-34 {
    line-height: 34px !important;
  }
}
.lh-35 {
  line-height: 35px !important;
}

@media (min-width: 768px) {
  .lh-md-35 {
    line-height: 35px !important;
  }
}
@media (min-width: 992px) {
  .lh-lg-35 {
    line-height: 35px !important;
  }
}
.lh-36 {
  line-height: 36px !important;
}

@media (min-width: 768px) {
  .lh-md-36 {
    line-height: 36px !important;
  }
}
@media (min-width: 992px) {
  .lh-lg-36 {
    line-height: 36px !important;
  }
}
.lh-37 {
  line-height: 37px !important;
}

@media (min-width: 768px) {
  .lh-md-37 {
    line-height: 37px !important;
  }
}
@media (min-width: 992px) {
  .lh-lg-37 {
    line-height: 37px !important;
  }
}
.lh-38 {
  line-height: 38px !important;
}

@media (min-width: 768px) {
  .lh-md-38 {
    line-height: 38px !important;
  }
}
@media (min-width: 992px) {
  .lh-lg-38 {
    line-height: 38px !important;
  }
}
.lh-39 {
  line-height: 39px !important;
}

@media (min-width: 768px) {
  .lh-md-39 {
    line-height: 39px !important;
  }
}
@media (min-width: 992px) {
  .lh-lg-39 {
    line-height: 39px !important;
  }
}
.lh-40 {
  line-height: 40px !important;
}

@media (min-width: 768px) {
  .lh-md-40 {
    line-height: 40px !important;
  }
}
@media (min-width: 992px) {
  .lh-lg-40 {
    line-height: 40px !important;
  }
}
.lh-41 {
  line-height: 41px !important;
}

@media (min-width: 768px) {
  .lh-md-41 {
    line-height: 41px !important;
  }
}
@media (min-width: 992px) {
  .lh-lg-41 {
    line-height: 41px !important;
  }
}
.lh-42 {
  line-height: 42px !important;
}

@media (min-width: 768px) {
  .lh-md-42 {
    line-height: 42px !important;
  }
}
@media (min-width: 992px) {
  .lh-lg-42 {
    line-height: 42px !important;
  }
}
.lh-43 {
  line-height: 43px !important;
}

@media (min-width: 768px) {
  .lh-md-43 {
    line-height: 43px !important;
  }
}
@media (min-width: 992px) {
  .lh-lg-43 {
    line-height: 43px !important;
  }
}
.lh-44 {
  line-height: 44px !important;
}

@media (min-width: 768px) {
  .lh-md-44 {
    line-height: 44px !important;
  }
}
@media (min-width: 992px) {
  .lh-lg-44 {
    line-height: 44px !important;
  }
}
.lh-45 {
  line-height: 45px !important;
}

@media (min-width: 768px) {
  .lh-md-45 {
    line-height: 45px !important;
  }
}
@media (min-width: 992px) {
  .lh-lg-45 {
    line-height: 45px !important;
  }
}
.lh-46 {
  line-height: 46px !important;
}

@media (min-width: 768px) {
  .lh-md-46 {
    line-height: 46px !important;
  }
}
@media (min-width: 992px) {
  .lh-lg-46 {
    line-height: 46px !important;
  }
}
.lh-47 {
  line-height: 47px !important;
}

@media (min-width: 768px) {
  .lh-md-47 {
    line-height: 47px !important;
  }
}
@media (min-width: 992px) {
  .lh-lg-47 {
    line-height: 47px !important;
  }
}
.lh-48 {
  line-height: 48px !important;
}

@media (min-width: 768px) {
  .lh-md-48 {
    line-height: 48px !important;
  }
}
@media (min-width: 992px) {
  .lh-lg-48 {
    line-height: 48px !important;
  }
}
.lh-49 {
  line-height: 49px !important;
}

@media (min-width: 768px) {
  .lh-md-49 {
    line-height: 49px !important;
  }
}
@media (min-width: 992px) {
  .lh-lg-49 {
    line-height: 49px !important;
  }
}
.lh-50 {
  line-height: 50px !important;
}

@media (min-width: 768px) {
  .lh-md-50 {
    line-height: 50px !important;
  }
}
@media (min-width: 992px) {
  .lh-lg-50 {
    line-height: 50px !important;
  }
}
.lh-51 {
  line-height: 51px !important;
}

@media (min-width: 768px) {
  .lh-md-51 {
    line-height: 51px !important;
  }
}
@media (min-width: 992px) {
  .lh-lg-51 {
    line-height: 51px !important;
  }
}
.lh-52 {
  line-height: 52px !important;
}

@media (min-width: 768px) {
  .lh-md-52 {
    line-height: 52px !important;
  }
}
@media (min-width: 992px) {
  .lh-lg-52 {
    line-height: 52px !important;
  }
}
.lh-53 {
  line-height: 53px !important;
}

@media (min-width: 768px) {
  .lh-md-53 {
    line-height: 53px !important;
  }
}
@media (min-width: 992px) {
  .lh-lg-53 {
    line-height: 53px !important;
  }
}
.lh-54 {
  line-height: 54px !important;
}

@media (min-width: 768px) {
  .lh-md-54 {
    line-height: 54px !important;
  }
}
@media (min-width: 992px) {
  .lh-lg-54 {
    line-height: 54px !important;
  }
}
.lh-55 {
  line-height: 55px !important;
}

@media (min-width: 768px) {
  .lh-md-55 {
    line-height: 55px !important;
  }
}
@media (min-width: 992px) {
  .lh-lg-55 {
    line-height: 55px !important;
  }
}
.lh-56 {
  line-height: 56px !important;
}

@media (min-width: 768px) {
  .lh-md-56 {
    line-height: 56px !important;
  }
}
@media (min-width: 992px) {
  .lh-lg-56 {
    line-height: 56px !important;
  }
}
.news-image img {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
  object-fit: cover;
}

.social-single {
  display: flex;
  gap: 5px;
  margin-top: 80px;
}
.social-single a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #8cc63f;
  color: #000;
  width: 32px;
  height: 32px;
  border-radius: 3px;
  font-size: 16px;
  transition: all 0.3s ease;
}
.social-single a:hover {
  color: #fff;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2509803922);
  transition: all 0.3s ease;
  background: #000;
}
header .header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header.active {
  background: #000;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}
@media screen and (min-width: 993px) {
  header.active .header__logo {
    width: 230px;
  }
}
@media screen and (max-width: 991px) {
  header .header__logo {
    width: 200px;
  }
}
@media screen and (max-width: 991px) {
  header {
    padding: 10px 0;
  }
}

.main-navigation {
  display: flex;
}
@media screen and (max-width: 991px) {
  .main-navigation {
    display: none;
  }
}
.main-navigation .menu-menu-1-container > ul {
  display: flex;
  gap: 0 35px;
}
.main-navigation .menu-menu-1-container > ul > li {
  position: relative;
  white-space: nowrap;
}
.main-navigation .menu-menu-1-container > ul > li > a {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  font-weight: 700;
  transition: all 0.3s ease;
}
.main-navigation .menu-menu-1-container > ul > li > a:hover {
  color: #8cc63f;
}
.main-navigation .menu-menu-1-container > ul > li.current_page_item a {
  color: #8cc63f;
}
.main-navigation .menu-menu-1-container > ul > li.menu-item-has-children > a::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 8px;
  font-size: 12px;
  display: inline-block;
  vertical-align: middle;
}
.main-navigation .menu-menu-1-container > ul > li:hover .sub-menu-wrapper {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.main-navigation .menu-menu-1-container > ul .toggle {
  display: none;
}
.main-navigation .menu-menu-1-container .sub-menu-wrapper {
  position: absolute;
  padding-top: 40px;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.5 s ease;
}
.main-navigation .menu-menu-1-container .sub-menu-wrapper .sub-menu li a {
  background: #8cc63f;
  padding: 25px 20px;
  font-size: 14px;
  color: #fff;
}

.nav-mobile {
  opacity: 0;
  transform: translateX(-100%);
  position: fixed;
  top: 85px;
  left: 0;
  width: 100%;
  height: 100%;
  background: #8cc63f;
  z-index: 999;
  padding: 30px 0;
  transition: all 0.3s ease;
}
.nav-mobile .menu-menu-1-container > ul {
  padding-top: 30px;
}
.nav-mobile .menu-menu-1-container > ul > li {
  position: relative;
}
.nav-mobile .menu-menu-1-container > ul > li > a {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  transition: all 0.3s ease;
  padding: 10px 20px;
  display: inline-block;
  width: 100%;
}
.nav-mobile .menu-menu-1-container > ul > li > a:hover {
  color: #000;
}
.nav-mobile .sub-menu-wrapper {
  display: none;
}
.nav-mobile .sub-menu-wrapper li a {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 10px 40px;
  width: 100%;
  display: block;
}
.nav-mobile.active {
  opacity: 1;
  transform: translateX(0);
}
.nav-mobile .menu-item-has-children .toggle {
  position: absolute;
  right: 25px;
  height: 10px;
  width: 10px;
  top: 10px;
}
.nav-mobile .menu-item-has-children .toggle::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-size: 20px;
  color: #fff;
  font-weight: 900;
}
.nav-mobile .sub-menu-wrapper {
  display: none;
}
.nav-mobile .sub-menu-wrapper.active {
  display: block;
}

@media screen and (max-width: 767px) {
  .footer__infos {
    margin-top: 60px;
  }
}

.footer__social ul {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}
.footer__social li a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #8cc63f;
  color: #000;
  width: 32px;
  height: 32px;
  border-radius: 3px;
  font-size: 16px;
  transition: all 0.3s ease;
}
.footer__social li:hover a {
  color: #fff;
}

.cop {
  background: #f5f5f5;
  padding: 20px 0;
  font-size: 14px;
}

.button-nav {
  display: none;
  z-index: 999;
}
@media screen and (max-width: 991px) {
  .button-nav {
    display: block;
  }
}
.button-nav .btn-burguer .icon-bar:nth-of-type(2) {
  top: 1px;
}
.button-nav .btn-burguer .icon-bar:nth-of-type(3) {
  top: 2px;
  margin-bottom: 0;
}
.button-nav .btn-burguer .icon-bar:nth-of-type(4) {
  top: 3px;
}
.button-nav .btn-burguer .icon-bar {
  position: relative;
  transition: all 0.3s;
}
.button-nav .btn-burguer.active .icon-bar:nth-of-type(1) {
  top: 12px;
  transform: rotate(45deg);
  background: #8cc63f;
}
.button-nav .btn-burguer.active .icon-bar:nth-of-type(2) {
  background: transparent;
}
.button-nav .btn-burguer.active .icon-bar:nth-of-type(3) {
  top: -8px;
  transform: rotate(-45deg);
  background: #8cc63f;
}

.btn-burguer {
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  float: left;
  z-index: 999999;
  position: relative;
  width: 38px;
}
.btn-burguer .icon-bar {
  background: #8cc63f;
  display: table;
  margin: 0 auto 6px;
  width: 38px;
  height: 4px;
}

/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield; /* 1 */ /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

html {
  font-size: 62.5%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #151515;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  html {
    font-size: 58%;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 50%;
  }
}

body {
  display: inline-block;
  vertical-align: top;
  width: 100% !important;
  max-width: 100%;
  color: #000000 !important;
  height: 100% !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #151515;
  padding-top: 176px;
}
@media screen and (max-width: 991px) {
  body {
    padding-top: 85px;
  }
}
body.lock-nav {
  overflow: hidden;
}

*, *::before, *::after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

*, *:focus, *:active {
  box-shadow: none;
  outline: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

.clearfix {
  clear: both;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none !important;
}

input,
select,
textarea,
button {
  outline: none !important;
}

[data-scroll-animation] {
  opacity: 0;
}
[data-scroll-animation].animated {
  opacity: 1;
}

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

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none !important;
}

ul {
  list-style: none;
}

ul,
p {
  margin: 0;
  padding: 0;
}

.home {
  padding-top: 0;
}
.home header {
  background: transparent;
}
.home header.active {
  background: #000;
}

.slide-fade-up {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out !important;
}

.carousel-hero {
  overflow-x: clip;
}
.carousel-hero .hero {
  height: 100vh;
}
.carousel-hero .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  cursor: pointer;
  background: transparent;
  transition: all 0.3s ease;
  font-size: 24px;
}
@media screen and (max-width: 991px) {
  .carousel-hero .slick-arrow {
    top: 80%;
  }
}
.carousel-hero .slick-arrow:hover {
  background: #8cc63f;
  color: #fff;
  border: 1px solid #8cc63f;
}
.carousel-hero .slick-prev {
  left: -50px;
}
.carousel-hero .slick-next {
  right: -50px;
}
.carousel-hero:hover .slick-prev {
  left: 100px;
}
@media screen and (max-width: 1439px) {
  .carousel-hero:hover .slick-prev {
    left: 10px;
  }
}
.carousel-hero:hover .slick-next {
  right: 100px;
}
@media screen and (max-width: 1439px) {
  .carousel-hero:hover .slick-next {
    right: 10px;
  }
}

.hero {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero .container {
  height: 100%;
}
.hero .hero__inner {
  display: flex;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .hero .hero__inner {
    padding: 0 30px;
  }
}
.hero .hero__left {
  color: #8cc63f;
}
@media screen and (min-width: 993px) {
  .hero .hero__left {
    width: 50%;
  }
}
.hero .hero__left h2 {
  font-size: 60px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -2px;
}
@media screen and (max-width: 767px) {
  .hero .hero__left h2 {
    font-size: 38px;
    line-height: 30px;
  }
}
.hero .hero__left h1 {
  font-size: 120px;
  font-family: "Kalam", cursive;
  text-transform: uppercase;
  letter-spacing: -0.1em;
}
@media screen and (max-width: 767px) {
  .hero .hero__left h1 {
    font-size: 90px;
  }
}
.hero .hero__left p {
  line-height: 38px;
}

.services-listing .services-listing__item .item-wrapper {
  display: flex;
  gap: 30px;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .services-listing .services-listing__item .item-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}
.services-listing .services-listing__item .item-wrapper .icon {
  min-width: -moz-max-content;
  min-width: max-content;
}
.services-listing .services-listing__item .item-wrapper .info .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.05em;
}
.services-listing .services-listing__item .item-wrapper .info .text {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.05em;
  margin-top: 10px;
}

.testimonials-content {
  margin-top: 55px;
}
.testimonials-content .testimonials-carousel {
  position: relative;
}
.testimonials-content .testimonials-carousel:hover .slick-arrow {
  opacity: 1;
  visibility: visible;
}
.testimonials-content .testimonials-carousel .testimonials-item .testimonials-text {
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  line-height: 2;
  position: relative;
  padding: 0 60px;
}
@media screen and (max-width: 767px) {
  .testimonials-content .testimonials-carousel .testimonials-item .testimonials-text {
    padding: 0 15px;
  }
}
.testimonials-content .testimonials-carousel .testimonials-item .testimonials-text::before {
  content: "“";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  position: absolute;
  line-height: 50px;
  display: block;
  font-size: 80px;
  font-weight: 700;
  color: #8cc63f;
}
@media screen and (max-width: 767px) {
  .testimonials-content .testimonials-carousel .testimonials-item .testimonials-text::before {
    display: none;
  }
}
.testimonials-content .testimonials-carousel .testimonials-item .testimonials-name {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 25px;
}
.testimonials-content .testimonials-carousel .testimonials-item .testimonials-name::before {
  content: "— ";
  color: #8cc63f;
}
.testimonials-content .testimonials-carousel .slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}
.testimonials-content .testimonials-carousel .slick-dots li {
  margin: 0 6px;
}
.testimonials-content .testimonials-carousel .slick-dots li button {
  font-size: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #8cc63f;
  background: transparent;
  transition: background 0.3s, border-color 0.3s;
  padding: 0;
  outline: none;
  cursor: pointer;
}
.testimonials-content .testimonials-carousel .slick-dots li.slick-active button {
  background: #8cc63f;
  border-color: #8cc63f;
}
.testimonials-content .testimonials-carousel .slick-arrow {
  position: absolute;
  bottom: -15px;
  z-index: 1;
  height: 50px;
  width: 50px;
  background: #8cc63f;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.testimonials-content .testimonials-carousel .slick-arrow.slick-prev {
  left: 0;
  border-radius: 3px 0 0 3px;
}
.testimonials-content .testimonials-carousel .slick-arrow.slick-next {
  right: 0;
  border-radius: 0 3px 3px 0;
}

#portfolio-filter {
  display: flex;
  gap: 10px 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}
#portfolio-filter button {
  background: none;
  border: none;
  font-size: 18px;
  color: #fff;
  opacity: 0.3;
  font-weight: 700;
  transition: all 0.3s ease;
}
#portfolio-filter button:hover, #portfolio-filter button.active {
  opacity: 1;
}

#portfolio-list {
  overflow-x: hidden;
  margin-top: 40px;
}
#portfolio-list .portfolio-item {
  position: relative;
}
#portfolio-list .portfolio-item:hover .hover-content {
  opacity: 1;
}
#portfolio-list .portfolio-item:hover i {
  transform: translateY(0);
}
#portfolio-list .portfolio-item .image img {
  width: 100%;
}
#portfolio-list .portfolio-item .hover-content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(140, 198, 63, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  opacity: 0;
  transition: all 0.3s ease;
}
#portfolio-list .portfolio-item i {
  transform: translateY(20px);
  transition: all 0.5s ease;
}
#portfolio-list .portfolio-item i:hover {
  color: #000;
}
#portfolio-list .pg-portfolio {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 18px;
  color: #666666;
}
#portfolio-list .pg-portfolio a.current {
  color: #fff;
}
#portfolio-list .pg-portfolio a:hover {
  color: #fff;
}

.portfolio-item {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.portfolio-item.fade-in-right-initial {
  opacity: 0;
  transform: translateX(30px);
}
.portfolio-item.fade-in-right {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.portfolio-item.fade-out-up {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

#portfolio-list {
  transition: opacity 0.3s ease-in-out;
}

.page-portfolio .lista-recenthits {
  margin-top: 50px;
  padding-left: 50px;
}
@media screen and (min-width: 993px) {
  .page-portfolio .lista-recenthits {
    border-left: 1px solid #e5e5e5;
  }
}
@media screen and (min-width: 993px) {
  .page-portfolio #portfolio-list {
    padding: 0 80px;
  }
}
.page-portfolio .pg-portfolio a.current {
  color: #000 !important;
}
.page-portfolio .pg-portfolio a:hover {
  color: #000 !important;
}

.section-2-about {
  padding: 50px 0;
}
.section-2-about .list-team {
  margin-top: 20px;
}
.section-2-about .team-item {
  margin-bottom: 60px;
}
.section-2-about .team-meta_item {
  font-size: 12px;
  font-weight: 700;
  color: #8cc63f;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.section-2-about .team-listing_desc {
  color: #aaa;
}

.lista-work {
  margin-top: 20px;
}

.work-item {
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 70px;
}
.work-item .link {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
/*# sourceMappingURL=style.css.map */
