* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}
body {
  /* background: #333; */
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.text-h6 {
  font-size: 14px;
  letter-spacing: 2px;
  color: #9cc094;
}
.text-title-h2 {
  color: #152c5b;
  font-size: 48px;
  margin-bottom: 10px;
  text-transform: capitalize;
}
.text-text-p {
  margin-bottom: 32px;
  margin-top: 20px;
  font-size: 16px;
  text-transform: none;
  line-height: 1.6em;
}
/*todo navbar */
.header {
  z-index: 100;
  position: absolute;
  /* top: 0; */
  /* left: 0; */
  width: 100%;
  padding: 10px 100px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  left: 0;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 0, 0, 0.1),
    transparent
  );
  transition: 0.5s;
}
.header:hover::before {
  left: 100%;
}
.logo {
  font-size: 25px;
  text-decoration: none;
  font-weight: 600;
  cursor: default;
  color: #fff;
  display: block;
  width: 200px;  /* Ajusta el tamaño */
  height: 70px;
}
.contact-btn {
  background: transparent;
  color: orange;
  border: 2px solid orange;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 30px;
  
  margin-top: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: orange;
  color: white;
}

#menu-icon {
  font-size: 36px;
  color: #fff;
  display: none;
  cursor: pointer;
}
.navbar a {
  font-size: 18px;
  text-decoration: none;
  margin-left: 35px;
  transition: 0.3s;
  color: #fff;
}
.navbar a:hover {
  color: rgb(218, 213, 213);
}
/* todo section front(portada de presentacion */
.cont-main-section-front {
  position: relative;
  /* background: red; */
  height: 145vh;
}
.section-front {
  position: relative;
  height: 120vh;
  width: 100%;
  background-image: url("images/slider_big1.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 5%;
}
.section-front::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 47, 80, 0.6);
  z-index: 1;
}
.cont-sect-info {
  position: relative;
  z-index: 2; /* Asegura que el texto esté sobre la imagen */
  max-width: 60%;
  color: white;
}
.cont-sect-info-text-1 {
  font-size: 64px;
  font-weight: bold;
  margin-left: 10px;
  margin-bottom: 20px;
}
.cont-sect-info-text-2 {
  font-size: 18px;
  font-weight: 400;
  margin-left: 10px;
  margin-bottom: 20px;
}
.header-right{
  display: flex;
  flex-direction: row;
  padding: 20px;
}
.language-selector {

  background-color: rgba(255, 255, 255, 0.3);
  padding: 5px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-top: 10px;
}

.language-selector select {
  padding: 5px 5px 5px 50px; /* Espacio para el icono de la bandera */
  border-radius: 5px;
  border: 1px solid #ccc;
  background-image: url('images/flags/es.png'); /* Bandera por defecto */
  background-repeat: no-repeat;
  background-position: 5px center; /* Posiciona el icono a la izquierda */
}

