@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:slnt,wght@-10..0,100..900&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap");
/* Fonts*/
/*Colors */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #EDEBDF;
}

li {
  list-style: none;
}

html,
body {
  font-family: "Inter", sans-serif;
  position: relative;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: #352B29;
}

h1 {
  font-size: 55px;
}

h2 {
  font-size: 45px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 22px;
}

h6 {
  font-size: 18px;
}

p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #7E7E7E;
  line-height: 24px;
}

a {
  color: #F68F4A;
  font-size: 14px;
  text-decoration: none;
  transition: 300ms;
}
a:hover {
  color: #F68F4A;
}

button {
  padding: 18px 25px;
  background-color: #F68F4A;
  color: #352B29;
  border: none;
  border-radius: 90px;
  font-size: 14px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: 300ms;
}
button svg {
  fill: #352B29;
}
button:hover {
  opacity: 0.8;
  box-shadow: 1px 5px 12px 0px rgba(0, 0, 0, 0.1803921569);
}
button img {
  width: 14px;
}
button a {
  color: #fff;
  font-size: 16px;
}
button a:hover {
  color: #fff;
}

.btn-link {
  padding: 0;
}
.btn-link a {
  padding: 14px 25px;
}

select {
  border-radius: 7px;
  border: 1px solid #EFEFEF;
  padding: 20px 15px;
  font-size: 14px;
  font-family: "Inter";
  width: 100%;
}
select:focus {
  outline: none;
  border: 1px solid #acacac;
}

.active {
  color: #F68F4A !important;
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

.etiquetas {
  display: flex;
  padding: 20px;
  gap: 20px;
  justify-content: space-between;
}
.etiquetas h6 {
  color: #7E7E7E;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 10px;
}
.etiquetas h3 {
  color: #352B29;
  font-size: 25px;
}
.etiquetas div:last-child {
  display: flex;
  align-items: end;
  justify-content: end;
}
.etiquetas div:last-child img {
  padding: 13px;
  background: #DAF4F0;
  border-radius: 8px;
  width: 60px;
  height: 60px;
}

.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

.bg-red {
  background-color: #E23E3E;
}

.table-responsive {
  overflow: hidden;
  overflow-x: scroll;
  width: 100%;
}

#table-normal {
  border-collapse: collapse;
}
#table-normal thead {
  background: #F6F6F6;
}
#table-normal thead th {
  padding: 10px;
  font-size: 14px;
  font-weight: 600;
}
#table-normal tbody td {
  border: 1px solid #EFEFEF;
  padding: 0px 10px;
  font-size: 13px;
}

.group-input {
  position: relative;
}

.required input {
  border-right: 3px solid #F68F4A;
}

input {
  border-radius: 7px;
  border: 1px solid #EFEFEF;
  padding: 15px;
  padding: 20px 15px;
  font-size: 14px;
  width: 100%;
}
input:focus {
  outline: none;
  border: 1px solid #352B29;
}

textarea {
  padding: 20px;
  border-radius: 7px;
  border: 1px solid #EFEFEF;
  padding: 15px;
  padding: 20px 15px;
  font-size: 14px;
  font-family: sans-serif;
  width: 100%;
}
textarea:focus {
  outline: none;
  border: 1px solid #352B29;
}

label {
  margin-bottom: -10px;
  position: relative;
  z-index: 2;
  background-color: #fff;
  display: flex;
  place-self: flex-start;
  padding: 0px 10px;
  margin-left: 10px;
  font-weight: 600;
  font-size: 14px;
  width: fit-content;
}

select:focus {
  outline: none;
  border: 1px solid #acacac;
}

.input-icon-left {
  position: relative;
}
.input-icon-left img {
  position: absolute;
  z-index: 2;
  top: 35%;
  left: 35px;
  transform: translate(-50%);
  width: 20px;
}
.input-icon-left input {
  padding-left: 60px;
}

/* Estilo base para todos los checkboxes */
.checkbox-personalizado {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 3px;
  border: 2px solid #352B29;
  position: relative;
}

