/* BASE  */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,700;1,200;1,400&display=swap");
/*  RESET */
* {
  color: inherit;
  margin: 0;
  box-sizing: border-box;
  font-size: 15px;
}

*,
::after,
::before {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

a:focus,
div:focus,
button:focus,
input:focus,
textarea:focus {
  outline: none;
}

html {
  margin-top: 0 !important;
}

body {
  height: auto !important;
  font-family: "Poppins", sans-serif;
  color: #030404;
  font-weight: 300;
  letter-spacing: 1px;
}

section {
  padding: 120px 0 90px;
}

.form-control:focus,
.field-wrap textarea:focus {
  box-shadow: 0 0 0 0 rgba(3, 4, 3, 0.5);
}

/*  TIPOGRAPHY */
h3 {
  font-size: 1.75rem;
  margin-bottom: 1.4rem;
  font-weight: 400;
}

h4 {
  font-size: 1rem;
  display: block;
}

h5 {
  font-size: 1.75rem;
  margin-bottom: 1.4rem;
  text-transform: uppercase;
  font-weight: 400;
}

h6 {
  font-size: 1.2rem;
  text-align: center;
  font-weight: 400;
  display: block;
  padding: 0.7rem 0 0.5rem;
  margin-bottom: 0;
  background: #FEFFFA;
}

:is(h2, h3, h4, h5) b,
:is(h2, h3, h4, h5) strong,
:is(p) b,
:is(p) strong {
  color: #030404;
}

p {
  font-size: 1.1rem;
  letter-spacing: 1px;
}

/* LAYOUT  */
/* BREAKPOINTS */
/* MEDIAQUERY */
/* HEADER */ /* NAVIGATION */
.navbar {
  background: #fff;
  box-shadow: 0 0 15px 0 rgba(3, 4, 3, 0.5);
}
.navbar-brand img {
  width: 150px;
  height: auto;
}
.navbar .menu,
.navbar .menu-menu-principal-container {
  margin-left: auto;
}
.navbar .menu ul,
.navbar .menu-menu-principal-container ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.navbar .menu ul li,
.navbar .menu-menu-principal-container ul li {
  display: inline-block;
  margin: 0 5px;
}
.navbar .menu ul li:first-child,
.navbar .menu-menu-principal-container ul li:first-child {
  margin-left: 0;
}
.navbar .menu ul li:last-child,
.navbar .menu-menu-principal-container ul li:last-child {
  margin-right: 0;
}
.navbar .menu ul li.current-menu-item a,
.navbar .menu-menu-principal-container ul li.current-menu-item a {
  color: #FEFFFA;
  background: #ea661e;
  transition: all 200ms ease;
}
.navbar .menu ul li.current-menu-item a:hover,
.navbar .menu-menu-principal-container ul li.current-menu-item a:hover {
  color: #FEFFFA;
  background: #ea661e;
}
.navbar .menu ul li a,
.navbar .menu-menu-principal-container ul li a {
  color: #030404;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  transition: all 200ms ease;
}
.navbar .menu ul li a:hover,
.navbar .menu-menu-principal-container ul li a:hover {
  color: #030404;
  background: rgba(234, 102, 30, 0.5);
}

@media only screen and (max-width: 500px) {
  .navbar-toggler {
    border: 0;
  }
  .navbar-toggler:focus {
    box-shadow: 0 0 0 transparent;
  }
  button:focus:not(:focus-visible) {
    outline: none;
  }
  .menu,
.menu-menu-principal-container {
    margin-left: auto;
  }
  .menu ul,
.menu-menu-principal-container ul {
    padding: 2rem 0 !important;
  }
  .menu ul li a,
.menu-menu-principal-container ul li a {
    display: block;
  }
}
/* FOOTER */
.adrianne_footer_estamos {
  background-color: #dadfe1;
  padding: 3rem 0;
  margin: 0;
}
.adrianne_footer_estamos iframe {
  width: 100%;
  height: 300px;
}
.adrianne_footer_contacto {
  margin: 1rem 0 0;
  padding: 1.5rem 0;
}
.adrianne_footer_contacto img {
  width: 100%;
}
.adrianne_footer_contacto ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.adrianne_footer_contacto ul li {
  margin-bottom: 2px;
}
.adrianne_footer_contacto ul li strong {
  font-weight: 700;
  text-transform: uppercase;
}
.adrianne_footer_contacto ul li a {
  color: #030404;
  font-weight: 500;
}
.adrianne_footer_contacto ul li a:hover {
  text-decoration: underline;
}
.adrianne_footer_copyright {
  text-align: right;
}
.adrianne_footer_copyright p {
  font-size: 0.75rem;
  letter-spacing: normal;
}

img.logo_desarrollo {
  width: 40px;
  height: auto;
}

@media only screen and (max-width: 500px) {
  .adrianne_footer_estamos iframe {
    margin-bottom: 2rem;
  }
  .adrianne_footer_contacto {
    margin: 1rem;
  }
  .adrianne_footer_contacto img {
    width: 100px;
    height: auto;
    margin-bottom: 2rem;
  }
}
/* INCLUDE  */
.adrianne_cotizar {
  background-color: #ea661e;
  margin: 3.5rem 0 0;
  padding: 4rem 0;
  color: #FEFFFA;
  text-align: center;
}
.adrianne_cotizar a {
  color: #ea661e;
  background: #FEFFFA;
  margin-top: 1.5rem;
  display: inline-block;
  border-radius: 0.375rem;
  padding: 0.5rem 1.75rem;
  transition: all 500ms ease;
  font-weight: 500;
}
.adrianne_cotizar a:hover {
  color: #FEFFFA;
  background: #ea661e;
  border: 1px solid #FEFFFA;
}

/* FORM */
form {
  margin: 2rem 0;
}
form p {
  margin-bottom: 0;
}
form label {
  width: 100%;
  margin-bottom: 1rem;
  color: #5b5b5b;
}
form label input {
  width: 100%;
  color: #030404;
  padding: 0.5rem 0.5rem;
  border-radius: 0;
  border: 1px solid #030404;
}
form label input[type=file] {
  border: 0;
}
form label input[type=submit] {
  border: 0;
}
form label textarea {
  width: 100%;
  color: #030404;
  padding: 0.5rem 0.5rem;
  resize: none;
  border-radius: 0;
  border: 1px solid #030404;
}

input.wpcf7-submit {
  border: 0;
  color: #FEFFFA;
  padding: 0.5rem 1.75rem;
  background: #ea661e;
  transition: all 500ms ease;
}
input.wpcf7-submit:hover {
  color: #030404;
  background: #FEFFFA;
  border: 1px solid #ea661e;
}

/* COMPONENTS  */
/* BUTTONS */
.btn_verMas {
  color: #FEFFFA;
  padding: 0.5rem 1.75rem;
  background: #ea661e;
  transition: all 500ms ease;
}
.btn_verMas:hover {
  color: #030404;
  background: #FEFFFA;
  border: 1px solid #ea661e;
}
.btn_verMas_blanco {
  color: #ea661e;
  padding: 0.5rem 1.75rem;
  background: #FEFFFA;
  transition: all 500ms ease;
}
.btn_verMas_blanco:hover {
  color: #FEFFFA;
  background: rgba(234, 102, 30, 0.5);
  border: 1px solid #FEFFFA;
}
.btn_whatsapp {
  position: fixed;
  bottom: 1%;
  right: 1%;
  width: 65px;
  height: 65px;
  display: block;
}
.btn_whatsapp img {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 500ms ease;
}
.btn_whatsapp img:hover {
  filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.2));
}

