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

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

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

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

body {
  font-family: "Manrope", sans-serif;
  color: #434746;
  background-color: white;
}

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

h2,
.h2 {
  line-height: 1 !important;
}

.wrapper {
  overflow: hidden;
}

img {
  width: 100%;
}

a:hover {
  text-decoration: none;
}

strong,
b {
  font-weight: 600;
}

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

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

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

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

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

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

.primary {
  color: #ebc600;
}

.primary-bg {
  background-color: #fcd400;
}

.gray {
  color: #787978;
}

.light-gray {
  color: #bac4ca;
}

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

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

.italic {
  font-style: italic;
}

.arpona {
  font-family: "Arpona";
}

.h5,
h5 {
  font-size: 1.15rem;
  line-height: 1.4;
}

/*///////////////////// BOTONES QUE PISAN BS //////////////////*/
.btn {
  border-radius: 0px;
  font-size: 18px;
  font-weight: 600;
  align-items: center;
  justify-content: center;
  padding: 10px 25px;
  color: #434746;
  transition: all 0.3s;
  text-decoration: none !important;
  text-transform: uppercase;
  display: flex;
  width: fit-content;
}

.btn-sm {
  font-size: 15px;
  padding: 5px 15px;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active,
.show>.btn.dropdown-toggle {
  box-shadow: 0px 8px 15px -5px rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 0px 8px 15px -5px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 8px 15px -5px rgba(0, 0, 0, 0.12);
}

.btn span,
.text-button span {
  margin-left: 5px;
  transition: all 0.3s;
}

.btn:hover span,
.text-button:hover span {
  transform: translateX(5px);
}

.btn-primary {
  border: 2px solid #fcd400;
  color: #434746;
  background-color: #fcd400;
}

.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 {
  background: #f7ce06;
  color: #434746;
  border: 2px solid #f7ce06;
}

.text-button {
  color: white;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.3s;
  display: flex;
  align-items: center;
}

.text-button:hover {
  color: white;
}

/* FLOAT BTN */
.wsp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  border-radius: 50px;
  text-align: center;
  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 img {
  width: 34px;
  height: 34px;
}

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

/*///////////////////////// HEADER /////////////////////////*/
.menu {
  -webkit-transition: background 0.3s 0s linear;
  -moz-transition: background 0.3s 0s linear;
  -o-transition: background 0.3s 0s linear;
  transition: background 0.3s 0s linear;
}

.navbar-brand {
  display: none;
}

.header-logo {
  height: 70px;
}

.collapse {
  justify-content: center;
}

.navbar {
  z-index: 100;
  width: 100%;
  padding: 1rem;
}

.nav-link {
  font-size: 20px;
  font-weight: 300;
  color: white !important;
  margin: 0 1.4rem !important;
  position: relative;
  padding: 6px 0px !important;
}

.nav-link.active-nav {
  font-weight: 600;
}

.navbar .nav-item a::after,
.navbar-light .navbar-nav>.nav-link.active::after {
  content: "";
  background-color: #ffcf00;
  height: 2px;
  width: 28px;
  border-radius: 15px;
  position: absolute;
  left: 0px;
  right: auto;
  bottom: 0;
  z-index: -5;
  opacity: 0;
  transition: all 0.3s;
  transform: translateX(-50px);
}

.navbar .nav-item a:hover::after,
.navbar .nav-item .active-nav::after {
  content: "";
  left: 0;
  right: 0;
  margin: 0 auto;
  opacity: 1;
  transform: translateX(0px);
  background-color: #ffcf00;
}

.nav-item.dropdown a::after,
.nav-item.dropdown a:hover::after {
  content: none;
}

/* Desplegable */
.nav-item.dropdown>.navbar-nav {
  width: 240px;
  border: 1px solid #ffcf00;
  border-radius: 15px !important;
  align-items: start !important;
}

.nav-item.dropdown>.navbar-nav .nav-item {
  margin: 0.4rem 0;
}

.nav-item.dropdown>.navbar-nav .nav-item .nav-link {
  color: #434746 !important;
  font-size: 18px;
  font-weight: 600;
}

.nav-item.dropdown>.navbar-nav .nav-item .nav-link:hover,
.navbar.bsnav-sticky.bsnav-sticky-slide.sticked.in .nav-item.dropdown>.navbar-nav .nav-item .nav-link:hover {
  color: #e2a200 !important;
}

.social-media-container-header {
  display: flex;
  align-items: center;
}

.social-media-container-header a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #434746;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  margin: 0 0.2rem;
}