.checkbox-personalizado::after {
  content: "";
  display: none;
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #352B29;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

input[type=checkbox]:checked ~ .checkbox-personalizado::after {
  display: block;
}

.w-100 {
  width: 100%;
}

mb-10 {
  margin-bottom: 10px;
}

mt-10 {
  margin-top: 10px;
}

ml-10 {
  margin-left: 10px;
}

mr-10 {
  margin-right: 10px;
}

.row {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
}

.container {
  max-width: 1170px;
  margin-right: auto;
  margin-left: auto;
}

.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.flex {
  display: flex;
}

.column {
  flex-direction: column;
}

.between {
  justify-content: space-between;
}

.hor-end {
  justify-content: end;
}

.text-end {
  text-align: end;
}

.hor-center {
  justify-content: center;
}

.hor-start {
  justify-content: start;
}

.gap-5 {
  gap: 5px;
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

.ver-end {
  align-items: end;
}

.ver-center {
  align-items: center;
}

.ver-start {
  align-items: start;
}

.around {
  justify-content: space-around;
}

.between {
  justify-content: space-between;
}

.evenly {
  justify-content: space-evenly;
}

.width-100 {
  width: 100%;
}

.text-center {
  text-align: center;
}

.bg-primary {
  background-color: #352B29;
}

.label-reset label {
  margin: 0;
  padding: 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(48%, 1fr));
  gap: 20px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(28%, 1fr));
  gap: 20px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(23%, 1fr));
  gap: 20px;
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18%, 1fr));
  gap: 20px;
}

.grid-6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14%, 1fr));
  gap: 20px;
}

@media (max-width: 767px) {
  /* Estilos para pantallas pequeñas */
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-5,
  .grid-6 {
    grid-template-columns: repeat(1, 1fr); /* Siempre 2 columnas */
  }
  .container {
    padding: 0px 10px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  /* Estilos para tabletas en modo vertical */
}
@media (min-width: 1025px) and (max-width: 1366px) {
  /* Estilos para tabletas en modo horizontal (paisaje) */
}
@media (min-width: 1367px) {
  /* Estilos para computadoras de escritorio */
}
.titulo .subtitulo {
  display: flex;
  gap: 5px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 400;
}
.titulo .subtitulo h6 {
  font-weight: 500;
}
.titulo h2 {
  font-size: 55px;
  color: #352B29;
}
.titulo h2 span {
  color: #F68F4A;
}
.titulo .center {
  justify-content: center;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.titulo .center p {
  text-align: center;
  font-size: 30px;
}
.titulo .center h2 {
  text-align: center;
}

.left {
  justify-content: center;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.titulo_center {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  margin-bottom: 80px;
}
.titulo_center .subtitulo {
  justify-content: center;
  text-align: center;
}
.titulo_center h2, .titulo_center h6 {
  text-align: center;
}

.titulo_white h2, .titulo_white h6 {
  color: #fff;
}
.titulo_white p {
  color: #A0AEBD;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
}
header .info_top {
  background-color: none;
  padding: 12px;
}
header .info_top .content_info {
  justify-content: center;
  align-items: center;
  display: flex;
  justify-content: space-between;
}
header .info_top .flex {
  gap: 5px;
}
header .info_top .flex:nth-child(2) {
  justify-content: center;
}
header .info_top .flex:last-child {
  justify-content: end;
}
header .info_top a {
  color: #fff;
  font-weight: 600;
}
header .info_top a:hover {
  color: #F68F4A;
}
header .bar-nav {
  background-color: #352B29;
  padding: 15px;
  border-radius: 90px;
  max-width: 1470px;
  margin-right: auto;
  margin-left: auto;
}
header .bar-nav .grid-3 {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
header .bar-nav .nav ul {
  display: flex;
  gap: 45px;
}
header .bar-nav .nav ul a {
  font-size: 15px;
  color: #fff;
  font-weight: 700;
}
header .bar-nav .nav ul a:hover {
  color: #F68F4A;
}

.scroll_fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
}

.menu {
  background: rgba(0, 0, 0, 0.0705882353);
  padding: 12px;
  border-radius: 7px;
  cursor: pointer;
}

@media (max-width: 767px) {
  header .info_top {
    display: none;
  }
  .cel {
    display: flex;
    flex-direction: column-reverse;
    width: 70%;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    overflow-y: scroll;
    height: 100vh;
    z-index: 14;
  }
  .cel .bar-nav {
    height: 80%;
    margin: 0;
    border: none;
    border-radius: 0;
  }
  .cel .bar-nav .logo {
    margin-bottom: 20px;
    width: 200px;
  }
  .menu {
    display: flex;
    align-items: center;
  }
  .menu svg {
    fill: #F68F4A;
  }
  .cel .info_top {
    height: 20%;
    padding: 30px;
    background-color: #EDEBDF;
  }
  .cel .info_top .container {
    justify-content: start;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
  }
  .cel .info_top a {
    color: #352B29;
  }
  .cel .info_top .flex:nth-child(2) {
    justify-content: start;
  }
  .cel .info_top .flex:last-child {
    justify-content: start;
  }
  .cel .bar-nav .nav ul {
    flex-direction: column;
    padding: 10px;
  }
  .cel .bar-nav .grid-3 {
    flex-direction: column;
    align-items: start;
  }
  .bar-nav-pc {
    display: none;
  }
  .cel .bar-nav-pc {
    display: block;
  }
  .bar-nav-cel {
    background-color: #fff;
    padding: 15px;
  }
  .bar-nav-cel .row {
    display: flex;
    justify-content: space-between;
  }
  .info_top {
    display: flex;
  }
  .info_top .grid-3 {
    display: flex;
    justify-content: space-between;
  }
  .info_top .flex:nth-child(1) {
    display: none;
  }
  .cel .info_top {
    display: flex;
  }
  .cel .info_top .grid-3 {
    display: inherit;
    display: flex;
    flex-direction: column;
  }
  .cel .info_top .flex {
    margin-bottom: 10px;
  }
  .cel .info_top .flex:nth-child(1) {
    display: block;
  }
}
/* MEGAMENU */
#megamenu .content_megamenu {
  background-color: #fff;
  position: relative;
  padding: 40px;
  border-top: 4px solid #F68F4A;
  position: fixed;
  top: 120px;
  width: 1160px;
  margin: auto;
  z-index: 13;
  display: none;
  box-shadow: 0px 17px 18px 1px rgba(0, 0, 0, 0.1098039216);
}
#megamenu .icon-marca {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 99;
}
#megamenu .icon-marca img {
  width: 50px;
}
#megamenu .titulo {
  margin-bottom: 40px;
}
#megamenu .titulo h2 {
  font-size: 48px;
}
#megamenu .box_services_megamenu {
  background: #fff;
  padding: 20px 50px;
  border-radius: 10px;
  border: 1px solid #352B29;
  gap: 20px;
  cursor: pointer;
  transition: 300ms;
  height: 100%;
  align-items: center;
}
#megamenu .box_services_megamenu:hover {
  transform: translateY(-10px);
  transition: 300ms;
}
#megamenu .box_services_megamenu img {
  width: 44px;
}
#megamenu .box_services_megamenu h4 {
  color: #352B29;
  font-size: 15px;
  font-weight: 700;
}

