@import url("https://use.typekit.net/wod0tnm.css");

body {
  font-family: "aptly", sans-serif;
}

/* Encabezados */
h2 {
  color: white;
  font-size: 70px;
  font-weight: bold;
}

h3 {
  font-size: 30px;
  color: white;
}

/* Párrafos */
p {
  font-size: 16px;
  font-weight: 500;
  color: white;
}

/* Márgenes personalizadas */
.myt-100 {
  margin-top: 85%;
}

.myt-200 {
  margin-top: 20%;
}

.myt-300 {
  box-shadow: 0px 0px 73px 5px rgba(0, 0, 1, 1);
  background-color: rgba(0, 0, 0, 0.747);
  margin: 25% auto 0;
  width: 70%;
  position: relative;
}

/* Rotaciones */
.rt-01 {
  rotate: 10deg;
}

.rt-02 {
  rotate: -10deg;
}

/* Estilos personalizados */
.phr {
  margin-top: 5%;
  box-shadow: 0px 0px 73px 5px rgba(0, 0, 1, 1);
  background-color: rgba(0, 0, 0, 0.747);
  margin: 77px auto 0;
  width: 70%;
  position: relative;
  border-radius: 50px;
}

.phr p {
  width: 65%;
  margin-left: auto;
  margin-right: auto;
  color: white;
}

/* Botón personalizado */
.btn-primary {
  background-color: white !important;
  border: none;
  color: black;
}

/* Footer */
footer {
  position: relative;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.473);
  padding: 10px;
  text-align: center;
}

footer a {
  color: white;
}

.chzoom img {
  transition: transform 0.3s ease-in-out; /* Duración y tipo de transición */
}

/* Modal personalizado */
.mi-modal-transparente .modal-content {
  background-color: rgba(0, 0, 0, 0.5);
}

.mi-modal-transparente .modal-backdrop {
  background-color: transparent;
}

.modal-header {
  border-bottom: none;
}

.modal-footer {
  border-top: none;
}

/* Imagen borrosa */
.blurred-image {
  overflow: hidden;
  filter: blur(4px);
}

/* Animación de vibración */
@keyframes vibrate {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
  100% {
    transform: translate(0);
  }
}

.vibrate {
  animation: vibrate 3s linear infinite;
}

/* Listas */
.list h4 {
  font-size: 20px;
}

/* Media Query para la sección "Cameras" en pantallas pequeñas */
@media (max-width: 767px) {
  .myt-200 h2 {
    font-size: 40px;
  }

  .myt-200 h3 {
    font-size: 24px;
  }

  .ul.list h4 {
    font-size: 18px;
  }

  .col-md-6 {
    width: 100%;
    margin-bottom: 20px;
  }

  .vibrate img {
    width: 100%;
  }

  .btn-primary {
    width: 100%;
    margin-bottom: 20px;
  }
}

/* Media Query para la sección "Cameras" en pantallas medianas */
@media (min-width: 768px) and (max-width: 991px) {
  .myt-200 h2 {
    font-size: 50px;
  }

  .myt-200 h3 {
    font-size: 26px;
  }

  .ul.list h4 {
    font-size: 20px;
  }

  .col-md-6 {
    width: 100%;
    margin-bottom: 20px;
  }

  .vibrate img {
    width: 100%;
  }

  .btn-primary {
    width: 100%;
    margin-bottom: 20px;
  }
}

/* Media Query para la sección "Cameras" en pantallas grandes */
@media (min-width: 992px) {
  .myt-200 h2 {
    font-size: 70px;
  }

  .myt-200 h3 {
    font-size: 30px;
  }

  .ul.list h4 {
    font-size: 24px;
  }

  .col-md-6 {
    width: 50%;
  }

  .vibrate img {
    width: auto;
  }

  .btn-primary {
    width: auto;
  }
}

.blurred-image img {
  margin-top: 40px;
  transition: transform 0.3s ease-in-out; /* Duración y tipo de transición */
}

.blurred-image img:hover {
  transform: scale(1.05); /* Escala ligeramente mayor para un zoom sutil */
}

.popover-header {
  padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
  margin-bottom: 0;
  font-size: var(--bs-popover-header-font-size);
  color: white !important;
  background-color: rgba(0, 0, 0, 0.247) !important;
  border-bottom: none !important;
  border-top-left-radius: var(--bs-popover-inner-border-radius);
  border-top-right-radius: var(--bs-popover-inner-border-radius);
}

.popover-body {
  padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
  background-color: rgba(0, 0, 0, 0.247) !important;
  color: white !important;
}

.phr2 {
  margin-top: 40%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Centrar el contenedor */
  z-index: 10;
}

/* Fondo de la imagen */
.bgimage01 {
  margin-top: -50%;
  width: 100%;
  height: 350vh; /* Ajusta la altura según sea necesario */
  background-image: url("http://localhost/offpic/wp-content/uploads/2024/06/back-1.png");
  background-size: cover; /* Ajusta el tamaño de la imagen para cubrir todo el contenedor */
  background-position: center; /* Centra la imagen */
  background-repeat: no-repeat; /* Evita que la imagen se repita */
  position: relative; /* Permite posicionar elementos hijos absolutamente */

  overflow: hidden; /* Asegura que el contenido no se desborde */
  z-index: -2;
}

.phr22 {
  margin-top: 55%;
  background-color: rgba(
    0,
    0,
    0,
    0.5
  ); /* Fondo semi-transparente para el texto */
  padding: 20px;
  border-radius: 50px;
  color: white;
  text-align: center;
  z-index: 10;
  display: block ruby !important;
}

.phr222 {
  margin-top: ;
  background-color: rgba(
    0,
    0,
    0,
    0.5
  ); /* Fondo semi-transparente para el texto */
  padding: 20px;
  border-radius: 50px;
  color: white;
  text-align: center;
  z-index: 10;
  display: block ruby !important;
}

.imgaut {
  width: 300px;
}
.jsjsj {
  margin-top: 60%;
}

.black6 {
  background-color: #ffffff !important;
  height: auto;
  padding: 30px 0; /* Espaciado interior */
}
.card-text {
  color: rgba(56, 56, 56, 0.473) !important;
}

.card {
  .btn-primary {
    background-color: black !important;
    border: none;
    color: rgb(253, 253, 253);
  }
}

.product-image {
  max-width: 100%;
  height: auto;
}

.h2p1{
  h2{
    color: rgb(34, 34, 34) !important ;
  }
  p{
    color: rgb(34, 34, 34)!important;
  }
}

.blurred-image2 img {
  margin-top: 40px;
  transition: transform 0.3s ease-in-out; /* Duración y tipo de transición */
}

.blurred-image2 img:hover {
  transform: scale(1.05); /* Escala ligeramente mayor para un zoom sutil */
}

.blurred-image2 {
  height: 50%;
  overflow: hidden;
  filter: blur(4px);
}

.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb),var(--bs-bg-opacity)) !important;
  width: 100%;
}

.bgtoo {
  position: absolute;
  margin-top: 50%;
  z-index: 10;
}

.mtp5 {
  margin-top: 200px;
  margin-bottom: 200px;
  .btn-primary {
    background-color: black !important;
    border: none;
    color: rgb(253, 253, 253);
   
  
  }
  
  
}

.btn:hover {
  color: black;
  background-color: white !important;
  border-color: rgb(255, 252, 252) !important;
  box-shadow: black 5px;
}