.social-media-container-header a::after {
  content: none !important;
}

.social-media-container-header img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: invert(1) brightness(5);
  transition: 0.3s;
}

.social-media-container-header a:hover {
  background-color: #ffd000;
}

.social-media-container-header a:hover img {
  filter: none;
}

.header-overlay {
  background: rgb(0, 1, 4);
  background: linear-gradient(0deg,
      rgba(0, 1, 4, 0) 4%,
      rgba(0, 1, 4, 0.8399334733893557) 100%);
  position: absolute;
  width: 100%;
  height: 300px;
  top: 0;
  z-index: 5;
}

.bsnav-sticky.bsnav-sticky-slide.sticked.in {
  background: #fff !important;
}

.navbar-nav {
  align-items: center;
}

.nav-item-logo {
  margin-right: 3.5rem;
  margin-left: 6rem;
  width: 220px;
}

.navbar.bsnav-sticky.bsnav-sticky-slide.sticked.in .navbar-brand {
  display: block;
}

.navbar.bsnav-sticky.bsnav-sticky-slide.sticked.in .nav-item-logo {
  display: none;
}

.navbar.bsnav-sticky.bsnav-sticky-slide.sticked.in .collapse {
  justify-content: end;
}

.navbar.bsnav-sticky.bsnav-sticky-slide.sticked.in .nav-link {
  color: #434746 !important;
}

.navbar.bsnav-sticky.bsnav-sticky-slide.sticked.in {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 8px 15px -5px,
    rgba(0, 0, 0, 0.25) 0px 4px 10px -8px;
}

/* Nav interna */
.navbar-internal {
  background-color: white;
}

.navbar-internal .navbar-brand {
  display: block;
}

.navbar-internal .nav-link {
  color: #434746 !important;
}

.navbar-internal .collapse {
  justify-content: end;
}

/* Bs nav para el menú mobile */
.navbar-toggler {
  right: 20px;
}

.bsnav-sticky.bsnav-sticky-slide.navbar-toggler-icon,
.bsnav-sticky.bsnav-sticky-slide .navbar-toggler-icon::after,
.bsnav-sticky.bsnav-sticky-slide .navbar-toggler-icon::before {
  transition: 0.3s !important;
}

.navbar.bsnav-sticky.bsnav-sticky-slide .navbar-toggler-icon,
.navbar.bsnav-sticky.bsnav-sticky-slide .navbar-toggler-icon::after,
.navbar.bsnav-sticky.bsnav-sticky-slide .navbar-toggler-icon::before {
  background-color: #434746 !important;
}

.navbar-toggler.toggler-spring.active .navbar-toggler-icon {
  transition-delay: 0.22s;
  background-color: transparent !important;
}

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

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

.bsnav-mobile .navbar.bsnav-dark {
  background: #434746 !important;
  padding: 0px 0 15px;
  box-shadow: 2px 2px 8px -2px rgba(0, 0, 0, 0.45);
  -webkit-box-shadow: 2px 2px 8px -2px rgba(0, 0, 0, 0.45);
  -moz-box-shadow: 2px 2px 8px -2px rgba(0, 0, 0, 0.45);
}

.bsnav-mobile {
  z-index: 1000;
}

/*//////////////////////// MAIN-HERO ////////////////////////////*/
.main-section {
  height: 100vh;
  position: relative;
  line-height: 1;
  overflow: hidden;
  border-bottom: 10px solid #ffcf00;
}

.main-title {
  font-size: 68px;
  line-height: 0.91;
  margin-top: 2rem;
}

.main-title-bottom {
  font-size: 52px;
  line-height: 1;
}