@media (min-width: 768px) {
  .bar-nav-cel {
    display: none;
  }
}
@media (max-width: 768px) {
  .angle-megamenu {
    display: none;
  }
  #megamenu .content_megamenu {
    display: none;
  }
}
.footer {
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-image: url("https://ranchocaprinoelpicaflor.com/images/fondo-footer.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

footer {
  position: relative;
  z-index: 1;
}
footer svg {
  fill: #F68F4A;
}
footer .content_footer .box {
  margin-top: 80px;
}
footer .content_footer .box:first-child {
  margin-top: 0;
}
footer .content_footer .container {
  border-top: 1px solid #60606D;
  padding: 80px 0px;
  padding-top: 110px;
}
footer .content_footer p {
  color: #A0AEBD;
  font-size: 15px;
  margin-top: 15px;
}
footer .content_footer a {
  color: #A0AEBD;
}
footer .content_footer .title_footer {
  color: #fff;
  padding-bottom: 30px;
  position: relative;
  text-transform: uppercase;
  font-size: 20px;
}
footer .content_footer .title_footer:after {
  content: "";
  position: absolute;
  z-index: 12;
  bottom: 20px;
  height: 3px;
  width: 20px;
  background-color: #F68F4A;
  left: 0;
}
footer .content_footer ul li {
  margin-top: 15px;
}
footer .content_footer ul li a {
  gap: 10px;
  display: flex;
  font-size: 15px;
  align-items: center;
}
footer .content_footer ul li a:hover {
  color: #fff;
}
footer .copy {
  border-top: 1px solid #787270;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .copy p {
  color: #fff;
  font-size: 14px;
}

/* CONTACTO */
#contacto_call {
  position: relative;
  z-index: 1;
  padding: 100px 0px;
}
#contacto_call .grid-2 {
  align-items: center;
}
#contacto_call .izq {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: start;
  position: relative;
  z-index: 5;
}
#contacto_call .drh {
  display: flex;
  justify-content: end;
}
#contacto_call .drh h3, #contacto_call .drh h6 {
  color: #fff;
}
#contacto_call .drh .check_val label {
  background: none;
  color: #fff;
}
#contacto_call .drh form {
  background-color: #524947;
}
#contacto_call .drh form input {
  background-color: #fff;
  color: #352B29;
  border: none;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px 20px;
  border-radius: 10px;
  background-color: #F6F6F6;
  justify-content: center;
  align-items: center;
  width: 100%;
}
form h6 {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
}
form h3 {
  font-size: 25px;
}
form input {
  background: #fff;
}
form textarea {
  border: none !important;
}
form button {
  width: 100%;
  justify-content: center;
}

