@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Jost&family=Source+Sans+Pro&display=swap");
h1,
h2,
h3,
h4 {
  font-family: "Jost", sans-serif;
  /* text-transform: capitalize; */
  font-weight: 700;
}

h5 {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: x-large;
  color: #285C4D;
  font-style: italic;
}

button {
  font-family: "Jost", sans-serif;
  color: #444444;
  background: #78BE20;
  border-style: none;
  transition: all 0.3s ease-in-out;
}

button a {
  color: #444444;
  text-decoration: none;
}

button a:hover {
  color: #78BE20;
}

button:hover {
  background-color: #444444;
  color: #78BE20;
}

html {
  background-image: url("../img/endless-constellation2.svg");
  background-attachment: fixed;
  background-repeat: repeat;
}

body {
  margin: 0 auto;
  font-family: "Source Sans Pro", sans-serif;
}

header {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(3, 40px);
  font-family: "Jost", sans-serif;
}

.hcontact {
  grid-column: 1/7;
  grid-row: 1/2;
  background: #285C4D;
  color: white;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  align-content: center;
}

.hcontact img {
  display: none;
}

.fa-brands {
  color: #78BE20;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  padding: 0px 5px;
  font-size: 1.5em;
}

.fa-brands:hover {
  opacity: 0.3;
}

.navbar {
  grid-column: 1/7;
  grid-row: 2/4;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  background: white;
}

nav img {
  object-fit: fill;
  height: auto;
  width: 80px;
  grid-column: 1/2;
  justify-self: center;
}

.menu-icon {
  display: none;
  font-size: 30px;
  cursor: pointer;
  grid-column: 6/7;
  justify-self: end;
}

nav ul {
  grid-column: 2/7;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  justify-items: center;
  column-gap: 10px;
}

/* nav ul li a{
  background: transparent;
  border:none;
  padding: 0.5em 1.5em;
  color: #ffedd3;
  position: relative;
  transition: 0.5s ease;
  cursor: pointer;
}

nav ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #78BE20;
  transition: 0.5s ease;
}

nav ul li a:hover {
  color: #1e1e2b;
  transition-delay: 0.5s;
}

nav ul li a:hover::before {
  width: 100%;
}

nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0;
  width: 100%;
  background-color: #78BE20;
  transition: 0.4s ease;
  z-index: -1;
}

nav ul li a:hover::after {
  height: 100%;
  transition-delay: 0.4s;
  color: aliceblue;
} */

nav ul li:after {
  display: block;
  content: "";
  border-bottom: solid 1px #78BE20;
  padding-bottom: 1%;
  transform: scaleX(0);
  transition: transform 300ms ease-in-out;
}

nav ul li:hover:after {
  transform: scaleX(1);
}

nav ul li a {
  text-decoration: none;
  color: black;
}

ul .active {
  font-weight: 900;
  color: #285C4D;
  border-bottom: solid 1px #78BE20;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 3fr 1fr;
  column-gap: 10px;
  max-height: 600px;
  color: white;
  transition: all 0.3s ease-in-out;
}

.hleft {
  background-image: url(../img/HeroBonosdeCarbono.jpg);
  animation: fade-in-left 0.5s ease-in-out;
}

.hcenter {
  background-image: url(../img/HeroMadera.jpg);
  animation: fade-in-center 0.5s ease-in-out;
}

.hright {
  background-image: url(../img/HeroEmbalaje.jpg);
  animation: fade-in-right 0.5s ease-in-out;
}

