/*///////////////////////// GENERALES /////////////////////////*/
* {
  scroll-behavior: smooth;
}

/* Fonts */
@font-face {
  font-family: "Obviously";
  src: url("../fonts/Obviously-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Obviously";
  src: url("../fonts/Obviously-Semibold.otf") format("opentype");
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Obviously";
  src: url("../fonts/Obviously-Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
}

body {
  font-family: "Poppins", sans-serif;
  color: #16302b;
  background-color: white;
}

.poppins {
  font-family: "Poppins", sans-serif;
}

.custom-font {
  font-family: "Obviously";
}

img {
  width: 100%;
}

a:hover {
  text-decoration: none;
}

strong,
b {
  font-weight: 700;
}

.main-wrapper {
  overflow: hidden !important;
  position: relative;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.yellow {
  color: #e3b23c;
}

.green {
  color: #006635;
}

.fs-18 {
  font-size: 18px;
}

.no-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.no-wrap {
  white-space: nowrap;
}

.rotate {
  transform: scaleX(-1);
}

.underline {
  text-decoration: underline;
}

/*///////////////////// BOTONES QUE PISAN BS //////////////////*/
.btn {
  border-radius: 35px;
  font-size: 16px;
  font-weight: 500;
  align-items: center;
  justify-content: center;
  padding: 10px 25px;
  transition: 0.3s !important;
  text-decoration: none !important;
  width: fit-content;
  position: relative;
}

.btn-primary {
  border: 1px solid #e3b23c;
  color: #fff;
  background-color: #e3b23c;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
  border: 1px solid #d49d1c;
  color: #fff;
  background-color: #d49d1c;
  box-shadow: none !important;
}

/* FLOAT BTN */
.wsp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 130px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0px 10px 15px -7px rgba(0, 0, 0, 0.52);
  -webkit-box-shadow: 0px 10px 15px -7px rgba(0, 0, 0, 0.52);
  -moz-box-shadow: 0px 10px 15px -7px rgba(0, 0, 0, 0.52);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.wsp-float:hover {
  text-decoration: none;
  color: white;
  background-color: #18b853;
}

/*///////////////////////// HEADER /////////////////////////*/
header {
  position: absolute;
  z-index: 10;
  width: 100%;
}

/* Navegador principal */
.navbar-brand img {
  height: 80px;
  transition: 0.3s;
}

.navbar-toggler {
  padding: 0;
}

.navbar-collapse {
  justify-content: center;
  display: flex;
}

.navbar {
  padding: 1rem 2rem;
  background-color: white;
}

.navbar-nav {
  justify-content: end;
  width: 100%;
  align-items: center;
}

.nav-link {
  font-size: 18px;
  font-weight: 300;
  color: #16302b !important;
  margin-right: 1.2rem !important;
  margin-left: 1.2rem !important;
  position: relative;
  padding: 6px 0px !important;
}

.nav-link:not(.nav-link-d)::after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0rem;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  right: 0;
  margin: 0 auto;
  position: absolute;
  background: #006635;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

.nav-link:hover:after,
.nav-item.active .nav-link:after {
  width: 20px;
}

.nav-link-btn {
  border-radius: 26px;
  font-size: 18px;
  font-weight: 600;
  margin-right: 0 !important;
  margin-left: 1rem !important;
  padding: 12px 20px;
  transition: all 150ms ease-out;
  text-decoration: none !important;
  color: #fff;
  background-color: #006635;
}

.nav-link-btn:hover,
.nav-link-btn:focus,
.nav-link-btn:active,
.nav-link-btn:not(:disabled):not(.disabled).active,
.nav-link-btn:not(:disabled):not(.disabled):active,
.show>.nav-link-btn.dropdown-toggle {
  background-color: #004b27;
  color: #fff;
  transition: all ease 0.25s;
}
.nav-item-leng {
  margin-left: 1rem !important;
  line-height: 1.2;
  display: flex;
}

.nav-item-leng a {
  font-size: 14px;
  padding: 0.3rem 0.6rem;
  border-radius: 20px;
  line-height: 1;
  display: block;
  margin: 0 0.3rem;
  opacity: 0.5;
}
.nav-item-leng a:hover, .nav-item-leng a:focus {
  opacity: 0.85;
}

.nav-item-leng a.active {
  opacity: 1;
}
/* Bs nav para el menú mobile */
.bsnav-mobile .navbar {
  left: 0 !important;
  color: #fff !important;
  transform: translate3d(-300px, 0, 0) !important;
  width: 80%;
  max-width: 300px;
}

.bsnav-mobile.in .navbar {
  transform: translate3d(0px, 0, 0) !important;
}

.bsnav-mobile .navbar.bsnav-dark {
  background: #ffffff !important;
  color: #003e51 !important;
  padding: 0px 0 15px;
  box-shadow: 2px 2px 5px -2px rgba(0, 0, 0, 0.65);
  -webkit-box-shadow: 2px 2px 5px -2px rgba(0, 0, 0, 0.65);
  -moz-box-shadow: 2px 2px 5px -2px rgba(0, 0, 0, 0.65);
}

.bsnav-sticky.bsnav-sticky-slide.sticked.in {
  background: #fff;
  padding: 1.2rem 2rem;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 8px 15px -5px,
    rgba(0, 0, 0, 0.25) 0px 4px 10px -8px;
  border-radius: 0 0 25px 25px;
}

.bsnav-light .navbar-toggler .navbar-toggler-icon,
.bsnav-light .navbar-toggler .navbar-toggler-icon::after,
.bsnav-light .navbar-toggler .navbar-toggler-icon::before {
  background-color: #16302b;
}

.bsnav-sticky.bsnav-sticky-slide.sticked.in .navbar-toggler .navbar-toggler-icon,
.bsnav-sticky.bsnav-sticky-slide.sticked.in .navbar-toggler .navbar-toggler-icon::after,
.bsnav-sticky.bsnav-sticky-slide.sticked.in .navbar-toggler .navbar-toggler-icon::before {
  background-color: #333333;
}

/*//////////////////////// MAIN-HERO ////////////////////////////*/
.main-section {
  height: calc(100vh - 112px);
  position: relative;
  line-height: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-top: 112px;
  padding: 0 2rem 0 2rem;
}

.main-section .carousel {
  height: 100%;
  width: 100%;
  border-radius: 35px;
  overflow: hidden;
}

.main-section .carousel-inner {
  height: 100%;
}

.main-section .carousel-item,
.main-section .carousel-item.active {
  height: 100%;
}

.main-section .carousel-item img,
.main-section .carousel-item.active img {
  height: 100%;
  width: 100%;
  display: block;
  object-fit: cover;
}

.main-titles {
  position: absolute;
  padding: 0 3rem 3rem 3rem;
  text-align: left;
  z-index: 5;
  color: white;
  width: calc(100% - 4rem);
  left: 0;
  right: 0;
  overflow: hidden;
  height: auto;
  bottom: 0;
  margin: auto;
}

.main-titles h1 {
  font-size: 60px;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.19);
  line-height: 1;
}

.main-bottom-content {
  border-top: 1px solid #ffffff3c;
  margin-top: 5rem;
}

.main-bottom-content img {
  height: 32px;
  width: auto;
  margin-bottom: 0.8rem;
}

.main-subtitles {
  font-size: 18px;
  margin-bottom: 0;
}

.main-titles-overlay {
  width: 100%;
  position: absolute;
  height: 250px;
  background: #000000;
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  bottom: 0rem;
  left: 0;
  right: 0;
  z-index: -1;
  border-radius: 0 0 30px 30px;
}

.text-deco-main {
  position: relative;
  z-index: 1;
}

.text-deco-main::before {
  content: "";
  background-color: #e3b23c;
  height: 10px;
  width: 100%;
  position: absolute;
  bottom: 10px;
  z-index: -1;
}

.image-container {
  perspective: 1000px;
  position: absolute;
  right: -10rem;
  top: 250px;
  height: 850px;
  z-index: 5;
}

.deco-right {
  transition: all .3s;
  height: 95%;
  width: auto;
  /*
  transform-style: preserve-3d;
  will-change: transform;
  backface-visibility: hidden;
  */
}

.image-container:hover .deco-right {
  filter: drop-shadow(0 0.3rem 0.5rem rgba(16, 16, 16, 0.23));
}

/*///////////////////////// animation zoom /////////////////////////*/
.animaZoom {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.infinite-zoom {
  -webkit-animation: zoomSlow 35s infinite linear;
  -moz-animation: zoomSlow 35s infinite linear;
  animation: zoomSlow 35s infinite linear;
}

@-webkit-keyframes zoomSlow {
  0% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -moz-transform: scale(1.3) rotate(0.1deg);
    -webkit-transform: scale(1.3) rotate(0.1deg);
    transform: scale(1.3) rotate(0.1deg);
  }

  100% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-moz-keyframes zoomSlow {
  0% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -moz-transform: scale(1.3) rotate(0.1deg);
    -webkit-transform: scale(1.3) rotate(0.1deg);
    transform: scale(1.3) rotate(0.1deg);
  }

  100% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes zoomSlow {
  0% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -moz-transform: scale(1.3) rotate(0.1deg);
    -webkit-transform: scale(1.3) rotate(0.1deg);
    transform: scale(1.3) rotate(0.1deg);
  }

  100% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/*///////////////////////// NOSOTROS //////////////////////////*/
.about-us {
  position: relative;
  padding: 6rem 0;
  scroll-margin-top: 6rem;
}

.about-logos-container {
  background-image: url(../images/deco-infinito.svg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 3rem;
}

.about-logos-container img {
  transition: 0.3s;
}

.about-logos-container img:hover {
  transform: scale(1.03);
}

.about-video-container {
  position: relative;
  width: 100%;
  height: 540px;
}

.about-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  border-radius: 50px;
  z-index: 1;
  position: relative;
}

.about-video-deco1 {
  position: absolute;
  height: 200px;
  width: auto;
  left: -10rem;
  bottom: 10rem;
  z-index: 0;
}

.about-video-deco2 {
  position: absolute;
  height: 200px;
  width: auto;
  right: -3rem;
  bottom: -3rem;
  z-index: 5;
}

/*///////////////////////// Producto //////////////////////////*/
.products {
  padding: 2rem 0 2rem 0;
  background: url(../images/bg-productos.svg),
    linear-gradient(to bottom, white 10%, #fafaf4 10% 100%);
  background-size: auto;
  background-position: left top;
  background-repeat: no-repeat;
  scroll-margin-top: 4rem;
  position: relative;
}

.deco-products {
  height: 790px;
  width: auto;
  object-fit: cover;
  object-position: right center;
  border-radius: 100px 0 0 30px;
}

.custom-list {
  padding-left: 0;
  list-style: none;
}

.custom-list li {
  margin-bottom: 1rem;
}

.custom-list li::before {
  content: url(../images/icon-mani-filled.svg);
  margin-right: 4px;
}

#productsCarousel .f-carousel__slide {
  width: 16.66%;
  padding: 1rem 0;
}

.product-container img {
  width: 220px;
  display: block;
  margin: auto;
  margin-bottom: 1rem;
  transition: 0.3s;
}

.product-container p {
  margin-bottom: 0;
  font-size: 18px;
  text-align: center;
  transition: 0.3s;
}

.product-container:hover img {
  transform: scale(1.1);
  filter: drop-shadow(0 0.3rem 0.5rem rgba(16, 16, 16, 0.23));
}

.product-container:hover p {
  transform: scale(1.1) translateY(1rem);
}

.swipe-icon {
  width: 55px;
  position: absolute;
  bottom: -3rem;
  right: 3rem;
  left: auto;
  z-index: 5;
}

.slide-left {
  -webkit-animation: slide-left 0.6s 1s infinite alternate both;
  animation: slide-left 0.6s 1s infinite alternate both;
}

/**
 * ----------------------------------------
 * animation slide-left
 * ----------------------------------------
 */
@-webkit-keyframes slide-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
}

@keyframes slide-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
}

/*///////////////////////// Procesos //////////////////////////*/
.process {
  padding: 12rem 0 6rem 0;
  background: url(../images/bg-procesos-top.svg), url(../images/bg-procesos.jpg);
  background-repeat: no-repeat;
  background-size: auto, cover;
  background-position: top center, bottom center;
}

#processCarousel .f-carousel__slide {
  width: 40%;
  padding: 1rem 0.5rem;
}