.maps {
  position: relative;
  z-index: 1;
  margin-top: -50px;
}
.maps iframe {
  width: 100%;
  border-radius: 15px;
}

#btn_whatsapp {
  width: 75px;
  height: 75px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  background-color: #0D9A15;
  padding: 15px;
  animation: resaltar 2s infinite;
  border-radius: 90px;
}
#btn_whatsapp svg {
  fill: #0D9A15;
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}
#btn_whatsapp:after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background: radial-gradient(circle at center, rgba(21, 201, 45, 0.5) 0%, transparent 90%);
  border-radius: 50%;
  animation: pulsar 2s infinite;
  z-index: -1;
}
@keyframes pulsar {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

#btn_instagram {
  width: 75px;
  height: 75px;
  position: fixed;
  bottom: 140px;
  right: 20px;
  z-index: 10;
  background-color: #ffabee;
  padding: 15px;
  animation: resaltar 2s infinite;
  border-radius: 90px;
}
#btn_instagram svg {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}
#btn_instagram:after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background: radial-gradient(circle at center, rgba(135, 21, 201, 0.5) 0%, transparent 90%);
  border-radius: 50%;
  animation: pulsar 2s infinite;
  z-index: -1;
}
@keyframes pulsar {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

#hero {
  width: 100%;
  height: 800px;
  position: relative;
}
#hero video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 0;
  width: 100%;
  height: 800px;
  object-fit: cover;
}
#hero .content_slider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  justify-content: center;
  position: absolute;
  z-index: 4;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#hero .content_slider .grid-2 {
  align-items: center;
}
#hero .content_slider h1 {
  margin: 15px 0px;
}
#hero .content_slider h6 {
  font-weight: 300;
}
#hero .content_slider h1, #hero .content_slider h6 {
  color: #fff;
  text-align: center;
}
#hero .content_slider h1 {
  font-size: 55px;
  font-weight: 700;
  text-align: start;
}
#hero .content_slider h6 {
  text-transform: uppercase;
  font-weight: 400;
  text-align: start;
}
#hero .content_slider p {
  color: #fff;
  margin-bottom: 20px;
}
#hero .content_slider span {
  color: #F68F4A;
}
#hero .content_slider button a {
  font-size: 18px;
}
#hero .slider-container {
  position: relative;
  width: 100%;
  height: 800px;
  overflow: hidden;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
#hero .slider {
  display: flex;
  transition: transform 0.5s ease-out;
  height: 800px;
}
#hero .slide {
  flex: 0 0 auto;
  width: 100%;
  position: relative;
  height: 600px;
}
#hero .slide::after {
  contain: "";
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  height: 800px;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#hero .slide img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
}
#hero .btn_slider {
  position: absolute;
  top: 50%;
  z-index: 4;
  transform: translateY(-50%);
  background-color: #352B29;
  color: white;
  border: none;
  padding: 12px 15px;
  align-items: center;
  cursor: pointer;
  display: flex;
  border-radius: 90px;
  justify-content: center;
  transition: 300ms;
}
#hero .btn_slider svg {
  fill: #fff;
}
#hero .btn_slider:hover {
  background-color: #352B29;
}
#hero .prev {
  left: 10px;
}
#hero .next {
  right: 10px;
}

.content_footer {
  padding: 10px;
}

.bar_info_hero {
  background-color: #352B29;
  padding: 40px;
  border-radius: 10px;
  z-index: 3;
  position: relative;
}
.bar_info_hero h5 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.bar_info_hero p {
  color: #A0AEBD;
  font-size: 14px;
  line-height: 20px;
}
.bar_info_hero .box {
  display: flex;
}
.bar_info_hero .box img {
  display: flex;
  align-self: center;
}

/*NOSOTROS */
#nosotros {
  background-color: #352B29;
  padding: 100px 0px;
}
#nosotros .izq {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: start;
  justify-content: center;
}
#nosotros .izq h6, #nosotros .izq h2 {
  color: #fff;
}
#nosotros .izq p {
  color: #A0AEBD;
}
#nosotros .drh img {
  width: 100%;
}

/*SERVICIOS */
#servicios {
  padding: 100px 0px;
}