@keyframes fade-in-center {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in-right {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade-in-left {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.herocard {
  height: 470px;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.htext {
  grid-row: 3/3;
  margin: 0;
  padding: 0px 20px 20px 20px;
  background: rgba(0, 0, 0, 0.3);
}
.htext h2 {
  font-weight: 400;
}
.htext p {
  font-family: "Jost", sans-serif;
}
.htext button {
  padding: 10px 20px;
  font-weight: 700;
  font-size: 1em;
}

.htext button:hover {
  background: #444444;
  color: #78BE20;
  box-shadow: rgba(255, 255, 255, 0.25) 0px 14px 28px, rgba(255, 255, 255, 0.22) 0px 10px 10px;
}

.hero:has(.hleft:hover) {
  grid-template-columns: 3fr 1fr 1fr;
}

.hero:has(.hcenter:hover) {
  grid-template-columns: 1fr 3fr 1fr;
}

.hero:has(.hright:hover) {
  grid-template-columns: 1fr 1fr 3fr;
}

.slogan {
  height: auto;
  text-align: center;
  font-family: "Jost", sans-serif;
  font-size: xx-large;
  font-style: italic;
  margin: auto;
  border-style: solid;
  margin: 35px;
  animation: fade-in-right 2s ease-in-out;
  color: black;
}
.slogan em {
  color: #78BE20;
  text-decoration: underline;
  text-decoration-color: #78BE20;
  letter-spacing: 4px;
  animation: text-shadow 1.5s ease-in-out infinite;
}

@keyframes text-shadow {
  0% {
    transform: translateY(0);
    text-shadow: 0 0 0 #3c5141, 0 0 0 #2cfcfd, 0 0 0 #2a3932, 0 0 0 #ffffff;
  }
  20% {
    transform: translateY(-10px);
    text-shadow: 0 0.125px 0 #3c5141, 0 0.25px 0 #2cfcfd, 0 -0.125px 0 #2a3932, 0 -0.25px 0 #ffffff;
  }
  40% {
    transform: translateY(5px);
    text-shadow: 0 -0.0625em 0 #3c5141, 0 -0.125em 0 #2cfcfd, 0 0.0625em 0 #2a3932, 0 0.125em 0 #ffffff;
  }
  60% {
    transform: translateY(-0.25px);
    text-shadow: 0 0.03125em 0 #3c5141, 0 0.0625em 0 #2cfcfd, 0 -0.03125em 0 #2a3932, 0 -0.0625em 0 #ffffff;
  }
  80% {
    transform: translateY(0);
    text-shadow: 0 0 0 #3c5141, 0 0 0 #2cfcfd, 0 0 0 #2a3932, 0 0 0 #ffffff;
  }
}
.product_title {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  animation: fade-in-left 2s ease-in-out;
}

.titles {
  color: white;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.3);
  font-size: x-large;
}

.titles1 {
  padding: 100px;
}

.product_title p {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
}

.ptitle1 {
  background-image: url(../img/drone-vista-bosque.jpg);
}

.product_content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  text-align: center;
  justify-content: space-evenly;
  padding: 30px;
}

.cont_card {
  display: grid;
  grid-template-rows: 3fr 1fr 1fr;
  max-height: 400px;
}

.cont_card img {
  border-radius: 100%;
  width: 9rem;
  height: auto;
  justify-self: center;
}

.img_circle {
  grid-row: 1/2;
}

.cont_card h3 {
  color: #285C4D;
}

.content_text p {
  color: black;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
}

.cont_card button {
  padding: 5px 10px;
  grid-row: 3/4;
  font-weight: 800;
}

.cont_card button:hover {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.product_single {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-items: center;
  background-color: rgba(40, 92, 77, 0.4);
}

.product_single img {
  grid-column: 1/2;
  object-fit: contain;
  height: auto;
  width: 70%;
}

.product_single .psingle_text {
  grid-column: 2/4;
  padding: 90px 100px;
  color: white;
  font-size: x-large;
  font-weight: 400;
}

.ptitle2 {
  background-image: url(../img/Bonos_de_Carbono_Fondo.jpg);
  background-position: 50% 20%;
}

.titles2 {
  padding: 100px 100px;
}

.footer_content {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  /* justify-items: center; */
  text-align: center;
  background-color: #F1F8E8;
  padding-top: 20px;
  font-size: small;
  font-family: "Jost", sans-serif;
}

footer img {
  width: auto;
  height: auto;
  max-width: 6rem;
}

/* footer .social img {
  width: auto;
  height: auto;
} */

.footer_content .social {
  /* display: grid; */
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  align-items: center;
  text-align: center;
  grid-column: 2/3;
}

.footer_content .social ul {
  grid-column: 2/4;
}

footer .social ul {
  list-style: none;
  text-align: center;
  font-size: small;
  /* text-transform: capitalize; */
  padding-left: 0px;
}

/* footer .social ul li {
  margin: 10px;
} */

footer .social ul li a {
  color: #285C4D;
  text-decoration: none;
  font-family: "Jost", sans-serif;
  transition: all 0.3s ease-in-out;
}

footer .social ul li a:hover {
  color: #78BE20;
}

footer .social p{
  grid-column: 1 / 4;
}

.footer_content .links {
    grid-column: 3 / 4;
    justify-items:unset;
}

footer .video,
footer .location {
  width: auto;
  height: auto;
  padding: 0px 40px;
}

footer .video p,
footer .location p {
  color: #285C4D;
  text-align: center;
}

.copyright {
  background: #285C4D;
  text-align: center;
  font-family: "Jost", sans-serif;
  padding: 1px;
  color: #F1F8E8;
}

.section {
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.section.active {
  opacity: 1;
  animation: fade-in-left 3s ease-in-out;
}

.timeline {
  display: grid;
  grid-template-columns: 1.4fr 0.2fr 1.4fr;
  grid-template-rows: repeat(7, 1fr);
  grid-template-areas: "image01 time text01" "text02 time image02" "image03 time text03" "text04 time image04" "image05 time text05" "text06 time image06" "image07 time text07";
  padding: 30px;
}

.time {
  grid-area: time;
}

.image01 {
  grid-area: image01;
  background-image: url(../img/PensilvaniaOld.jpg);
}

.image02 {
  grid-area: image02;
  background-image: url(../img/aserrio-antiguo.jpg);
}

.image03 {
  grid-area: image03;
  background-image: url(../img/plantulas.jpg);
}

.image04 {
  grid-area: image04;
  background-image: url(../img/Aserrio.jpg);
}

.image05 {
  grid-area: image05;
  background-image: url(../img/fsc_custodia.jpg);
}

.image06 {
  grid-area: image06;
  background-image: url(../img/HeroBonosdeCarbono.jpg);
}

.image07 {
  grid-area: image07;
  background-image: url(../img/fsc_forestal.jpg);
}

.text01 {
  grid-area: text01;
}

.text02 {
  grid-area: text02;
}

.text03 {
  grid-area: text03;
}

.text04 {
  grid-area: text04;
}

.text05 {
  grid-area: text05;
}

.text06 {
  grid-area: text06;
}

.text07 {
  grid-area: text07;
}

.image01,
.image02,
.image03,
.image04,
.image05,
.image06,
.image07 {
  background-position: center;
  background-size: cover;
}

.image01,
.image03,
.image05,
.image07 {
  margin-left: 80px;
}

.image02,
.image04,
.image06 {
  margin-right: 80px;
}

.text01,
.text03,
.text05,
.text07 {
  padding: 0px 70px 0px 10px;
}

.text02,
.text04,
.text06 {
  padding: 0px 10px 0px 70px;
  text-align: right;
}

.pagetitle {
  background-color: #285C4D;
  color: #F1F8E8;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
  align-items: center;
}

.pagetitle h1 {
  font-size: 4rem;
  padding-left: 50px;
  grid-column: 1/2;
}

.pagetitle p {
  grid-column: 2/-1;
  padding-right: 50px;
}

.circlebtns {
  justify-self: center;
  align-items: center;
  text-align: center;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.titlecontent {
  grid-column: 2/-1;
}

.titlebtn img {
  width: 4rem;
  height: auto;
  justify-self: center;
  background-color: #F1F8E8;
  border-radius: 100%;
  padding: 10px;
  border-style: solid;
  border-color: #78BE20;
  border-width: 10px;
}

.titlebtn2 img {
  width: 4rem;
  height: auto;
  justify-self: center;
  background-color: white;
  border-radius: 100%;
  padding: 10px;
  border-style: solid;
  border-color: #78BE20;
  border-width: 10px;
}

.banner1col {
  text-align: center;
  padding: 70px 300px;
}

.banner1colleft {
  text-align:left;
  padding: 40px 300px;
}

.banner2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  padding: 70px;
}

.banner3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  padding: 0px 50px;
  grid-gap: 30px;
}

.banner6col {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  padding: 20px 50px;
  grid-gap: 20px;
}

.banner7col {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  padding: 20px 50px;
  grid-gap: 10px;
  text-align: center;
}

.banner2col h2 {
  text-align: center;
}

.maderaarquitectonica {
  background-image: url(../img/casa-madera-techo.jpg);
}

.maderarolliza {
  background-image: url(../img/madera_rolliza.jpg);
  padding: 20px;
}

.rollizatext,
.bonostext,
.silviculturatext,
.aserradotext,
.cepilladotext {
  background: rgba(0, 0, 0, 0.4);
}

.bonos {
  background-image: url(../img/bonos-de-carbono.jpg);
  padding: 20px;
}

.maderaarquitectonica,
.maderarolliza,
.bonos,
.silvicultura,
.aprforestal,
.aserrado,
.cepillado {
  color: white;
  background-position: center;
  background-size: cover;
}

li {
  margin-bottom: 8px;
}

.title-estibas {
  font-size: 3rem;
  text-align: center;
  background-color: #285C4D;
  color: #F1F8E8;
  letter-spacing: 0.15em;
  padding: 0px 20px;
}

.title-estibas img {
  width: 300px;
  height: auto;
}

.venta-estibas h3,
.alquiler-estibas h3 {
  text-align: center;
}

.txthistory h3,
.txthistory h4 {
  color: #285C4D;
  text-transform: uppercase;
}

.mision {
  background-image: url(../img/verdiplata.jpg);
  background-position: 25% 17%;
}

.vision {
  background-image: url(../img/buho_andino.jpg);
  background-position: 50% 17%;
  text-align: right;
}

.mision,
.vision,
.fsc {
  color: white;
  align-items: end;
  background-size: cover;
}

.visiontext {
  padding-left: 100px;
  padding-right: 60px;
}

.misiontext {
  padding-right: 100px;
  padding-left: 10px;
  background: rgba(0, 0, 0, 0.3);
}

.pie-imagen {
  font-size: 0.7rem;
}

.valores-icons {
  grid-column: 1/5;
  display: contents;
  text-align: center;
}

.valores-text {
  grid-column: 5/7;
}

.fsc {
  background-image: url(../img/fsc-fondo.jpg);
  height: 200px;
  justify-items: center;
  align-items: center;
}

.fsc-btns {
  display: flex;
  flex-direction: column;
}

.fsc-logo {
  /* width: 50px;
  height: auto; */
  color: white;
}

.fsc-logo img {
  width: 300px;
}

.docs-btn {
  margin: 20px;
  padding: 10px 20px;
  width: 200px;
  align-items: center;
  border-radius: 5%;
  background-color: white;
  opacity: 70%;
}

.filter-logo {
  filter: invert(100%);
}

.silvicultura {
  background-image: url(../img/plantulas.jpg);
  padding: 30px 0px;
}

.proceso-siembra {
  grid-template-columns: repeat(4, 1fr);
  display: grid;
}

.icon-siembra img {
  width: 100px;
}

.aprforestal {
  background-image: url(../img/Pila_Troncos.jpg);
  padding: 30px;
  text-align: center;
}

.icon-apr img {
  width: 60px;
  justify-self: center;
  background-color: white;
  border-radius: 100%;
  padding: 5px;
  border-style: solid;
  border-color: #285C4D;
}

.banner2 {
  padding: 30px;
  text-align: center;
}

.banner2 img {
  grid-column: 1/2;
  justify-self: right;
}

.banner2 p {
  grid-column: 2/4;
}

.aserrado {
  background-image: url(../img/aserrado.jpg);
  padding: 40px 0px;
}

.cepillado {
  background-image: url(../img/imagen-edificio-madera-bosque.jpg);
  padding: 30px 0px;
}

.aserrado p,
.cepillado p {
  grid-column: 1/3;
  padding: 30px 80px;
}

.aserrado h3,
.cepillado h3 {
  grid-column: 3/4;
}

.secado {
  padding: 50px;
}

.secado h3 {
  grid-column: 1/2;
  justify-self: center;
}

.secado p {
  grid-column: 2/4;
  padding-right: 100px;
}

.icon-siembra {
  padding: 10px;
}

.icon-siembra p {
  background-color: #285C4D;
  padding: 20px;
  color: white;
}

.siembra h2 {
  background-color: #78BE20;
  color: white;
  padding: 30px 0px 10px 0px;
  margin-top: -50px;
}

.mtoforestal-txt {
  grid-column: 1/3;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0px 40px;
}

.contacto-dist .formulario {
  background-color: #F1F8E8;
}

.formulario {
  padding: 20px;
  /* display: flex; */
}

.contacto-dist .datos-ubicacion {
  background-color: #285C4D;
  color: #F1F8E8;
}

.datos-ubicacion {
  padding: 30px;
}

.dir2col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 10px;
}

.dir2col img {
  justify-self: center;
  align-self: center;
  width: 1.7rem;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 100%;
  filter: invert(94%) sepia(16%) saturate(121%) hue-rotate(44deg) brightness(100%) contrast(98%);
}

.dir2col p {
  grid-column: 2/4;
  padding-right: 40px;
}

line {
  stroke: rgb(40, 92, 77);
  stroke-width: 2;
}

.time {
  justify-self: center;
  height: 100%;
}

.aprforestal h3 {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 10px;
}

.icon-apr p {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 5px;
}

.contacto-dist {
  font-family: "Jost", sans-serif;
}

form {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 5px;
  padding-bottom: 5px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1em;
  justify-content: left;
}

input,
textarea {
  border-radius: 5px;
  border-style: none;
}

input {
  height: 2rem;
  font-family: "Jost", sans-serif;
}

#name {
  grid-column: 1/2;
  grid-row: 1/2;
}

#email {
  grid-column: 2/3;
  grid-row: 1/2;
}

