@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

:root {
  --custom-color-darker-green: #1D6818;
  --custom-color-dark-green: #597e03;
  --custom-color-green: #6F9D04;
  --custom-color-light-green: #9fce04;
  --custom-color-lighter-green: #88B06A;
  --custom-color-dark: #404040;
  --custom-color-light-grey: #cecccc;
  --custom-color-dark-grey: #615B57;
  --custom-color-purple: #7040B3;
  --custom-color-light-purple: #673ca3;
  --custom-color-yellow: #FFF301;
  --custom-color-light-yellow: #ffb014;
  --custom-color-orange: #FFAB56;
  --custom-color-dark-orange: #c28243;
  --custom-color-blue: #074067;
  --custom-color-primary-blue: #1497DF;
  --custom-color-primary-dark-blue: #106ea0;
}

body,
html {
  font-family: 'Poppins', sans-serif;
}

input[name=sender] {
  /* bait input */
  /*
       don't use display:none or visibility:hidden
       cause that will not fool the bot
  */
  position: absolute;
  left: -2000px;
}

.ajax-load {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
}

.social-icons-link:hover {
  text-decoration: none;
}

.social-icons-link img:hover {
  filter: brightness(120%);
}

.content-centered {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.no-padding-sm {
  padding: 0;
}

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

@media (max-width: 600px) {
  .content-centered {
    position: relative;
  }

  .pd-bottom-sm-0 {
    padding-bottom: 0 !important;
  }

  .sm-reverse {
    display: flex;
    flex-direction: column-reverse;
  }
}


/* CONTAINER */
.section-container {
  padding-top: 30px;
  padding-bottom: 30px;
}

/* TEXTS */
.text-dark {
  color: #000 !important;
}

.text-green {
  color: var(--custom-color-green) !important;
}

.text-dark-green {
  color: var(--custom-color-dark-green) !important;
}

.text-light-gray {
  color: var(--custom-color-light-grey) !important;
}

.text-dark-gray {
  color: var(--custom-color-dark) !important;
}

/* NAVBAR */
#navBar {
  height: 135px;
  z-index: 2;
}

.navbar__brand {
  width: 135px;
}

.navbar__brand_footer{
  width: 165px;
}

#navBar .nav-link {
  font-weight: 300;
  transition: all ease .2s;
  color: var(--custom-color-blue);
  font-size: 22px;
  text-transform: capitalize !important;
  margin: auto 10px;
}

#navBar .active,
#navBar .nav-link:hover {
  /* text-decoration: underline; */
  /* text-underline-offset: 10px; */
  text-decoration-thickness: 3px;
  color: var(--custom-color-primary-blue);
}

@media (max-width: 1024px) {
  #navBar {
    height: auto;
  }
}

/* HEADER */
.page-header {
  margin-top: -140px;
  width: 100%;
}

.page-header img {
  width: 100%;
}

.page-header-title {
  font-size: 50px;
}

@media (max-width: 700px) {
  .page-header {
    margin-top: auto;
  }

  .page-header-title {
    font-size: 30px !important;
  }
}

/* HOME */
.home-features {
  position: relative;
  margin-top: -150px;
  z-index: 100;
}

.features-section .card-header h2,
.home-features .card-header h2 {
  font-size: 22px;
}

.features-section .card-body,
.home-features .card-body {
  height: 170px;
  background-color: rgba(255, 255, 255, 0.75);
}

/* HOME CAROUSEL */
#homeCarousel {
  position: relative;
}

#homeCarousel img {
  width: 100%;
}

#homeCarousel .carousel-caption {
  position: static;
}

#homeCarousel .carousel-caption>p {
  /* max-width: 700px; */
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, .5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel.carousel-fade .carousel-item {
  display: block;
  opacity: 0;
  transition: opacity ease-out .5s;
}

.carousel.carousel-fade .carousel-item.active {
  opacity: 1 !important;
}