.box_servicioS {
  padding: 20px 20px;
  border-radius: 10px;
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: start;
  background-color: #fff;
  justify-content: space-between;
}
.box_servicioS .img {
  width: 100%;
  height: 200px;
  object-fit: contain;
}
.box_servicioS h3 {
  font-size: 15px;
  color: #352B29;
  font-weight: 500;
}
.box_servicioS h6 {
  font-size: 14px;
  color: #352B29;
  font-weight: 700;
}
.box_servicioS button {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  text-align: center;
}
.box_servicioS p {
  font-size: 18px;
  color: #7E7E7E;
  max-height: 60px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

/* TESTIMONIOS */
#testimonios {
  background-color: #352B29;
  padding: 100px 0px;
}
#testimonios .perfil {
  width: 101px;
  height: 101px;
  border-radius: 90px;
  object-fit: cover;
}
#testimonios .testimonio {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border-radius: 10px;
  background-color: #524947;
  gap: 10px;
  max-width: 400px;
}
#testimonios .testimonio h4 {
  color: #fff;
}
#testimonios .testimonio p {
  font-size: 16px;
  text-align: center;
  color: #A0AEBD;
}
#testimonios .izq {
  height: 100%;
  width: 100%;
  position: relative;
  max-width: 400px;
}
#testimonios .drh {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: start;
}
#testimonios .slider-container-testimonio {
  position: relative;
  width: 100%;
  max-width: 400px !important;
  overflow: hidden;
}
#testimonios .slider-testimonio {
  display: flex;
  transition: transform 0.5s ease-out;
}
#testimonios .slide-testimonio {
  flex: 0 0 auto;
  width: 100%;
  position: relative;
}
#testimonios .btn_slider-testimonio {
  position: absolute;
  top: 50%;
  z-index: 4;
  transform: translateY(-50%);
  background-color: #F68F4A;
  color: #352B29;
  border: none;
  padding: 12px 15px;
  align-items: center;
  cursor: pointer;
  display: flex;
  border-radius: 90px;
  justify-content: center;
  transition: 300ms;
}
#testimonios .btn_slider-testimonio svg {
  fill: #fff;
}
#testimonios .btn_slider-testimonio:hover {
  background-color: #F68F4A;
}
#testimonios .prev-testimonio {
  left: -15px;
}
#testimonios .next-testimonio {
  right: -15px;
}

#img_portafolio {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
}
#img_portafolio img {
  width: 100%;
  height: 250px;
  object-fit: contain;
}

.slider-container-producto {
  position: relative;
  width: 100%;
  max-width: 460px !important;
  overflow: hidden;
}

.text_producto p {
  font-size: 14px;
  line-height: 21px;
}
.text_producto ul {
  font-size: 14px;
}
.text_producto li {
  font-size: 14px;
}

.slider-producto {
  display: flex;
  transition: transform 0.5s ease-out;
}

.slide-producto {
  flex: 0 0 auto;
  width: 100%;
  position: relative;
}

.btn_slider-producto {
  position: absolute;
  top: 50%;
  z-index: 4;
  transform: translateY(-50%);
  background-color: #F68F4A;
  color: #352B29;
  border: none;
  padding: 12px 15px;
  align-items: center;
  cursor: pointer;
  display: flex;
  border-radius: 90px;
  justify-content: center;
  transition: 300ms;
}
.btn_slider-producto svg {
  fill: #fff;
}

.btn_slider-producto:hover {
  background-color: #F68F4A;
}

.prev-producto {
  left: 5px;
}

.next-producto {
  right: 5px;
}

.content_vista_producto {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.content_vista_producto h6 {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
}
.content_vista_producto #contacto_call {
  padding: 0px !important;
  margin-top: 10px;
}
.content_vista_producto #contacto_call .drh {
  justify-content: start;
}

.texto_vista_producto .text_producto {
  font-size: 14px;
  overflow: hidden;
  width: 100%;
  height: 300px;
  overflow-y: scroll;
  padding: 10px;
  border-radius: 10px;
  margin-top: 20px;
  background-color: #fff;
}

/* SERVICIO DESTACADO */
#servicios_destacado {
  background-color: #fff;
  padding: 100px 0px;
}
#servicios_destacado .izq {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: start;
  justify-content: center;
}
#servicios_destacado .izq h6, #servicios_destacado .izq h2 {
  color: #352B29;
}
#servicios_destacado .izq p {
  color: #7E7E7E;
}
#servicios_destacado .drh img {
  width: 90%;
}