.text-shadow {
  text-shadow: 1px 3px 6px rgba(0, 0, 0, 0.233);
}

.main-section .carousel {
  height: 100vh;
}

.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-section .carousel-caption {
  bottom: 0;
  z-index: 10;
  position: absolute;
  top: 0;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60%;
  left: 0;
  right: 0;
  transition: 0.3s;
}

.overlay {
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 1) 100%);
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  z-index: 1;
  opacity: 0.7;
}

.hero-dots {
  position: absolute;
  bottom: 7%;
  z-index: 50;
  left: 0;
  right: 0;
}

.main-section .carousel-indicators {
  align-items: center;
  position: relative;
  margin: auto;
}

.main-section .carousel-indicators li {
  width: 6px;
  height: 6px;
  background-color: white;
  border-radius: 50%;
  border: 6px solid #ffcf00;
}

.main-section .carousel-indicators li.active {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0);
  border: 6px solid #ffcf00;
}

.deco-hero-left {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  width: 30%;
}

/*///////////////////////// 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);
  }
}

/*///////////////////////// Bloque de texto //////////////////////////*/
.text-block {
  padding: 4rem 0;
  background: #f9fafa;
}

.text-under {
  /*text-decoration: underline #ffcf00;*/
  position: relative;
}

.text-under::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 7px;
  width: 100%;
  height: 8px;
  transform: skew(329deg);
  background: #ffcf00;
  z-index: -1;
}

/*///////////////////////// NOSOTROS //////////////////////////*/
.about-us {
  padding: 12rem 0 6rem 0;
  background: #ffcf00;
  position: relative;
}

.about-us::before {
  content: "";
  width: 75%;
  height: 88%;
  background-color: white;
  position: absolute;
  right: 0;
  bottom: 0;
}

.about-deco-right {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 200px;
  height: auto;
}

/* Animación logo */
.rotate-text-container {
  position: absolute;
  width: 155px;
  height: 155px;
  right: -8rem;
  top: -4rem;
}

.rotate-text-img {
  position: absolute;
  top: 50%;
  left: 55%;
  width: 85px;
  height: 72px;
  transform: translate(-50%, -50%);
  overflow: hidden;
}

.rotate-text-img img {
  width: 100%;
  height: 100%;
}

.rotate-text-text {
  width: 168px;
  height: 168px;
  animation: girar 10s linear infinite;
}

@keyframes girar {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/*///////////////////////// Actividades //////////////////////////*/
.activities {
  padding: 4rem 0;
}

.activity-container {
  height: 520px;
  width: 100%;
  background-size: 130%;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  padding: 2rem;
  text-align: center;
  color: white;
  position: relative;
  transition: all 0.5s;
  overflow: hidden;
}

.activity-container-title {
  position: relative;
  z-index: 5;
}

.activity-deco-left,
.activity-deco-right {
  position: relative;
}

.activity-deco-left::after {
  content: url(../images/deco-actividades-left.svg);
  position: absolute;
  z-index: 5;
  left: 0rem;
  bottom: 3rem;
}

.activity-deco-right::after {
  content: url(../images/deco-actividades-right.svg);
  position: absolute;
  z-index: 5;
  right: 0rem;
  top: 3rem;
}

.max-w-1500 {
  max-width: 1500px;
}

.max-w-650 {
  max-width: 650px;
}

.activity-container-agricultura {
  background-image: url(../images/actividades-agricultura.jpg);
}

.activity-container-feedlot {
  background-image: url(../images/actividades-feedlot.jpg);
}

.activity-container-tambo {
  background-image: url(../images/actividades-tambo.jpg);
}

.activity-container-fabrica {
  background-image: url(../images/actividades-fabrica.jpg);
}

.activity-container-overlay {
  width: 100%;
  height: 260px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000000;
  background: linear-gradient(0deg,
      rgba(0, 0, 0, 1) 36%,
      rgba(0, 0, 0, 0) 100%);
  z-index: 0;
}

.activity-hide-content {
  position: absolute;
  width: 100%;
  height: auto;
  bottom: 0;
  transform: translateY(600px);
  transition: all 0.5s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  padding: 2rem;
  background-color: white;
  text-align: center;
  color: #434746;
  z-index: 10;
}

.activity-hide-content::after {
  content: url(../images/deco-hide.svg);
  position: absolute;
  top: -5.1rem;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
}

.activity-divider {
  width: 60px;
  height: 3px;
  border-radius: 10px;
  background-color: #bac4ca;
  margin: 0.8rem 0;
}

.activity-container:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  background-size: 140%;
}