.language-selector select option {
  padding-left: 20px; /* Espacio para el icono de la bandera */
}
.whatsapp-container { position: fixed; bottom: 20px; right: 20px; z-index: 1000; } 
.whatsapp-button { display: flex; align-items: center; background-color: #25D366; color: white; padding: 10px; border-radius: 5px; text-decoration: none; } 
.whatsapp-button img { width: 30px; height: 30px; margin-right: 10px; } 
.whatsapp-button span { font-size: 16px;}
/**Animación flotante */
@keyframes floating {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.cont-sect-info-div-button{
  /* background: red; */
  /*padding: 20px;*/
  margin-left: 10px;
}
/* Botón sin animación por defecto */
.cont-sect-info-button {
  background-color: #2a2b8e;
  border: none;
  cursor: pointer;
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  border-radius: 20px;
  transition: background 0.3s ease, transform 0.3s ease;
}
/* cont de tarjetas */
.cont-carts {
  display: flex;
  /* gap: 5px; */
  padding: 5px;
  position: absolute;
  z-index: 2;
  bottom: 1px;
  justify-content: center;
  align-items: center;
}
.cont-carts .cart {
  width: 25%;
  min-height: 200px;
  background: #fff;
  padding: 32px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.cont-carts .cart img{
  margin-top: 10px;
  width: 80px;
  height: 55px;
  object-fit: contain;
  margin-bottom: 10px;
}
.cont-carts .cart h1 {
  font-size: 24px;
}
.cont-carts .cart span {
  font-size: 16px;
}
.cont-carts .cart-color {
  color: #fff;
  background: #2a2b8e;
  border-top: 5px solid #00b4d8;
}
/*todo seccion de about us */
.section-about-us {
  display: flex;
  width: 100%;
}
.colum-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
  /* width: 50%; */
  /* max-width: 50%; */
}

.colum-1 img {
  width: 95%;
  margin-right: 40px;
}
.button-colum-1 {
  background-color: #fff;
  border: 1px solid #2a2b8e;
  /* border: none; */
  cursor: pointer;
  padding: 10px 20px;
  font-size: 16px;
  color: #2a2b8e;
  border-radius: 20px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.cont-text-colum-1 {
  /* background: yellowgreen; */
  width: 85%;
  padding: 10px;
}
.cont-text-colum-1 h1 {
  font-size: 48px;
  margin-left: 150px;
}
.cont-text-colum-1 h5{
  margin-left: 150px;
  margin-bottom: 10px;
}
.cont-text-colum-1 button{
  margin-left: 150px;
}
.cont-text-colum-1 p {
  margin-bottom: 32px;
  font-size: 16px;
  text-transform: none;
  line-height: 1.6em;
  margin-left: 150px;
}
.cont-text-colum-1 ul{
  list-style-type: none;
  padding: 0;
  margin-left: 150px;
}


.cont-text-colum-1 ul li {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  cursor: pointer;
  border: none; /* Elimina cualquier borde */
background: none; /* Asegura que no haya fondo no deseado */
box-shadow: none; /* Previene sombras indeseadas */
padding: 5px;
}

.cont-text-colum-1 ul li::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: #EEAB02;
  margin-right: 10px;
}

.cont-text-colum-1 li.selected::before {
  background-color: blue;
}

.colum-2 {
  /* background: yellow; */
  width: 50%;
}
.colum-2 img {
  width: 100%;
}
.cont-text-colum-2 {
  /* background: red; */
  width: 80%;
}
.cont-text-colum-2 h5 {
  font-size: 22px;
  line-height: 1.18em;
  margin-bottom: 10px;
}
.cont-text-colum-2 p {
  margin-bottom: 32px;
  font-size: 16px;
  text-transform: none;
  line-height: 1.6em;
}
.cont-info-colum-2 {
  /* background: red; */
  padding-top: 20px;
}
.cont-info-colum-2 .text-h6{
  margin-left: 10px;
}
.cont-info-colum-2 h2 {
  text-transform: capitalize;
  line-height: 1.1em;
  font-size: 48px;
}
.cont-info-colum-2 .cont-info-sub {
  /* background: blue; */
  gap: 10px;
  padding: 20px;
  position: relative;
}
.cont-info-colum-2 .cont-info-sub p {
  /* background: orange; */
  margin-left: 20px;
  margin-bottom: 7px;
}
.cont-info-colum-2 .cont-info-sub i {
  background-color: #9cc094;
  color: #fff;
  border-radius: 100%;
  font-size: 20px;
  position: absolute;
  left: 10px;
}

/*todo diseño de la section de our mentors */
/* background-color: #a3c49e; */
.mentors-section {
  /* background: red; */
  padding: 10px;
  display: flex;
  position: relative;
  align-items: center;
}
.mentors-cont-text {
  background: #a3c49e;
  color: #fff;
  width: 50%;
  height: 50%;
  padding: 10px;
  margin-left: 100px;
}
.mentors-cont-text div {
  padding: 10px;
}
.mentors-cont-text div h6 {
  font-size: 14px;
  letter-spacing: 2px;
}
.mentors-cont-text div h1 {
  text-transform: capitalize;
  line-height: 1.1em;
  font-size: 48px;
}
.mentors-cont-text div p {
  margin-bottom: 32px;
  margin-top: 20px;
  font-size: 16px;
  text-transform: none;
  line-height: 1.6em;
}
.button-sect-mentors {
  background-color: #fff;
  font-weight: bold;
  border: none;
  cursor: pointer;
  padding: 10px 20px;
  font-size: 16px;
  color: #a3c49e;
  border-radius: 20px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.mentors-cont-img {
  /* background: yellow; */
  width: 50%;
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(2, 250px);
  grid-template-rows: repeat(2, 220px);
  gap: 10px;
  justify-content: start;
  align-items: start;
}
.mentors-cont-img img {
  max-width: 230px;
  object-fit: cover;
}
/* todo el diseño de ours course */
.courses-section {
  /* background: blue; */
  margin: auto;
  text-align: left; /* Alineado a la izquierda como en la imagen */
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.courses-info {
  display: flex;
  gap: 10px;
  width: 80%;
}
.courses-info-sub-1 {
  padding: 10px;
  width: 60%;
}
.courses-info-sub-2 {
  width: 40%;
}
.description {
  margin-bottom: 32px;
  margin-top: 20px;
  font-size: 16px;
  text-transform: none;
  line-height: 1.6em;
}

.courses-grid {
  max-width: 100%;
  background: red;
  display: grid;
  grid-template-columns: repeat(3, 350px);
  margin-top: 30px;
  align-items: center;
  justify-content: center;
}

.course-card {
  position: relative;
  height: 400px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.288);
}

.text {
  position: absolute;
  bottom: 20px;
  color: white;
  text-align: center;
  margin: 0 10px;
}

.text h3 {
  font-size: 18px;
  margin: 0;
}

.text p {
  font-size: 14px;
  margin: 5px 0 0;
}

.button-container {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.see-all {
  padding: 10px 20px;
  font-size: 14px;
  border: 2px solid #152c5b;
  background: white;
  color: #152c5b;
  cursor: pointer;
  border-radius: 25px;
  transition: 0.3s;
}

/* todo section de method inglis */
.section-method-inglis {
  max-width: 100%;
  display: flex;
  gap: 1px;
  align-items: center;
  justify-content: center;
}
.cont-method-inglis-text {
  padding: 10px 50px;
  width: 40%;
  margin-left: 20px;
}
.cont-method-inglis-img {
  width: 60%;
  height: 100%;
}
.cont-method-inglis-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-method-inglis-button {
  background-color: #2a2b8e;
  border: none;
  cursor: pointer;
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  border-radius: 20px;
  transition: background 0.3s ease, transform 0.3s ease;
}
/* todo section de testimonials */
.section-testimonials {
  display: flex;
}
.div-testi-colum-1 {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 20px;
}
.div-sub-testi-1 {
  background: #2a2b8e;
  color: #fff;
  padding: 35px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 90px;
}
.div-sub-testi-1 .stars {
  font-size: 24px;
}
.div-sub-testi-1 p {
  margin-bottom: 32px;
  font-size: 18px;
  text-transform: none;
  line-height: 1.6em;
}
.testi-user-1 {
  display: flex;
}
.testi-user-1 img {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  object-fit: cover;
}
.testi-user-1 h6 {
  font-size: 28px;
  margin-left: 10px;
  letter-spacing: 2px;
}
.testi-user-1 span {
  font-size: 14px;
  margin-left: 10px;
  text-transform: none;
  letter-spacing: 2px;
  color: #ffffff99;
}
.div-sub-testi-2 {
  width: 90%;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.testi-user-2 {
  display: flex;
}
.div-sub-testi-2 .stars {
  font-size: 24px;
}
.testi-user-2 img {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  object-fit: cover;
}
.testi-user-2 h6 {
  font-size: 28px;
  margin-left: 10px;
  letter-spacing: 2px;
}
.testi-user-2 span {
  font-size: 14px;
  margin-left: 10px;
  text-transform: none;
  letter-spacing: 2px;
  color: #0d2f5099;
  font-weight: bold;
}

.div-testi-colum-2 {
  width: 50%;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.test-2-img {
  display: flex;
  gap: 30px;
  height: 300px;
  margin-right: 30px;
}
.test-2-img img {
  width: 50%;
  height: 100%;
  object-fit: cover;
}
.testi-colum-2-button {
  background-color: #fff;
  border: 1px solid #2a2b8e;
  /* border: none; */
  cursor: pointer;
  padding: 10px 20px;
  font-size: 16px;
  color: #2a2b8e;
  border-radius: 20px;
  transition: background 0.3s ease, transform 0.3s ease;
}

/* todo section de blog */
.section-blog {
  display: flex;
}
.cont-blog-cards {
  width: 70%;
  gap: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.blog-card {
  background: #ebe9e9;
  width: 350px;
}
.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card-text {
  text-align: center;
  padding: 5px;
}
.blog-card-text h2 {
  font-size: 24px;
  line-height: 1.2em;
}
.blog-card-text span {
  font-size: 14px;
  color: #0d2f5099;
}

.cont-blog-info {
  width: 40%;
  padding: 30px;
}
.blog-button {
  background-color: #fff;
  border: 1px solid #2a2b8e;
  /* border: none; */
  cursor: pointer;
  padding: 10px 20px;
  font-size: 16px;
  color: #2a2b8e;
  border-radius: 20px;
  transition: background 0.3s ease, transform 0.3s ease;
}

/* todo section subscripcion */
.section-subscription {
  background-color: #00b4d8;
  display: flex;
  padding: 10px 32px;
  align-items: center;
}
.subscription-text {
  width: 60%;
  /* background: red; */
  color: #fff;
}
.subscription-text h6 {
  color: #fff;
}
.subscription-text h2 {
  color: #fff;
}
.subscription-form {
  /* background: orange; */
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.subscription-form input {
  width: 80%;
  padding: 15px;
  border-radius: 10px;
  border: none;
}
.subscription-button {
  background-color: #2a2b8e;
  border: none;
  cursor: pointer;
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  border-radius: 20px;
  transition: background 0.3s ease, transform 0.3s ease;
}

/* Style footer */
.footer { background-color: #f0f0f0;; color: gray; text-align: center; padding: 20px 0; } 
.social-media { margin-bottom: 10px; align-items: center;} 
.social-media a { margin: 0 10px; display: inline-block; } 
.social-media img { width: 30px; height: 30px; } 
.footer p { margin: 0; }

/* ************************************ */
/* animacion general de botones */
.button-animation:hover {
  /* background-color: darkblue; */
  animation: floating 1.5s ease-in-out infinite;
}

/* todo animacion de entrada */

.hidden {
  opacity: 0;
  transform: translate3d(-100%, 0, 0);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/*fomr contac*/

.contact-container {
  background-color: #211CBE; 
  width: 100%; 
  display: flex; 
  justify-content: center; 
  margin-bottom: 40px;
  color: white;
} 
.contact-form { 
  background-color: #211CBE; /* Color azul del div */ 
  padding: 10px; 
  border-radius: 10px; 
  color: white;
  width: 50%; /* El formulario ocupa el 50% del div que lo contiene */ 
  text-align: center; /* Centra el contenido del formulario */ 
  padding-bottom: 40px;
  padding-top: 40px;
} 
.contact-form h1 { 
  text-align: center; 
  margin-bottom: 20px; 
  color: white; /* Color blanco para el texto del título */ 
} 
.contact-form { margin-bottom: 15px;}

.contact-form input, .contact-form select  { 
  width: 100%; 
  margin-bottom: 15px; 
  background-color: #211CBE; /* Color azul del div */ 
  border: 1px solid white; /* Bordes blancos */ 
  border-radius: 10px; 
  font-size: 20px;
  height: 45px;
  color: white;
  border-radius: 5px; 
} 
.contact-form textarea { 
  width: 100%; 
  margin-bottom: 15px; 
  background-color: #211CBE; /* Color azul del div */ 
  border: 1px solid white; /* Bordes blancos */ 
  border-radius: 10px; 
  font-size: 20px;
  height: 70px;
  color: white;
  border-radius: 5px;
}
.contact-form input::placeholder, .contact-form select::placeholder, .contact-form textarea::placeholder { color: white; /* Color blanco para los placeholders */ }
.contact-form button { 
  width: 100%; 
  padding: 10px; 
  background-color: #EEAB02; /* Color naranja del botón */ 
  color: white; /* Color blanco para el texto del botón */ 
  border: none; 
  border-radius: 25px; 
  margin-top: 15px;
  height: 45px;
  font-size: 20px;
  cursor: pointer; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5), 0 6px 20px rgba(0, 0, 0, 0.4); /* Sombra */
  transition: background-color 0.3s, box-shadow 0.3s; /* Transición suave */
} 
.contact-form button:hover {
  background-color: #FF8C00; /* Color de fondo al pasar el mouse */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6), 0 12px 24px rgba(0, 0, 0, 0.5); /* Sombra al pasar el mouse */
}
.social-media { margin-bottom: 10px; align-items: center;} 
.social-media a { margin: 0 10px; display: inline-block; } 
.social-media img { width: 30px; height: 30px; } 
/* breack points*/
@media (max-width: 992px) {
  .header {
    padding: 1.25rem 4%;
  }
  .mentors-section {
    flex-direction: column;
  }
  .courses-section {
    flex-direction: column;
  }
  .courses-grid {
    grid-template-columns: repeat(2, 450px);
  }
}

@media (max-width: 768px) {
  .cont-text-colum-2{
    text-align: left;
    margin-top: 20px;
    margin-left: 30px;
  }
  .cont-sect-info {
    max-width: 90%;
  }
  .cont-sect-info-text-1{
    font-size: 32px;
    
  }
  .mentors-section{
    margin-top: -50px;
    top: -50px;
  }
  .mentors-cont-img img {
    max-width: 175px;
    min-height: 163px;
  }
  .mentors-cont-img {
    padding: 2px;
    gap: 0;
    grid-template-columns: repeat(2, 180px);
    grid-template-rows: repeat(2, 170px);
  }
  #menu-icon {
    display: block;
  }
  .section-about-us{
    margin-top: -150px;
    top: -150px;
  }
  .cont-text-colum-1 h1{
    margin-left: 5px;
    font-size: 28px;
    margin-top: 10px;
  }
  .cont-text-colum-1 h6{
    margin-left: 5px;
  }
  .cont-text-colum-1 ul{
    margin-left: 5px;
  }
  .cont-text-colum-1 button{
    margin-left: 5px;
  }
  .cont-text-colum-1 p{
    margin-left: 5px;
  }
  .mentors-cont-text div h1 {
    font-size: 32px;
    margin-top: 10px;
  }
  .cont-method-inglis-text{
    padding: 10px 20px;
    margin-left: 5px;
    
  }
  .section-method-inglis-button {
    margin-bottom: 15px;
  }
  .contact-form { width: 100%; /* El formulario ocupa el 100% del ancho en dispositivos móviles */ }
  .contact-container {
    margin-bottom: 0;
  }
  /* todo navbar */

  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 0.5rem 4%;
    /* background: rgb(255, 255, 255); */
    background: #fff;
    color: black;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    blackdrop-filter: blur(10px);
    display: none;
  }
  .navbar.active {
    display: block;
  }
  .navbar a {
    color: #07083c;
    display: block;
    margin: 1.5rem 0;
  }
  /* todo cont-carts */
  .cont-main-section-front {
    height: 180vh;
  }
  .section-front{
    height: 105vh;
  }
  .cont-carts {
    top: 500px;
    display: flex;
    flex-direction: column;
  }
  .cont-carts .cart {
    width: 100%;
  }
  /* todo about us */
  .section-about-us {
    flex-direction: column;
    width: 100%;
  }
  .section-about-us .colum-1 {
    width: 100%;
  }
  .section-about-us .colum-2 {
    width: 100%;
  }

  /* todo courses grid */
  .courses-grid {
    grid-template-columns: repeat(1, 550px);
  }
  /* todo mentors */
  .mentors-section {
    width: 100%;
    padding: 5px;
  }
  .mentors-cont-text {
    margin-left: 0;
    width: 100%;
  }
  .mentors-cont-img {
    width: 100%;
  }
  .courses-info {
    flex-direction: column;
    width: 100%;
  }
  .courses-info-sub-1 {
    width: 100%;
  }
  .courses-info-sub-2 {
    width: 100%;
  }
  /*todo section method inglis */
  .section-method-inglis {
    flex-direction: column;
  }
  .cont-method-inglis-text {
    width: 100%;
  }
  .cont-method-inglis-img {
    width: 100%;
    height: 100%;
  }
  /* todo section testimonials */
  .section-testimonials {
    flex-direction: column;
  }
  .div-testi-colum-1 {
    width: 100%;
  }
  .div-testi-colum-2 {
    width: 100%;
  }
  /* todo section blog */
  .section-blog {
    flex-direction: column;
  }
  .cont-blog-cards {
    width: 100%;
  }
  .cont-blog-info {
    width: 100%;
  }
  /* todo section subscription */
  .section-subscription {
    flex-direction: column;
    padding: 10px;
  }
  .subscription-text {
    width: 100%;
  }
  .subscription-form {
    /* background: orange; */
    width: 100%;
  }
.footer{
  margin-top: -100px;
}
.test-2-img{
  flex-direction: column;
  justify-content: center;
  height: auto;
}
.test-2-img img{
  width: 100%;
  
}
}