#beneficios {
  padding: 150px 0px 50px 0px;
}
#beneficios .grid-2 {
  align-items: center;
}
#beneficios .drh {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 767px) {
  .titulo_center .subtitulo {
    width: 80%;
    margin: auto;
  }
  #testimonios .grid-2 {
    display: flex;
    flex-direction: column;
    flex-direction: column-reverse;
  }
}
#banne_page {
  background-image: url("https://diapublicidad.com.co/images/background-servicios.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#banne_page::before {
  content: "";
  position: absolute;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.34);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#banne_page .titulo_center {
  position: relative;
  z-index: 2;
  margin-bottom: 0px;
}

#servicios_all {
  margin-top: 40px;
}

.box_icon {
  transition: 300ms;
  border: 1px solid #352B29;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: start;
  background-color: #fff;
  gap: 20px;
}
.box_icon:hover {
  border: solid 1px #F68F4A;
  background-color: #352B29;
}
.box_icon:hover h5 {
  color: #fff;
}
.box_icon:hover a {
  color: #fff;
}
.box_icon svg {
  fill: #F68F4A;
  width: 28px;
}
.box_icon h5 {
  font-size: 18px;
  font-weight: 600;
}
.box_icon a {
  font-size: 14px;
  font-weight: 400;
  transition: 300ms;
  color: #352B29;
}
.box_icon a:hover {
  color: #F68F4A;
}

#vista_services {
  margin-top: 50px;
}
#vista_services .grid-2 {
  gap: 40px;
}
#vista_services .izq img {
  width: 100%;
  border-radius: 10px;
  height: 450px;
  object-fit: cover;
}
#vista_services .drh {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#vista_services .drh h1 {
  font-size: 30px;
  font-weight: 700;
  max-width: 250px;
}
#vista_services .drh a {
  margin-bottom: 20px;
}
#vista_services .drh a svg {
  fill: #fff;
}

#description_services {
  margin-top: 40px;
  margin-bottom: 100px;
}
#description_services .contenido_description {
  padding: 30px;
  border-radius: 14px;
  border: 1px solid #352B29;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#mas_servicio .active .box_servicioS {
  height: 350px !important;
  gap: 10px;
}
#mas_servicio .active .box_servicioS p {
  max-height: 60px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
#mas_servicio .owl-nav button {
  position: absolute;
  top: 50%;
  z-index: 4;
  transform: translateY(-50%);
  background-color: #352B29;
  color: white;
  border: none;
  padding: 4px 18px !important;
  font-size: 30px;
  align-items: center;
  cursor: pointer;
  display: flex;
  border-radius: 90px;
  justify-content: center;
  transition: 300ms;
}
#mas_servicio .owl-nav .owl-next {
  right: -29px;
}
#mas_servicio .owl-nav .owl-prev {
  left: -29px;
}
#mas_servicio .owl-theme .owl-nav {
  margin-top: 0px !important;
}

#banne_page_nosotros {
  background-image: url("https://diapublicidad.com.co/images/banner-nosotros.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#banne_page_nosotros::before {
  content: "";
  position: absolute;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.34);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#banne_page_nosotros .titulo_center {
  position: relative;
  z-index: 2;
  margin-bottom: 0px;
}

/* SOBRE NOSOTROS */
#sobre_nosotros {
  margin: 100px 0px;
}
#sobre_nosotros .drh {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: start;
}

/* NUESTRO EQUIPO */
#sobre_nosotros .grid-2 {
  align-items: center;
  gap: 30px;
}
#sobre_nosotros .izq {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: start;
}
#sobre_nosotros .drh img {
  width: 100%;
}

/* PREGUNTAS FRECUENTES */
#preguntas_frecuentes {
  margin: 100px 0px;
}

.carrucel {
  padding: 30px;
  border-radius: 5px;
  background-color: #fff;
  margin-bottom: 20px;
}
.carrucel .header {
  display: flex;
  justify-content: space-between;
}
.carrucel .header .btn_active_carrousel {
  cursor: pointer;
  transition: transform 0.5s ease;
}
.carrucel .body {
  transition: max-height 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
}
.carrucel h4 {
  font-size: 20px;
}
.carrucel p {
  margin-top: 20px;
  font-size: 14px;
  line-height: 25px;
}
.carrucel .active .body {
  display: block;
}

.active_carrousel .body {
  opacity: 1;
  max-height: 1000px;
}

