* {
  padding: 0;
  margin: 0;
}

.hamburger-inner,
.hamburger-inner::after,
.hamburger-inner::before {
  height: 2px;
  width: 30px;
}

.hamburger-box {
  width: 30px;
}

.hamburger-inner::after {
  bottom: -8px;
}

.hamburger-inner::before {
  top: -8px;
}

.btn-light {
  background-color: #e3eaef;
  border-color: #e3eaef;
  box-shadow: 0 0.125rem 0.25rem 0 rgba(58, 59, 69, 0.2);
}

body {
  font-family: "Open Sans Regular";
  color: #777;
  background-color: #f9f8f8;
}

h1 {
  font-family: "Open Sans Regular";
  font-weight: 600;
}

h2 {
  font-family: "Open Sans Regular";
  font-weight: 600;
}

h3 {
  font-family: "Open Sans Regular";
  font-weight: 600;
}

h4 {
  font-family: "Open Sans Regular";
  font-weight: 600;
}

h5 {
  font-family: "Open Sans Regular";
  font-weight: 600;
}

@media (max-width: 575px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  h3 {
    font-size: 1.6rem;
  }
  h4 {
    font-size: 1.4rem;
  }
  h5 {
    font-size: 1.2rem;
  }
}
.hrBottomTitle {
  display: flex;
  justify-content: center;
}
.hrBottomTitle hr {
  height: 3px;
  color: #065ab8;
  border: none;
  background-color: #065ab8;
  width: 100px;
  margin-top: 10px;
}

.hrBottomTitleWhite {
  display: flex;
  justify-content: center;
}
.hrBottomTitleWhite hr {
  height: 3px;
  color: #fff;
  border: none;
  background-color: #fff;
  width: 100px;
  margin-top: 10px;
}

.hrBottom {
  display: flex;
  justify-content: center;
}
.hrBottom hr {
  height: 3px;
  color: #065ab8;
  border: none;
  background-color: #065ab8;
  width: 100%;
  margin-top: 10px;
}

.transitionOpacity {
  animation-duration: 0.8s;
  animation-name: transitionOpacityAnimation;
  opacity: 1;
}

.transitionOpacityTotalWidth {
  animation-duration: 0.8s;
  animation-name: transitionOpacityAnimationTotalWidth;
  opacity: 1;
}

#preload {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
}

@keyframes transitionOpacityAnimation {
  from {
    opacity: 0;
    width: 0;
  }
  to {
    opacity: 1;
    width: 100px;
  }
}
@keyframes transitionOpacityAnimationTotalWidth {
  from {
    opacity: 0;
    width: 0;
  }
  to {
    opacity: 1;
    width: 100%;
  }
}
.fontW400 {
  font-weight: 400;
}

.fontW600 {
  font-weight: 600;
}

.colorAzulAromilandia {
  color: #065ab8;
}

.colorBlack {
  color: black;
}

.buttonNavbar {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.button {
  font-size: 18px;
  border-radius: 0;
  padding: 8px 25px;
  transition: 0.3s all ease-in-out;
}

.buttonRounded {
  font-size: 18px;
  border-radius: 20px;
  padding: 8px 25px;
  transition: 0.3s all ease-in-out;
}

.btnEnlace {
  text-decoration: none;
  color: #fff;
}
.btnEnlace:hover {
  color: #fff;
  text-decoration: none;
}

.btnEnlaceNegro {
  text-decoration: none;
  color: black;
}
.btnEnlaceNegro:hover {
  color: black;
  text-decoration: none;
}

.btnBlue {
  color: #fff;
  background-color: #0073e1;
  border: 1px solid #0073e1;
}
.btnBlue:hover {
  background-color: #014a8f;
  border-color: #014a8f;
}

.btnYellow {
  color: black;
  background-color: #fae53c;
  border: 1px solid #fae53c;
}
.btnYellow:hover {
  background-color: #fff;
  border-color: #fff;
}

.btnYellowBlack {
  color: black;
  background-color: #fae53c;
  border: 1px solid #fae53c;
}
.btnYellowBlack:hover {
  border: 1px solid black;
  background-color: #fff;
}

.sectionSlide {
  display: block;
}

@media (max-width: 575px) {
  .sectionSlide img {
    object-fit: cover;
    height: 150px;
  }
}
.slideInicio .bgPositionCenter {
  background-position: center;
}
.slideInicio .bgPositionTop {
  background-position: top;
}
.slideInicio .imgBannerAromi {
  background-color: #0073e1;
}
.slideInicio .imgSlide {
  background-repeat: no-repeat;
  width: 100%;
  height: 500px;
  background-size: cover;
}
.slideInicio .hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}

