html, body {
  height: 100%;
  margin: 0;
  scroll-behavior: smooth;
}


/* Estilos generales */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fafafa;
      display: flex;
  flex-direction: column;
}

.campo-trampa {
    display: none !important;
    visibility: hidden !important;
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
}
/*Animaciones*/
    /*aparación hacia arriba*/
@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}
    /*Aparición hacia la derecha*/
@keyframes fadeInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/*pop up*/
@keyframes popUp {
  from {
    transform: scale(0); /* Start at 0 scale */
  }
  to {
    transform: scale(1); /* Animate to full scale */
  }
}

/*Estilos de menú*/
/* contenedor del nav*/
header {
    position: fixed;
    width: 100vw;
    height: 6vh;
    background-color: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 98;
}
/*contenedor de los logos*/
.contenedor-logo {
    display: flex;
    align-items: center;
}

.contenedor-logo img {
    max-width: auto;
    max-height: 50px ;
    padding-left: 2%;
}
.contenedor-logo-2 {
    margin-right: 3%;
    display: flex;
    align-items: center;
}
.contenedor-logo-2 img{
  max-width: auto;
  max-height: 50px ;
  margin-right: 5%;
  margin-top: 0;
  margin-bottom: 0;
  padding-right: 4%;
}

nav{
    width: 80%;
    text-align: center; 
    
}
nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  text-align: center;
  justify-content: center;
  font-family: montserrat;
  
}

nav li {
  margin-top: 1%;
  position: relative;
}

nav a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  color: #00436D; /* azul claro de la paleta */
  font-weight: bold;
  font-size: 1vw;
}

.span a {
    text-decoration: underline;
    color: #FF9500;
}


nav .submenu, nav .subsubmenu, nav .submenu-2{
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}



nav .show {
  display: block;
}



/* Contenedor para la bandera y el texto */
.idioma-opcion {
    display: flex;
    align-items: center;
}

/* Bandera */
.content__lenguage{
  display: flex;
  flex-direction: row;
  justify-content: center; 
  align-items: center;
}

.en, .espa{
  width: 2.5vw;
  height: 2.5vw;
  margin-left: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.en img, .espa img{
  width: 100%;
  height: 50%;
}

/* Estilos para el menú hamburguesa */
#menu-hamburguesa {
    display: none;
    font-size: 24px;
    cursor: pointer;
    border: none;
    background-color: #fff;
    color: #00436D;
    font-size: 30px;
    border-radius: 25%;
}
/*Fin de los estilos del menú*/

/*Primera sección*/
/*Carrusel inicial*/

.carousel {
  position: relative; 
  width: 100%;
  height: 100vh;
}


.carousel__nav {
  position: absolute; 
  bottom: 10%; 
  left: 50%;
  transform: translateX(-50%); 
  display: flex; 
  justify-content: center; 
}

.carousel__item {
  height: 100vh;
  background: grey;
  display: none;
  background-size: cover;
  background-position: center center;
}

.carousel__item img{
    width: 100%;
    margin-top: 8vh;
    height: 90vh;
    position: relative;
    object-fit: fill; 
}
.carousel__item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 121, 190, 0.4); /* azul claro concorde*/
  display: flex;
  flex-direction: column; 
  align-items: center;
  justify-content: center;
}


.carousel__item .overlay h1  {
    color: white; 
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1); 
    margin-top: 5%;
    font-size: 4vw;
    animation-name: slideUp;
    animation-duration: 2.5s;
    animation-fill-mode: both; 
}

.carousel__item .overlay p { /* Agregamos un nuevo selector para el párrafo */
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
  font-size: 3.5vw;
  margin: 0 auto; /* Margenes automático para centrar horizontalmente */
  text-align: center;
  animation-name: slideUp;
    animation-duration: 2.5s;
    animation-fill-mode: both; 
    font-family: montserrat;
  font-weight: bold;
  padding: 5%;
}