#processCarousel .f-carousel__nav {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  justify-content: end;
}

#processCarousel .f-carousel__nav button {
  transform: none;
  color: #e3b23c;
  position: relative;
  margin: 0 0.5rem;
}

.process-container {
  background-color: #ffffff;
  border-radius: 30px;
  padding: 1.2rem;
  min-height: 240px;
}

.process-title {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.process-title img {
  height: 60px;
  width: auto;
  margin-right: 1rem;
}

/*///////////////////////// Mercados //////////////////////////*/
.market {
  padding: 5rem 0;
  scroll-margin-top: 5rem;
}

#differencesCarousel .f-carousel__slide {
  width: 33.3%;
  padding: 1rem 0.5rem;
}

.difference-container {
  background-color: #fafaf4;
  border-radius: 30px;
  padding: 2rem 1.4rem;
  min-height: 320px;
  text-align: center;
}

.difference-container img {
  height: 70px;
  width: auto;
  margin-bottom: 1rem;
}

/*///////////////////////// Galería //////////////////////////*/
.gallery img {
  width: 100%;
  height: 380px;
  transition: 0.3s;
  object-fit: cover;
}

.gallery img:hover {
  filter: brightness(1.09);
}

/*///////////////////////// Contacto //////////////////////////*/
.contact {
  padding: 6rem 0;
  scroll-margin-top: 2rem;
  background: #f5deb8;
  background: linear-gradient(90deg,
      rgba(245, 222, 184, 1) 0%,
      rgba(237, 235, 215, 1) 50%,
      rgba(245, 222, 184, 1) 100%);
}

