/*///////////////////////// GENERALES /////////////////////////*/

body {
  font-family: "Montserrat", serif;
  color: #422313;
  background-color: white;
  line-height: 1.3;
}

.funnel {
  font-family: "Funnel Display", serif;
}

.montserrat {
  font-family: "Montserrat", serif;
}

img {
  width: 100%;
}

.img-rounded {
  border-radius: 25px;
}

a:hover {
  text-decoration: none;
}

strong,
b {
  font-weight: 700;
}

.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;
}
.fw-900 {
  font-weight: 900;
}

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

.primary {
  color: #e8e042;
}

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

.primary-dark {
  color: #cbc437 !important;
}

.dark-75 {
  color: #422313bd;
}

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

.wrapper {
  overflow: hidden;
}
.rounded-xl{
  border-radius: 20px;
}
/*///////////////////// BOTONES QUE PISAN BS //////////////////*/
.btn {
  border-radius: 50px;
  font-size: 16px;
  font-weight: 400;
  padding: 10px 25px;
  transition: all 150ms ease-out;
  text-decoration: none !important;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  width: fit-content;
}

.btn span {
  transition: 0.3s;
  margin-left: 4px;
}

.btn svg {
  transition: 0.3s;
  margin-right: 4px;
}

.btn:hover span{
  margin-left: 8px !important;
}
.btn:hover svg {
  padding-left: 8px !important;
}

.btn-primary {
  border: 1px solid #422313;
  color: #422313;
  background-color: #e8e042;
}

.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: #fff86d;
  color: #422313;
  border: 1px solid #422313;
  transition: all ease 0.25s;
}

.btn-outline-primary {
  border: 1px solid #e8e042;
  color: #e8e042;
  background-color: transparent;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.show > .btn-outline-primary.dropdown-toggle {
  background: #e8e042;
  color: #422313;
  border: 1px solid #e8e042;
  transition: all ease 0.25s;
}

.btn-white {
  border: 1px solid #ee3122;
  color: #ee3122;
  background-color: #ffffff;
}

.btn-white:hover,
.btn-white:focus,
.btn-white:active,
.btn-white:not(:disabled):not(.disabled).active,
.btn-white:not(:disabled):not(.disabled):active,
.show > .btn-white.dropdown-toggle {
  background: #ee3122;
  color: #ffffff;
  border: 1px solid #ffffff;
  transition: all ease 0.25s;
}

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

.wsp-float img {
  width: 32px;
}

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

.scrolled {
  bottom: 40px !important;
}

/* Scroll top */
#scrollToTopBtn {
  position: fixed;
  bottom: 180px;
  right: 25px;
  background-color: transparent;
  border-radius: 50%;
  border: none;
  display: none;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#scrollToTopBtn img {
  width: 48px;
  height: 48px;
}

#scrollToTopBtn.show {
  display: block;
  opacity: 1;
  transform: scale(1);
}

#scrollToTopBtn.hide {
  opacity: 0;
  transform: scale(0.9);
}

/*///////////////////////// 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;
  background-color: white;
}

.header-logo {
  width: auto;
  height: 80px;
}

.navbar {
  z-index: 10;
  width: 100%;
  padding: 0.8rem 2rem;
  background-color: transparent;
  top: 0;
}

.nav-link {
  font-size: 20px;
  font-weight: 400;
  color: #ffffff !important;
  margin-right: 1rem !important;
  margin-left: 1rem !important;
  position: relative;
  padding: 10px 0px !important;
}

.nav-link::after {
  content: "";
  background-color: #e8e042;
  height: 3px;
  width: 25px;
  border-radius: 25px;
  margin: 0 auto;
  opacity: 0;
  transition: all 0.3s;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  transform: translateX(-100%);
}

.nav-link:hover::after,
.nav-link.active::after {
  opacity: 1;
  transform: translateX(0);
}

.btn-nav {
  background-color: #e8e042;
  font-size: 18px;
  font-weight: 500;
  color: #422313;
  border-radius: 35px;
  margin: 0 0.4rem;
  padding: 8px 21px;
}

.btn-nav:hover {
  background-color: #c2b919;
  border-radius: 35px;
  color: #422313;
}

.navbar.bsnav-sticky.bsnav-sticky-fade.sticked.in .header-logo {
  height: 65px;
}

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

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

.navbar-toggler {
  right: 20px;
}

.bsnav-sticky.bsnav-sticky-fade.navbar-toggler-icon,
.bsnav-light .navbar-toggler .navbar-toggler-icon,
.bsnav-sticky.bsnav-sticky-fade .navbar-toggler-icon,
.bsnav-sticky.bsnav-sticky-fade .navbar-toggler-icon::after,
.bsnav-sticky.bsnav-sticky-fade .navbar-toggler-icon::before {
  background-color: #422313 !important;
  transition: 0.3s;
}

.navbar-toggler .navbar-toggler-icon::before {
  width: 25px;
  right: 0;
}

.navbar-toggler.active .navbar-toggler-icon::before {
  width: 32px;
  right: 0;
}

/* Bs nav para el menú mobile */
.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 {
  background: #ffff !important;
  color: #422313 !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);
  border-bottom: 4px solid #422313;
}

