@import "../css/normalize.css";
@import "../assets/fontawesome/css/all.min.css";
@import url("https://fonts.googleapis.com/css2?family=Zen+Antique&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Varela+Round&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Old+Standard+TT&display=swap");
/*----- Media queries----- */
/*Small*/
/*Medium*/
/*Large*/
/*X-Large*/
/*XX-Large*/
/*----- IF-COLORS -----*/
/*----- @mixin -----*/
/*----- GLOBAL -----*/
a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Libre Baskerville", serif;
  margin: 0 0 10px;
  font-weight: 300;
}

/*---- navbar-brand ---*/
.navbar .navbar-brand img {
  width: 200px;
  height: auto;
}

@media (min-width: 576px) {
  .navbar .navbar-brand img {
    width: 300px;
    height: auto;
  }
}
@media (min-width: 768px) {
  .navbar .navbar-brand img {
    width: 350px;
    height: auto;
  }
}
/*NAVBAR - main menu*/
.navbar .navbar-nav .nav-item {
  text-transform: uppercase;
  padding: 0 20px;
}

.navbar-nav .nav-link.active,
.navbar-nav .show > .nav-link {
  border-radius: 0px;
}

.navbar li a.hover-underline-animation {
  display: inline-block;
  position: relative;
}

.navbar li a.hover-underline-animation:after {
  content: "";
  position: absolute;
  width: 100%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #972f2f;
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
  -webkit-transition: -webkit-transform 0.25s ease-out;
  transition: -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}

.navbar li a.hover-underline-animation:hover:after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
  color: #0d6efc;
}

.dropdown:hover .dropdown-menu {
  display: block;
  min-width: 1rem;
}

/*PROJECT TITLE AT THE HOME PAGE*/
.project-container {
  height: 100vh;
  background-image: url("../img/buldozer-home.jpg");
  background-color: rgba(81, 81, 81, 0.232);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}
.project-container .title-bg {
  min-height: 100%;
}
.project-container .title-bg .title-text {
  position: absolute;
  top: 100px;
  left: 0;
}
.project-container .title-bg .title-text h2 {
  text-align: center;
  color: rgb(28, 28, 28);
  line-height: 2rem;
  font-size: 30px;
  font-weight: bold;
  padding-bottom: 0px;
  margin: 0;
}
.project-container .title-bg .title-text h1 {
  text-align: center;
  color: #0003b7;
  font-size: 40px;
  font-weight: 600;
  padding: 10px;
  line-height: 2.3rem;
  text-shadow: 2px 0px 2px rgb(255, 254, 254);
}
.project-container .title-bg .title-text .intro p {
  font-size: 1.2rem;
  color: rgb(223, 221, 221);
  padding: 10px;
  font-style: italic;
  background-color: rgba(0, 0, 0, 0.652);
  border-radius: 5px;
}

