/*
Theme Name: Mi Nuevo Tema
Theme URI: http://tu-sitio.com
Author: Tu Nombre
Author URI: http://tu-sitio.com
Description: Un tema de WordPress creado a partir de un HTML existente.
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/*
font-family: "Bebas Neue", cursive;
*/

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
 
}
html, body {
  overflow-x: hidden; /* Evita desbordamiento horizontal */
}
h2 span {
  text-transform: lowercase;
}


body {
  font-family: Arial, Helvetica, sans-serif;
  background-image: url('images/descarga.jpeg'); /* Ruta de la imagen */
  background-repeat: repeat; /* Repite la imagen en ambas direcciones */
  background-size: auto; /* Usa el tamaño original de la imagen */
  background-attachment: fixed; /* Hace que la imagen de fondo se quede fija al hacer scroll */
background-position: top left; /* Define la posición inicial de la imagen */
--shadow-img: drop-shadow(0 12px 24px hsla(0, 0%, 0%, .4));
}
/*=============== CARE ===============*/
.care{
  background-color: transparent;

}
.care__container{
  row-gap: 3rem;
  padding-block: 1rem 2rem;
  text-align: center;
  margin-top: 20px; /* Espaciado entre la imagen y el enlace */
}

.care__list{
  display: grid;
  row-gap: 1.25rem;
}

.care__item{
  display: flex;
  column-gap: .75rem;
  align-items: center;
}

.care__item i{
  font-size: 1.5rem;
  color: var(--second-color);
}

.care__img{
  width: 320px;
  filter: var(--shadow-img);
  justify-self: center;
  align-items: center;
  box-shadow: 0 0 65px #be1515;
}
.care__icon {
  width: 40px; /* Ajusta el tamaño según sea necesario */
  height: 40px; /* Mantén las proporciones */
  object-fit: contain; /* Asegura que la imagen no se distorsione */
  margin-right: 10px; /* Espaciado entre el ícono y el texto */
 
}
.care__icon:hover {
  transform: scale(1.2); /* Aumenta el tamaño ligeramente */
  transition: transform 0.3s ease;
}


.care__instagram {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #be1515; /* Color de fondo */
  color: #fff; /* Color del texto */
  text-decoration: none; /* Sin subrayado */
  font-size: 25px;
  font-weight: bold;
  border-radius: 5px; /* Bordes redondeados */
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.care__instagram:hover {
  background-color: #ff4d4d; /* Color al pasar el cursor */
  transform: scale(1.05); /* Efecto de zoom */
}



  /* Estilos Generales para .services */
  .services {
    background-image: linear-gradient(
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.7)
    ), url(images/manuiberod/B0CB0622-8283-4594-9550-CCBD63B260D9.JPG);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0;
  }
  .services-2{
    background-image: linear-gradient(
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.7)
    ), url(images/manuiberod/ED130337-7595-480F-AB53-743F92C506B8.JPG);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0;
  }

  .services-content {
    text-align: center;
    max-width: 800px;
  margin: 0 auto;
  }

  .services-content h2 {
   
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  }

  .services-content p {
    font-size: 24px;
  line-height: 1.6;
  color: #d1d1d1;
  margin-bottom: 40px;
  }
  .services-content .highlight {
    color: #be1515; 
    font-weight: bold;
  }
  
  .cta-button {
    display: inline-block;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    background-color: #be1515; /* Verde */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #ff4d4d;
  }

  .services-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
  }

  .services-1 {
    padding: 0 100px;
  }

  .services-1 img {
    width: 25px;
    margin-bottom: 15px;
  }
 
  .services-1 h3 {
    color: #eaccb3;
    font-size: 18px;
  }

/* Estilos Responsivos para Pantallas Pequeñas */
@media (max-width: 768px) {
  .services {
    padding: 50px 0; /* Reduce el padding para que se ajuste mejor en móviles */
  }

  .services-content h2 {
    font-size: 36px; /* Reduce el tamaño del título */
    line-height: 45px;
    margin-bottom: 30px;
  }

  .services-content p {
    font-size: 16px; /* Reduce el tamaño del texto */
    padding: 0 20px; /* Reduce el padding lateral */
  }
  .cta-button {
    font-size: 18px;
    padding: 10px 20px;
  }

  .services-group {
    flex-direction: column; /* Apila los servicios verticalmente */
    align-items: center;
  }

  .services-1 {
    padding: 0 20px; /* Reduce el padding en los laterales */
    margin-bottom: 30px; /* Añade margen inferior entre servicios */
  }

  .services-1 img {
    width: 30px; /* Aumenta ligeramente el tamaño del ícono para que sea más visible en móviles */
  }

  .services-1 h3 {
    font-size: 16px; /* Ajusta el tamaño de los subtítulos */
  }
}

