.row {
  width: 100%;
}

/* Nav */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  position: absolute;
  top: 45px;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 1000;
}

.logo img {
  max-height: 40px;
}

.menu {
  display: flex;
  gap: 20px;
}

.menu,
.dropdown-menu {
  list-style-type: none;
}

.menu li a,
.dropdown-menu li a {
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}

.menu li a:hover {
  color: #0082f3;
}

.social-media-nav {
  display: flex;
  gap: 12px;
}

.social-media-nav img {
  width: 100%;
  height: 100%;
}

.menu-button {
  display: none;
  color: #fff;
  cursor: pointer;
}

.dropdown-menu {
  display: none;
  background-color: #f2f2f2;
  height: 0;
  text-align: center;
  position: absolute;
  top: 60px;
  right: 0;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1000;
  transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown-menu.open {
  height: 300px;
}

.dropdown-menu li {
  width: 100%;
  padding: 10px;
}

.dropdown-menu li a {
  color: #1aa4df;
  width: 100%;
}

.dropdown-menu li a:hover {
  color: #0079e3;
}

.social-icons-dropdown > a > img {
  background-color: #1aa4df;
  border-radius: 3px;
}

@supports (backdrop-filter: blur(10px)) {
  .dropdown-menu {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
  }

  .dropdown-menu li a {
    color: #f2f2f2;
  }

  .social-icons-dropdown > a > img {
    background-color: transparent;
  }
}

@media screen and (max-width: 1024px) {
  .menu,
  .social-media-nav,
  .social-media-nav img {
    display: none;
  }

  .menu-button,
  .dropdown-menu {
    display: block;
  }

  .dropdown-menu {
    left: 0;
    width: unset;
    margin: 2rem;
    margin-top: 0;
  }
}

@media screen and (max-width: 600px) {
  .navbar {
    top: 100px;
  }

  .dropdown-menu {
    top: 140px;
  }
}

@media screen and (max-width: 400px) {
  .logo img {
    max-height: 50px;
    width: 150px;
  }
}

#sustainability {
  font-family: "Poppins", serif;
}

#sustainability .navbar {
  position: sticky;
}

.dropdown-menu {
  display: none !important;
}

.dropdown-menu.open {
  height: auto !important;
  display: block !important;
}

#sustainability .hero {
  height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  top: -4rem;
}

#sustainability .hero .container {
  z-index: 2;
}

#sustainability .hero::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.248);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#sustainability .hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px;
  object-fit: cover;
}

#sustainability h1 {
  color: white;
  font-weight: 800;
  font-size: 2.7rem;
  text-transform: uppercase;
  padding-right: 4rem;
}

@media screen and (max-width: 992px) {
  #sustainability h1 br {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  #sustainability h1 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 575px) {
  #sustainability h1 {
    text-align: center;
    padding-right: 0px;
    font-size: 1.8rem;
  }
}

.about-sustainability {
  padding-top: 2rem;
  padding-bottom: 5rem;
}

.about-sustainability h2 {
  color: #969696;
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 26px;
}

.about-sustainability .item {
  text-align: center;
}

.about-sustainability .circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.5rem;
}

.about-sustainability .item.one .circle,
.about-sustainability .item.one a:hover {
  background-color: #23b471;
}

.about-sustainability .item.two .circle,
.about-sustainability .item.two a:hover {
  background-color: #b5d029;
}

.about-sustainability .item.three .circle,
.about-sustainability .item.three a:hover {
  background-color: #88d47a;
}

.about-sustainability .circle img {
  width: 60px;
  height: auto;
  fill: white;
}

.about-sustainability .item a {
  text-decoration: none;
  padding: 0.3rem 1.4rem;
  border-radius: 30px;
  display: inline-block;
  margin-top: 0.5rem;
  text-transform: uppercase;
  font-weight: 700;
  transition: 0.3s ease-out;
}

.about-sustainability .item.one a {
  color: #23b471;
  border: 1px solid #23b471;
}

.about-sustainability .item.two a {
  color: #b5d029;
  border: 1px solid #b5d029;
}

.about-sustainability .item.three a {
  color: #88d47a;
  border: 1px solid #88d47a;
}

.about-sustainability .item a:hover {
  color: white;
  transition: 0.3s ease-out;
}

@media screen and (max-width: 768px) {
  .about-sustainability .item {
    margin-bottom: 2rem;
  }

  .about-sustainability {
    padding-top: 1.5rem;
    padding-bottom: 1rem;
  }
}

