:root {
  --bs-primary: $primary;
}

::-moz-selection {
  color: black;
  background: #bedec7;
}

::selection {
  color: black;
  background: #bedec7;
}

html {
  overflow-x: hidden;
}

body {
  background-color: #030303 !important;
  font-family: "Inter", sans-serif !important;
  color: white !important;
  overflow: hidden;
}

textarea {
  min-height: 3em;
}

.p-relative {
  position: relative;
}

.btn-primary {
  background-color: #bedec7 !important;
  color: black !important;
  border: 0 !important;
}
.btn-primary:hover {
  background-color: #9ccdaa !important;
}

.text-primary {
  color: #bedec7 !important;
}

.text-danger {
  color: rgb(255, 180, 180) !important;
}

a {
  color: #bedec7;
}
a:hover {
  color: #9ccdaa;
}

img {
  pointer-events: none;
}

.navbar {
  position: fixed;
  width: 100%;
  padding-top: 1em;
  padding-bottom: 1em;
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.navbar .navbar-nav {
  align-items: end;
}
.navbar .navbar-nav .nav-link:hover {
  color: white;
}
.navbar .navbar-nav .nav-link.active {
  color: black;
  background-color: #bedec7;
}

section {
  min-height: 70vh;
  display: flex !important;
  align-content: center;
  flex-wrap: wrap;
  padding: 2.5em 0;
}

#logo {
  height: 36px;
}

#headline {
  min-height: 90vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(assets/img/image-2.jpg);
  animation-name: MOVE-BG;
  animation-duration: 100s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  background-size: cover;
}
#headline h1 {
  margin: auto;
}
#headline.ipes {
  animation-name: unset;
  background-size: cover;
  background-position: 25%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(assets/img/bg_ipes_n.png) !important;
}

@keyframes MOVE-BG {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}
.display-5 {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-6 {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.falling-leaves {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.falling-leaves::after {
  content: "";
  width: 100%;
  height: 200px;
  background: #030303;
  background: linear-gradient(180deg, transparent 0%, #030303 100%);
  position: absolute;
  bottom: 0;
  opacity: 0.5;
}

.leaf-scene {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  transform-style: preserve-3d;
}
.leaf-scene div {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: url(./assets/img/leaf.svg) no-repeat;
  background-size: 100%;
  transform-style: preserve-3d;
}

#mission p {
  opacity: 0.8;
}
#mission .card {
  height: 330px;
  background-image: url(./assets/img/house2.jfif);
  background-size: cover;
  background-position: right;
  border: 0;
  background-color: transparent;
  opacity: 0.8;
  transition: opacity 0.3s;
}
#mission .card:hover {
  opacity: 1;
}

#advantages p {
  padding: 0;
  margin: 0 !important;
}
#advantages ul {
  padding-left: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
#advantages ul li {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.2;
  padding: 0.75em 1.2em;
  display: inline-flex;
}
#advantages ul li span {
  display: none;
}

#portfolio {
  flex-direction: column;
}

#contact .plant {
  background-image: url(./assets/img/plant.svg);
  background-repeat: no-repeat;
  height: 200px;
  width: 80px;
  display: inline-block;
  background-size: contain;
  transform: rotate(0deg);
  transition: transform 1s ease-out;
  transform-origin: bottom center;
  z-index: 1;
}
#contact .plant:nth-child(2) {
  width: 60px;
  height: 180px;
  position: absolute;
  bottom: 0px;
  left: 0px;
}
#contact .plant:nth-child(2).is-inViewport {
  transform: rotate(35deg);
}
#contact .plant:nth-child(3) {
  width: 50px;
  height: 150px;
  position: absolute;
  bottom: 0px;
  left: 0px;
}
#contact .plant:nth-child(3).is-inViewport {
  transform: rotate(80deg);
}
#contact .right {
  transform: scaleX(-1);
}
#contact .card {
  background-color: transparent;
  border: 0;
  border-radius: 0;
}
#contact img {
  opacity: 0.9;
  transition: opacity 300ms;
}
#contact img:hover {
  opacity: 1;
}
#contact .form-control {
  background-color: transparent;
  color: white;
  border-color: #eee !important;
}
#contact .form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(190, 222, 199, 0.25) !important;
  border-color: #bedec7 !important;
}

#image-banner {
  opacity: 0.2;
  height: 300px;
  overflow: hidden;
  align-items: center;
  display: flex;
}

#benefits > div {
  padding: 3em 2em;
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  #benefits > div {
    padding: 1em 0.5em;
  }
}
#benefits > div * {
  transition: all 0.3s ease-out;
  transform: scale(0.8);
}
#benefits > div:hover {
  background-color: rgba(255, 255, 255, 0.1);
  opacity: 1;
}
#benefits > div:hover * {
  transform: scale(0.9);
}

#sustentability .bg {
  background-image: url(assets/img/image-1.jpg);
}

#durability .bg {
  background-image: url(assets/img/image-4.jpg);
}

#economic .bg {
  background-image: url(assets/img/image-5.jpg);
}

#sustentability .bg,
#durability .bg,
#economic .bg {
  background-position: center;
  background-size: cover;
}
#sustentability section,
#durability section,
#economic section {
  max-width: 80%;
}
@media screen and (max-width: 768px) {
  #sustentability section,
  #durability section,
  #economic section {
    max-width: 90%;
  }
}

section.project-features img {
  height: 250px;
  width: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 1024px) {
  #headline.ipes {
    padding: 0;
  }
  #headline.ipes > div {
    display: flex;
    height: 90vh;
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
  }
}/*# sourceMappingURL=styles.css.map */