.activity-container:hover .activity-hide-content {
  transform: translateY(0px);
}

.max-w-2 {
  max-width: 90px;
}

/*///////////////////////// Sustentabilidad //////////////////////////*/
.sustainability {
  padding: 10rem 0 2rem 0;
  background: url(../images/bg-sustentabilidad.svg) #fff;
  background-size: auto;
  background-position: top center;
  background-repeat: no-repeat;
}

.sustainability-video-container {
  height: 450px;
  position: relative;
  display: flex;
  justify-content: end;
  align-items: center;
}

.play-btn {
  position: absolute;
  right: 10%;
  z-index: 5;
  color: #fcd400;
  font-size: 16px;
  font-weight: 700;
  text-align: end;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.play-btn img {
  width: 105px;
  height: 105px;
  transition: 0.3s;
  margin-bottom: 0.6rem;
}

.play-btn:hover {
  color: #fcd400;
}

.play-btn:hover img {
  transform: scale(1.05);
}

.sustainability-video-container-overlay {
  height: 100%;
  width: 100%;
  position: absolute;
  left: auto;
  right: 0;
  opacity: 0.8;
  background: #000000;
  background: linear-gradient(260deg,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.sustainability-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
}

/*///////////////////////// CAROUSEL PROPIEDADES //////////////////////////*/
.gallery {
  padding: 2rem 0 1rem 0;
}

#galleryCarousel .f-carousel__slide {
  width: 45%;
  padding: 0.4rem;
  position: relative;
}

#galleryCarousel .f-carousel__slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 35px;
}

.gallery-deco-left {
  width: 150px;
  height: 150px;
  background-color: #fcd400;
  position: absolute;
  left: -75px;
  z-index: 5;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
  top: 0;
  bottom: 0;
  margin: auto;
}

.counter-number {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  margin-right: 0.8rem;
}

.counter-text {
  margin-bottom: 0.4rem;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

/*///////////////////////// FOOTER //////////////////////////*/
footer {
  background: url("../images/deco-footer-left.svg"),
    url("../images/deco-footer-right.svg") #3b3d3c;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left, bottom right;
  color: white;
  padding: 4rem 0 0 0;
  position: relative;
  z-index: 1;
  border-top: 10px solid #ffcf00;
}

.footer-logo {
  max-width: 320px;
}

footer ul {
  padding-left: 0;
}

footer ul li {
  list-style: none;
  margin: 8px 0px;
}

footer ul li a {
  font-size: 16px;
  color: #fff;
  transition: 0.3s;
}

footer ul li a:hover {
  color: #ffcf00;
}

footer ul li p,
footer ul li a {
  display: flex;
  align-items: start;
}

.social-media-container {
  display: flex;
  align-items: center;
}

.social-media-container a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #ffcf00;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  margin-right: 0.6rem;
}

.social-media-container img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  transition: 0.3s;
}

.social-media-container a:hover {
  background-color: #ffd000;
}

.social-media-container a:hover img {
  transform: scale(1.1);
}

.copy-end {
  background-color: #343434;
  margin-top: 4rem;
}

.copy-end p {
  font-size: 14px;
  color: #959595;
}

.copy-end img {
  max-width: 20px;
}

/*///////////////////////// INTERNA - QUIENES SOMOS - CONTACTO //////////////////////////*/
.section-header {
  min-height: 280px;
  padding: 3rem 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  border-bottom: 10px solid #ffcf00;
  margin-top: 110px;
}

.section-header-about-section {
  background-image: url(../images/bg-header-quienes-somos.jpg);
}