@media (min-width: 1200px) {
  .slideInicio .imgBannerAromi {
    background-size: 50vw;
  }
  .hero-text .paragraphHero {
    font-size: 20px;
  }
}
@media (max-width: 1199px) {
  .slideInicio .imgSlide {
    height: 470px;
  }
  .slideInicio .imgBannerAromi {
    background-size: 70vw;
  }
  .slideInicio .hero-text {
    width: 500px;
  }
  .slideInicio .hero-text .titleHero {
    font-size: 26px;
  }
  .slideInicio .hero-text .paragraphHero {
    font-size: 18px;
  }
  .slideInicio .hero-text .button {
    font-size: 20px;
    padding: 8px 24px;
  }
}
@media (max-width: 991px) {
  .slideInicio .imgSlide {
    height: 460px;
  }
  .slideInicio .hero-text {
    width: 430px;
  }
  .slideInicio .hero-text .titleHero {
    font-size: 24px;
  }
  .slideInicio .hero-text .paragraphHero {
    font-size: 16px;
  }
  .slideInicio .hero-text .button {
    font-size: 18px;
    padding: 6px 24px;
  }
}
@media (max-width: 767px) {
  .slideInicio .imgSlide {
    height: 360px;
  }
  .slideInicio .hero-text {
    width: 430px;
  }
  .slideInicio .hero-text .titleHero {
    font-size: 24px;
  }
  .slideInicio .hero-text .paragraphHero {
    font-size: 16px;
  }
  .slideInicio .hero-text .button {
    font-size: 18px;
    padding: 6px 24px;
  }
}
@media (max-width: 575px) {
  .slideInicio .imgSlide {
    height: 260px;
  }
  .slideInicio .hero-text {
    width: 230px;
  }
  .slideInicio .hero-text .titleHero {
    font-size: 18px;
  }
  .slideInicio .hero-text .paragraphHero {
    font-size: 14px;
  }
  .slideInicio .hero-text .button {
    font-size: 14px;
    padding: 4px 20px;
  }
}
.laesencia-slide {
  background: black !important;
  color: white !important;
}

.laesencia-title {
  font-size: 3.5rem !important;
  font-weight: bold !important;
  color: white !important;
  margin-bottom: 10px !important;
}

.laesencia-subtitle {
  font-size: 2.5rem !important;
  font-weight: 300 !important;
  letter-spacing: 3px !important;
  color: white !important;
  margin-bottom: 20px !important;
}