.carousel .overlay .social {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel .overlay .social a {
  color: white;
  font-size: 2.5vw;
  padding-left: 5%;
  padding-right: 5%;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 1); 
}

.carousel .overlay .social a:nth-child(3) {
  margin-top: 2%;
}


.carousel__item--selected {
  display: block;
}


.carousel__button {
  width: 10px;
  height: 10px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.carousel__button--selected {
  background: rgba(255, 255, 255, 0.5);
}

.carousel svg{
    position: absolute;
    bottom: -6%;
    width: 100%;
}

/* fin Primera sección*/
/* fin Carrusel inicial*/

/*Inicio segunda sección*/
/*inicio sección values*/

.values{
    position: relative;
    width: 100%;
    height: 100vh;
    background: linear-gradient(to bottom, #0079BE 0%, #0079BE 40%, #fafafa 40%, #fafafa 100%);
    background-size: 100% 100%;
    }

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

.values__image__row {
    display: flex;
    justify-content: space-around; 
    align-items: center; 
    margin-left: 10%;
    margin-right: 10%;
}


.image-wrapper {
  display: flex;
  flex-direction: column; 
  align-items: center;

}


.img-visible{
    animation-name: slideUp;
    animation-duration: 2.5s;
    animation-fill-mode: both; 
}

.circle-image {
  margin-top: 25%;   
  width: 25vw; 
  height: 25vw;
  border-radius: 50%;
  object-fit: cover;
  border: 10px solid #00436D;
  transition: transform 0.3s ease;
  margin-bottom: 10px;
}


.image-title {
  position: absolute; 
  font-weight: bold;
  color: #fff;
  font-size: 2.5vw; 
}


.image-wrapper:nth-child(2) .circle-image {
    border: 10px solid #FF9500;
   object-position: left;
}

.image-wrapper:nth-child(1) .circle-image {
    object-position: right;
}
  
  

.values__container h2 {
  color: #0C2B42; /*azul oscuro*/
  font-weight: bold;
  font-size: 3.5vw;
  padding-bottom: 2vh;
  
}
/*Fin sección 2*/
/*Sección 3*/

.what__and__how {
  position: relative; 
  width: 100%; 
  height: 80vh; 
  background-image: url("../img/bgseccion3.webp"); 
  background-position: center; 
}

.content__what__and__how {
  display: flex; 
  flex-direction: column;
  height: 80vh;
}

.what__and__how__animation{
  animation-name: fadeInLeft;
  animation-duration: 2.5s;
  animation-fill-mode: both;
}

.how__animation{
  animation-name: fadeInRight;
  animation-duration: 2.5s;
  animation-fill-mode: both;
}

.content__what,
.content__how {
  flex: 1; 
  display: flex; 
  align-items: center; 
}

.content__what__p,
.content__how__p {
  width: 60vw; 
  text-align: left;
  position: relative; 
  height: 40vh;
}
.content__what__p {
  background-color: #0C2B42;
  position: relative;
  margin-right: 3.5rem;
  height: 40vh;
  border: medium none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content__what__p:after{
  position: absolute;
  content: " ";
  top: 0;
  left: 99.9%;
  width: 0;
  height: 0;
  border-top: 20vh solid transparent;
  border-bottom: 20vh solid transparent;
  border-right: 20vh solid transparent;
  border-left: 8rem solid #0C2B42;
}
.content__what__p p {
  font-weight: bold;
  color: #CCCCCC;
  font-size: 1.3vw;
  margin-left: 10%;
  margin-right: 10%;
  text-align: justify;
  z-index: 4;

}

.content__h2__what{
    position: absolute;
    width: 35%;
    height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    right: 0;
    font-size: 2vw;
    text-shadow: 2px 2px 5px black;
    font-weight: 100;
}
.content__how__p {
  background-color:#CCCCCC;
  position: absolute;
  height: 40vh;
  right: 0;
  border: medium none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content__how__p:after{
  position: absolute;
  content: " ";
  right: 99.8%;
  width: 0;
  height: 0;
  border-top: 20.1vh solid transparent;
  border-bottom: 20.3vh solid transparent;
  border-right: 8rem solid #CCCCCC; /*Azul concorde*/;
  border-left: 20vh solid transparent;
}

.content__how__p p {
  font-weight: bold;
  color: #0C2B42;
  font-size: 1.3vw;
  margin-left: 5%;
  margin-right: 5%;
  text-align: justify;
  z-index: 4;
}

.content__h2__how{
    position: absolute;
    width: 35%;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    left: 0;
    font-size: 2vw;
    text-shadow: 2px 2px 5px black;
    font-weight: 100;
}
/*Fin de la sección 3*/
/*Inicio Sección 4*/
    .map__section{

        position: relative;
        width: 100%;
        height:800px;
        background-color: #fafafa;
        display: flex;

    }
    .content__map{
        width: 60%;
        height: 100%;
    }

.ubi__content {
    position: absolute;
    right: 0;
    top: 0; 
    width: 40%; 
    height: 800px; 
    background-color: #00436D; 
    overflow: none;
    text-align: center;
    color: #fff;
}

.ofice{
    width: 100%;
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    box-sizing: border-box; 
    overflow: none;
    margin-top: 2%;
}


.ubi__content button {
  width: 60%; 
  padding: 8px 28px;
  border-radius: 20px;
  border: 2px solid #fff; 
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  color: #fff; 
  background-color: #00436D; 
  transition: background-color 0.3s ease; 
  margin-top: 5%;
  font-weight: bold;
  font-size: 1.3vw;
}

.ubi__content button:first-child{
  margin-top: -0.005%;
}

.ubi__content h2{
font-size: 2vw;
}

.ubi__content .btn-active {
  border: 2px solid #FF9500; 
  color: #FF9500; 
}

.ubi__content button:hover {
  border: 2px solid #FF9500; 
  color: #FF9500;  
}
.info{
    margin-top: 3%;
}
.info h3{
    margin:0;
    font-size:calc(1vh + 0.5rem);
}
.info p{
    font-size:calc(0.8vh + 0.5rem);
    margin: 0.5%;
}

.hide{
    display: none;
}

.selected{
    display: unset;
    animation-name: slideUp;
    animation-duration: 0.25s;
    animation-fill-mode: both; 

}

/*Fin sección 4*/

/*Inicio sección 5 */

.experience__section{
    position: relative;
    width: 100%;
    height: auto;
    min-height: 100vh;
    background: linear-gradient(to bottom, #fafafa 0%, #fafafa 50%, #0079BE 50%, #00436D 100%);
    background-size: 100% 100%;
    padding-bottom: 5% ;
}

.content__experience__h2{
    text-align: center;
    color: #0C2B42;
    font-weight: bold;
    font-size: 2.5vw;
}

.experience__h2__animation{
    animation-name: fadeInLeft;
    animation-duration: 1.5s;
    animation-fill-mode: both;
}




.content__testimony {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  padding: 0;
}

.testimony{
  width: 25%;
    margin-left: 2%;
    margin-right: 2%;
    background-color: white;
    box-shadow: 5px 5px 5px black;
    border: 8px solid #00436D; /* Azul */;
    border-radius: 25%;
    text-align: center;
    padding-bottom: 3%;
    color:  black;
    font-weight: black;
    font-family: montserrat;
    font-size: 1vw;
    padding-left: 1%;
  padding-right: 1%;
}

.testimony:nth-child(1){
    margin-left: 5%;
}

.testimony:nth-child(3){
    margin-right: 5%;
}


.testimony i{
margin-top: 10%;
font-size: 5vw;
color: #00436D; /* Azul */
}


.testimony:nth-child(2){
 
  color:  #0C2B42; /*azul oscuro*/
  box-shadow: 5px 5px 5px black;
  border: 8px solid #FF9500; /* amarillo */
}

.testimony:nth-child(3){
  color:  #0C2B42; /*azul oscuro*/
  box-shadow: 5px 5px 5px black;
  border: 8px solid #0079BE; /* Azul */;
}


.testimony:nth-child(2) i{
color: #FF9500;
}

.testimony:nth-child(3) i{
color: #0079BE;
}

.testimony h3{
 color: #0C2B42; /*azul oscuro*/
 margin-top:4%;
}


/*Fin sección 5*/
/*Inicio sección 6*/


.contact__section {
  position: relative;
  width: 100%;
  display: flex; 
  min-height: 100vh; 
  height: auto;
  flex-wrap: wrap; /* Permite que los elementos se envuelvan a una nueva línea si no hay suficiente espacio */
  justify-content: space-around; /* Distribuye los elementos con espacio entre ellos */
  align-items: center; /* Centra verticalmente los elementos   
 dentro de sus contenedores */
 background-image: url('../img/Designer.webp');
 background-size: cover;
 background-position: top;
}

.form__content {
  flex: 0.4; /* 50% of the available space */
  max-width: 50%;
}

.info__contact {
  flex: 0.4; /* 30% of the available space */
  max-width: 30%;
}

.social__media__bottom {
  flex: 0.2; /* 20% of the available space */
  max-width: 20%;
}

.contact__section h2 {
  position: relative;
  margin-left: 22%;
  color:rgba(255, 149, 0, 1);
  font-size: 3vw;
  margin-top: 2%;
}

.form__content {
  z-index: 2;
}

.social__media__bottom {
  display: flex;
  z-index: 2;
}

.form__content form {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  margin-left: 3%;
}

.form__content form input {
  margin-top: 5%;
  padding: 8px 28px;
  border-radius: 12px;
  border: 5px solid rgba(255, 149, 0, 1);;
  cursor: pointer;
  color: black;
  font-size: 1.2vw;
  margin-left: 20%;
  margin-right: 10%;
  box-shadow: 2px 2px 5px #00436D;
  font-family: montserrat;
}

.form__content textarea {
  margin-top: 5%;
  padding: 8px 28px;
  border-radius: 12px;
  border: 5px solid rgba(255, 149, 0, 1);;
  cursor: pointer;
  color: black;
  font-size: 1.2vw;
  margin-left: 15%;
  margin-right: 5%;
  box-shadow: 2px 2px 5px #00436D;
  font-family: montserrat;
  overflow: auto;
  resize: none; /* Evita que el usuario redimensione el textarea */
}

.form__content button {
  margin-left: 35%;
  margin-right: 25%;
  margin-top: 2%;
  font-size: 1.5em;
  background-color: #fafafa;
  box-shadow: 2px 2px 5px #00436D;
  border-radius: 25px;
  border: 2px solid white;
  font-family: montserrat;
  font-weight: bold;
}
.form__content button:hover {
  box-shadow: 2px 2px 2px #fafafa;
  border: 2px solid #fafafa;
  background-color: rgba(255, 149, 0, 1);
  color: white;
}
.social__media__bottom {
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: none;
}

.social__media__bottom a {
  text-decoration: none;
  color: linear-gradient(115deg, #f9ce34, #ee2a7b, #6228d7);
  font-size: 3.5vw;
  margin-right: 80%;
}

.social__media__bottom a:hover {
  color: #FF9500;
}

.social__media__bottom a i{
    background: linear-gradient(115deg, #f9ce34, #ee2a7b, #6228d7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.social__media__bottom a:nth-child(2)  {
  width: 100px;
  height: 100px;
  margin-top: 25%;
  border-radius: 50%;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  color:#075e54;
  font-size: 3.5vw;
}

.lastoverlay{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  width: 100%;
background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column; 
  align-items: center; 
  justify-content: center; 
}

.social__media__bottom a:nth-child(2) i {
  background: #00cf4d;
  -webkit-background-clip: text;

}

.contact__section svg {
  position: absolute; 
  bottom: 0; 
  width: 100%;
  height: auto; 
}

.info__contact{
  font-family: montserrat;
  font-size: 1.2vw;
  text-align: justify;
  z-index: 2;
  padding: 2%;
  margin-left: -5%;
  color:  white;

}

/*Fin sección 6*/
/*Footer*/
footer {
  flex-shrink: 0; /* Evita que el footer se comprima */
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.inicial{
  width: 30%;
  display: flex;
  flex-direction: column;
}

.info__footer{
    width: auto;
    height: auto;
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    align-items: center;
}

.info__footer p{
   font-size: 0.8em;
}


.logo__footer { /* New class for logo container */
width: 100%;
margin-left: 2%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo__footer img {
  max-width: 90px; /* Adjust max width as needed */
  max-height: 80px;
  margin-right: 5px; /* Add margin between logos */
}


.logo__footer p{
   font-size: 0.7vw;
   margin-left: 4%;
}


.info__footer{
    width: 50%;
    height: auto;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.info__footer p{
  left: 0;
   font-size: 2vw;
   color: rgba(0, 121, 190, 1);
   font-weight: bold;
   text-shadow: 2px solid #0C2B42;
   margin-left: 15%;
}



.developed__by{
  top: 100%;
  bottom: 0;
    width: auto;
    justify-content: center;
    text-align: center;
    align-items: center;
}
.developed__by p{
    font-size: 0.7em;
}

.logo__footer__2 { /* New class for logo container */
margin-left: 0;
margin-right: 2%;
width: 100%;
  display: flex;
  justify-content: flex-end;
}

.logo__footer__2 img {
  max-width: 90px; /* Adjust max width as needed */
  max-height: 80px;
  margin-right: 5px; /* Add margin between logos */
}


.logo__footer__2 p{
  margin-right: 4%;
   font-size: 0.7vw;
}

.developed__by__2{
    top: 100%;
  bottom: 0;
    width: auto;
    justify-content: center;
    text-align: center;
    align-items: center;
  color: #fafafa;
   font-size: 0.7em;
}
/*Fin del footer*/


/*Fin footer*/
/* Estilos para responsive */





@media (max-width: 850px) {
/*Menú responsive*/ 

header{
  width: 100vw;
}
  .contenedor-logo {
  width: 100%;
  justify-content: flex-start;
  margin-bottom: 10px;
}

.contenedor-logo-2 {
  width: auto;
  margin-left: 5%;
  margin-right: 5%;
  justify-content: flex-start;
  margin-bottom: 10px;
}

.contenedor-logo img{
  max-width: 15vw;
}

.contenedor-logo-2 img{
  max-width: 15vw;
  margin-right: 0%;
}


header nav {
  display: none; /* Mantenemos el menú oculto */
  justify-content: center; /* Centramos el menú (por si lo mostramos más tarde) */
}



header button#menu-hamburguesa {
  position: absolute;
  margin-left: -15%;
  justify-content: left;
  display: unset;
  z-index: 250;
}
    header nav.active {
    display: block;
    text-align: center;
    position: fixed;
   background-color: #00436D;
    top: 0;
    left: 0;
    height: auto;
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 5%;
    padding-bottom: 10%;
    }

    nav.active ul{
      display: block;
        margin-top: 15%;
        transition: height 1s ease;
       background-color:#00436D; /* azul claro de la paleta */
        justify-content: center;
        margin-left: -2%;
    }


nav.active ul .submenu, nav.active ul .subsubmenu,  nav.active ul .submenu-2 {
  display: none; /* Initially hide the submenu */
}

nav.active ul .submenu.show, nav.active ul .submenu-2.show {
  display: block; /* Show the submenu when it has the .show class */
 background-color: #00436D; /* Set the background color */
  width: 100%;
  margin-top: 0;
  margin-left: -5%;
}

        nav.active ul .subsubmenu.show{
      display: block;
      background-color:#00436D; /* azul claro de la paleta */
      width: 100%;
      margin-top: 0;
      margin-left: 0%;
    }

nav .submenu-2.show{
  display: block;
  background-color:#00436D; /* azul claro de la paleta */
      width: 100%;
      margin-top: 0;
      margin-left: 0%;
}

    nav.active li {
        margin-top: 2%;
        text-align: center;
        display: block;
    }
  

    nav.active a {
        color: #fff;
        font-size: 1.5em;
    }

    nav.active li.span a{
    color: #FF9500; 
    text-decoration: none;
}



/*Capa oscura*/
.superoverlay__2{
position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0, 0.5);
  z-index: 2;
}

/*Fin capa oscura*/

/*fin del Menú responsive*/

/*sección 1*/  
.carousel {
  height: 50vh;
}

.carousel__item {
  height: 50vh;
  background: grey;
}

.carousel__item img{
    width: 100%;
    height: 50vh;
}

.carousel__item .overlay {
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel__item .overlay h1 {
    font-size: 4vh;
    text-align: center;
}

.carousel__item .overlay p {
 font-size: 4vh;
    text-align: center;
    font-family: montserrat;
}

.carousel .overlay .social a{
  font-size: 5.5vw;
}


.carousel svg{
    bottom: -3%;
    width: 100%;
}

/*fin sección 1*/ 
/*Inicio sección 2*/ 

.values{
    position: relative;
    width: 100%;
    height: 35vh;
    background: linear-gradient(to bottom, #0079BE 0%, #0079BE 40%, #fafafa 40%, #fafafa 100%);
    background-size: 100% 100%;
    }

.values__image__row {
    display: flex;
    justify-content: space-around; 
    align-items: center; 
    margin-left: 1%;
    margin-right: 1%;
}

.circle-image {
  margin-top: 25%;   
  width: 28vw; 
  height: 28vw;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #00436D;
  transition: transform 0.3s ease;
  margin-bottom: 10px;
  margin-left: 0;
}

.image-wrapper:nth-child(2) .circle-image {
    border: 5px solid #FF9500;
}

.image-title {
  position: absolute; 
  font-weight: bold;
  color: #fff;
  font-size: 3.5vw; 
}

.values__container h2 {
  color:#0C2B42;
  font-weight: bold;
  font-size: 3vh;
}

/*Fin sección 2*/
/*Inicio sección 3*/
.what__and__how {
  position: relative; 
  width: 100%; 
  height: 90vh; 
  background-image: url("../img/bgseccion3.webp"); 
  background-position: center; 
  background-repeat: no-repeat;
}

.content__what__and__how {
  display: flex;
  flex-direction: column;
}

.content__what,
.content__how {
  flex: 1;
  display: flex;
  align-items: center;
  height: 50vh;
}

.content__what__p,
.content__how__p {
  width: 70%;
  text-align: left;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content__what__p {
  background-color: #0C2B42;
  margin-right: 1rem;
}

.content__what__p:after {
  position: absolute;
  content: "";
  top: 16.5vh;
  left: 89%;
  width: 0;
  height: 0;
  border-top: 2rem solid transparent;
  border-bottom: 2rem solid transparent;
  border-right: 2rem solid transparent;
  border-left: 3rem solid
 #0C2B42;
}

.content__what__p p {
  font-weight: bold;
  color: #fafafa;
  font-size: calc(0.8vh + 0.3rem);
  margin-left: 2%;
  margin-right: 2%;
  text-align: justify;
  z-index: 4;
}

.content__h2__what {
  position: absolute;
  width: 30%;
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  right: 0;
  font-weight: bold;
  font-size: 1.2vh;
  text-shadow: 2px 2px 5px black;
}

.content__how__p {
  background-color: rgba(0, 121, 190, 1); /*Azul concorde*/
  height: 50vh;
  left: 30%;
}

.content__how__p:after {
  position: absolute;
  content: "";
  top: 24vh;
  right: 100%;
  width: 0;
  height: 0;
  border-top: 0.5rem solid transparent;
  border-bottom: 0.5rem solid transparent;
  border-right: 1rem solid rgba(0, 121, 190, 1);
  border-left: 0.5rem solid transparent;
}

.content__how__p p {
  font-weight: bold;
    color: #0C2B42;
  font-size: calc(0.8vh + 0.3rem);
  margin-left: 2%;
  margin-right: 2%;
  text-align: justify;
  z-index: 4;
  text-shadow: none ;
}

.content__h2__how {
  position: absolute;
  width: 30%;
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  left: 0;
  font-weight: bold;
  font-size: 1.5vh;
  text-shadow: 2px 2px 5px black;
}

/*Fin sección 3*/
/*Inicio sección 4*/
.map__section{
    width: 100%;
    height: 1000px;
    background-color: #00436D;
}
.content__map{
    position: absolute;
    top: 0;
    width: 100%;
    height: 400px;
    margin-bottom: 0;
}

.map__style{
    width: 100%;
    height: 400px;
}


.ubi__content {
  margin-top: 0;
    position: relative;
    width: 100%; 
    height: 600px;
}

.ubi__content button {
  width: 60%; 
  font-size: 2vh;
}

.ubi__content h2{
font-size: 3vh;
}

.ubi__content .btn-active {
  border: 2px solid #FF9500; 
  color: #FF9500; 
}

.ubi__content button:hover {
  border: 2px solid #FF9500; 
  color: #FF9500;  
}
.info{
    margin-top: 5%;
}
.info h3{
    margin:0;
    font-size:calc(1vh + 0.5rem);
}
.info p{
    font-size:calc(0.8vh + 0.5rem);
    margin: 0.5%;
}
/*Fin sección 4*/
/*Inicio sección 5*/

  .contact__section {
    flex-direction: column; /* Apila los elementos verticalmente */
     background-image: url('../img/Designer.webp');
 background-size: cover;
 background-position: top;
  }
.experience__section{
    margin-top: 0vh;
    width: 100%;
    height: 140vh;
}

.content__testimony{
    display: flex; 
 flex-direction: column;
  width: 100%; 
  margin-top: 5%;
  padding: 0; 
  align-items: center;
}
.content__experience__h2{

    font-size: 3vh;
}

.experience__info h3{
    font-size: 6vw;
}
.experience__info h4{
    font-size: 4vw;
}

.testimony{
    margin-top: 5%;
    margin: 2%;
    padding-bottom: 0;
    overflow: auto;
    width: 80%;
}


.testimony i{
margin-top: 10%;
font-size: 5vh;
}



.testimony p{
    font-size:calc(0.5vh + 0.5rem);
}

.testimony h3{
 font-size:calc(0.6vh + 0.5rem);

}

/*Fin sección 5*/
/*Inicio sección 6*/

.contact__section {
  position: relative;
  width: 100%;
  display: flex; 
  height: 150vh; 
  display-flex: column; /* Distribuye los elementos con espacio entre ellos */
  align-items: center; /* Centra verticalmente los elementos   
 dentro de sus contenedores */
  background-image: url('../img/Designer.webp');
 background-size: cover;
 background-position: top;
}


.contact__section h2 {
  font-size: 3.5vh;
  margin-left: 0;
}

.form__content{
  width: 100%;
  margin-left: -25%;

}


.form__content form input {
  width: 100%;
  margin-top: 2%;
  font-size: 1.5vh;
  margin-left: 0;
}

.form__content textarea {
  cursor: pointer;
  color: black;
  font-size: 1.5vh;

  font-family: montserrat;
  overflow: auto;
  height: 25vh;
  width: 100%;
  margin-left: 0;
}

.form__content button {
  margin-left: 30%;
  margin-right: 10%;
  margin-top: 10%;
  font-size: 1em;
   background-color: rgba(255, 149, 0, 1);
  box-shadow: 2px 2px 5px #fafafa;
  border-radius: 25px;
  border: 2px solid #fafafa;
  color: white;
}

.info__contact{
  max-width: 80%;
  font-family: montserrat;
  font-size: 2.8vw;
  text-align: justify;
  font-weight: normal;
  z-index: 2;
  margin-left: 5%;
  margin-right: 5%;
  justify-content: center;
  display: flex;
  align-items: center;
    flex: 0.15;
    margin-top: -15%;
}



.social__media__bottom {
  width: 20%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: transparent; 
  border: none;
  margin-left: 5%;
  position: relative; /* Elimina la posición absoluta */
  width: 100%; /* Ocupa el ancho completo */
  height: auto; /* Altura automática */
  justify-content: center; /* Centra elementos horizontalmente */
  margin: 0 auto; /* Centra el elemento horizontalmente */
}  

.social__media__bottom a {
  text-decoration: none;
  color: linear-gradient(115deg, #f9ce34, #ee2a7b, #6228d7);
  font-size: 7.5vw;
  margin-top: 0;
  margin-right: 10px; /* Espacio entre iconos */
  position: relative; /* Elimina la posición absoluta */
  width: 100%; /* Ocupa el ancho completo */
  height: auto; /* Altura automática */
  justify-content: center; /* Centra elementos horizontalmente */
  margin: 0 auto; /* Centra el elemento horizontalmente */
}

.social__media__bottom a:hover {
  color: #FF9500;
  margin-right: 10px; /* Espacio entre iconos */
}

.social__media__bottom a i{
    background: linear-gradient(115deg, #f9ce34, #ee2a7b, #6228d7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.social__media__bottom a:nth-child(2)  {
  width: 100px;
  height: 100px;
  margin-top:0;
  border-radius: 50%;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  color:#075e54;
  font-size: 8vw;
}

.social__media__bottom a:nth-child(2) i {
  background: #00cf4d;;
  -webkit-background-clip: text;

}




/*Fin sección 6*/

/*Inicio del footer*/
footer {
  width: 100%;
  height: 10vh;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inicial{
  width: 30%;
  display: flex;
  flex-direction: column;
}

.logo__footer { /* New class for logo container */
width: 100%;
  display: flex;
  align-items: center;
}

.logo__footer img {
  max-width: 30px; /* Adjust max width as needed */
  max-height: 90px;
  margin-right: 5px; /* Add margin between logos */
}


.logo__footer p{
   font-size: 1.5vw;
}


.info__footer{
    width: 50%;
    height: auto;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.info__footer p{
  left: 0;
   font-size: 2vw;
   color: rgba(0, 121, 190, 1);
   font-weight: bold;
   text-shadow: 2px solid #0C2B42;
}


.info__footer p{
    margin-left: 15%;
}

.nav__footer{
    width: auto;
}

.nav__footer a{
    font-size: 0.3em;
}
.developed__by{
  top: 100%;
  bottom: 0;
    width: auto;
    justify-content: center;
    text-align: center;
    align-items: center;
}
.developed__by p{

    font-size: 0.05em;
}

.logo__footer__2 { /* New class for logo container */
margin-left: 0%;
width: 100%;
  display: flex;
}

.logo__footer__2 img {
  max-width: 30px; /* Adjust max width as needed */
  max-height: 90px;
  margin-right: 5px; /* Add margin between logos */
}


.logo__footer__2 p{
   font-size: 1.5vw;
}

.developed__by__2{
    top: 100%;
  bottom: 0;
    width: auto;
    justify-content: center;
    text-align: center;
    align-items: center;
  color: #fafafa;
   font-size: 0.05em;
}
/*Fin del footer*/
}