.section-header-contact-section {
  background-image: url(../images/bg-header-contacto.jpg);
}

.section-header-how-section {
  background-image: url(../images/bg-header-como-lo-hacemos.jpg);
}

.about-us-internal {
  padding: 4rem 0;
  position: relative;
}

.about-us-title-container {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
  margin-top: 2rem;
}

.about-us-title-container img {
  margin-right: 0.6rem;
  width: 55px;
  height: 55px;
}

.about-us-internal-deco-left::before {
  content: "";
  height: 900px;
  width: 35%;
  background-color: #f9fafa;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.about-us-internal-deco-right::before {
  content: url(../images/deco-historia.svg);
  height: auto;
  width: 282px;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.values {
  background-image: url(../images/bg-valores.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 6rem 0;
  min-height: 720px;
  display: flex;
  align-items: center;
}

.value-container {
  text-align: center;
  padding: 0.2rem;
}

.value-container img {
  width: 125px;
  margin-bottom: 1rem;
  transition: 0.3s;
}

.value-container:hover img {
  transform: scale(1.1);
}

/* Linea de tiempo */
.timeline {
  padding: 12rem 0;
  background: url(../images/bg-historia-top.svg),
    url(../images/bg-historia-bottom.svg), #434746;
  background-position: top center, bottom center;
  background-size: auto;
  background-repeat: no-repeat;
  position: relative;
}

/* Swipper */
.time-line-container {
  color: #434746;
  padding: 1.2rem;
  background-color: #ffffffbc;
  border-radius: 15px;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  margin: 0 1rem;
  text-align: left;
  transition: 0.3s;
}

.time-line-container:hover {
  background-color: #ffffff;
}

.time-line-year {
  position: absolute;
  top: -7rem;
  line-height: 1;
  color: #ffffff;
  text-align: left;
  opacity: 1;
  transition: 0.3s;
}

.time-line-dot {
  width: 26px;
  height: 26px;
  background-color: #fcd400;
  transition: 0.3s;
  border: 6px solid #faf2d0;
  border-radius: 50%;
  position: absolute;
  top: -3rem;
  z-index: 10;
}

.time-line-container:hover .time-line-dot {
  background-color: #fcd400;
  border: 6px solid #ffffff;
}

.timeline-content p {
  font-size: 15px;
}

.gallerySlider {
  margin-top: 7rem;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.gallerySlider__swiper {
  overflow: visible;
}

.gallerySlider__slider {
  position: relative;
  max-width: 25%;
}

.gallerySlider__nav {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.gallerySlider__navProgress {
  height: 5px;
  position: relative;
  flex: 1;
  background-color: #7b9692;
}

.gallerySlider .swiper-pagination-progressbar-fill {
  background-color: #fcd400;
}

.gallerySlider__navProgress::before {
  background-color: #76b1e2;
}

/* Fin swipper */

.swipe-icon {
  width: 55px;
  position: absolute;
  bottom: 8rem;
  left: auto;
  right: 4rem;
  margin-left: auto;
  margin-right: auto;
  z-index: 99;
}

.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);
  }
}

#historyCarousel .f-carousel__dots {
  bottom: 1.6rem;
}

#historyCarousel .f-carousel__dot {
  background-color: white;
  width: 14px;
  height: 14px;
}

#historyCarousel::after {
  content: url(../images/deco-historia-carousel.svg);
  position: absolute;
  right: -2rem;
  top: 2rem;
}

/*///////////////////////// INTERNAS - UNIDADES DE NEGOCIOS //////////////////////////*/
.section-header-lg {
  min-height: 650px;
  padding: 3rem 0;
  background-color: #343434;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  border-bottom: 10px solid #ffcf00;
  margin-top: 110px;
}

.section-header-lg h2 {
  font-size: 2.8rem;
}

.section-header-lg .text-under::before {
  bottom: 14px !important;
}

.section-header-agro {
  background-image: url(../images/bg-header-agricultura.jpg);
}

.section-header-ganaderia {
  background-image: url(../images/bg-header-ganaderia.jpg);
}