/*//////////////////////// HOME ////////////////////////////*/
.main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: url(../images/bg-main.svg) #e8e042;
  background-position: left bottom;
  background-size: auto;
  background-repeat: no-repeat;
  padding: 4rem 0;
}

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

.main h1 {
  font-size: 56px;
  line-height: 1;
}

/* Carousel de fondo */
.main-carousel-container {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  background-color: #e8e042;
  width: 50%;
  height: 100%;
}

.main-carousel-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
  height: 250px;
  z-index: 1;
  opacity: 0.7;
}

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

.main-carousel {
  width: 100%;
  position: absolute;
  bottom: 0;
  height: 100%;
  object-fit: cover;
}

.main-carousel-container .carousel,
.main-carousel-container .carousel-inner,
.main-carousel-container .carousel-item,
.main-carousel-container .carousel-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.main-carousel-bottom {
  display: flex;
  align-items: center;
  position: absolute;
  z-index: 5;
  width: 100%;
  height: auto;
  bottom: 3rem;
}

.main-carousel-deco {
  width: 100%;
  height: 1px;
  background-color: white;
  opacity: 0.5;
}

.main-carousel-buttons {
  display: flex;
  align-items: center;
  padding: 0 1rem;
}

.main-carousel-container button {
  border: 0;
  outline: 0;
  background-color: transparent;
  opacity: 1;
  top: auto;
  width: auto;
  margin: 0 0.1rem;
  position: relative;
}

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

/* ABOUT */
.about-us {
  padding: 4rem 0;
}

.icons-carousel {
  overflow: hidden;
}

.icons-carousel .f-carousel__slide {
  width: 25%;
  padding: 1.5rem 0.75rem;
}

.icon-container {
  background-color: white;
  border-radius: 15px;
  padding: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  height: 100%;
  transition: 0.3s;
  text-align: center;
  height: 275px;
}

.icon-container img {
  width: 90px;
  height: 90px;
  transition: 0.3s;
  margin-bottom: 1rem;
}

.icon-container:hover {
  box-shadow: 0 0.6rem 1.2rem rgba(0, 0, 0, 0.25);
}

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

/* BANNER CENTRO DE DISTRIBUCIÓN */
.banner-center {
  min-height: 380px;
  padding: 2rem 0;
  background: url(../images/deco-banner-center.svg) #00000046;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}

.banner-center video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* PRODUCTOS */
.products {
  padding: 4rem 0;
  background: url(../images/bg-productos.svg) #fefdf1;
  background-position: left center;
  background-size: auto;
  background-repeat: no-repeat;
}

.product-image-container {
  background-color: #e8e042;
  border-radius: 15px;
  height: 215px;
  overflow: hidden;
  margin-bottom: 0.8rem;
  transition: 0.3s;
}

.product-image-container:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.product-image-container:hover img {
  opacity: 0.6;
}

.product-title {
  display: flex;
  align-items: center;
  overflow: hidden;
}

.product-title img {
  width: 32px;
  transition: 0.3s;
  transform: translateX(-45px);
}

.product-title h5 {
  margin-left: 0.8rem;
  color: #422313;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 0;
  transition: 0.3s;
  transform: translateX(-45px);
}

.product-container:hover .product-title img,
.product-container:hover .product-title h5 {
  transform: translateX(0px);
}

/* BANNER CALSA */
.banner-calsa {
  min-height: 350px;
  padding: 2rem 0;
  background: url(../images/bg-banner-calsa.jpg) #ee3122;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
  display: flex;
  align-items: center;
}

/* Why us */
.why-us {
  padding: 3rem 0;
  background: url(../images/deco-map.svg) #f7f6f5;
  background-position: right center;
  background-size: auto;
  background-repeat: no-repeat;
}

.why-us-map {
  transition: 0.3s;
}

.why-us-map:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 0.55rem rgba(0, 0, 0, 0.308));
}

