@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8rem;
  background-color: #eaeaea;
  overflow-x: hidden;
  height: 100%;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
}

img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  appearance: textfield;
}

::-webkit-scrollbar {
  width: 6px;
  height: 5px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
  background-color: #131212;
  outline: 1px solid slategrey;
  border-radius: 18px;
}

.close-mobile {
  font-size: 48px;
  color: #bf0303;
}
.close-mobile:hover {
  transform: scale(1.03);
}

.anime-opacity {
  animation: slide-opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.slide-in-left {
  animation: slide-in-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.fade-in-right {
  animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.fade-in-left {
  animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@keyframes slide-opacity {
  0% {
    opacity: 0.1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slide-in-left {
  0% {
    transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-left {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.bounce-in-left {
  animation: bounce-in-left 1.1s both;
}

@keyframes bounce-in-left {
  0% {
    transform: translateX(-600px);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: translateX(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: translateX(-68px);
    animation-timing-function: ease-in;
  }
  72% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
  81% {
    transform: translateX(-28px);
    animation-timing-function: ease-in;
  }
  90% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
  95% {
    transform: translateX(-8px);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
}
.bounce-in-right {
  animation: bounce-in-right 1.1s both;
}

@keyframes bounce-in-right {
  0% {
    transform: translateX(600px);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: translateX(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: translateX(68px);
    animation-timing-function: ease-in;
  }
  72% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
  81% {
    transform: translateX(32px);
    animation-timing-function: ease-in;
  }
  90% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
  95% {
    transform: translateX(8px);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
}
.btn {
  text-decoration: none;
  align-items: center;
  appearance: button;
  border-style: none;
  box-shadow: rgba(255, 255, 255, 0.26) 0 1px 2px inset;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  gap: 0 10px;
  flex-shrink: 0;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  padding: 13px 21px;
  text-align: center;
  text-transform: none;
  transition: color 0.13s ease-in-out, background 0.13s ease-in-out, opacity 0.13s ease-in-out, box-shadow 0.13s ease-in-out;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.btn-primary {
  background: #bf0303;
  color: #fff;
  border-radius: 10px;
  transition: all 500ms;
  font-size: 15px;
}
.btn-primary:hover {
  background: #b00303;
  transition: all 0.3s ease;
}
.btn-primary:active {
  background: #410101;
}

.btn-success {
  background: #058d1f;
  color: #fff;
  border-radius: 10px;
  transition: all 500ms;
  font-size: 15px;
}
.btn-success:hover {
  background: #047e1c;
  transition: all 0.3s ease;
}
.btn-success:active {
  background: #011204;
}

.btn-info {
  background: #11244c;
  color: #fff;
  border-radius: 10px;
  transition: all 500ms;
  font-size: 15px;
}
.btn-info:hover {
  background: #0e1e3f;
  transition: all 0.3s ease;
}
.btn-info:active {
  background: black;
}

.btn-warning {
  background: #ffc100;
  color: #fff;
  border-radius: 10px;
  transition: all 500ms;
  font-size: 15px;
}
.btn-warning:hover {
  background: #f0b500;
  transition: all 0.3s ease;
}
.btn-warning:active {
  background: #806100;
}

.btn-dark {
  background: #131212;
  color: #fff;
  border-radius: 10px;
  transition: all 500ms;
  font-size: 15px;
}
.btn-dark:hover {
  background: #0b0b0b;
  transition: all 0.3s ease;
}
.btn-dark:active {
  background: black;
}

.mt-2 {
  margin-top: 10px;
}

.shadow {
  box-shadow: 6px 32px 70px -9px rgba(19, 18, 18, 0.1);
}

.form_group {
  display: flex;
  align-items: center;
  width: 100%;
}
.form_group > span {
  align-items: center;
  display: flex;
  height: 45px;
  background-color: #131212;
  padding: 12px 20px;
  border-radius: 0 25px 25px 0;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
}

.form_control {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border-radius: 25px 0 0 25px;
  border: 1px solid rgba(33, 37, 41, 0.1215686275);
  height: 45px;
  font-size: 15px;
}
.form_control:focus {
  color: #495057;
  background-color: #ffffff;
  border-color: #000000;
  outline: 0;
  box-shadow: none;
}

.cantidad {
  display: flex;
  flex-direction: row;
}
.cantidad > input {
  border: 1px solid #131212;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  padding: 0;
  margin: 0;
  width: 85px;
}
.cantidad > input:focus {
  outline: none;
}
.cantidad_spinner {
  display: flex;
  flex-direction: column;
}
.cantidad_button {
  padding: 0 8px;
  border: 1px solid #131212;
  border-left: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 500ms;
}
.cantidad_button:hover {
  background-color: #131212;
  color: #fff;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-control {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border-radius: 25px 0 0 25px;
  border: 1px solid rgba(33, 37, 41, 0.1215686275);
  height: 45px;
  font-size: 15px;
}
.form-control:focus {
  color: #495057;
  background-color: #ffffff;
  border-color: #000000;
  outline: 0;
  box-shadow: none;
}

.form-control-textarea {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border-radius: 25px 0 0 25px;
  border: 1px solid rgba(33, 37, 41, 0.1215686275);
  font-size: 15px;
}
.form-control-textarea:focus {
  color: #495057;
  background-color: #ffffff;
  border-color: #000000;
  outline: 0;
  box-shadow: none;
}

.modal {
  width: 80%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  margin: auto;
  display: none;
}
.modal_content {
  margin: 80px;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  border: 1px dashed #131212;
  box-shadow: 6px 32px 70px -9px rgba(19, 18, 18, 0.25);
}
.modal_content_header {
  position: relative;
  background-color: #bf0303;
  padding: 10px 10px;
  border-radius: 10px;
  border-bottom: 1px dashed #131212;
  color: #fff;
}
.modal_content_header > span {
  position: absolute;
  top: -35px;
  right: -30px;
  bottom: 100%;
  z-index: 20;
  height: 30px;
  width: 30px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  padding: 15px;
  border: 1px dashed #131212;
  box-shadow: 6px 32px 70px -9px rgba(19, 18, 18, 0.25);
  color: #131212;
  cursor: pointer;
  transition: all 500ms;
}
.modal_content_header > span:hover {
  background-color: #bf0303;
  color: #fff;
  border: 1px dashed #bf0303;
  transform: scale(1.2);
}
.modal_content_body {
  width: 100%;
  padding: 30px 0;
}
.modal_content_footer {
  width: 100%;
}

.modal.show {
  display: block;
}

header {
  width: 100vw;
  height: 22vh;
}

.sticky {
  top: 0;
  z-index: 15;
  border-radius: 30px;
  box-shadow: 6px 32px 70px -9px rgba(19, 18, 18, 0.25);
  height: 12vh;
}
.sticky .header_top {
  display: none;
}
.sticky .nav {
  border-radius: 0 0 30px 30px;
  height: 100%;
}

.header_top {
  width: 100%;
  height: 22%;
  padding: 0 40px;
  background-color: #131212;
  color: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.header_top_contact {
  display: flex;
  gap: 0 40px;
}
.header_top_contact_celular {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0 8px;
}
.header_top_contact_correo {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0 8px;
}
.header_top_links {
  display: flex;
  gap: 0 40px;
}
.header_top_links > a {
  color: inherit;
  display: flex;
  align-items: center;
  gap: 0 8px;
}

.nav {
  width: 100%;
  height: 78%;
  padding: 0 40px;
  background-color: #fff;
}
.nav_brands {
  height: 60%;
  display: flex;
  justify-content: center;
  gap: 0 100px;
  align-items: center;
}
.nav_brands_logo {
  width: 80px;
  cursor: pointer;
}
.nav_brands_search {
  width: 45%;
  position: relative;
}
.nav_brands_search .form_group > input {
  text-transform: capitalize;
}
.nav_brands_search .form_group > span {
  transition: all 500ms;
}
.nav_brands_search .form_group > span:hover {
  background-color: #bf0303;
}
.nav_brands_search_result.hiden {
  display: none;
}
.nav_brands_search_result {
  position: absolute;
  top: 4.5rem;
  z-index: 1045;
  width: 80%;
}
.nav_brands_search_result_items {
  background-color: #fff;
  padding: 10px 10px;
  border-radius: 10px;
  border: 1px dashed #131212;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  overflow-y: scroll;
  overflow-x: hidden;
}
.nav_brands_search_result_items_link {
  background-color: #fff;
  border-radius: 10px;
  padding: 5px 10px;
  margin-bottom: 5px;
  color: #131212;
}
.nav_brands_search_result_items_link:hover {
  background-color: #eaeaea;
}
.nav_brands_search_result.hiden {
  display: none;
}
.nav_brands_acount {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 40px;
}
.nav_brands_acount_car {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-transform: uppercase;
  font-size: 10px;
  cursor: pointer;
  transition: transform 800ms;
}
.nav_brands_acount_car > i {
  font-size: 38px;
}
.nav_brands_acount_car:hover {
  transform: scale(1.1);
}
.nav_brands_acount_car_count {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  bottom: 100%;
  top: -5px;
  right: -5px;
  height: 8px;
  width: 8px;
  padding: 10px;
  border-radius: 5px;
  background-color: #bf0303;
}
.nav_brands_acount_favorite {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-transform: uppercase;
  font-size: 10px;
  cursor: pointer;
  transition: transform 800ms;
}
.nav_brands_acount_favorite > i {
  font-size: 38px;
}
.nav_brands_acount_favorite:hover {
  transform: scale(1.1);
}
.nav_bar {
  height: 40%;
}
.nav_bar_mobile {
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.nav_bar_links {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #131212;
  height: 100%;
  width: 100%;
  border-top: 1px solid rgba(33, 37, 41, 0.1215686275);
}
.nav_bar_links > li {
  height: 100%;
  border-left: 1px solid rgba(33, 37, 41, 0.1215686275);
}
.nav_bar_links > li > a {
  display: flex;
  justify-content: start;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 0 40px;
  color: inherit;
  font-size: 15px;
  text-transform: uppercase;
}
.nav_bar_links > li > a:hover {
  background-color: #efefef;
}
.nav_bar_links > li > a:last-child {
  border-right: 1px solid rgba(33, 37, 41, 0.1215686275);
}

@keyframes header_main {
  0% {
    top: -10px;
    height: 50%;
  }
  75% {
    top: 5;
    height: 75%;
  }
  100% {
    top: 0;
    height: 100%;
  }
}
footer {
  background-color: #131212;
  color: #fff;
  height: 80px;
  width: 100%;
  padding: 20px;
}

.content_footer {
  text-align: center;
}
.content_footer > a {
  color: #fff;
}

main {
  height: 78vh;
}
main .content_slides {
  position: relative;
  height: 100%;
}
main .content_slides_detail {
  display: flex;
  width: 100vw;
  height: 78vh;
  position: relative;
}
main .content_slides_detail > img {
  display: none;
  position: absolute;
  z-index: 5;
}
main .content_slides_detail > img:first-child {
  display: inline-block;
}
main .content_slides_left {
  position: absolute;
  font-size: 38px;
  font-weight: 500;
  z-index: 10;
  color: #efefef;
  top: 50%;
  left: 40px;
  cursor: pointer;
  transition: all 800ms;
}
main .content_slides_left:hover {
  transform: scale(1.2);
}
main .content_slides_left .spc-square-rounded-chevron-left-filled {
  font-size: 60px;
  color: #131212;
}
main .content_slides_left:hover .spc-square-rounded-chevron-left-filled {
  color: #bf0303;
}
main .content_slides_right {
  position: absolute;
  font-size: 38px;
  z-index: 10;
  color: #efefef;
  top: 50%;
  right: 40px;
  cursor: pointer;
  transition: all 800ms;
}
main .content_slides_right:hover {
  transform: scale(1.2);
}
main .content_slides_right .spc-square-rounded-chevron-right-filled {
  font-size: 60px;
  color: #131212;
}
main .content_slides_right:hover .spc-square-rounded-chevron-right-filled {
  transform: scale(1.2);
  color: #bf0303;
}

.content_main {
  width: 100vw;
}

.content_productos {
  width: 100%;
}
.content_productos_titulo {
  font-size: 28px;
  color: #fff;
  background-color: #131212;
  padding: 20px 40px;
  text-align: center;
  border-bottom: 5px solid #bf0303;
}
.content_productos_detalle {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 40px;
  padding: 40px 80px;
}

.content_producto {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0;
  background-color: #fff;
  border-radius: 10px;
  border: 1px dashed #131212;
  box-shadow: 6px 32px 70px -9px rgba(19, 18, 18, 0.1);
  transition: all 800ms;
}
.content_producto:hover {
  transform: scale(1.03);
}
.content_producto_img {
  max-width: 100%;
  max-width: 80%;
  object-fit: cover;
  transition: all 800ms;
}
.content_producto_img:hover {
  transform: scale(1.1);
}
.content_producto_descripcion {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-bottom: 1px dashed #131212;
}
.content_producto_descripcion_titulo {
  padding: 15px 0 15px 30px;
  font-weight: 500;
  position: relative;
  transition: all 800ms;
}
.content_producto_descripcion_titulo:hover {
  color: #5c5c5c;
}
.content_producto_descripcion_precio {
  padding: 15px 25px;
  font-size: 16px;
  font-weight: 600;
  color: #131212;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 800ms;
}
.content_producto_descripcion_precio:hover {
  background-color: #eaeaea;
  border-radius: 10px 0 0 10px;
}
.content_producto_actions {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  gap: 0;
  justify-content: center;
  align-items: center;
  transition: all 800ms;
}
.content_producto_actions > div {
  padding: 15px 20px;
  border-left: 1px dashed #131212;
  font-size: 18px;
  cursor: pointer;
  transition: all 800ms;
}
.content_producto_actions > div:hover {
  background-color: #bf0303;
  color: #fff;
  border-radius: 5px;
  transform: scale(1.01);
}
.content_producto_actions > div:last-child {
  border-right: 1px dashed #131212;
}
.content_producto_all {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0 20px;
  padding: 5px 0 20px 0;
}

.detalle_producto {
  display: flex;
  flex-direction: row;
  gap: 0 40px;
}
.detalle_producto_imagenes {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px 0;
  padding: 20px;
  cursor: pointer;
}
.detalle_producto_imagenes > img {
  width: 380px;
  height: 380px;
}
.detalle_producto_imagenes_galeria {
  display: flex;
  flex-direction: row;
  gap: 0 10px;
}
.detalle_producto_imagenes_galeria > img {
  width: 60px;
  height: 60px;
  padding: 10px;
  opacity: 0.8;
  background-color: #eaeaea;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 1s;
}
.detalle_producto_imagenes_galeria > img:hover {
  transform: scale(1.08);
}
.detalle_producto_imagenes_galeria > img.active {
  border-radius: 10px;
  border: 1px dashed #131212;
  opacity: 1;
  cursor: pointer;
}
.detalle_producto_descripcion {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
.detalle_producto_descripcion_precio {
  font-size: 28px;
}
.detalle_producto_descripcion_precio > span {
  font-size: 18px;
  color: #aaaaaa;
  text-decoration: line-through;
  font-weight: 400;
}
.detalle_producto_descripcion_tallas {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
.detalle_producto_descripcion_tallas > h4 {
  font-size: 25px;
}
.detalle_producto_descripcion_tallas_tipos {
  display: flex;
  flex-direction: row;
  gap: 0 10px;
}
.detalle_producto_descripcion_tallas_tipos > label {
  background-color: #fff;
  color: #5c5c5c;
  font-size: 20px;
  padding: 10px 15px;
  border: 1px solid #5c5c5c;
  border-radius: 5px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 500ms;
}
.detalle_producto_descripcion_tallas_tipos > label > input {
  display: none;
}
.detalle_producto_descripcion_tallas_tipos > label:hover {
  border: 1px solid #bf0303;
  color: #bf0303;
  transform: scale(1.05);
}
.detalle_producto_descripcion_tallas_tipos > label.active {
  background-color: #131212;
  color: #fff;
  font-size: 20px;
  padding: 10px 15px;
  border: 1px solid #5c5c5c;
}
.detalle_producto_descripcion_colores {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
.detalle_producto_descripcion_colores > h4 {
  font-size: 25px;
}
.detalle_producto_descripcion_colores_tipos {
  display: flex;
  flex-direction: row;
  gap: 0 10px;
}
.detalle_producto_descripcion_colores_tipos > label {
  background-color: #fff;
  color: #5c5c5c;
  font-size: 20px;
  padding: 10px 15px;
  border-radius: 50%;
  font-weight: 500;
  cursor: pointer;
  height: 40px;
  width: 40px;
  transition: all 500ms;
}
.detalle_producto_descripcion_colores_tipos > label > input {
  display: none;
}
.detalle_producto_descripcion_colores_tipos > label:hover {
  border: 1px solid #fff;
}
.detalle_producto_descripcion_colores_tipos > label.active {
  background-color: #bf0303;
  padding: 18px;
  border: 4px double #fff;
}
.detalle_producto_descripcion_acciones {
  display: flex;
  flex-direction: row;
  gap: 0 10px;
}

.contacto {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 20px 40px;
}
.contacto_formulario {
  padding: 0 20px;
}
.contacto_formulario > h4 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
}
.contacto_detalle {
  padding: 0 20px;
}
.contacto_detalle > h4 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
}
.contacto_detalle_tags {
  background-color: #fff;
  padding: 20px 20px;
  border: 1px dashed #bf0303;
  border-radius: 10px;
}
.contacto_detalle_tags_tipo {
  padding: 5px;
  border-bottom: 1px dashed #bf0303;
}
.contacto_detalle_tags_tipo > h4 {
  color: #bf0303;
  font-size: 16px;
  text-align: center;
  font-weight: 600;
}
.contacto_detalle_tags_tipo_descripcion {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 20px;
}
.contacto_detalle_tags_tipo_descripcion > span {
  font-size: 18px;
}
.contacto_detalle_tags_tipo_descripcion > a {
  font-size: 18px;
  color: #131212;
}
.contacto_detalle_tags_tipo_descripcion > small {
  font-size: 12px;
  font-weight: 600;
  color: #5c5c5c;
}
.contacto_detalle_tags_tipo:last-child {
  border: none;
}

.tienda {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 40px 0;
  gap: 0 40px;
}
.tienda_detalles > h4 {
  background-color: #bf0303;
  color: #fff;
  padding: 10px 20px;
  border-radius: 7px 7px 0 0;
  font-size: 18px;
  text-align: center;
}
.tienda_detalles_local {
  padding: 20px 40px;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 0 0 7px 7px;
  text-align: center;
}
.tienda_detalles_local > p {
  line-height: 1.2;
  font-size: 14px;
}
.tienda_detalles_local > b {
  padding-bottom: 20px;
  display: block;
}
.tienda_ubicacion > iframe {
  width: 850px;
  height: 100%;
  border: none;
  border-radius: 7px;
  border: 1px dashed #bf0303;
}

.servicios {
  display: flex;
  flex-direction: row;
  gap: 40px;
  padding: 40px;
}
.servicios_item {
  background-color: #fff;
  padding: 20px;
  border-radius: 7px;
}
.servicios_item > h4 {
  background-color: #bf0303;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 20px;
  border-radius: 5px;
  margin-bottom: 20px;
}
.servicios_item > p {
  line-height: 1.8;
  font-size: 14px;
  margin-bottom: 20px;
}
.servicios_item_imagenes > img {
  border-radius: 5px;
  height: 100%;
}
.servicios_detalles {
  background-color: #fff;
  padding: 40px;
  margin-bottom: 20px;
  text-align: center;
}

header {
  height: 18vh;
  position: sticky;
  transition: width 200ms, padding 80ms;
}

.header_top {
  padding: 20px 15px;
}
.header_top_contact {
  display: none;
}
.header_top_links {
  gap: 0 15px;
}

.nav {
  padding: 0 20px;
  margin-top: -5px;
}
.nav_brands {
  justify-content: space-between;
  gap: 20px 0;
  height: 100%;
}
.nav_brands_logo {
  width: 70px;
  cursor: pointer;
}
.nav_brands_search {
  width: 45%;
  display: none;
}
.nav_brands_acount {
  justify-content: space-between;
  gap: 0 10px;
}
.nav_brands_acount_car > i {
  font-size: 28px;
}
.nav_brands_acount_favorite > i {
  font-size: 28px;
}
.nav_bar {
  display: none;
  height: 0%;
}
.nav_bar_mobile {
  display: block;
  font-size: 26px;
}
.nav_bar_links {
  display: none;
}

header.mobile {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 250;
  width: 100vw;
  height: 100vh;
  padding: 10px 10px;
  animation: header_main 800ms;
}
header.mobile .header_top {
  display: none;
}
header.mobile .nav {
  height: 100%;
  border-radius: 10px;
  border: 1px dashed #131212;
  box-shadow: 6px 32px 70px -9px rgba(19, 18, 18, 0.2);
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
}
header.mobile .nav_brands {
  height: 80px;
}
header.mobile .nav_brands .nav_bar_mobile {
  transition: all 800ms;
}
header.mobile .nav_brands .nav_bar_mobile:hover {
  transform: rotate(360deg);
}
header.mobile .nav_brands_acount_favorite {
  display: none;
}
header.mobile .nav_bar {
  width: 100%;
  display: flex;
}
header.mobile .nav_bar_links {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 10px;
  width: 100%;
  border-top: none;
  transition: all 800ms;
}
header.mobile .nav_bar_links > li {
  width: 100%;
  display: block;
  border: none;
}
header.mobile .nav_bar_links > li > a:last-child {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  padding: 10px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 6px 32px 70px -9px rgba(234, 234, 234, 0.2);
  border: 1px dashed #131212;
  color: #11244c;
}

main {
  height: 80vh;
}
main .content_slides {
  width: 100%;
  height: 100%;
}
main .content_slides_detail {
  height: 100%;
}
main .content_slides_detail > img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}
main .content_slides_left {
  left: 15px;
}
main .content_slides_left .spc-square-rounded-chevron-left-filled {
  font-size: 38px;
  color: #131212;
}
main .content_slides_right {
  right: 15px;
}
main .content_slides_right .spc-square-rounded-chevron-right-filled {
  font-size: 38px;
  color: #131212;
}

.content_productos {
  width: 100%;
}
.content_productos_titulo {
  font-size: 18px;
  padding: 15px 40px;
}
.content_productos_detalle {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 25px 0;
  padding: 30px 20px;
}

@media (min-width: 576px) {
  .content_productos {
    width: 100%;
  }
  .content_productos_titulo {
    font-size: 26px;
    padding: 15px 40px;
  }
  .content_productos_detalle {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 20px;
    padding: 30px 20px;
  }
  .content_producto_img {
    max-width: 100%;
    max-width: 60%;
    object-fit: cover;
    transition: all 800ms;
  }
}
@media (min-width: 992px) {
  header {
    height: 22vh;
    position: sticky;
    z-index: 15;
  }
  main {
    height: 78vh;
  }
  main .content_slides_detail {
    height: 78vh;
  }
  .sticky {
    top: 0;
    z-index: 15;
    box-shadow: 6px 32px 70px -9px rgba(19, 18, 18, 0.25);
    border-radius: 20px;
    height: 18vh;
  }
  .sticky .nav {
    border-radius: 0 0 20px 20px;
  }
  .header_top {
    padding: 0 40px;
  }
  .header_top_contact {
    display: flex;
  }
  .header_top_links {
    display: flex;
    gap: 0 40px;
  }
  .header_top_links > a {
    color: inherit;
    display: flex;
    align-items: center;
    gap: 0 8px;
  }
  .nav {
    width: 100%;
    height: 78%;
    padding: 0 40px;
    margin-top: 0;
  }
  .nav_brands {
    justify-content: center;
    gap: 0 100px;
    height: 60%;
  }
  .nav_brands_logo {
    width: 80px;
    cursor: pointer;
  }
  .nav_brands_search {
    width: 45%;
    display: flex;
  }
  .nav_brands_acount {
    justify-content: center;
    gap: 0 40px;
  }
  .nav_brands_acount_car > i {
    font-size: 38px;
  }
  .nav_brands_acount_favorite > i {
    font-size: 38px;
  }
  .nav_bar {
    display: block;
    height: 40%;
  }
  .nav_bar_mobile {
    display: none;
    font-size: 26px;
  }
  .nav_bar_links {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #131212;
    height: 100%;
    width: 100%;
    border-top: 1px solid rgba(33, 37, 41, 0.1215686275);
  }
  .nav_bar_links > li {
    height: 100%;
    border-left: 1px solid rgba(33, 37, 41, 0.1215686275);
  }
  .nav_bar_links > li > a {
    display: flex;
    justify-content: start;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 0 40px;
    color: inherit;
    font-size: 15px;
    text-transform: uppercase;
    transition: all 800ms;
  }
  .nav_bar_links > li > a:hover {
    background-color: #efefef;
  }
  .nav_bar_links > li > a:last-child {
    border-right: 1px solid rgba(33, 37, 41, 0.1215686275);
  }
  .content_productos {
    width: 100%;
  }
  .content_productos_titulo {
    font-size: 26px;
    padding: 15px 40px;
  }
  .content_productos_detalle {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px 20px;
    padding: 30px 20px;
  }
  .content_producto_img {
    max-width: 100%;
    max-width: 60%;
    object-fit: cover;
    transition: all 800ms;
  }
}

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