#contacto {
  margin: 100px 0px;
}
#contacto .drh {
  display: flex;
  justify-content: end;
}
#contacto form {
  gap: 20px;
  max-width: 500px;
}
#contacto form .group-input {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
#contacto form textarea {
  width: 100%;
  border: 1px solid #352B29;
  border-radius: 7px;
  padding: 20px;
}
#contacto form p {
  text-align: center;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 20px;
}
#contacto .box {
  display: flex;
  gap: 5%;
  width: 80%;
  background-color: #fff;
  padding: 40px;
  border: 1px solid #352B29;
  border-left: 5px solid #F68F4A;
  border-radius: 10px;
  margin-top: 40px;
  align-items: center;
}
#contacto .box div:first-child img {
  width: 30px;
}
#contacto .box div:last-child {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#contacto .box div:last-child a {
  color: #7E7E7E;
}
#contacto .box div:last-child a:hover {
  color: #F68F4A;
}

.spinner {
  display: none;
}

.spinner {
  animation-name: spin;
  animation-iteration-count: infinite; /* Hacer la animación en bucle */
  animation-duration: 1s;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.content_login {
  justify-content: center;
  align-items: center;
  margin: 50px 0px;
}
.content_login form {
  width: 500px;
}
.content_login .w-100 {
  width: 100%;
}

.form-check {
  display: flex;
  align-items: center;
}
.form-check input {
  margin: 0;
  display: flex;
  width: 20px;
  height: 17px;
}
.form-check label {
  margin: 0;
}

.content_form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: start;
  margin: auto;
}
.content_form a {
  font-size: 12px;
  color: #352B29;
  font-weight: 500;
}
.content_form h2 {
  font-size: 40px;
}
.content_form p {
  margin-top: -10px;
  font-size: 14px;
  color: #7E7E7E;
  margin-bottom: 20px;
  text-align: start;
}
.content_form input {
  background-color: #EDEDED;
}
.content_form input:focus {
  border: 1px solid #352B29;
}
.content_form label {
  font-size: 12px;
}
.content_form .contraseña, .content_form .usuario {
  position: relative;
}
.content_form .contraseña .eye_open, .content_form .usuario .eye_open {
  position: absolute;
  top: 50%;
  right: 10px;
  cursor: pointer;
  transform: translateY(-50%);
  display: none;
}
.content_form .contraseña .eye_open, .content_form .contraseña .eye_open, .content_form .contraseña .eye_close, .content_form .contraseña .icon_correo, .content_form .contraseña .icon_usuario, .content_form .usuario .eye_open, .content_form .usuario .eye_open, .content_form .usuario .eye_close, .content_form .usuario .icon_correo, .content_form .usuario .icon_usuario {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
}
.content_form .contraseña .eye_close1, .content_form .contraseña .eye_open1, .content_form .contraseña .eye_close2, .content_form .contraseña .eye_open2, .content_form .usuario .eye_close1, .content_form .usuario .eye_open1, .content_form .usuario .eye_close2, .content_form .usuario .eye_open2 {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
}
.content_form .contraseña img, .content_form .usuario img {
  width: 18px;
  height: 18px;
}

#content_portafolio {
  margin-top: 50px;
}
#content_portafolio .conteneddor_portafolio {
  display: flex;
  gap: 20px;
}
#content_portafolio .aside {
  width: 20%;
}
#content_portafolio .aside .box {
  padding: 20px;
  background-color: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  margin-bottom: 20px;
}
#content_portafolio .aside .box_servicios {
  gap: 15px;
  display: flex;
  flex-direction: column;
  background-color: #352B29;
}
#content_portafolio .aside .box_servicios h6 {
  color: #fff;
  margin-bottom: 10px;
}
#content_portafolio .aside .box_servicios .servicios {
  transition: 300ms;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.168627451);
  gap: 5px;
  border-radius: 11px;
}
#content_portafolio .aside .box_servicios .servicios:hover {
  border-left: 5px solid #F68F4A;
}
#content_portafolio .aside .box_servicios .servicios img {
  width: 30px;
}
#content_portafolio .aside .box_servicios .servicios h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
#content_portafolio .aside ul {
  margin-top: 20px;
  gap: 15px;
  display: flex;
  flex-direction: column;
}
#content_portafolio .aside ul li {
  display: flex;
  gap: 5px;
}
#content_portafolio .aside ul li input {
  margin: 0;
  padding: 0;
  width: auto;
}
#content_portafolio .contenido_grid {
  width: 78%;
}
#content_portafolio .contenido_grid .box_portafolio {
  cursor: pointer;
  width: 100%;
  height: 200px;
  border-radius: 10px;
  position: relative;
}
#content_portafolio .contenido_grid .box_portafolio:hover .icon {
  background: rgba(41, 86, 164, 0.5764705882);
}
#content_portafolio .contenido_grid .box_portafolio:hover .icon svg {
  fill: #fff;
}
#content_portafolio .contenido_grid .box_portafolio h5 {
  z-index: 4;
  position: absolute;
  left: 20px;
  bottom: 20px;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
}
#content_portafolio .contenido_grid .box_portafolio h5:hover {
  color: #F68F4A;
}
#content_portafolio .contenido_grid .box_portafolio .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 45px;
  height: 45px;
  background-color: rgba(236, 96, 53, 0.83);
  padding: 13px;
  border-radius: 35px;
  transition: 300ms;
}
#content_portafolio .contenido_grid .box_portafolio .icon:hover {
  background: rgba(41, 86, 164, 0.5764705882);
}
#content_portafolio .contenido_grid .box_portafolio .icon:hover svg {
  fill: #F68F4A;
}
#content_portafolio .contenido_grid .box_portafolio .icon svg {
  width: 100%;
  fill: #fff;
  height: 100%;
}
#content_portafolio .contenido_grid .box_portafolio img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
#content_portafolio .contenido_grid .box_portafolio::after {
  content: "";
  contain: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55) 0%, rgba(255, 255, 255, 0) 49%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  border-radius: 10px;
}