/* ACCORDION */ /* CAROUSEL */
.adrianne_inicio_slider .slick-slide img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.adrianne_inicio_slider .slick-dots {
  bottom: 20px;
}
.adrianne_inicio_slider .slick-dots li {
  width: 20px;
  height: 5px;
}
.adrianne_inicio_slider .slick-dots li button {
  width: 20px;
  height: 5px;
}
.adrianne_inicio_slider .slick-dots li button::before {
  content: "";
  width: 20px;
  height: 5px;
  background: #FEFFFA;
}
.adrianne_inicio_destacados .slick-dots {
  bottom: -20px;
}
.adrianne_inicio_destacados .slick-dots li {
  width: 20px;
  height: 5px;
}
.adrianne_inicio_destacados .slick-dots li button {
  width: 20px;
  height: 5px;
}
.adrianne_inicio_destacados .slick-dots li button::before {
  content: "";
  width: 20px;
  height: 5px;
  background: #ea661e;
}
.adrianne_inicio_destacados .slick-track {
  margin-left: initial;
  margin-right: initial;
}

/* CARDS */
.card {
  margin: 20px 15px;
  display: block;
  transition: all 500ms ease;
  border: 0;
  border-radius: 0;
  cursor: pointer;
}
.card .card-img-top {
  border-radius: 0;
}
.card .card-body {
  top: 0;
  height: 100%;
  width: 100%;
}
.card .card-body .card-title {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0.5rem 0;
  background: #fbd9ca;
  border-radius: 10px;
  transition: all 500ms ease;
}
.card:hover .card-title {
  background: #ea661e;
  color: #fbd9ca;
}