@media screen and (max-width: 575px) {
  .about-sustainability {
    padding-top: 0rem;
  }

  .about-sustainability h2 {
    font-size: 1.4rem;
  }
}

/* Counter section */

.counter-section {
  background-image: url(../images/sustentabilidad/bg-forest.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 4rem;
  padding-bottom: 5rem;
  color: white;
}

@media screen and (min-width: 992px) {
  .counter-section {
    background-attachment: fixed;
  }
}

.counter-section h2 {
  text-align: center;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  border: 1px solid #22b571;
  max-width: max-content;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
  font-weight: 900;
  text-transform: uppercase;
}

.counter-section p {
  text-align: center;
  line-height: 24px;
  margin-bottom: 0px;
  min-height: 70px;
}

.counter-section p span {
  font-size: 2.9rem;
  font-weight: 900;
}

.counter-section p .info {
  font-size: 1.5rem;
}

.counter-section h3 {
  text-align: center;
  color: #22b571;
  text-transform: uppercase;
  font-weight: 800;
  line-height: 23px;
  font-size: 1.5rem;
}

.counter-section h3 span {
  font-size: 1rem;
  text-transform: none;
}

@media screen and (max-width: 768px) {
  .counter-section .counter {
    margin-bottom: 2rem;
  }

  .counter-section p {
    min-height: 0px;
  }
}

/* Cycle section */

.cycle {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #22b571;
  color: white;
  position: relative;
}

.cycle img {
  width: 100%;
}

.paper-divider {
  position: absolute;
  top: -3rem;
  left: 0;
  height: 80px;
  object-fit: cover;
  width: 100% !important;
  display: block;
  padding-bottom: 0px !important;
}

@media screen and (max-width: 992px) {
  .cycle img {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    padding-bottom: 2rem;
  }

  .cycle {
    text-align: center;
  }

  .paper-divider {
    max-width: 100% !important;
  }
}

@media screen and (max-width: 575px) {
  .cycle h2 {
    font-size: 1.4rem;
  }
}

/* Impacto ambiental */

#impacto-ambiental {
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

#impacto-ambiental h2 {
  text-align: center;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  border: 1px solid #69b474;
  max-width: max-content;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #69b474;
}

#impacto-ambiental .item img {
  height: 100%;
  object-fit: cover;
}

#impacto-ambiental .info {
  padding: 1rem 1.5rem;
  border: 1px solid gainsboro;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#impacto-ambiental .info h3 {
  color: #69b474;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 28px;
  margin-bottom: 0rem;
}

#impacto-ambiental .info span {
  color: #969696;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 28px;
}

#impacto-ambiental .info p {
  color: #969696;
  margin-top: 0.5rem;
  margin-bottom: 0px;
}

#impacto-ambiental .column-info-wrapper .title span {
  display: block;
  width: 40px;
  height: 40px;
  background-image: url(../images/sustentabilidad/quote.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}

#impacto-ambiental .column-info-wrapper .title h3 {
  text-align: center;
  color: #69b474;
  margin-bottom: 2rem;
  font-weight: 900;
  font-size: 2.3rem;
  line-height: 40px;
}

#impacto-ambiental .column-info-wrapper p {
  color: #969696;
}

@media screen and (max-width: 768px) {
  #impacto-ambiental .item .row {
    margin-left: auto;
    margin-right: auto;
  }
}

.green-leaf,
.leaf,
.small-leaf {
  position: absolute;
}

.green-leaf.right {
  top: 35%;
  right: -20px;
  width: 20vw;
  animation: floatUpDownRight 7s ease-in-out infinite alternate;
}

.leaf.right-top {
  top: -40px;
  right: -10px;
  width: 20vw;
}

.leaf.right-bottom {
  bottom: 20px;
  right: -10px;
  width: 20vw;
}

.green-leaf.left {
  top: 20%;
  left: -20px;
  width: 22vw;
  animation: floatUpDownLeft 7s ease-in-out infinite alternate;
  animation-delay: 1s;
}

.leaf.left-top {
  top: 40px;
  left: -10px;
  width: 15vw;
}

.leaf.left-bottom {
  bottom: 40px;
  left: -10px;
  width: 20vw;
}

.small-leaf.right {
  top: 65px;
  right: 25%;
  width: 120px;
}

.small-leaf.left {
  top: -45px;
  left: 20%;
  width: 12vw;
}

@media screen and (min-width: 1500px) {
  .leaf.right-top {
    top: -67px;
    width: 16vw;
  }

  .green-leaf.right {
    width: 18vw;
  }

  .leaf.right-bottom {
    width: 16vw;
  }

  .green-leaf.left {
    top: 15%;
    width: 20vw;
  }

  .leaf.left-top {
    top: 40px;
    width: 14vw;
  }

  .leaf.left-bottom {
    bottom: -3px;
    width: 16vw;
  }
}