.checkboxes-list__button {
  display: flex;
}
.checkboxes-list__button .checkboxes-list {
  padding: 0px 3px;
  border-radius: 3px;
  background: #2957a4;
  margin-right: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.checkboxes-list__button .checkboxes-list .checked-icon {
  color: #fff;
  font-size: 11px;
}
.checkboxes-list__button .checkboxes-list__label {
  font-size: 16px;
}

.tintineo {
  animation: tintineo 300ms infinite; /* La animación dura 2 segundos y se ejecuta una sola vez */
}

@keyframes tintineo {
  0% {
    transform: translateX(0); /* Empieza en la posición original */
  }
  50% {
    transform: translateX(-10px); /* Se mueve hacia la izquierda */
  }
  100% {
    transform: translateX(10px); /* Se mueve hacia la derecha */
  }
}
.swal2-confirm {
  background-color: #F68F4A !important;
}

.popup {
  background: #fff;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 600px;
  box-shadow: 0px 0px 200px 1000px rgba(0, 0, 0, 0.2196078431);
  border-radius: 10px;
  padding: 30px;
  background: rgb(226, 229, 253);
  z-index: 10;
  background: linear-gradient(173deg, rgb(226, 229, 253) 0%, rgb(255, 255, 255) 100%);
  display: none;
  min-width: 1000px;
}
.popup .close {
  width: 25px;
  height: 25px;
  background-color: #fff;
  border-radius: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 300ms;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 15px;
  font-weight: 600;
  background: #352B29;
  color: #fff;
  padding: 8px 7px 12px 8px;
}
.popup .close:hover {
  background: #F68F4A;
  color: #fff;
}
.popup .content_input {
  border: 1px dashed #000;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  margin-top: 20px;
  border-radius: 10px;
}
.popup .content_input p {
  margin-top: 10px;
}
.popup .content_input form {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.popup .content_input input {
  cursor: pointer;
  transition: 300ms;
}
.popup .content_input input:hover {
  background-color: #F6F6F6;
}
.popup .content_input button {
  margin: auto;
  margin-top: 15px;
}
.popup .content_input img {
  width: 60px;
}
.popup h5 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  margin-top: 0px;
}

#productos {
  overflow-y: scroll;
  height: 70%;
}

#fomFooter {
  padding: 40px 50px;
}

@media (max-width: 767px) {
  #hero .content_slider {
    width: 100%;
  }
  #hero .content_slider h1 {
    font-size: 35px;
  }
  #contacto .box {
    width: 100%;
  }
  footer {
    width: 100%;
  }
  .content_login form {
    width: 95%;
  }
  .check_val label {
    font-size: 11px;
  }
  .check_val a {
    font-size: 11px;
  }
  #testimonios .prev-testimonio {
    left: 0px;
  }
  #testimonios .next-testimonio {
    right: 0px;
  }
  #productos {
    overflow-y: scroll;
    height: 80%;
    width: 95%;
    max-width: 95%;
    min-width: 95%;
    padding: 10px;
  }
  #fomFooter {
    padding: 10px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  #productos {
    overflow-y: scroll;
    height: 80%;
    width: 95%;
    max-width: 95%;
    min-width: 95%;
    padding: 10px;
  }
  .bar_info_hero img {
    width: 110px;
    object-fit: scale-down;
  }
  .container {
    padding: 10px;
  }
}

/*# sourceMappingURL=app.css.map */