/* VIEWS  */
/* HOME */
.adrianne_inicio_destacados {
  margin: 6rem 0 4rem;
}
.adrianne_inicio_somos {
  padding: 3rem 0;
  background-size: cover !important;
  background-position: center !important;
  background-blend-mode: multiply;
}
.adrianne_inicio_somos p {
  font-size: 1.3rem;
  color: #fff;
}
.adrianne_inicio_somos p b, .adrianne_inicio_somos p strong {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
}
.adrianne_inicio_aplicados {
  margin: 6rem 0 4rem;
}
.adrianne_inicio_aplicados a {
  position: relative;
  transition: all 500ms ease;
}
.adrianne_inicio_aplicados a img {
  object-fit: cover;
  height: 200px;
}
.adrianne_inicio_aplicados a:hover::after {
  content: "";
  width: 100%;
  height: 200px;
  display: block;
  background: rgba(234, 102, 30, 0.5);
  position: absolute;
  top: -88px;
  left: 0;
}

@media only screen and (max-width: 500px) {
  .adrianne_inicio_somos p {
    font-size: 1rem;
  }
  .adrianne_inicio_somos p b, .adrianne_inicio_somos p strong {
    font-size: 1rem;
  }
  .adrianne_inicio_aplicados a img {
    margin: 15px 0;
  }
  .adrianne_inicio_slider .slick-slide img {
    height: 250px;
  }
  .adrianne_inicio_slider__destacado .slick-slide {
    margin: 0 20px;
  }
}
/* COTIZACIONES */
.adrianne_cotizaciones_header img {
  object-fit: cover;
  width: 100%;
}
.adrianne_cotizaciones_info {
  margin: 4rem 0;
}
.adrianne_cotizaciones_info h2 {
  text-align: center;
}

@media only screen and (max-width: 500px) {
  .adrianne_cotizaciones_header img {
    height: 250px;
  }
}
/* SINGLE */
.adrianne_producto_header {
  height: 400px;
  object-fit: cover;
}
.adrianne_producto_destacados {
  margin: 6rem 0 4rem;
}
.adrianne_producto_contenido {
  margin: 6rem 0 4rem;
}
.adrianne_producto_contenido .slick-slide {
  margin: 0 10px;
}
.adrianne_producto_contenido .slick-slide img {
  width: 80%;
  margin: 20px auto;
}
.adrianne_producto_contenido .slider-nav {
  margin: 20px 10px 0;
}
.adrianne_producto_contenido .slick-prev,
.adrianne_producto_contenido .slick-next {
  width: 30px;
  height: 30px;
  z-index: 9;
}
.adrianne_producto_contenido .slick-prev:before,
.adrianne_producto_contenido .slick-next:before {
  content: "";
}
.adrianne_producto_contenido .slick-prev {
  left: 25px;
}
.adrianne_producto_contenido .slick-prev:before {
  content: "";
  width: 30px;
  height: 30px;
  top: calc(50% - 15px);
  position: absolute;
  background: url(../images/prev.svg) center no-repeat;
}
.adrianne_producto_contenido .slick-next {
  right: 25px;
}
.adrianne_producto_contenido .slick-next:before {
  content: "";
  width: 30px;
  height: 30px;
  top: calc(50% - 15px);
  position: absolute;
  background: url(../images/next.svg) center no-repeat;
}
.adrianne_producto_contenido_info .table > thead tr {
  border-bottom: 1px solid #030404;
}

.breadcrumbs {
  margin: 20px 0;
  font-weight: 500;
}
.breadcrumbs a {
  color: #030404;
  transition: all 500ms ease;
  font-weight: 300;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}

.adrianne_category_header {
  height: 400px;
  object-fit: cover;
}

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