/* Estilos para Pantallas Muy Pequeñas */
@media (max-width: 480px) {
  .services-content h2 {
    font-size: 28px; /* Reduce aún más el tamaño del título */
    line-height: 35px;
  }

  .services-content p {
    font-size: 25px; /* Ajusta el tamaño del texto para pantallas pequeñas */
  }

  .services-1 {
    padding: 0 10px; /* Reduce el padding para dispositivos muy pequeños */
  }
 
}
.whatsapp-float {
  position: fixed;
  bottom: 200px; /* Ajusta la distancia desde abajo */
  left: 25px; /* Ajusta la distancia desde la izquierda */
  z-index: 1000; /* Asegura que esté encima de otros elementos */
}

.whatsapp-float a img {
  width: 35px; /* Tamaño del ícono */
  height: 35px;
 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra para darle efecto */
  transition: transform 0.3s, box-shadow 0.3s; /* Suaviza el efecto al interactuar */
}

.whatsapp-float a img:hover {
  transform: scale(1.1); /* Aumenta el tamaño al pasar el mouse */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Cambia la sombra */
}


.general {
  display: flex;
  flex-wrap: wrap; /* Para ajustar en pantallas pequeñas */
  margin: 0 auto; /* Centrar el contenido */
  max-width: 1700px; /* Limitar el ancho general para que no ocupe toda la pantalla */
  gap: 20px; /* Añadir espacio entre los contenedores */
}

.general h3 {
  color: #c4c4c4;
  font-size: 2.2rem; /* Reducir el tamaño del título */
  margin-bottom: 5px;
  text-shadow: var(--shadow-text);
  margin-top: 5px;
}

.general p {
  font-size: 0.938rem; /* Reducir el tamaño del texto */
  line-height: 1.3; /* Espaciado entre líneas más amplio */
  margin-bottom: 12px; /* Reducir el margen inferior */
}

.general-1,
.general-21,
.general-2,
.general-3,
.general-4 {
  width: 48%; /* Cada contenedor ocupará un 48% del espacio */
  padding: 20px; /* Reducir padding interno */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Añadir sombra para separar los bloques */
  border-radius: 10px; /* Bordes redondeados para un diseño más moderno */
  background-color: rgba(0, 0, 0, 0.7); /* Fondo oscuro semitransparente */
}



.general-1 {
  
}



.general-2 {
  
  background-image: url(images/manuiberod/IMG_7878.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: var(--shadow-img);
  box-shadow: 0 0 65px #be1515;
}

.general-3 {
  background-image: url(images/manuiberod/IMG_6303.jpg);
  background-position: center -300px;
  background-repeat: no-repeat;
  background-size: cover;
  filter: var(--shadow-img);
  box-shadow: 0 0 65px #be1515;
}
.general-4 {
  background-image: url(images/manuiberod/IMG_6730.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: var(--shadow-img);
  box-shadow: 0 0 65px #be1515;
}

.plan-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background-color: #be1515; /* Fondo rojo */
  color: white; /* Texto blanco */
  padding: 10px 20px;
  border-radius: 8px;
  margin-bottom: 1rem; /* Espaciado inferior */
  transition: background-color 0.3s;
}

.plan-link:hover {
  background-color: #ff4d4d; /* Fondo más claro al pasar el cursor */
}

.plan-link h2 {
  margin: 0;
  font-size: 2.5rem;
}

.plan-link::before {
  content: url('https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg'); /* Ícono de WhatsApp */
  display: inline-block;
  margin-right: 10px;
  width: 24px; /* Ajusta el tamaño del ícono */
  height: 24px;
}


/* Media Queries para Responsividad */

@media (max-width: 1024px) {
  .general-1, .general-21, .general-2, .general-3, .general-4 {
    width: 100%;
    padding: 50px 50px; /* Reduce padding para pantallas medianas */
  }
}

@media (max-width: 768px) {
  .general-1, .general-21, .general-2, .general-3,.general-4 {
    width: 100%;
    padding: 30px 20px; /* Reduce padding para pantallas más pequeñas */
  }
}

@media (max-width: 480px) {
  .general-1, .general-21, .general-2, .general-3,.general-4 {
    width: 100%;
    padding: 20px 10px; /* Menor padding para dispositivos móviles */
  }
}

.container{
  max-width: 1200px;
  margin: 0 auto;

}

.header {
  position: relative;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* Para ocultar cualquier contenido que se desborde */
  color: #ffffff; /* Color del texto para que contraste con el fondo */
}
.image-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Coloca la imagen detrás del contenido */
}
.background-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Hace que la imagen cubra todo el espacio sin distorsionarse */
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Capa de superposición */
  z-index: 0; /* Coloca la capa de superposición encima del video */
}