.section-header-tambo {
  background-image: url(../images/bg-header-tambo.jpg);
}

.section-header-quesos {
  background-image: url(../images/bg-header-quesos.jpg);
}
.section-header-esquesitos {
  background-image: url(../images/bg-header-esquesitos.jpg);
}

.text-block-internal {
  padding: 6rem 0;
  background: #ffffff;
  position: relative;
}

.text-block-internal::before {
  content: "";
  width: 37%;
  height: 100%;
  background-color: #fcd400;
  position: absolute;
  right: 0;
  bottom: 0;
}

.text-block-icon {
  width: 85px;
  margin-right: 1rem;
}

.custom-list {
  padding-left: 0;
  list-style: none;
  padding-left: 30px;
  display: block;
}

.custom-list li {
  margin-bottom: 0.8rem;
  font-size: 18px;

}

.custom-list li::before {
  content: "\e5ca";
  font-family: "Material Icons";
  color: #ffcf00;
  margin-right: 0.4rem;
  margin-left: -25px;
  top: 0.2rem;
  position: relative;
}

.text-banner {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 6rem 0;
  min-height: 660px;
  display: flex;
  align-items: center;
  position: relative;
}

.text-banner-agricultura {
  background-image: url(../images/bg-banner-agricultura.png?2);
}

.text-banner-feedlot {
  background-image: url(../images/bg-banner-feedlot.png);
}

.text-banner-lafamilia {
  background-image: url(../images/bg-banner-lafamilia.png);
}

.text-banner-tambo {
  background-image: url(../images/bg-banner-tambo.png);
}

.text-banner::before {
  content: "";
  width: 37%;
  height: 50%;
  background-color: #fcd400;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.internal-accordion {
  padding: 4rem 0;
}

.accordion .card {
  border: 0;
  border-bottom: 1px solid #bac4ca7d !important;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.accordion .card-header {
  padding: 0;
  background-color: white;
  border: 0;
  padding-bottom: 1rem;
}

.accordion .card-header button {
  outline: 0;
  background-color: white;
  border: 0;
  color: #434746;
  font-size: 36px;
  font-weight: 700;
  padding: 0;
  text-align: left;
  padding-right: 2rem;
  font-family: "Arpona";
}

.accordion .card-header button img {
  width: 85px;
  height: 85px;
  margin-right: 0.4rem;
}

.logo-masterlac {
  height: 50px !important;
  width: auto !important;
}

.accordion .card-header button::after {
  font-family: "Material Icons";
  left: auto;
  right: 0;
  top: 0.4rem;
  position: absolute;
  color: #000000;
  transition: 0.3s;
  font-size: 40px;
}

.accordion .card-header button[aria-expanded="true"]::after {
  content: "\e15b";
  transform: rotate(180deg);
  transition: 0.3s;
}

.accordion .card-header button[aria-expanded="false"]::after {
  content: "\e145";
  color: #000000;
  transition: 0.3s;
}

.accordion .card-body {
  padding: 0.4rem 0 1.8rem 0;
  font-size: 15px;
  font-weight: 300;
}

.accordion-img {
  min-height: 620px;
  height: 100%;
  width: 95%;
  object-fit: cover;
}

.accordion-bottom {
  display: flex;
  align-items: center;
  padding: 1.4rem 1rem;
  background-color: #f3f3f3;
  font-weight: 300;
  font-size: 20px;
  margin: 2rem 0;
  line-height: 1.2;
}

.accordion-bottom img {
  width: 56px;
  height: 56px;
  margin-right: 0.8rem;
}

.accordion-logo {
  margin: 0;
  margin-left: 0.8rem;
  height: 56px;
  width: auto !important;
}

.quote {
  padding: 3rem 0;
  background-color: #f3f3f3;
  display: flex;
  align-items: center;
}

.quote-container {
  position: relative;
  padding-left: 1rem;
}

.quote-container::before {
  content: url(../images/icon-quote.svg);
  position: absolute;
  left: -3rem;
  top: -3rem;
  opacity: 0.6;
}