@media (min-width: 576px) {
  .project-container {
    background-color: rgba(81, 81, 81, 0.232);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .project-container .title-bg {
    background-color: rgba(0, 0, 0, 0.28);
  }
  .project-container .title-bg .title-text {
    position: absolute;
    top: 20%;
    left: 0;
  }
  .project-container .title-bg .title-text h2 {
    color: rgb(255, 255, 255);
    text-align: left;
    line-height: 4rem;
    font-size: 50px;
    font-weight: 600;
    margin-left: 50px;
    text-shadow: 2px 0px 2px rgb(0, 0, 0);
  }
  .project-container .title-bg .title-text h1 {
    color: rgb(255, 255, 255);
    text-align: left;
    font-size: 90px;
    font-weight: 600;
    margin-left: 50px;
    line-height: 5rem;
    text-shadow: 2px 0px 2px rgb(0, 0, 0);
  }
  .project-container .title-bg .title-text .intro p {
    font-size: 1.5rem;
    padding: 10px;
    margin-left: 50px;
    padding-left: 20px;
    line-height: 1.7rem;
    background-color: rgba(0, 0, 0, 0.4);
    border-left: 30px solid #ba6435;
  }
}
.header-image {
  min-height: 250px;
  /* background-image: url("../img/bulldozer.webp"); */
  background-color: #cccccc;
  width: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.header-image .header-mask {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 0%;
  left: 0%;
  background-color: rgba(15, 100, 0, 0.832);
  /* transform: translate(-50%, -50%); */
}
.header-image .header-mask .title {
  padding: 10px;
}
.header-image .header-mask .title h1 {
  font-size: 1.2rem;
  font-weight: normal;
  color: rgb(221, 221, 221);
  line-height: 1.4rem;
}

@media (min-width: 576px) {
  .header-image {
    min-height: 700px;
    /* background-image: url("../img/bulldozer.webp"); */
    background-color: #cccccc;
    width: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }
  .header-image .header-mask {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 0%;
    left: 0%;
    /* transform: translate(-50%, -50%); */
  }
  .header-image .header-mask .title h1 {
    font-size: 3.5rem;
    line-height: 3.5rem;
  }
}
@media (min-width: 768px) {
  .header-image .title h1 {
    font-size: 3rem;
  }
}
@media (min-width: 992px) {
  .header-image .title h1 {
    font-size: 4rem;
  }
}
@media (min-width: 1200px) {
  .header-image .title h1 {
    font-size: 4rem;
  }
}
@media (min-width: 1400px) {
  .header-image {
    height: 582px;
  }
  .header-image .title h1 {
    font-size: 4rem;
  }
}
.team .subtitle-team {
  background: rgba(117, 82, 0, 0.381);
  color: #002801;
}
.team .image {
  padding-bottom: 10px;
}
.team .image img {
  border: 2px solid #ba6434;
}
.team .name {
  font-family: "Libre Baskerville", serif;
  color: #ba6434;
  font-size: 25px;
  margin-bottom: 0;
}
.team .title {
  margin-bottom: 30px;
}

.more-team {
  background-color: rgba(117, 82, 0, 0.381);
  color: #1f1b19;
}

/*FOOTER*/
footer {
  padding: 50px 0;
  background: #2f2f2f;
}
footer .footer-container .title {
  color: #b1b1b1;
  padding-left: 20px;
}
footer .footer-container .fa-caret-right {
  color: #b1b1b1;
  padding-right: 10px;
}
footer .footer-container a {
  color: rgb(187, 100, 53);
}
footer .footer-container ul li a:hover {
  color: #fff;
}
footer .footer-container .social-icons a i {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
footer .footer-container .social-icons a:hover i {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}
footer .footer-container .social-icons .fa-brands {
  color: #b1b1b1;
}
footer .footer-container .social-icons .fa-facebook:hover {
  color: #3b5998;
}
footer .footer-container .social-icons .fa-twitter:hover {
  color: #00acee;
}
footer .footer-container .social-icons .fa-linkedin:hover {
  color: #0e76a8;
}
footer .footer-container .social-icons .fa-instagram:hover {
  color: #3f729b;
}
footer .footer-container .colaborator p {
  color: #eeeeee;
}

/* AFTER FOOTER */
.after-footer {
  background: #000000;
  text-align: center;
}

.after-footer p {
  color: #fff;
  font-size: 12px;
}

/*DROP CAP*/
.drop-cap:first-letter {
  color: #ba6434;
  float: left;
  font-family: "Arvo";
  font-size: 70px;
  line-height: 60px;
  padding: 5px 5px 5px 0;
}

/*HOME BYLINE*/
.home-byline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 100%;
  height: 200px;
  background-color: rgb(25, 60, 156);
}
.home-byline .name,
.home-byline p,
.home-byline a {
  font-size: 20px;
  font-weight: normal;
  color: #ededed;
}
.home-byline .date {
  padding-bottom: 15px;
}
.home-byline .date p {
  color: rgb(184, 183, 183);
  font-size: 18px;
  display: inline;
  margin-bottom: 30px;
}
.home-byline .share-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 10px;
}
.home-byline .share-button a {
  padding: 10px;
  color: #e9e9e9;
}
.home-byline .share-button a:hover {
  text-decoration: none;
  color: #ba6434;
}

@media (min-width: 576px) {
  .home-byline {
    height: 350px;
  }
  .home-byline .name,
  .home-byline p,
  .home-byline a {
    font-size: 30px;
  }
  .home-byline .date p {
    font-size: 18px;
  }
  .home-byline .share-button a i {
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  .home-byline .share-button a:hover i {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}
/*BYLINE*/
.byline {
  padding-top: 30px;
}
.byline .name {
  font-size: 18px;
}
.byline p a {
  color: #161616;
}
.byline .date {
  color: #8c8c8c;
  padding-bottom: 15px;
}
.byline .date p {
  display: inline;
  margin-bottom: 30px;
}
.byline .share-button .fa-brands {
  color: #ba6435 !important;
}
.byline .share-button a i {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.byline .share-button a:hover i {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}
.byline .share-button .fa-facebook:hover {
  color: #3b5998;
}
.byline .share-button .fa-twitter:hover {
  color: #00acee;
}

@media (min-width: 576px) {
  .byline {
    padding-top: 100px;
    padding-left: 100px;
  }
  .byline .name {
    font-size: 18px;
  }
  .byline .date p {
    display: inline;
    margin-bottom: 30px;
  }
}
/*BREAKER*/
.breaker {
  font-size: 20px;
  min-width: 20px;
}
.breaker img {
  width: 70px;
  height: auto;
}

@media (min-width: 576px) {
  .breaker {
    min-width: 20px;
  }
}
/*LANDING-STORY-CONTAINER HOME PAGE*/
.landing-story-container {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 200px;
}
.landing-story-container .story-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(239, 6, 6, 0);
}
.landing-story-container .story-card .desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  text-align: center;
}
.landing-story-container .story-card .desc .sub-title {
  font-size: 20px;
  line-height: 1em;
  text-shadow: 1px 1px 2px rgb(0, 0, 0);
  color: rgb(255, 255, 255);
}
.landing-story-container .story-card .desc .story-button {
  margin-top: 30px;
  text-align: center;
}
.landing-story-container .story-card .desc .story-button .btn {
  color: rgb(46, 46, 46);
  background-color: rgba(255, 255, 255, 0.4);
  border: 0;
}
.landing-story-container .story-card .desc .story-button .btn:hover {
  background-color: rgb(198, 143, 15);
  color: rgb(32, 16, 16);
}

@media (min-width: 576px) {
  .landing-story-container {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 583px;
  }
  .landing-story-container .story-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: left;
    height: 100%;
    width: 600px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
  }
  .landing-story-container .story-card .desc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px;
    text-align: center;
  }
  .landing-story-container .story-card .desc .sub-title {
    font-size: 50px;
    line-height: 1em;
    text-shadow: 1px 1px 2px rgb(0, 0, 0);
    color: rgb(255, 255, 255);
  }
  .landing-story-container .story-card .desc .btn {
    color: rgb(46, 46, 46);
  }
}
/*STORY-CONTAINER AT THE FOOTER*/
.footer-story-container .huambuno,
.footer-story-container .shiguacocha,
.footer-story-container .tzawata {
  background-color: rgb(222, 136, 7);
  border-radius: 10px;
}
.footer-story-container .effect {
  min-height: 100%;
  background-color: rgb(194, 194, 194);
  border-radius: 10px;
  padding-bottom: 30px;
}
.footer-story-container .effect img {
  border-radius: 10px 10px 0 0;
}
.footer-story-container .effect .sub-title {
  padding: 10px;
  font-size: 20px;
  line-height: 1em;
  color: rgb(12, 12, 12);
}