/* Carousel de clientes */
@keyframes sliders{
  from{
    transform:translateX(0) ;
  }
  to{
    transform:translateX(-100%) ;
  }
}
.logos{
  background:white;
  white-space:nowrap;
  position:relative;
  padding: 3rem 0;
  overflow: hidden;
  max-height: 185px;
}

.logos:before,
.logos:after{
  content:"";
  position:absolute;
  top:0;
  width:250px;
  height:100%;
  z-index:2;
}
.logos:before{
  left:0;
  background:linear-gradient(to left, rgba(255,255,255,0), white);
}
.logos:after{
  right:0;
  background:linear-gradient(to right, rgba(255,255,255,0), white);
}
.logos-slide{
  display:inline-block;
  animation: 75s sliders infinite linear;
}
.logos-slide img{
  width: 140px;
  margin: 0px 3rem;
  filter: grayscale(1);
  opacity: 0.7;
  transition: 0.3s;
}
.logos-slide img:hover {
  filter: none;
  opacity: 1;
}



/* ESTILOS CAROUSEL JS /////////////////// NO SE USAN
.customers-carousel {
  padding: 3rem 0;
  overflow: hidden;
  max-height: 185px;
}
.customers-carousel .f-carousel__slide {
  width: 14%;
}
.customers-carousel img {
  height: 100px;
  width: auto;
  margin: auto;
  display: block;
  filter: grayscale(1);
  opacity: 0.7;
  transition: 0.3s;
}
.customers-carousel img:hover {
  filter: none;
  opacity: 1;
}
*/