#phone {
  grid-column: 1/2;
  grid-row: 2/3;
}

#subject {
  grid-column: 1/3;
}

#message {
  grid-column: 1/3;
  height: 6rem;
}

#name,
#email,
#phone,
#subject,
#message {
  width: 100%;
  padding: 5px;
}

.btn-submit {
  grid-column: 1/2;
  width: 50%;
  background-color: #78BE20;
}

.btn-submit:hover {
  background-color: #285C4D;
  color: white;
}

.certificacion-fsc {
  justify-items: center;
  align-items: center;
  column-gap: 1.5rem;
}

.cert-custodia,
.cert-forestal {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-items: center;
}

.docs-btnmain {
  font-size: medium;
  border-radius: 5px;
  padding: 2rem;
}

.docs-btnmain:hover {
  background-color: #78BE20;
  color: #444444;
}

.docs-btnlnk {
  margin: 20px;
  padding: 10px 20px;
  width: 200px;
  align-items: center;
  border-radius: 5px;
  background-color: white;
  opacity: 70%;
  border-style: solid;
}

.title-career h1 {
  font-size: 3rem;
}

.form-career {
  padding: 2rem;
  background-color: #F1F8E8;
}

.valorescr p {
  font-size: larger;
}

.valorescr_content {
  max-width: 1024px;
  width: 100%;
  padding: 0 4%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.val_card {
  width: 100%;
  max-width: 300px;
  min-width: 200px;
  height: 250px;
  /* background-color: #285C4D; */
  margin: 10px;
  border-radius: 10px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.24);
  border: 2px solid rgba(7, 7, 7, 0.12);
  font-size: 16px;   
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.3s ease;
}

