html, body {
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--tense-primary, #2D9B0D);
}

a:hover {
  color: var(--tense-primary-hover, #48B926);
  text-decoration: none;
}

a:active {
  color: var(--tense-primary, #2D9B0D) !important;
  outline: none;
  text-decoration: none;
}

h1 {
  color: var(--tense-primary, #2D9B0D);
}

.btn {
  font-size: 1.2rem;
}

.btn-primary {
  background-color: var(--tense-primary, #2D9B0D);
  border: none;
  border-radius: 10px;
  outline: none !important;
}

.btn-primary:hover {
  background-color: var(--tense-primary-hover, #48B926);
}

.btn-primary:focus, .btn-primary:active {
  border: none !important;
  outline: none !important;
  background-color: var(--tense-primary, #2D9B0D) !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  color: inherit !important;
}

.btn-sm {
  font-size: 1rem;
}

button, button:focus {
  outline: none !important;
}

.section {
  margin-top: 3rem;
}

.section__border-bottom {
  border-bottom: 2px solid var(--tense-primary, #2D9B0D);
}

.section h2 {
  color: var(--tense-primary, #2D9B0D);
  margin-bottom: 20px;
}

.white {
  color: #fff !important;
}

.color-primary {
  color: var(--tense-primary, #2D9B0D);
}

.cursor-default {
  cursor: default !important;
}

@media screen and (min-width: 992px) {
  /*
        Dropdown on hover
    */
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

@media screen and (max-width: 991px) {
  .dropdown-menu {
    background: none;
    border: none;
    color: #fff;
  }
  .dropdown-item {
    color: #fff;
    font-size: 1.2rem;
  }
  .dropdown-item:hover {
    background: none;
    color: var(--tense-primary, #2D9B0D);
  }
  .navbar__socials {
    margin-bottom: 1rem;
  }
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.navbar {
  z-index: 999;
  position: relative;
  top: 0;
  padding: 1rem 0 2rem 0;
}

.navbar__bg-black-transparent {
  background: rgba(0, 0, 0, 0.8);
}

.navbar__logo {
  height: 100px;
  width: 100%;
}

.navbar__animated-icon {
  width: 30px;
  height: 20px;
  position: relative;
  margin: 0px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

.navbar__animated-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
  background: #e3f2fd;
}

.navbar__animated-icon span:nth-child(1) {
  top: 0px;
}

.navbar__animated-icon span:nth-child(2), .navbar__animated-icon span:nth-child(3) {
  top: 10px;
}

.navbar__animated-icon span:nth-child(4) {
  top: 20px;
}

.navbar__animated-icon.open span:nth-child(1) {
  top: 11px;
  width: 0%;
  left: 50%;
}

.navbar__animated-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.navbar__animated-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.navbar__animated-icon.open span:nth-child(4) {
  top: 11px;
  width: 0%;
  left: 50%;
}

.navbar__socials {
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

.navbar__socials a {
  color: #fff;
}

.navbar__socials a:hover {
  color: var(--tense-primary, #2D9B0D);
}

.nav-link {
  text-transform: uppercase;
  color: #fff;
  font-size: 1.2rem;
}

.dropdown-item:active {
  background: none;
}

#breadcrumbs {
  border-radius: 5px;
  margin: 10px 0 2rem 0;
  padding: 5px;
  border: 1px solid #e3e3e3;
}

#breadcrumbs a {
  color: #000;
}

#breadcrumbs a:hover {
  color: var(--tense-primary, #2D9B0D);
}

#breadcrumbs .breadcrumb_last {
  color: var(--tense-primary, #2D9B0D);
}

.homepage {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.homepage__box {
  background: rgba(0, 0, 0, 0.7);
  border-radius: 5px;
  border: 5px solid rgba(255, 255, 255, 0.6);
  padding: 20px;
  color: #fff;
  margin: 5rem 0;
}

.homepage__box > h2 {
  font-size: 2.6rem;
}

@media screen and (max-width: 767px) {
  .homepage__box > h2 {
    font-size: 1.6rem;
  }
}

.homepage__box > p {
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .homepage__box > p {
    font-size: 1.2rem;
  }
}

.homepage__box-btn {
  font-size: 1.6rem;
}

.homepage__section2 {
  background: #F6F6F6;
  padding: 3rem 0 5rem 0;
}

.homepage__section2__box {
  background: #fff;
  padding: 20px 30px 60px 30px;
  border-radius: 10px;
  border: 1px solid #d9d9d9;
  position: relative;
}

.homepage__section2__box > button {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: -20px;
}

.homepage__section2__box__number {
  font-size: 3rem;
  color: var(--tense-primary-alpha, rgba(45, 155, 13, 0.3));
  margin-right: 10px;
}

.homepage__section3-fa-icon {
  font-size: 5rem;
  color: var(--tense-primary, #2D9B0D);
}

.homepage__section3-fa-icon:not(:first-child) {
  margin-top: 2rem;
}

.homepage__section4__image-overlay {
  top: 0;
  left: 0;
  background: var(--tense-primary-opacity, rgba(212, 46, 56, 0.7));
  opacity: 0;
  color: #fff;
  font-size: 1.4rem;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.homepage__section4__image:hover .homepage__section4__image-overlay {
  opacity: 0.9;
  cursor: pointer;
}

.homepage__section5 {
  text-align: center;
  position: relative;
  background-size: cover !important;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
}

.homepage__section5-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  background-color: var(--tense-primary, #d42e38);
  opacity: var(--tense-overlay-opacity, 0.75);
}

.homepage__section5-content {
  padding: 5rem 0;
  position: relative;
  z-index: 100;
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
}

.homepage__section5-content h2 {
  font-weight: 700;
}

.footer {
  background-color: #4e4e4e;
  color: #fff;
  padding: 2rem 0;
}

.footer__column-header {
  font-size: 1.2rem;
  border-bottom: 1px solid grey;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

.footer i {
  min-width: 25px;
}

.footer ul.menu {
  list-style-type: none;
  padding: 0;
}

.footer ul.menu li {
  position: relative;
  padding-left: 0.8rem;
}

.footer ul.menu li:before {
  content: "\203A";
  position: absolute;
  top: -0.5rem;
  left: 0;
  font-weight: 600;
  font-size: 1.5rem;
}

.footer a {
  color: #fff;
}

.footer a:hover {
  color: var(--tense-primary, #2D9B0D);
}

.footer__made-by a {
  color: var(--tense-primary, #2D9B0D);
}

.offer__box {
  padding-top: 1rem;
}

.offer__box i {
  font-size: 5rem;
  color: var(--tense-primary, #2D9B0D);
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.offer__box:hover i {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.article-overlay {
  border: 1px solid #e6e6e6;
  box-shadow: 0px 0px 20px -5px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 0px 20px -5px rgba(0, 0, 0, 0.2);
}

.article-overlay__featured-image {
  height: 200px;
}

.article-overlay__featured-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.article-overlay__entry-content {
  padding: 5px;
  background: #f7f7f766;
  border-top: 1px solid #e6e6e6;
}

.post-1 {
  display: block;
  min-height: inherit;
  color: #8f8f8f;
  padding: 1.2rem;
  background-color: #f8f9fa;
}

.post-title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 0.5rem;
}

.post-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 1rem;
  line-height: 1.5;
}

.post-description {
  margin-bottom: 1rem;
  font-size: inherit;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

.post-image img {
  height: 55%;
  width: 55%;
  margin-right: 1.2rem;
  float: left;
}

.post-2 {
  margin: 1rem;
  font-size: 1.2rem;
}

.link-1 {
  float: left;
}

.link-2 {
  float: right;
}

.article-overlay {
  margin-top: 1rem;
}

.col-12.col-md-4.mb-3 {
  display: table-cell;
}

#sidebar1 h2 {
  font-size: 1.5rem;
}

#sidebar1 .wp-block-categories {
  list-style: none;
}

#sidebar1 .wp-block-categories > li {
  position: relative;
  font-size: 1.2rem;
}

#sidebar1 .wp-block-categories > li:before {
  content: "\203A";
  position: absolute;
  top: -0.35rem;
  left: -1rem;
  font-weight: 600;
  font-size: 1.5rem;
}
/*# sourceMappingURL=style.css.map */