:root {
  --redColor: #BD0152;
  --greenColor: #369C44;
  --lightGreenColor: #9BCD28;
  --lightGrayColor: #EDEAEA;
  --brownColor: #988A57;
  --orangeColor: #F8981D;
  --blackColor: #494949;
  --yellowColor: #E3BE2E;
  --aquaColor: #579A93;
  --blueColor: #4477CA;
  --pinkColor: #BA5598;
  --darkGreenColor: #749D13;
}

* {
  font-size: 1.1rem;
}

a {
  color: inherit;
  text-decoration: none !important;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

a:hover {
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  color: inherit;
}

.df, .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.df.c, .row.c {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.df.c.cc, .row.c.cc {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.df.c.cs, .row.c.cs {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.df.c.sc, .row.c.sc {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.df.c.sbi, .row.c.sbi {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: inherit;
      -ms-flex-align: inherit;
          align-items: inherit;
}

.df.c.isb, .row.c.isb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: inherit;
      -ms-flex-align: inherit;
          align-items: inherit;
}

.df.r, .row.r {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.df.r.cc, .row.r.cc {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.df.r.cs, .row.r.cs {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.df.r.sc, .row.r.sc {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.df.r.sb, .row.r.sb {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.df.r.sbi, .row.r.sbi {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: inherit;
      -ms-flex-align: inherit;
          align-items: inherit;
}

.df.r.sei, .row.r.sei {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: inherit;
      -ms-flex-align: inherit;
          align-items: inherit;
}

/* BACKGROUND */
.bg-red {
  background: var(--redColor);
}

.bg-green {
  background: var(--greenColor);
}

.bg-lightGreen {
  background: var(--lightGreenColor);
}

.bg-lightGray {
  background: var(--lightGrayColor);
}

.bg-yellow {
  background: var(--yellowColor);
}

.bg-aqua {
  background: var(--aquaColor);
}

.bg-blue {
  background: var(--blueColor);
}

.bg-pink {
  background: var(--pinkColor);
}

.bg-brown {
  background: var(--brownColor);
}

.bg-orange {
  background: var(--orangeColor);
}

.bg-gray {
  background: var(--blackColor);
}

/* BORDERS */
.b-brown {
  border: 4px solid var(--brownColor);
}

.b-lightGreen {
  border: 4px solid var(--lightGreenColor);
}

.b-green {
  border: 4px solid var(--greenColor);
}

.b-orange {
  border: 4px solid var(--orangeColor);
}

.b-gray {
  border: 4px solid var(--blackColor);
}

.b-yellow {
  border: 4px solid var(--yellowColor);
}

.b-aqua {
  border: 4px solid var(--aquaColor);
}

.b-blue {
  border: 4px solid var(--blueColor);
}

.b-darkGreen {
  border: 4px solid var(--darkGreenColor);
}

.b-red {
  border: 4px solid var(--redColor);
}

.bb-brown {
  border-bottom: 4px solid var(--brownColor);
}

.bb-lightGreen {
  border-bottom: 4px solid var(--lightGreenColor);
}

.bb-green {
  border-bottom: 4px solid var(--greenColor);
}

.bb-orange {
  border-bottom: 4px solid var(--orangeColor);
}

.bb-gray {
  border-bottom: 4px solid var(--blackColor);
}

.bb-yellow {
  border-bottom: 4px solid var(--yellowColor);
}

.bb-aqua {
  border-bottom: 4px solid var(--aquaColor);
}

.bb-blue {
  border-bottom: 4px solid var(--blueColor);
}

.bb-darkGreen {
  border-bottom: 4px solid var(--darkGreenColor);
}

.bb-red {
  border-bottom: 4px solid var(--redColor);
}

.bl-red {
  border-left: 4px solid var(--redColor);
}

.bl-brown {
  border-left: 4px solid var(--brownColor);
}

.bl-lightGreen {
  border-left: 4px solid var(--lightGreenColor);
}

.bl-orange {
  border-left: 4px solid var(--orangeColor);
}

.bl-black {
  border-left: 4px solid var(--blackColor);
}

/* FONT SIZE */
.title {
  font-size: 1.9rem;
}

/* FONT COLOR */
.white {
  color: white;
}

.green {
  color: var(--greenColor);
}

.lightGreen {
  color: var(--lightGreenColor);
}

.lightGray {
  color: var(--lightGrayColor);
}

.brown {
  color: var(--brownColor);
}

.orange {
  color: var(--orangeColor);
}

.gray {
  color: var(--blackColor);
}

.black {
  color: black !important;
}

/* FONT WEIGHT */
.lighter {
  font-weight: lighter;
}

.bold {
  font-weight: bold;
}

/* TEXT ALIGNMENT */
.text-justify {
  text-align: justify;
}

/* LIST */
ul {
  list-style: square;
  padding-left: 1rem;
}

ul li::marker {
  color: var(--lightGreenColor);
}

/* BUTTON */
.btn-black {
  background: black;
  border: 2px solid black;
  color: white;
  border-radius: 0 30px 30px 0;
  width: 187px;
  height: 40.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 20px;
}

.btn-black .fa-arrow-circle-right {
  font-size: 2.1rem;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: 10px;
}

.btn-black .fa-arrow-circle-right::before {
  margin-top: 0;
}

.btn-black:hover {
  background: white;
  border: 2px solid black;
  color: black;
}

.btn-green {
  background: var(--greenColor);
  border: 2px solid var(--greenColor);
  color: white;
  border-radius: 0 30px 30px 0;
  width: 155px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 20px;
}

.btn-green .fa-arrow-circle-right {
  font-size: 2.1rem;
  position: relative;
  margin-left: 10px;
}

.btn-green .fa-arrow-circle-right::before {
  margin-top: 0;
}

.btn-green:hover {
  background: white;
  border: 2px solid var(--greenColor);
  color: var(--greenColor);
}

/* SLIDER */
.owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  width: 100%;
  bottom: 50%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}

.owl-prev, .owl-next {
  width: 45px;
  height: 45px;
  background: var(--redColor) !important;
  border-radius: 30px !important;
}

.owl-prev .fas, .owl-next .fas {
  color: white;
}

/* CONTENT */
.navbar-nav {
  width: 100%;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.navbar-nav .nav-link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.navbar-nav .nav-link:hover {
  border-bottom: 5px solid var(--lightGreenColor);
}

.navbar-nav .nav-link.active {
  border-bottom: 5px solid var(--lightGreenColor);
}

.navbar-nav .social-nav {
  padding-top: 0.5rem;
}

.navbar-nav .social-nav .social-link {
  background: var(--greenColor);
  border: 2px solid var(--greenColor);
  border-radius: 30px;
  height: 32px;
  width: 32pX;
  text-align: center;
  margin-left: 0.5rem;
  color: white;
}

.navbar-nav .social-nav .social-link:hover {
  background: transparent;
  border: 2px solid var(--greenColor);
  color: var(--greenColor);
}

.navbar-nav li:hover > ul.dropdown-menu {
  display: block;
  border: none;
}

.navbar-nav li:hover > ul.dropdown-menu .dropdown-item:hover {
  background: var(--lightGreenColor);
  color: white;
}

.carrusel {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow: auto;
}

.fa-square {
  margin-right: 10px;
  font-size: 0.4rem;
}

.properties p:nth-child(1n +2) {
  margin-bottom: 0.3rem;
}

.properties p:last-child {
  margin-bottom: 1rem;
}

#button {
  width: inherit;
  padding: 10px;
}

#button .btn-green {
  width: auto;
  border-radius: 0;
  padding: 0 20px;
}

#insecticida .btn-black {
  width: 200px;
}

#herbicida .btn-black {
  width: 183px;
}

#regulador .btn-black {
  width: 373px;
}

.products .carousel-item img {
  margin: 0 auto;
}

.products .carousel-indicators {
  position: relative;
}

.products .carousel-indicators [data-bs-target] {
  width: 150px;
  height: 120px;
}

.products .carousel-indicators [data-bs-target] img {
  margin: 0 auto;
}

input[type="text"], input[type="mail"], input[type="tel"] {
  width: 100%;
  background-color: var(--lightGrayColor) !important;
  border: 1px solid var(--lightGrayColor);
  border-radius: 0 !important;
}

input[type="button"] {
  border: 2px solid var(--greenColor);
  border-radius: 0;
  color: white;
}

input[type="button"]:hover {
  background: transparent;
  color: var(--greenColor);
}

select {
  width: 100%;
  padding: .375rem .75rem;
  background-color: var(--lightGrayColor) !important;
  border: 1px solid var(--lightGrayColor);
  border-radius: 0 !important;
}

.footer-link a:hover {
  color: var(--lightGreenColor);
}
/*# sourceMappingURL=index.css.map */