.quote-container p {
  font-size: 24px;
  font-style: italic;
}

.quote img {
  width: 100%;
}

/*//////////////////  CÓMO LO HACEMOS //////////////////*/
.our-work {
  background: url(../images/bg-nuestro-trabajo.svg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 8rem 0 4rem 0;
}

.our-work .accordion .card,
.our-work .accordion .card-header,
.our-work .accordion button {
  background-color: transparent;
}

.our-work .accordion .card-header button {
  font-size: 30px;
}

.our-work .accordion .card-header button img {
  width: 32px;
  height: 32px;
}

.our-work .accordion .card-header button::after {
  top: 0.2rem;
  font-size: 24px;
}

.banner-work {
  background: url(../images/bg-banner-trabajo.png) #F3F3F3;
  min-height: 645px;
  padding: 4rem 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

/*//////////////////  CONTACTO //////////////////*/
.contact-internal {
  background: url(../images/bg-contact.svg);
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  padding: 5rem 0;
}

.contact-card-container {
  background-color: white;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.4rem;
  text-align: center;
  min-height: 400px;
  transition: 0.3s;
}

.deco-contact-cards {
  min-height: 400px;
  width: 100%;
  object-fit: cover;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}

.contact-card-container:hover,
.deco-contact-cards:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.25);
}

.contact-card-container img {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
}

.contact-card-container a {
  color: #434746;
  transition: 0.3s;
}

.contact-card-container a:hover {
  color: #fcd400;
}

/*/ Formulario /*/
.form-control {
  border: 1px solid #d7d7d7 !important;
  border-radius: 4px;
  transition: 0.3s;
  font-weight: 300;
  color: #434746;
  background: white;
  transition: 0.3s;
}

form label {
  font-weight: 600;
  color: #434746;
}

.form-control:hover,
.form-control:focus {
  border-color: #434746e2 !important;
  background: white;
  box-shadow: none;
  color: #434746e3;
}

.form-control::placeholder {
  color: #434746e3;
}

.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;
}

.iframe-container {
  height: 450px;
  width: 100%;
  position: relative;
}

.iframe-deco {
  width: 100%;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(3deg);
  background-color: #fcd400;
}