/*
.header{
  background: linear-gradient(
    rgba(0,0,0,0.4),
    rgba(0,0,0,0.4)),
    url(videos/3209550-uhd_3840_2160_25fps.mp4);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 70vh;
    display: flex;
    align-items: center;
}
*/
.menu{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}
.menu,
.header-content {
  position: relative;
  z-index: 1; /* Coloca el contenido por encima de la superposición */
}

.logo{
  font-size: 24px;
  color: #FFFFFF;
  font-weight: bold;
  text-transform: uppercase;
}

.menu .navbar ul li{
  position: relative;
  float: left;
}
.menu .navbar ul li a{
  font-size: 18px;
  padding: 20px;
  color: #FFFFFF;
  display: block;

}
.menu .navbar ul li a:hover{
  color: #be1515;
}
#menu{
  display: none;
}

.menu-icono{
  width: 25px;
}

.menu label{
  cursor: pointer;
  display: none;
}

.menu.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px; /* Ajusta según el tamaño deseado */
  padding-top: 0px; /* Añade espacio superior */
  padding-bottom: 10px; /* Opcional: ajusta el espacio inferior */
  box-sizing: border-box;
}

.menu .logo {
  display: block;
  width: 200px;
  height: 180px;
  background-image: url('images/gym2.pn');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 30px; /* Espacio superior para bajar la imagen */
}

.header-content{
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  text-align: center;
  color: white; /* Color de texto blanco para destacar sobre la imagen */
}
.header-txt{
  width: 100%;
  text-align: center;

}

.header-txt h1{
  font-size: 100px;
  line-height: 130px;
  text-align: center;
  color: #FFFFFF;
  text-transform: uppercase;
  font-family: "Bebas Neue", cursive;
  margin-bottom: 25px;
}
.header-txt p{
  font-size: 18px;
  color: #c4c4c4;
  margin-bottom: 3px;
  border-left: 1px solid #FFFFFF;
  padding-left: 15px;
}
.btn-1{
display: none;
padding: 12px 35px;
background-color: #be1515;
border-radius: 10px;
color: #FFFFFF;
text-transform: uppercase;
font-size: 20px;
font-family: "Bebas Neue", cursive;
margin-top: 25px;
}

.btn-1:hover{
  background-color: #be1515;
}

.header-img{
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: end;

}
.header-img a{
  margin-bottom: 40px;
}

.tours{
  padding: 100px 0;
  text-align: center;
}
 h2{
   font-family: "Bebas Neue", cursive;
   letter-spacing: 1px;
   font-size: 85px;
   line-height: 95px;
   color: #ffffff;
   margin-bottom: 15px;

 }
 
p{
  font-size: 27px;
  color: #c4c4c4;

}

.text-space {
  line-height: 1.2; /* Aumenta el espacio entre líneas */
  margin-bottom: 20px; /* Espacio debajo del párrafo */
  transition: transform 0.3s ease, color 0.3s ease; /* Transición suave para el zoom */
  cursor: pointer; /* Cambia el cursor al pasar sobre el texto */
}
.text-space:hover {
  transform: scale(1.05); /* Aumenta ligeramente el tamaño del párrafo */
  color: #be1515; /* Cambia el color del texto (opcional) */
}