@media screen and (max-width: 600px) {
  .green-leaf.left {
    top: 8%;
  }

  .green-leaf.right {
    top: 8%;
  }

  .small-leaf.right {
    top: 23px;
    right: 37%;
    width: 82px;
  }
}

@media screen and (max-width: 992px) {
  #impacto-ambiental .column-info-wrapper p,
  #impacto-social .column-info-wrapper p {
    margin-bottom: 0px;
  }
}

@keyframes floatUpDownRight {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
  100% {
    transform: translateY(0) rotate(-2deg);
  }
}

@keyframes floatUpDownLeft {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-5px) rotate(-5deg);
  }
  100% {
    transform: translateY(0) rotate(2deg);
  }
}

/* Impacto social */

#impacto-social {
  background-color: #bccf3e;
  background-image: url(../images/sustentabilidad/social-impact.svg);
  background-size: 200px;
  background-repeat: no-repeat;
  background-position: -80px center;
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

#impacto-social h2 {
  text-align: center;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  border: 1px solid white;
  max-width: max-content;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  color: white;
}

#impacto-social .item img {
  height: 100%;
  object-fit: cover;
}

#impacto-social .info {
  padding: 1rem 1.5rem;
  border: 1px solid white;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#impacto-social .info h3 {
  color: #8b992c;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 28px;
  margin-bottom: 0rem;
}

#impacto-social .info span {
  color: white;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 28px;
}

#impacto-social .info p {
  color: white;
  margin-top: 0.5rem;
  margin-bottom: 0px;
}

#impacto-social .column-info-wrapper .title span {
  display: block;
  width: 40px;
  height: 40px;
  background-image: url(../images/sustentabilidad/quote-2.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}

#impacto-social .column-info-wrapper .title h3 {
  text-align: center;
  color: #8b992c;
  margin-bottom: 2rem;
  font-weight: 900;
  font-size: 2.3rem;
  line-height: 40px;
}

#impacto-social .column-info-wrapper p {
  color: white;
}

#impacto-social .owl-theme .owl-dots .owl-dot span {
  background-color: #8b992c;
}

#impacto-social .owl-theme .owl-dots .owl-dot.active span {
  background-color: #e9f895;
}

@media screen and (min-width: 1400px){
  #impacto-social {
    background-size: 250px;
  }
}

@media screen and (max-width: 768px) {
  #impacto-social .item .row {
    margin-left: auto;
    margin-right: auto;
  }
}

.bg-paper-2 {
  position: absolute;
  width: 100%;
  max-height: 90%;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 992px) {
  .bg-paper-2 {
    height: 500px;
    object-fit: cover;
    height: auto;
  }

  #impacto-social {
    background-image: none;
  }
}

@media screen and (max-width: 768px) {
  .bg-paper-2 {
    height: 700px;
  }
}

/* CTA */
#cta-sustainability{
  padding-top: 5rem;
  padding-bottom: 7rem;
  background-image: url(../images/sustentabilidad/bg-cta.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: white;
  position: relative;
  overflow: hidden;
}

/* #cta-sustainability::before {
  content: '';
  background-image: url(../images/sustentabilidad/shape-cta.svg);
  width: 100%;
  height: 700px;
  display: block;
  position: absolute;
  top: 3rem;
  object-fit: cover;
  background-position: center;
} */

#cta-sustainability .row{
  position: relative;
}

#cta-sustainability h2{
  font-weight: 900;
  padding-top: 80px;
  background-image: url(../images/sustentabilidad/tree.svg);
  background-repeat: no-repeat;
  background-size: 60px;
  background-position: center top;
  text-transform: uppercase;
}

@media screen and (min-width: 992px){
  #cta-sustainability{
    background-attachment: fixed;
  }
}

.cta-footer{
  background-color: #4372AC;
  padding-bottom: 4rem;
  position: relative;
}

.cta-footer .blue-shape {
  width: 100%;
  height: 178px;
  object-fit: cover;
  position: absolute;
  top: -87px;
  z-index: 1;
}

.cta-footer .cta-logo {
  max-width: 200px;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
  transform: translateY(-29px);
}

.img-cycle{
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  animation: rotateSlow 30s linear infinite;
}

@media screen and (min-width: 992px){
  .cycle p{
    padding-right: 0.5rem;
  }
}

@keyframes rotateSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

#cta-sustainability a{
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
}