.banner-chemicals {
  padding: 2rem 0;
  min-height: 290px;
  background: url(../images/bg-banner-quimicos.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.banner-text-deco {
  text-decoration: underline;
  text-decoration-color: rgb(255, 255, 255);
}

/* Carousel testimonios */
.testimonials {
  background: url(../images/bg-testimonios.svg);
  background-size: auto;
  background-position: bottom left;
  background-repeat: no-repeat;
  padding: 4rem 0;
}

.testimonials-carousel .f-carousel__slide {
  width: 50%;
  padding: 0.5rem;
}

.testimonial-container {
  background-color: #fefdf1;
  padding: 1.6rem;
  position: relative;
  border-radius: 15px;
}

.testimonial-name {
  font-size: 16px;
}

.testimonial-position {
  font-size: 14px;
}

.testimonial-container::after {
  content: url(../images/deco-testimonios.svg);
  position: absolute;
  right: 15px;
  top: 15px;
}

.testimonial-person {
  display: flex;
  align-items: center;
  margin-top: 1.6rem;
}

.testimonial-person img {
  width: 48px;
  margin-right: 0.6rem;
}

.f-carousel__dots {
  position: relative;
  margin-top: 0rem;
}

.f-carousel__dots li.is-current .f-carousel__dot {
  width: 18px;
  height: 18px;
}

.f-carousel__dot {
  width: 13px;
  height: 13px;
  background-color: #422313;
}

.banner-price {
  background: url(../images/bg-banner-cotizacion.jpg) #e8e042;
  background-size: contain;
  background-position: bottom right;
  background-repeat: no-repeat;
  border-radius: 30px;
  padding: 2rem;
  transform: translateY(90px);
  min-height: 320px;
  display: flex;
  align-items: center;
}

/*///////////////////////// FOOTER //////////////////////////*/
footer {
  background: url(../images/bg-footer.svg) #422313;
  background-size: auto;
  background-position: bottom right;
  background-repeat: no-repeat;
  padding-top: 80px;
  color: white;
}

footer a {
  transition: 0.3s;
}

footer a:hover {
  color: #fff86d;
}

.icon-marker {
  width: 18px;
  margin-right: 0.4rem;
}

.social-media-container img {
  width: 45px;
  transition: 0.3s;
}

.social-media-container img:hover {
  transform: translateY(-6px);
}

.copy-end {
  background-color: transparent;
  border-top: 1px solid #ffffff38;
  color: #ffffff83;
  margin-top: 80px;
}

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

/*///////////////////////// FOOTER //////////////////////////
////////////////////////////////////////////////////////////*/
.internal-header .navbar {
  background-color: white;
}

.internal-header .nav-link {
  color: #422313 !important;
}

.section-header {
  padding: 3rem 0 3rem 0;
  min-height: 320px;
  background-position: right bottom;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  margin-top: 100px;
}

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

.section-breadcrumb {
  display: flex;
  align-items: center;
  margin-bottom: 0rem;
}

.section-breadcrumb .item-divider img {
  margin: 0 0.4rem;
  height: 7px;
  width: auto;
}

.section-breadcrumb a {
  color: white;
  transition: 0.3s;
}

.section-breadcrumb a:hover {
  color: #422313;
}

.section-breadcrumb span.active {
  font-weight: 600;
}

.since {
  padding: 4rem 0;
  background-image: url(../images/bg-about-section.svg);
  background-position: center;
  background-size: auto;
  background-repeat: no-repeat;
}

.since-video {
  border-radius: 15px;
  overflow: hidden;
  height: 520px;
}

.since-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mision vision */
.mision-vision-container {
  padding: 1.6rem;
  border-radius: 15px;
  background-color: #fefdf1;
}

.mision-vision-title {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.mision-vision-title img {
  height: 32px;
  width: auto;
  margin-right: 0.4rem;
}

/* Valores */
.values {
  padding: 4rem 0;
  background-color: #fefdf1;
}

.value-icon-container {
  text-align: center;
}

.value-icon-container img {
  height: 90px;
  width: 90px;
  transition: 0.3s;
  margin-bottom: 1.2rem;
}

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

.value-icon-container p {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
  font-family: "Funnel Display", serif;
}

.leaders {
  padding: 6rem 0 4rem 0;
  background-image: url(../images/bg-lideres.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/*////////////////////// IMPORTADOS //////////////////*/
.section-header.imported-section {
  background-image: url(../images/bg-header-importados.jpg);
}

.imported {
  padding: 4rem 0;
  background-image: url(../images/bg-importados.svg);
  background-position: center;
  background-size: auto;
  background-repeat: no-repeat;
}

.imported-carousel .f-carousel__slide {
  width: 100%;
  padding: 0.5rem;
}

.imported-carousel img {
  height: 460px;
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  margin: 0 auto;
}

.imported-carousel .f-carousel__dots {
  position: absolute;
  bottom: 2rem;
}

.imported-carousel .f-carousel__dots li.is-current .f-carousel__dot {
  width: 18px;
  height: 18px;
  background-color: #e8e042;
}

.imported-carousel .f-carousel__dot {
  width: 13px;
  height: 13px;
  background-color: #ffffff;
}

.imported-text-block {
  background-color: #fefdf1;
  padding: 2rem 8rem;
  border-radius: 15px;
}

.imported-text-block p {
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 700;
}

.imported-text-block img {
  width: 95px;
  height: 95px;
}

.imported-products {
  padding: 4rem 0;
  background: url(../images/bg-productos-importados.svg) #f7f6f5;
  background-position: bottom right;
  background-size: auto;
  background-repeat: no-repeat;
}

.imported-product-container img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 0.8rem;
  transition: 0.3s;
}

.imported-product-container:hover img {
  transform: scale(1.05);
}

.imported-product-container p {
  font-size: 21px;
  font-weight: 600;
}

.leaders.leaders-imported {
  background-image: url(../images/bg-lideres-importados.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

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

.contact {
  padding: 4rem 0;
  background-image: url(../images/bg-contacto.svg);
  background-position: bottom right;
  background-size: auto;
  background-repeat: no-repeat;
}

.contact-cards {
  background-color: #fefdf1;
  padding: 0 0 4rem 0;
}

.contact-card-container {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  text-align: center;
  min-height: 290px;
  margin-top: -3rem;
}

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

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

.contact-card-container a:hover {
  transform: translateY(-4px);
}

.social-media-contact img {
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
.social-media-contact img:hover {
  transform: scale(1.08);
}

form label {
  font-size: 15px;
  color: #422313bd;
  font-weight: 600;
}

form .form-control {
  border: 1px solid #42231331;
  transition: 0.3s;
  border-radius: 8px;
}

form .form-control:hover,
form .form-control:focus {
  border-color: #422313;
  box-shadow: none !important;
}

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


/*////////////////////// PRODUCTOS //////////////////*/
.section-header.products-section {
  background-image: url(../images/bg-header-productos.jpg);
}

.products-internal {
  padding: 4rem 0;
  background-image: url(../images/bg-productos-interna.svg);
  background-position: bottom right;
  background-size: contain;
  background-repeat: no-repeat;
}

.products-internal-container {
  border-radius: 15px;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transition: 0.3s;
  min-height: 284px;
  margin-bottom: .6rem;
}
.products-internal-container:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.25);
}

.products-internal-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.products-internal-text {
  padding: 1rem;
}

.products-internal-category {
  color: #cbc437 !important;
  font-weight: 300;
  margin-bottom: 0.2rem;
}

.products-internal-name {
  font-size: 20px;
  font-weight: 600;
  font-family: "Funnel Display", serif;
}

.products-internal-weight {
  display: flex;
  align-items: center;
}

.products-internal-weight p {
  margin-bottom: 0;
  font-weight: 300;
}

.products-internal-weight img {
  height: 20px;
  width: auto;
  margin-right: 0.4rem;
}

.products-internal-container-button {
  background: url(../images/bg-button.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}

.products-internal-container-button img {
  width: 85px;
  height: 85px;
  margin-bottom: 1rem;
}

.products-internal-container-button p {
  font-size: 20px;
  font-weight: 600;
  font-family: "Funnel Display", serif;
  color: #422313;
}
/*////////////////////// RESPONSIVE //////////////////*/

@media (max-width: 1440px) {
  .banner-calsa {
    background-position-x: -350px;
  }
}

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

  .main h1 {
    font-size: 50px;
  }

  .banner-calsa {
    background-position-x: -450px;
  }

  .products-internal-category {
    font-size: 15px;
  }
  .products-internal-name {
    font-size: 18px;
  }
}

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

  .navbar.bsnav-sticky.bsnav-sticky-fade.sticked.in .header-logo {
    height: 55px;
  }

  .nav-link {
    color: #422313 !important;
    font-size: 18px;
  }

  .btn-nav {
    margin-top: 1rem;
  }

  .main {
    flex-wrap: wrap;
    align-items: end;
    padding: 8rem 0 0 0;
  }

  .main-carousel-container {
    position: relative;
    width: 100%;
    height: 420px;
    margin-top: 2rem;
  }

  .main-carousel-overlay {
    display: none;
  }

  .icons-carousel .f-carousel__slide {
    width: 40%;
  }

  .icons-carousel .f-carousel__nav {
    position: relative;
    width: 100%;
    justify-content: center;
    display: flex;
    flex-direction: row-reverse;
    margin-top: 1rem;
  }

  .icons-carousel .f-carousel__nav button {
    position: relative !important;
    margin: 0 1rem;
    color: #e8e042;
    transform: none !important;
  }

  .banner-calsa {
    background-position-x: -650px;
  }
  .logos:before,
  .logos:after{
    width:100px;
  }
  .logos-slide{
    animation: 50s slide infinite linear;
  }
  .logos-slide img{
    width: 100px;
    margin: 0px 2rem;
  }
  .testimonials-carousel .f-carousel__slide {
    width: 100%;
  }

  .section-header {
    background-position-x: 75%;
  }

  .since-video {
    height: 320px;
  }

  .imported-text-block {
    padding: 2rem;
  }

  .contact-card-container {
    padding: 1rem;
  }
}

@media (max-width: 525px) {
  h2.h1 {
    font-size: 32px;
  }

  .header-logo {
    height: 65px;
  }

  .main {
    min-height: 85vh;
  }

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

  .main-carousel-container {
    height: 340px;
  }

  .icon-container {
    height: 260px;
  }

  .icons-carousel .f-carousel__slide {
    width: 80%;
  }

  .banner-calsa {
    padding: 2rem 0 16rem 0;
    background: url(../images/bg-banner-calsa-sm.jpg) #ee3122;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left center;
    display: flex;
    align-items: start;
  }

  .customers-carousel .f-carousel__slide {
    width: 40%;
  }

  .banner-price {
    padding: 2rem 2rem 12rem 2rem;
    background-size: 90%;
  }

  .copyright {
    flex-wrap: wrap;
  }

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

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

  .button-center {
    margin: 0 auto;
  }

  .section-header {
    margin-top: 90px;
    min-height: 250px;
    background-position: left bottom;
  }

  .imported-text-block {
    text-align: center;
  }

  .imported-product-container img {
    height: 160px;
  }
  .imported-product-container p {
    font-size: 18px;
  }
  .contact-card-container {
    padding: 1.6rem;
    min-height: auto;
    margin-top: -3rem;
    margin-bottom: 2.6rem;
  }
  .products-internal-container {
    min-height: auto;
  }
}

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

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



