/*
 * Custom CSS
 */

html {
  scroll-behavior: smooth;
}
body {
  color: #254582;
  font-family: 'Montserrat', sans-serif;
}

:root {
  --primary-color: #254582;
  --bs-secondary-color: #2559D8;
  --bs-font-sans-serif: 'Montserrat', sans-serif;
  /* --bs-body-bg: var(--bs-gray-100); */
}
.b-primary {
 color: var(--primary-color); 
}
.b-light {
  color: var(--bs-secondary-color);
}

.down {
  position: absolute;
  width: auto;
  right: 0;
  bottom: 1.5em;
  left: 0;
  width: 30px;
  margin: 0 auto;
}

/* menu */
.navbar ul li a {
  /* height: 80px; */
  color: var(--primary-color);
  font-weight: 600;
}

.navbar-nav {
  gap: 4em;
}

/* banner */
.banner {
  width: 100%;
  height: calc( 100vh - 80px );
  position: relative;
  background: url('./assets/img/fondo-banner.png');
  object-fit: cover;
  object-position: center;
  z-index: -3;
}
.about {
  position: relative;
}
.img-wrapper {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;  
}
.img-wrapper img.splash {
  z-index: -1;
  position: absolute;
  bottom: -80px;
  width: 100%;
}
.img-wrapper img.bottle {
  width: 14%;
  position: absolute;
  right: 17%;
  bottom: -20px;
  z-index: -2;
}
.img-wrapper img.circle {
  position: absolute;
  width: 35%;
  z-index: -3;
  bottom: 15%;
  right: -20%;
  left: 0;
  margin: auto;
}
.pill-ws {
  border: 1px solid #184093;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--bs-secondary-color);
}
.products {
  padding-top: 200px;
  background: url('./assets/img/fondo-productos.png');
  object-fit: cover;
  object-position: top;
  position: relative;
  /* background: rgb(35,70,108);
  background: linear-gradient(0deg, rgba(35,70,108,1) 0%, rgba(55,122,187,1) 35%, rgba(210,246,254,1) 100%); */
}
.products-wrapper {
  position: relative;
}
.products-wrapper .circle{
  width: 30%;
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  bottom: 8em;
  margin: auto;
}
.truck {
  position: relative;
}
.truck .text-wrapper {
  width: 65%;
  font-size: .9em;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  padding-right: .5em;
}
.graph-wrapper {
  position: relative;
  display: flex;
  justify-content: end;
  z-index: 3;
}
.drop {
  position: relative;
}
.drop img {
  width: 150px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto  ;
  position: absolute;
}
.graph-wrapper .circle {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  height: 100%;
}
.graph-escalas {
  top: 0;
  left: 0;
}
.graph-wrapper .escala-ph,
.graph-wrapper .escala-ppm {
  width: 75%;
  position: relative;
  z-index: 2;
}
.info-block-2 {
  padding-top: 150px;
  background-color: #184093;
  position: relative;
  overflow: hidden;
}
.info-block-2 img.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
}

.diagonal-sect {
  height: 140px;
  transform: skewY(-5deg);
  position: relative;
  bottom: -70px;
  margin-top: -80px;
  z-index: 2;
  background-color: #ffffff;
}

.bottles-diag {
  position: absolute;
  bottom: -20px;
  right: 0;
  width: 35%;
  z-index: 1;
}

.delivery {
  overflow: hidden;
  margin-bottom: -20px;
}
.title-icon {
  position: relative;
  padding-right: 3em;
}
.title-icon img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50px;
}

/* footer */
footer {
  z-index: 2;
  width: 100%;
  position: relative;
  background: url('./assets/img/footer-bg.png');
  object-fit: cover;
  object-position: top;
  padding: 5em 0;
}

@media (max-width: 767.98px) {

  .navbar-nav {
    gap: 0;
  }

  .truck .text-wrapper {
    width: 100%;
    position: relative;
    font-size: .75em;
  }

  .bottles-diag {
    width: 70%;
  }

  .delivery {
    padding-bottom: 200px;
  }
  

}