.laesencia-description {
  font-size: 1.2rem !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

.laesencia-image {
  max-width: 60% !important;
  height: auto !important;
  border-radius: 10px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

@media (max-width: 768px) {
  .laesencia-title {
    font-size: 1.6rem !important;
  }
  .laesencia-subtitle {
    font-size: 1rem !important;
  }
  .laesencia-description {
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
  }
}
.slick-prev:before {
  color: black;
  font-family: "Font Awesome 5 Free";
  content: "\f053";
  font-weight: 900;
  font-size: 30px;
}

.slick-next:before {
  color: black;
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
  font-size: 30px;
}

.slick-slider .slick-slide {
  padding: 30px 15px 30px 15px;
}

.slick-track {
  display: flex;
}
.slick-track .slick-slide {
  display: flex;
  height: auto;
  align-items: stretch;
}

header {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background-color: #f8f9fa !important;
  padding-top: 20px;
  padding-bottom: 20px;
  position: fixed;
  z-index: 20;
  width: 100%;
}
header .nav-link {
  padding: 0 !important;
}
header .navLogo img {
  height: 40px;
  width: auto;
  filter: invert(23%) sepia(75%) saturate(2792%) hue-rotate(201deg) brightness(84%) contrast(95%);
}
header .navbar-nav a {
  font-size: 16px;
  color: #0073e1 !important;
  font-family: "Open Sans SemiBold";
  background-image: linear-gradient(#50a3fd, #50a3fd);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  transition: background-size 0.3s;
}
header .navbar-nav a:hover, header .navbar-nav a:focus {
  background-size: 100% 2px;
  text-decoration: none;
  color: #50a3fd !important;
}

@media (min-width: 992px) {
  header .nav-link {
    font-size: 18px !important;
  }
}
@media (max-width: 991px) {
  header .nav-link {
    font-size: 17px;
  }
}
.footer {
  margin-top: 150px;
  clear: both;
  width: 100%;
  background-color: #014a8f;
  color: #fff;
}
.footer .firstTop {
  text-align: center;
  padding-top: 40px;
}
.footer .firstTop ul li {
  display: inline;
  font-size: 16px;
  font-family: "Open Sans SemiBold";
}
.footer .firstTop ul li a {
  padding: 0 !important;
  font-size: 16px !important;
  color: #fff;
  background-image: linear-gradient(#fff, #fff);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  transition: background-size 0.3s;
}
.footer .firstTop ul li a:hover, .footer .firstTop ul li a:focus {
  background-size: 100% 2px;
  text-decoration: none;
  color: #fff !important;
}
.footer .secondTop {
  text-align: center;
}
.footer .secondTop h3 {
  display: flex;
  flex-direction: row;
}
.footer .secondTop h3:before, .footer .secondTop h3:after {
  content: "";
  flex: 1 1;
  border-bottom: 1px solid;
  margin: auto;
}
.footer .secondTop h3:before {
  margin-right: 10px;
}
.footer .secondTop h3:after {
  margin-left: 10px;
}
.footer .thirdTop {
  background-color: #014a8f;
  padding-top: 40px;
  padding-bottom: 70px;
}
.footer .thirdTop .footerSucursales {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  text-align: center;
}
.footer .thirdTop a {
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.footer .thirdTop .wpp:hover {
  color: #fae53c;
}
.footer .thirdTop .fb:hover {
  color: #fae53c;
}
.footer .thirdTop .insta:hover {
  color: #fae53c;
}
.footer .bottom {
  background-color: black;
  padding: 15px;
  text-align: center;
}
.footer .bottom a {
  text-decoration: none;
  color: #fff;
}
.footer .bottom span {
  font-size: 14px;
}

.scroll-to-top {
  z-index: 20;
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  display: none;
  text-align: center;
  color: #fff;
  background: #0073e1;
  line-height: 46px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  width: 58px;
  height: 58px;
  text-align: center;
  border-radius: 50%;
}
.scroll-to-top .fas {
  padding-top: 16px;
  font-size: 25px;
}

.scroll-to-top:hover {
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.scroll-to-top:focus,
.scroll-to-top:hover {
  color: #fff;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.bannerRedes {
  margin-top: 100px;
  background-repeat: no-repeat;
  width: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url("../img/utiles/socialMedia.jpg");
  background-position: center;
  background-size: cover;
  padding-top: 30px;
  padding-bottom: 30px;
}
.bannerRedes p {
  font-size: 37px;
  font-weight: 600;
}

@media (min-width: 768px) {
  .bannerRedes {
    background-attachment: fixed;
  }
}
@media (max-width: 991px) {
  .bannerRedes p {
    font-size: 27px;
  }
}
@media (max-width: 575px) {
  .bannerRedes p {
    font-size: 25px;
  }
}
.contenido {
  padding-top: 90px;
}

.sectionTituloPagina {
  padding-left: 20px;
  padding-right: 20px;
  height: 300px;
  background-color: #0073e1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.sectionTituloPagina h1 {
  color: #fff;
  font-size: 60px;
}

@media (max-width: 575px) {
  .sectionTituloPagina {
    height: 200px;
  }
  .sectionTituloPagina h1 {
    font-size: 40px;
  }
}
.sectionCards {
  display: flex;
  align-items: stretch;
}

@media (max-width: 767px) {
  .sectionCards {
    margin-top: 50px;
  }
}
@media (min-width: 768px) {
  .sectionCards {
    margin-top: 100px;
  }
}
.bodyCard {
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
}
.bodyCard i {
  color: #065ab8;
  font-size: 40px;
}
.bodyCard p {
  color: #8491a5 !important;
}

.iconCard {
  font-size: 40px;
}

.titleCard {
  color: #777;
}

@media (min-width: 576px) {
  .titleCard {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .titleCard {
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .titleCardSlide {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 124px;
  }
  .titleCard {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
  }
}
@media (max-width: 975px) {
  .titleCardSlide {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 124px;
  }
}
@media (max-width: 767px) {
  .titleCardSlide {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 117px;
  }
}
@media (max-width: 575px) {
  .titleCardSlide {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 116px;
  }
}
.titleCardSlide {
  color: #777;
}

@media (min-width: 576px) {
  .titleCardSlide {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .titleCardSlide {
    font-size: 16px;
  }
}
.noBorder {
  border: none !important;
}

.border {
  border: 1px solid #ccc !important;
}

.shadowCard {
  box-shadow: -1px 9px 18px 0px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
  height: 100%;
  cursor: pointer;
  border-radius: 20px;
}

@media (min-width: 576px) {
  .shadowCard:hover {
    transform: scale(1.05);
  }
}
.sectionFabricas {
  margin-top: 100px;
  margin-bottom: 100px;
}
.sectionFabricas .fabricasImgs img {
  cursor: pointer;
  filter: grayscale(1);
  transition: filter 0.5s, transform 0.5s;
}
.sectionFabricas .fabricasImgs img:hover {
  filter: none;
  transform: scale(1.09);
}

.sectionNuestrosArticulos {
  margin-top: 100px;
}

.nuestrosArticulos {
  display: flex;
  align-items: stretch;
  padding: 20px 40px;
}

.shadowCardArticle {
  box-shadow: -1px 9px 18px 0px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
  height: 100%;
  cursor: pointer;
}

@media (min-width: 576px) {
  .shadowCardArticle:hover {
    transform: scale(1.05);
  }
}
.bodyNuestrosArticulos {
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
}
.bodyNuestrosArticulos i {
  color: #065ab8;
  font-size: 40px;
}
.bodyNuestrosArticulos img {
  border-radius: 10px;
}

.sectionVentaArticulos {
  background-color: #065ab8;
  margin-top: 100px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-content: center;
  padding-top: 50px;
  padding-bottom: 50px;
}
.sectionVentaArticulos .containerVenta {
  display: flex;
  justify-content: center;
  align-content: center;
}
.sectionVentaArticulos .rowVenta {
  display: flex;
  justify-content: center;
  align-content: center;
}

.collapsible-link {
  font-size: 18px;
  color: #0073e1;
  /* Horizontal line */
  /* Vertical line */
}
.collapsible-link:before {
  content: "";
  width: 14px;
  height: 2px;
  background: #777;
  position: absolute;
  top: calc(50% - 1px);
  right: 1rem;
  display: block;
  transition: all 0.3s;
}
.collapsible-link:after {
  content: "";
  width: 2px;
  height: 14px;
  background: #777;
  position: absolute;
  top: calc(50% - 7px);
  right: calc(1rem + 6px);
  display: block;
  transition: all 0.3s;
}
.collapsible-link:hover {
  transition: all 0.3s;
  color: #50a3fd;
  text-decoration: none;
}

@media (max-width: 767px) {
  .collapsible-link {
    font-size: 16px;
  }
}
.collapsible-link[aria-expanded=true]::after {
  transform: rotate(90deg) translateX(-1px);
}

.collapsible-link[aria-expanded=true]::before {
  transform: rotate(180deg);
}

.containerModalArticle {
  display: flex;
  flex-direction: row;
}

@media (min-width: 992px) {
  .containerModalArticle h2 {
    font-size: 30px;
  }
  .containerModalArticle .description {
    font-size: 30px;
  }
  .containerModalArticle img {
    height: 300px;
    border-radius: 10px;
  }
}
@media (max-width: 991px) {
  .containerModalArticle h2 {
    font-size: 17px;
  }
  .containerModalArticle .description {
    font-size: 20px;
  }
  .containerModalArticle img {
    height: 245px;
    border-radius: 10px;
  }
}
@media (max-width: 575px) {
  .containerModalArticle {
    flex-direction: column;
    align-items: center;
  }
  .containerModalArticle h2 {
    font-size: 20px;
  }
  .containerModalArticle .description {
    font-size: 20px;
  }
  .containerModalArticle img {
    height: 245px;
    border-radius: 10px;
  }
}
.page-item.active .page-link {
  background-color: #0073e1;
  border-color: #0073e1;
}

.pagination {
  flex-wrap: wrap;
}

.page-item.active .page-link {
  z-index: 0;
}

.sectionArticulos {
  margin-top: 50px;
  margin-bottom: 100px;
}
.sectionArticulos .divCategorias {
  padding: 20px;
}
.sectionArticulos .divArticulos {
  width: 100%;
  padding: 20px;
}
.sectionArticulos .divArticulos .filtrosActuales {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.sectionArticulos .divArticulos .filtrosActuales .divTipoPrecio {
  width: 250px;
}
@media (max-width: 767px) {
  .sectionArticulos .divArticulos .filtrosActuales {
    flex-direction: column;
  }
}

@media (min-width: 992px) {
  .sectionArticulos {
    display: flex;
  }
  .sectionArticulos .divCategorias {
    width: 500px;
  }
}
@media (max-width: 991px) {
  .sectionArticulos {
    display: block;
  }
  .sectionArticulos .divCategorias {
    width: 100%;
  }
}
.categoria {
  cursor: pointer;
  color: #777;
  font-size: 18px;
}
.categoria:hover {
  text-decoration: none;
  color: #065ab8;
}

@media (max-width: 767px) {
  .categoria {
    font-size: 15px;
  }
  .downloadCatalogo {
    font-size: 14px;
  }
}
.mostrandoCategoria span {
  font-size: 18px;
}
.mostrandoCategoria strong {
  font-size: 18px;
}

.precioArticulo {
  color: black;
}

@media (min-width: 576px) {
  .precioArticulo {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .precioArticulo {
    font-size: 18px;
  }
}
#paginacionArticulos {
  margin-top: 50px;
  float: right;
}

.pageArticulo {
  cursor: pointer;
}

.sectionQuienesSomos {
  margin-top: 50px;
  margin-bottom: 100px;
}
.sectionQuienesSomos .img1 {
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  background-size: cover;
  transition: transform 0.2s;
}
.sectionQuienesSomos .img2 {
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  background-size: cover;
  transition: transform 0.2s;
}
.sectionQuienesSomos .img3 {
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  background-size: cover;
  transition: transform 0.2s;
}
.sectionQuienesSomos .img4 {
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  background-size: cover;
  transition: transform 0.2s;
}
.sectionQuienesSomos .img5 {
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  background-size: cover;
  transition: transform 0.2s;
}
.sectionQuienesSomos .img6 {
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  background-size: cover;
  transition: transform 0.2s;
}
.sectionQuienesSomos .img7 {
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  background-size: cover;
  transition: transform 0.2s;
}
.sectionQuienesSomos .img8 {
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  background-size: cover;
  transition: transform 0.2s;
}
.sectionQuienesSomos .img1 {
  background-image: url("../img/quienesSomos/aromi2.jpg");
  height: 300px;
}
.sectionQuienesSomos .img2 {
  background-image: url("../img/quienesSomos/sucUrquiza.jpg");
  height: 630px;
}
.sectionQuienesSomos .img3 {
  background-image: url("../img/quienesSomos/sucColon.jpg");
  height: 300px;
}
.sectionQuienesSomos .img4 {
  background-image: url("../img/quienesSomos/articulos.jpg");
  height: 300px;
}
.sectionQuienesSomos .img5 {
  background-image: url("../img/quienesSomos/casaDeLasVelas.jpg");
  width: 100%;
  height: 630px;
}
.sectionQuienesSomos .img6 {
  background-image: url("../img/quienesSomos/fachadaCasaVelas.jpg");
  width: 100%;
  height: 600px;
}
.sectionQuienesSomos .img7 {
  background-image: url("../img/quienesSomos/casaSahumerio.jpg");
  width: 100%;
  height: 450px;
}
.sectionQuienesSomos .img8 {
  background-image: url("../img/quienesSomos/casaFragancias.jpg");
  width: 100%;
  height: 450px;
}
@media (min-width: 576px) {
  .sectionQuienesSomos .img1:hover {
    transform: scale(1.05);
  }
  .sectionQuienesSomos .img2:hover {
    transform: scale(1.05);
  }
  .sectionQuienesSomos .img3:hover {
    transform: scale(1.05);
  }
  .sectionQuienesSomos .img4:hover {
    transform: scale(1.05);
  }
  .sectionQuienesSomos .img5:hover {
    transform: scale(1.05);
  }
  .sectionQuienesSomos .img6:hover {
    transform: scale(1.05);
  }
  .sectionQuienesSomos .img7:hover {
    transform: scale(1.05);
  }
  .sectionQuienesSomos .img8:hover {
    transform: scale(1.05);
  }
}
@media (min-width: 1200px) {
  .sectionQuienesSomos .img2 {
    margin-top: 30px;
  }
  .sectionQuienesSomos .img3 {
    margin-top: 30px;
  }
  .sectionQuienesSomos .img4 {
    margin-top: 30px;
  }
  .sectionQuienesSomos .img5 {
    margin-top: 30px;
  }
  .sectionQuienesSomos .img6 {
    margin-top: 30px;
  }
  .sectionQuienesSomos .img7 {
    margin-top: 30px;
  }
  .sectionQuienesSomos .img8 {
    margin-top: 30px;
  }
}
@media (max-width: 1199px) {
  .sectionQuienesSomos .img2 {
    margin-top: 0;
  }
  .sectionQuienesSomos .img3 {
    margin-top: 0;
  }
  .sectionQuienesSomos .img4 {
    margin-top: 30px;
  }
  .sectionQuienesSomos .img5 {
    margin-top: 30px;
  }
  .sectionQuienesSomos .img6 {
    margin-top: 30px;
  }
  .sectionQuienesSomos .img7 {
    margin-top: 30px;
  }
  .sectionQuienesSomos .img8 {
    margin-top: 30px;
  }
}
@media (max-width: 991px) {
  .sectionQuienesSomos .img1 {
    margin-top: 30px;
  }
  .sectionQuienesSomos .img2 {
    margin-top: 30px;
  }
  .sectionQuienesSomos .img3 {
    margin-top: 30px;
  }
  .sectionQuienesSomos .img4 {
    margin-top: 30px;
  }
  .sectionQuienesSomos .img5 {
    margin-top: 30px;
  }
  .sectionQuienesSomos .img6 {
    margin-top: 30px;
  }
  .sectionQuienesSomos .img7 {
    margin-top: 30px;
  }
  .sectionQuienesSomos .img8 {
    margin-top: 30px;
  }
}
.sectionQuienesSomos .parrafoEmpresa {
  font-size: 18px;
}

.sectionCompraMayorista {
  margin-top: 50px;
  margin-bottom: 100px;
}
.sectionCompraMayorista .links {
  display: flex;
  justify-content: center;
}
.sectionCompraMayorista .links a {
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  margin-left: 20px;
  margin-right: 20px;
  padding: 10px;
  background-color: #50a3fd;
  transition: 0.3s all ease-in-out;
}
.sectionCompraMayorista .links a:hover {
  background-color: #2d67a5;
}
@media (min-width: 768px) {
  .sectionCompraMayorista .links {
    flex-direction: row;
  }
  .sectionCompraMayorista .links a {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .sectionCompraMayorista .links {
    flex-direction: column;
  }
  .sectionCompraMayorista .links a {
    margin-top: 15px;
    font-size: 16px;
  }
}
.sectionCompraMayorista #presentacion {
  margin-top: 40px;
}
.sectionCompraMayorista #presentacion .icon {
  font-size: 60px;
}
.sectionCompraMayorista #presentacion .number {
  font-size: 30px;
}
.sectionCompraMayorista #presentacion .description {
  font-size: 18px;
}
.sectionCompraMayorista #primeraCompra {
  margin-top: 90px;
}
.sectionCompraMayorista #primeraCompra .description {
  font-size: 18px;
}
.sectionCompraMayorista #siguientesCompras {
  margin-top: 90px;
}
.sectionCompraMayorista #siguientesCompras .description {
  font-size: 18px;
}

.sectionContacto {
  margin-top: 50px;
  margin-bottom: 100px;
}
.sectionContacto .nuestrasSucursales {
  margin-top: 20px;
}
.sectionContacto .nuestrasSucursales .mapaSucursal {
  height: 300px;
  width: 100%;
}
.sectionContacto .nuestrasSucursales .paragraph {
  font-size: 18px;
}
.sectionContacto .nuestrasSucursales .datosSucursal {
  font-size: 16px;
}
.sectionContacto .nuestrasSucursales .datosSucursal .item {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.sectionContacto .nuestrasSucursales .datosSucursal .item i {
  font-size: 30px;
  margin-right: 15px;
}
.sectionContacto .nuestrasSucursales .datosSucursal .item a {
  text-decoration: none;
  color: #777;
  transition: all 0.3s ease-in-out;
}
.sectionContacto .nuestrasSucursales .datosSucursal .item a:hover {
  text-decoration: none;
}
.sectionContacto .nuestrasSucursales .datosSucursal .item .wpp:hover {
  color: #008612;
}
.sectionContacto .nuestrasSucursales .datosSucursal .item .fb:hover {
  color: #0073e1;
}
.sectionContacto .nuestrasSucursales .datosSucursal .item .insta:hover {
  color: #da4275;
}

/*# sourceMappingURL=styles.css.map */