.visit-us {
  background: url(../images/bg-visitanos.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 490px;
  display: flex;
  align-items: center;
}

.btn-wsp {
  background-color: #25d366;
  color: white;
  font-weight: 700;
}

.btn-wsp:hover {
  background-color: #16af4e;
  color: white;
}

.btn-wsp img {
  width: 22px;
  height: 22px;
  margin-right: 0.6rem;
}

/*////////////////////// RESPONSIVE //////////////////*/
@media (max-width: 1600px) {
  .nav-item-logo {
    margin-right: 4rem;
    margin-left: 5rem;
  }
}

@media (max-width: 1440px) {
  .nav-item-logo {
    margin-right: 1rem;
    margin-left: 6rem;
  }

  .about-us::before {
    width: 80%;
  }
}

@media (max-width: 1360px) {
  .nav-link {
    margin: 0 1rem !important;
    font-size: 16px;
  }

  .nav-item-logo {
    width: 200px;
  }

  .main-section .carousel-caption {
    width: 75%;
  }
}

@media (max-width: 1240px) {
  .nav-link {
    margin: 0 .7rem !important;
    font-size: 16px;
  }

  .nav-item-logo {
    width: 190px;
  }
}

@media (max-width: 1024px) {
  .header-logo {
    height: 65px;
  }

  .nav-item-logo {
    width: 175px;
    margin-right: 1rem;
    margin-left: 1rem;
  }

  .nav-link {
    font-size: 16px;
    margin: 0 0.6rem !important;
  }

  .section-header {
    min-height: 190px;
    padding: 2.5rem 0rem;
  }

  .section-header-lg .text-under::before {
    bottom: 9px !important;
  }

  .main-section .carousel-caption {
    width: 90%;
  }

  .deco-hero-left {
    width: 30%;
  }

  .rotate-text-container {
    width: 145px;
    height: 145px;
    right: -5rem;
    top: -3rem;
  }

  .rotate-text-img {
    position: absolute;
    top: 53%;
    left: 58%;
  }

  #galleryCarousel .f-carousel__slide img {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .navbar {
    background-color: white !important;
  }

  h1,
  .h1 {
    font-size: 2rem;
    line-height: 1;
  }

  .navbar-nav {
    align-items: start;
  }

  .navbar-brand {
    display: block;
  }

  .nav-link {
    font-size: 18px;
    margin: 0.6rem 0.8rem !important;
  }

  .nav-item>.navbar-nav .nav-item {
    margin: 0;
  }

  .nav-item>.navbar-nav {
    padding: 0 15px;
  }

  .nav-item>.navbar-nav .nav-item .nav-link {
    font-size: 16px;
    margin: 0.2rem 1.8rem !important;
  }

  .nav-item-logo {
    display: none;
  }

  .social-media-container-header {
    margin-top: 1rem;
  }

  .section-header-agro {
    background-position: center left;
  }

  .section-header-ganaderia {
    background-position: center left;
  }

  .main-title {
    font-size: 64px;
    margin-top: 0;
  }

  .max-w-2 {
    max-width: 70px;
  }

  .activity-hide-content::after {
    left: auto;
    right: 0;
    width: auto;
    height: auto;
  }

  .rotate-text-container {
    display: none;
  }

  .activity-container {
    height: 420px;
  }

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

  footer {
    background-size: 40%;
  }

  .gallerySlider__slider {
    position: relative;
    flex: 0 0 65%;
    max-width: 65%;
  }

  .swipe-icon {
    bottom: 6rem;
  }

  .text-block-internal-img {
    height: 420px;
    width: 100%;
    object-fit: cover;
  }

  .text-block-internal::before {
    width: 2%;
  }

  .accordion-img {
    height: 420px;
    min-height: 420px;
    width: 100%;
  }

  .text-banner {
    min-height: 460px;
  }

  .accordion .card-header button img {
    width: 65px;
    height: 65px;
  }

  .accordion .card-header button {
    font-size: 36px;
  }

  .visit-us {
    background: url(../images/bg-visitanos-sm.jpg);
    background-size: cover;
    background-position: left bottom;
    background-repeat: no-repeat;
    align-items: start;
    padding: 3rem 0 30rem 0;
  }
}

@media (max-width: 525px) {
  .navbar {
    padding: 0.8rem;
  }

  .main-section .carousel-caption {
    width: 90%;
  }

  .deco-hero-left {
    display: none;
  }

  .main-title {
    font-size: 52px;
  }

  .main-title-bottom {
    font-size: 40px;
  }

  .about-us {
    padding: 6rem 0;
  }

  .about-us::before {
    content: "";
    width: 100%;
    height: 98%;
  }

  .about-deco-right {
    width: 120px;
  }

  .activity-container {
    height: 480px;
  }

  .play-btn {
    right: 0;
    left: 0;
  }

  .counter-text {
    font-size: 12px;
  }

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

  .gallery-deco-left {
    width: 120px;
    height: 120px;
    left: 0;
  }

  .copyright {
    flex-wrap: wrap;
  }

  .copyright a {
    margin: 5px auto 0px auto;
  }

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

  .about-us-internal-deco-left::before {
    content: "";
    height: 35%;
    width: 75%;
  }

  .timeline {
    padding: 8rem 0;
  }

  .accordion .card-header button {
    font-size: 26px;
  }

  .accordion .card-header button img {
    width: 45px;
    height: 45px;
  }

  .accordion .card-header button::after {
    top: 0.2rem;
    font-size: 26px;
  }

  .accordion-img {
    height: 320px;
    min-height: 320px;
  }

  .quote {
    text-align: center;
  }

  .quote img {
    width: 80%;
  }

  .visit-us {
    padding: 3rem 0 26rem 0;
  }

  .contact-card-container {
    min-height: 270px;
  }
}

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

@media (max-width: 320px) {
  .header-logo {
    height: 60px;
  }
}