.icon {
  margin: 0 auto;
  width: 100%;
  height: 80px;
  max-width:80px;
  background: #78BE20;
  /* border: 2px solid #285C4D; */
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  transition: all 0.8s ease;
  background-position: 0px;
  background-size: 200px;
}

.material-icons.md-18 { font-size: 18px; }
.material-icons.md-24 { font-size: 24px; }
.material-icons.md-36 { font-size: 36px; }
.material-icons.md-48 { font-size: 48px; }

.val_card .title_val {
   width: 100%;
   margin: 0;
   text-align: center;
   margin-top: 30px;
   color: #285C4D;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 4px;
}

.val_card .text_val {
  width: 80%;
  margin: 0 auto;
  font-size: 13px;
  text-align: center;
  margin-top: 20px;
  font-weight: 200;
  letter-spacing: 2px;
  opacity: 0;
  max-height:0;
  transition: all 0.3s ease;
}

.val_card:hover {
  height: 450px;
}

.val_card:hover .info {
  height: 90%;
}

.val_card:hover .text_val {
  transition: all 0.3s ease;
  opacity: 1;
  max-height:600px;
}

.val_card:hover .icon {
  background-position: -120px;
  transition: all 0.3s ease;
}

.val_card:hover .icon i {
  background: #285C4D;
  -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
  opacity: 1;
  transition: all 0.3s ease;
}