@media (min-width: 576px) {
  .footer-story-container .huambuno,
  .footer-story-container .shiguacocha,
  .footer-story-container .tzawata {
    margin-right: 30px;
    border-radius: 10px;
  }
  .footer-story-container .effect {
    min-height: 100%;
    background-color: rgb(15, 100, 0);
    border-radius: 10px;
    padding-bottom: 0px;
  }
  .footer-story-container .effect img {
    border-radius: 10px 10px 0 0;
  }
  .footer-story-container .effect .sub-title {
    padding: 20px 10px;
    font-size: 30px;
    line-height: 1em;
    color: rgb(221, 221, 221);
  }
}
/*SUBTITLES*/
.subtitle {
  font-size: 22px;
  font-weight: 600;
}

@media (min-width: 576px) {
  .subtitle {
    margin-left: -50px;
  }
}
.lang-switcher .fi {
  border-radius: 100%;
  font-size: 25px;
}

.dropdown-toggle:after {
  display: none;
}

/*ARTICLE-IMAGES*/
.article-image {
  margin-left: 0px;
  margin-right: 0px;
}

@media (min-width: 576px) {
  .article-image {
    padding: 0;
    margin: 50px 0 30px 0;
    margin-left: -50px;
    margin-right: -50px;
  }
}
/*ARTICLE-WRAP-IMAGES*/
.article-wrap-image figure {
  float: right;
  width: 40%;
  padding: 0 0 0 10px;
}
.article-wrap-image figure img {
  width: 100%;
  float: right;
}

@media (min-width: 576px) {
  .article-wrap-image figure {
    float: right;
    width: 50%;
    padding: 20px;
  }
  .article-wrap-image figure img {
    width: 100%;
    float: right;
  }
}
figcaption {
  font-size: 15px;
  color: rgb(87, 87, 87);
}
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
.arrow {
  position: absolute;
  top: 90%;
  left: 50%;
  margin-left: -20px;
}
.arrow .fa-solid {
  font-size: 30px;
  border-radius: 50%;
  background-color: rgba(15, 14, 14, 0.54);
  padding: 10px 15px;
}

.bounce {
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

.fade {
  opacity: 0;
  -webkit-transition: 1s all ease-out;
  transition: 1s all ease-out;
}

.white-popup {
  background: #63c909;
  padding: 20px;
  margin: 20px auto;
}

.washing-soil {
  min-width: 100%;
  margin: 50px 0;
  background-color: #7BC6DD;
}

.oro-numeralia {
  margin: 50px 0;
  padding: 20px;
  border-top: 50px solid #7BA9AC;
  border-bottom: 50px solid #7BA9AC;
}

@media (min-width: 576px) {
  .oro-numeralia {
    margin: 50px 0;
    padding: 20px;
    border-top: 50px solid #7BA9AC;
    border-bottom: 50px solid #7BA9AC;
  }
}
.parallax-window {
  min-height: 200px;
  background: transparent;
}

@media (min-width: 576px) {
  .parallax-window {
    min-height: 800px;
    background: transparent;
  }
}
/* ZOOM IMAGE WHEN HOVER OVER */
.zoom-image-effect {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.zoom-image-effect:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}