.form-container {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 2.2rem;
  position: relative;
}

.deco-form {
  position: absolute;
  left: -14rem;
  top: 4rem;
}

.contact a {
  color: #16302b;
  transition: 0.3s;
}

.contact a:hover {
  color: #e3b23c;
}

/*////////////////// FORMULARIO ///////////////*/
.form-control {
  border: 1px solid #16302b51;
  border-radius: 8px;
  transition: 0.3s;
  background-color: transparent;
  color: #16302b;
  font-weight: 300;
}

.form-control:hover,
.form-control:focus {
  border: 1px solid #16302b;
  box-shadow: none;
  background-color: transparent;
}

.form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #16302b98;
  font-weight: 300;
}

.form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #16302b98;
  font-weight: 300;
}

.form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: #16302b98;
  font-weight: 300;
}

.form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #16302b98;
  font-weight: 300;
}

form label {
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 0.1rem;
  font-weight: 600;
  color: #16302b;
}

.relative {
  position: relative;
}

#response {
  background: #2ec770;
  color: #fff;
  text-align: center;
  width: 100%;
  padding: 25px 10px;
  position: absolute;
  top: 0px;
}

.fx-fading-circle {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background: #ffffffad url(../images/loading.gif) center no-repeat;
}

.loading {
  display: none;
}