.carousel-caption h3 {
  font-size: 30px;
}

@media (max-width: 700px) {
  #homeCarousel {
    position: relative;
    margin-top: auto !important;
    height: auto !important;
  }

  .carousel-caption h3 {
    font-size: 18px;
  }

  .home-features {
    margin-top: 30px;
  }

  .home-features .card-body {
    background-color: #f1ebeb;
  }

  .mobile-hide {
    display: none !important;
  }

  .bg-dark-transp-custom {
    background-color: #343a40 !important;
  }

  .bg-light-transp-custom {
    background-color: #ffff !important;
  }

}

/* ARTICLES */
.article-intro>p,
.article-content>p,
.article-content p {
  font-size: 18px !important;
}

.article-content h2 {
  font-size: 20px !important;
}

.articles-more-title {
  font-size: 10px !important;
}

/* LINKS */
.custom-link-white {
  color: #ffff;
  transition: all ease-in .2s;
}

.custom-link-white:hover {
  color: var(--custom-color-green);
  text-decoration: none !important;
}

/* BUTTONS */
.btn-green {
  background-color: var(--custom-color-green);
  border-color: var(--custom-color-green) !important;
  color: white;
}

.btn-green:hover {
  background-color: var(--custom-color-dark-green);
  border-color: var(--custom-color-dark-green) !important;
}

.btn-orange {
  background-color: var(--custom-color-orange);
  border-color: var(--custom-color-orange) !important;
  color: white;
}

.btn-orange:hover {
  background-color: var(--custom-color-dark-orange);
  border-color: var(--custom-color-dark-orange) !important;
}

.btn-blue {
  background-color: var(--custom-color-primary-blue);
  border-color: var(--custom-color-primary-blue) !important;
  color: white;
}

.btn-blue:hover {
  background-color: var(--custom-color-primary-dark-blue);
  border-color: var(--custom-color-primary-dark-blue) !important;
}



/* BACKGROUND COLOR */
.bg-dark-transp-custom {
  background-color: rgba(0, 0, 0, .75);
}

.bg-light-transp-custom {
  background-color: rgba(255, 255, 255, 1);
}

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

.bg-green-transp-custom {
  background-color: rgba(141, 183, 0, 0.75) !important;
}

.bg-green {
  background-color: var(--custom-color-green) !important;
}

.bg-light-green {
  background-color: var(--custom-color-light-green) !important;
}

.bg-light-grey {
  background-color: var(--custom-color-light-grey) !important;
}

.bg-custom-dark {
  background-color: var(--custom-color-dark);
}

.bg-primary-blue {
  background-color: var(--custom-color-primary-blue) !important;
}


/* FOOTER */
#mainFooter h2 {
  font-size: 18px;
}

#mainFooter .copyright {
  font-size: 14px;
}

/* CONTACT */
.contact-infos {
  margin-top: 90px;
}

/* SERVING PLACE */
.home-section-services h2,
.serving-place h2 {
  font-size: 18px;
}

.home-section-services{
  transition: ease .2s;  
}

.home-section-services:hover{
  transform: scale(1.1);
  z-index: 99;
}

.services-list h2 {
  font-size: 24px;
}


@media (max-width: 700px) {
  .contact-infos {
    margin-top: auto;
  }
}

/* SITE MAP */
.site-map-link {
  font-size: 20px;
}

/*WIDGETS*/
.widget-wrapper {
  position: fixed;
  z-index: 222;
  bottom: 20px;
}

.widget-position-right {
  right: 4px;
}

.widget-position-left {
  left: 4px;
}

.widget-wrapper li {
  margin: 5px 2px;
}

.widget-container {
  width: 50px;
  cursor: pointer;
  text-align: center;
  padding: 10px;
}

.widget-container:hover {
  box-shadow: 0 2px 10px black !important;
}

.widget-container {
  font-size: 2rem !important;
  color: white;
  padding: 0;
}