.tour-content{
  display: flex;
  justify-content: space-between;
  margin-top: 70px;

}
.tour-content > div {
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Animación suave */
  cursor: pointer; /* Cambia el cursor al pasar por encima */
}

.tour-content > div:hover {
  transform: scale(1.05); /* Aumenta ligeramente el tamaño del contenedor */
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3); /* Añade una sombra para resaltar */
}
.tour-1{
  background: linear-gradient(
    rgba(0,0,0,0.2),
    rgba(0,0,0,0.2)),
    url(images/t2.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 350px;
    width: 250px;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;


}

.tour-2{
  background: linear-gradient(
    rgba(0,0,0,0.2),
    rgba(0,0,0,0.2)),
    url(images/t4.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 350px;
    width: 250px;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;

}
.tour-3{
  background: linear-gradient(
    rgba(0,0,0,0.2),
    rgba(0,0,0,0.2)),
    url(images/t3.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 350px;
    width: 250px;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;

}
.tour-4{
  background: linear-gradient(
    rgba(0,0,0,0.2),
    rgba(0,0,0,0.2)),
    url(images/t1.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 350px;
    width: 250px;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;

}

.tour-txt{
  font-family: "Bebas Neue", cursive;
font-size: 40px;
color: #ffffff;
text-transform: uppercase;
margin-bottom: 15px;

}

.tour-txt p{

color: #e1e1e1;
}

.video{
  padding: 30px 0;
  background: linear-gradient(
    rgba(0,0,0,0.5),
    rgba(0,0,0,0.5)),
    url(images/bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .video-content{
    display: flex;
    align-items: center;
  }
  .video-1{
    width: 50%;
    padding-right: 70px;
  }
  .video2{
    width: 50%;
    display: flex;
  }
  .v1{
    width: 450px;
    margin-right: 25px;
    border-radius: 10px;
  }

  .v2{
    width: 450px;
    border-radius: 10px;
  }
.footer-bg{
  text-align: center;
  padding: 100px 0;

}
form{
  display: flex;
  flex-direction: column;
  align-items: center;

}

.campo-1{
  margin-bottom: 15px;

}

.campo{
  margin: 5px;
  padding: 20px 15px;
  width: 250px;
  background-color: #0e0e0e;
  border: 1px solid #be1515;
  outline: none;
  border-radius: 10px;
  color: #ffffff;
  font-size: 14px;
}
.textarea{
  width: 520px !important;
}
.footer-txt{
  text-align: center;
  padding: 20px;
  background-color: #070707;
}

/* Estilos para la sección de testimonios */
.testimonials {
  padding: 40px 0;
  text-align: center;
}

.testimonial-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}

.testimonial {
  max-width: 300px;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial p {
  font-style: italic;
  color: #555;
}

/* Estilos para la sección de CTA */
.cta {
  padding: 40px 0;
  background-color: #333;
  color: #fff;
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: auto;
}

.cta a.btn-1 {
  background-color: #ff6b6b;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
}

/*=============== FAVORITES ===============*/
.favorites__article {
  position: relative;
  width: 200px;
  overflow: hidden; /* Para evitar que las imágenes sobresalgan */
  height: auto; /* Cambia para que ajuste el contenido total */
  display: flex;
  flex-direction: column; /* Para alinear elementos en columna */
  justify-content: flex-start;
  align-items: center;
}
.favorites__data h2,
.favorites__description {
  display: block !important; /* Asegura que siempre sean visibles */
  visibility: visible !important; /* Previene que sean ocultos */
}
.favorites__data {
  text-align: center;
  margin-bottom: 2rem; /* Ajusta el espaciado inferior para separar las secciones */
  padding: 0 1rem; /* Añade padding para dar espacio a los bordes en pantallas pequeñas */

}

.favorites__description {
  font-size: 16px; /* Tamaño de fuente para pantallas grandes */
  line-height: 1.6;
  color: #f8f8f8; /* Asegúrate de que el texto sea legible */
  margin-top: 1rem; /* Espacio entre el título y el párrafo */
  max-width: 900px; /* Limitar el ancho máximo para centrado y mejor legibilidad */
  margin-left: auto; /* Centrando */
  margin-right: auto; /* Centrando */
}

/* Ajustes para pantallas más pequeñas */
@media (max-width: 556px) {
  .favorites__article {
    width: 5%; /* Cambia el ancho para que ocupe el 90% del contenedor padre */
    margin: 0 auto; /* Centra el artículo */
  }
  
  .favorites__img-container {
    width: 100%; /* Ocupa todo el ancho del contenedor */
    height: auto; /* Ajusta la altura automáticamente */
    max-height: 200px; /* Establece una altura máxima para evitar que sea demasiado alta */
  }

  .favorites__img {
    width: 100%;
    height: auto; /* Ajusta la altura proporcionalmente */
    object-fit: cover;
  }

  .favorites__text {
    font-size: 13px; /* Reduce el tamaño del texto para mejorar la legibilidad en pantallas pequeñas */
    margin-top: 8px; /* Reduce el espacio entre la imagen y el texto */
  }

  .favorites__leaf-1,
  .favorites__leaf-2 {
    display: none; /* Oculta los elementos decorativos en móviles para simplificar el diseño */
  }
  
  .favorites__data {
    padding: 0 1rem; /* Añade padding para dar más espacio a los bordes en móviles */
  }

  .favorites__description {
    font-size: 18px; /* Reducir el tamaño de la fuente para pantallas más pequeñas */
    line-height: 1.4; /* Reducir ligeramente el espacio entre líneas */
    max-width: 100%; /* Permitir que el párrafo ocupe el 100% del contenedor */
    margin: 1rem auto; /* Centrando */
  }

  .section__title {
   
    line-height: 1.3;
  }
  /* Asegurar que no se oculten ni se ajusten incorrectamente en móviles */
  .favorites__data h2,
  .favorites__description {
    display: block !important;
    visibility: visible !important;
    overflow: visible !important; /* Previene el corte del texto */
    white-space: normal; /* Permite que el texto se ajuste en múltiples líneas */
  }
}

.favorites__img-container {
  width: 200px;
  height: 200px; /* Ajustar el alto para uniformar las imágenes */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.favorites__img {
  width: 100%;
  height: 100%; /* Ajusta la altura */
  object-fit: cover; /* Ajusta la imagen para que ocupe todo el espacio sin deformarse */
  transition: transform .4s, filter .4s;
}

.favorites__text {
  text-align: center;
  margin-top: 10px; /* Espacio entre la imagen y el texto */
  font-size: 14px; /* Ajusta el tamaño del texto si es necesario */
  width: 100%; /* Para que ocupe todo el ancho del artículo */
}

.favorites__leaf-1,
.favorites__leaf-2 {
  width: 70px;
  position: absolute;
  filter: var(--shadow-img);
  scale: 0;
  transition: scale .4s .1s;
}

.favorites__leaf-1 {
  top: -1rem;
  right: -.5rem;
}

.favorites__leaf-2 {
  bottom: -1rem;
  left: -.5rem;
}


@media(max-width:991px){
  .menu{
    padding: 20px;
  }
  .menu label{
    display: initial
  }
  .menu .navbar{
    position: absolute;
    top: 100%;
    left: 0;
    right; 0;
    background-color: #161815;
    display: none;
  }

  .menu .navbar ul li{
    width: 100%;
  }
#menu:checked ~ .navbar{
  display: initial;
}

.header{
  min-height: 0vh;

}

.header-content{
flex-direction: column;
padding: 100px 30px 30px 30px;
}

.header-txt{
  width: 100%;
  text-align: center;
}

.header-txt h1{
  font-size: 80px;
  line-height: 90px;
  margin-bottom: 15px;
}

.header-txt p{
  border: 0;
  padding: 0;
  margin-bottom: 15px;
}

.btn-1{
  margin: 20px 0;

}

.header-img{
  width: 100%;
  flux-direction: row;
  justify-content: center;
  margin-top: 25px;
}
.header-img a{
  margin: 0 10px;
}
.tours{
  padding: 30px;

}
h2{
  font-size: 60px;
  line-height: 70px;
}
.tour-content{
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}
.video{
  padding: 30px;

}

.video-content{
  flex-direction: column;
}
.video-1{
  width: 100%;
  padding-right: 0;
  text-align: center;
}
.video-2{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.v1, .v2{
  width: 250px;
  margin: 0 0 20px 0;
}
.footer-bg{
  padding: 30px;

}
.textarea{
  width: 250px important;

}
.footer-txt{
  padding: 30px;
}
}
}