/*///////////////////////// FOOTER //////////////////////////*/
footer {
  background: #006635;
  padding-top: 3rem;
}

.footer-text {
  font-size: 25px;
  color: #ebe5d9;
}

.social-media-container {
  display: flex;
}

.social-media {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50px;
  background-color: #ffffff2c;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  margin-right: 12px;
}

.social-media:hover {
  background-color: #e3b23c;
}

.social-media img {
  width: 32px;
}

.copy-end {
  background-color: #025e32;
}

.copy-end p {
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.464);
}

.text-deco-footer {
  text-decoration: underline;
  text-decoration-thickness: from-font;
  text-decoration-color: #e3b23c;
  text-decoration-thickness: auto;
}

/*////////////////////// RESPONSIVE //////////////////*/

@media (max-width: 1600px) {

  .image-container {
    height: 650px;
    top: 150px;
  }
}

@media (max-width: 1440px) {
  .product-container img {
    width: 205px;
  }
}

@media (max-width: 1240px) {

  .nav-link {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .product-container img {
    width: 190px;
  }
}

@media (max-width: 1024px) {

  .navbar,
  .bsnav-sticky.bsnav-sticky-slide.sticked.in {
    padding: 1rem;
  }

  .nav-link {
    margin-right: 0.6rem !important;
    margin-left: 0.6rem !important;
  }

  .main-section {
    padding: 0 1rem 0 1rem;
  }

  .main-titles {
    padding: 0 2rem 2rem 2rem;
    width: calc(100% - 2rem);
  }

  #productsCarousel .f-carousel__slide {
    width: 25%;
  }

  .gallery img {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .nabvar-nav {
    align-items: flex-start;
  }

  .bsnav-mobile .navbar-nav {
    padding: 30px;
  }

  .nav-link::after {
    content: "";
    left: 0;
    right: auto;
  }

  .nav-link-btn {
    margin-top: 1rem;
    display: block;
    margin-left: 0 !important;
  }

  .bsnav-mobile .navbar-nav .nav-item .nav-link {
    margin-left: 0 !important;
  }

  .image-container {
    top: 300px;
  }

  .main-titles {
    height: 100%;
    display: flex;
    align-items: center;
  }

  .about-video-deco2 {
    right: -1rem;
    bottom: -1rem;
  }

  .deco-products {
    height: 690px;
  }

  .products {
    padding: 6rem 0 2rem 0;
  }

  #productsCarousel .f-carousel__slide {
    width: 36%;
  }

  #processCarousel .f-carousel__slide {
    width: 60%;
  }

  #differencesCarousel .f-carousel__slide {
    width: 48%;
  }

  .difference-container {
    padding: 2rem 1rem;
  }

  .f-carousel__dot {
    background: #004b27;
  }

  .deco-form {
    position: absolute;
    left: 4rem;
    top: 4rem;
  }
}

@media (max-width: 525px) {
  .navbar-brand img {
    height: 60px;
  }
  .main-section .carousel {
    border-radius: 25px;
  }

  .mobile-alignment {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .image-container {
    top: 490px;
    height: 360px;
  }

  .main-titles {
    padding: 0rem;
  }

  .main-titles h1 {
    font-size: 40px;
  }

  p.h2 {
    font-size: 24px;
  }

  .about-video-container {
    height: 400px;
    width: 90%;
    left: 0;
    right: 0;
    margin: auto;
  }

  .about-video-deco2 {
    height: 150px;
  }

  .products {
    padding: 2rem 0 2rem 0;
    background: #fafaf4;
  }

  #productsCarousel .f-carousel__slide {
    width: 75%;
  }

  #processCarousel .f-carousel__slide {
    width: 90%;
  }

  .process-container {
    padding: 1rem;
    min-height: 300px;
  }

  .process-title {
    flex-direction: column;
    align-items: start;
  }

  .process-title img {
    margin-right: 0rem;
    margin-bottom: 1rem;
  }

  #differencesCarousel .f-carousel__slide {
    width: 90%;
    padding: 1rem;
  }

  .difference-container {
    padding: 1rem;
  }
}

@media (max-width: 376px) {}