.mequipos, .vacantes{
  padding-top: 40px;
  text-align: center;
}

.equipostrabajo {
  height: 550px;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/********* Info cards with icon ***********/
.info-card {
  width: 300px;
  height: 500px;
  border-radius: 30px;
  margin: 30px;
  box-shadow: 0px 0px 20px -10px black;
  position: relative;
}

.first {
  overflow:hidden;
  color: white;
}

.info-title {
  position: absolute;
  padding: 15px 20px;
  text-shadow: 0 0 2px rgba(0,0,0,0.4);
}

.info-title h2 {
  font-size: 30px;
}

.info {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 30px;
  text-align: justify;
}

.first .title-nobg h2 {
  font-size: 30px;
}

.first .title-nobg {
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  text-shadow: 0 0 5px black, 0 0 1px black;
  transition: background 1s;
}

.first .info-o {
  background: #285C4D;
  clip-path: inset(92% 0% -23% 0% round 30% 30%);
  transition: clip-path 1s;
  opacity: 0.8;
  padding-top: 55%;
}

.first .info-o .info-icon {
  position: absolute;
  bottom: 1%;
  left:0;
  right: 0;
  text-align: center;
  letter-spacing: 10px;
  transition: opacity .5s;
}
.first .info-o:hover+.title-nobg {background: rgba(0,0,0,0.5);}
.first .info-o:hover {clip-path: inset(24.5% 0% 0% 0%);}
.first .info-o:hover .info-icon {opacity: 0;}

.vacantes {
  background-color: #285C4D;
  color: #F1F8E8;
  padding: 30px;
}

.vacante {
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
  background: rgba(255, 255, 255, 0.1) ;
  border-radius: 10px;
}

.vacante:hover{
  box-shadow: 0 3px 10px rgb(255 255 255 / 0.2);
  background: rgba(0, 0, 0, 0.1) ;
}

.vacante img {
  object-fit: fill;
  height: auto;
  width: 180px;
  grid-column: 2/3;
  justify-self: center;
  border-radius: 20px 0px;
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

.vacante-content {
  grid-column: 1/-1;
  text-align: left;
  font-size: small;
}

.vacante-content button {
  padding: 10px 20px;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  body {
    font-size: medium;
}
  .content {
     /* padding-top: 0px; */
     flex-direction: column;
  }

  .slogan, .product_title, .product_content, .product_single {
    margin: 20px;
}

  .herocard {
    flex-direction: column;
}

  .pagetitle {
    display: grid;
  }

  .pagetitle p {
    padding: 30px;
  }

  .product_single img {
    width: 90%;
    padding-left: 60px;
  }

  .banner1col {
    padding: 20px;
  }

  .misiontext {
    padding-right: 30px;
  }

  .visiontext {
    padding-left: 0px;
    padding-right: 90px;
  }

  .contacto-dist {
    display: block;
  }

  .formulario {
    display: block;
  }

  form{
    gap: 0em;
  }

  .banner1colleft {
    padding: 40px;
  }

  .valorescr_content {
    padding: 0px;
  }

  .equipostrabajo {
    height: auto;
    display: grid;
  }

  .lista-vacantes {
    grid-template-columns: repeat(2, 1fr);
    padding: 0px;
    grid-gap: 10px;
  }

  .vacante {
    display: block;
    padding: 30px;
  }

  .footer_content {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer_content .social {
    grid-column: 1 / 2;
  }

  .footer_content .links {
    grid-column: 2 / 3;
  }
}

/*# sourceMappingURL=style.css.map */


/* Estilos CSS para dispositivos con pantalla de hasta 600px de ancho */
@media only screen and (max-width: 600px) {

  body{
    font-size: small;
  }

  header
  {
    display:block;
  }

  .hcontact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    justify-items: center;
    color:#444444;
    background-color: #285C4D5F;
  }

  .hcontact .email
  , .hcontact .phone
  , .hcontact .socialh{
    grid-column: 2 /4;
    margin: 0;
  }

  .hcontact .email {
    padding-top: 10px;
  }

  .hcontact .fa-brands {
    color: #285C4D;
  }

  .hcontact img {
    max-width: 5rem;
    display: grid;
    grid-column: 1 / 2;
    grid-row: 2/ 4;
    padding-bottom: 20px;
  }

  .menu-icon {
    display: block;
    grid-column: 6/7;
    grid-row: 3/4;
    padding-bottom: 30px;
  }
  
  nav ul {
    display: none;
    grid-column: 1/7;
    grid-template-columns: 1fr;
    row-gap: 10px;
    justify-items: start;
  }
  
  nav ul.show {
    display: grid;
  }

  nav img {
    display: none;
  }

  .hero {
    display: block;
    max-height:fit-content;
  }

  .herocard {
      flex-direction: column;
  }

  .slogan {
    font-size: large;
  }

  .titles1
  , .titles2
  , .product_single .psingle_text {
    padding: 20px;
  }

  .titles,
  .product_single .psingle_text {
    font-size: large;
  }

.product_content {
  display: block;
  padding: 0px;
}

.product_single img {
  width: 100%;
  padding-left: 0px;
}

.cont_card{
  padding-top: 30px;
}

.cont_card
, .product_single
, .pagetitle {
  display: block;
}

.pagetitle{
  margin: 0px;
  padding: 10px;
}

.pagetitle h1 {
  margin: 0px;
  padding-top: 10px;
}

.pagetitle p {
  padding: 40px;
}

  .content {
      padding: 10px;
  }

  .slogan, .product_title, .product_content, .product_single {
      margin: 10px;
  }

  .circlebtns {
    grid-template-columns: repeat(2, 1fr);
  }

  .banner1col
  , .banner2col
  , .banner3col{
    display: block;
  }

  .banner1col {
    padding: 20px;
  }

  .estibas{
    background-color: #285C4D;
    color:#F1F8E8
  }

  .title-estibas {
    padding: 0px;
  }

  .title-estibas h2 {
    margin: 10px;
  }

  .venta-estibas {
    padding-top: 20px;
  }

  .venta-estibas h3{
    margin: 0px;
  }

  .alquiler-estibas{
    padding-bottom: 20px;
  }

  .time{
    display: none;
  }

  .timeline{
    display: block;
  }

  .text01 {
    background-image: url(../img/PensilvaniaOld-op.jpg);
  }

  .text02 {
    background-image: url(../img/aserrio-antiguo-op.jpg);
  }

  .text03 {
    background-image: url(../img/plantulas-op.jpg);
  }

  .text04 {
    background-image: url(../img/Aserrio-op.jpg);
  }

  .text05 {
    background-image: url(../img/fsc_custodia-op.jpg);
  }

  .text06 {
    background-image: url(../img/HeroBonosdeCarbono-op.jpg);
  }

  .text07 {
    background-image: url(../img/fsc_forestal-op.jpg);
  }

  .text01
  ,.text02
  ,.text03
  ,.text04
  ,.text05
  ,.text06
  ,.text07 {
    background-position: center;
    background-size: cover;
    margin-top: 10px;
  }

.image01,
.image03,
.image05,
.image07 {
  margin-left: 20px;
}

.image02,
.image04,
.image06 {
  margin-right: 20px;
}

.text01,
.text03,
.text05,
.text07 {
  padding: 20px;
}

.text02,
.text04,
.text06 {
  padding: 20px;
  text-align: right;
}

.mision
, .vision {
  display: grid;
}

.mision {
  padding-right: 0px;
  padding-left: 10px;
  background-position: 40%;
}

.misiontext {
  padding-right: 50px;
}

.visiontext {
  padding: 0px 35px;
}

.vision {
  padding-left: 0px;
  padding-right: 10px;
  background-position: 35%;
}

.banner6col {
  grid-template-columns: repeat(2, 1fr);
}

.valores-text {
  grid-column: 1 / 3;
  text-align: center;
}

.fsc {
  /* display: grid;
  padding: 50px; */
  height: auto;
}

.docs-btn {
  width: 160px;
}

.fsc img {
  width: 250px;
}

.pagetitle h1{
  font-size: 3rem;
}

.proceso-siembra {
  grid-template-columns: repeat(2, 1fr);
}

.mtoforestal {
  padding: 0px 50px 40px;
}

.mtoforestal-txt {
  padding: 10px 30px;
}

.banner7col {
  grid-template-columns: repeat(2, 1fr);
}

.aserrado p
, .cepillado p{
  padding: 10px 30px;
}

.contacto-dist {
  padding: 35px;
}

.formulario
, .datos-ubicacion{
  padding: 15px;
}

form {
  display: block;
}

input{
  margin-top: 10px;
}

.dir2col p{
  padding-right: 0px;
}

.dir2col img {
  width: 1.2rem;
  padding: 12px;
}

.valorescr_content {
  display: grid;
}

.equipostrabajo {
  height: auto;
}

.vacantes {
  padding: 20px 0px;
}

.lista-vacantes {
  padding: 0px;
}

  footer img {
    width: auto;
    height: auto;
    max-width: 6rem;
  }

  .footer_content
  , .footer_content .links {
    display: block;
  }

  .footer_content .links {
    display: block;
    text-align: center;
  }

  .footer_content .social{
    padding-left: 0px;
  }

  .footer_content .social ul {
    text-align: center;
    list-style: none;
    padding: 0px;
    font-size: larger;
  }

  footer .video
  , footer .location
  {
    padding: 10px 0px;
  }
}
