/* GENERALES */

html, body{
    margin: 0;
    padding: 0;
    height: 100%;
}

body{
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-size: 1.125rem;
    line-height: 1.30rem;
    font-style: normal;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: none;
}

main{
    flex: 1;
    box-sizing: border-box;
    width: 100%;
}

/* ////////// HEADER ////////// */
.navbar {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
    background-color: #4D7CC4;
    z-index: 1000;
}

.logo {
    max-height: 70px;  /* Keeps the maximum height to maintain the design */
    max-width: 100%;   /* Ensures the logo doesn't exceed its container */
    height: auto;      /* Maintains aspect ratio */
    width: auto;       /* Maintains aspect ratio */
    flex-shrink: 1;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1.15em;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: rgb(235, 198, 13);
}

.hamburger {
    display: none;
    font-size: 2em;
    cursor: pointer;
}


/* ////////// GALERIA FOTOS ////////// */
.Seccion-galeria{
    width: 100%;
    height: calc(100vh - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.Contenedor-galeria-spam{
    display: flex;
    align-items:center;
    justify-content: first baseline;
    flex-direction: column;
    position: absolute;
    z-index: 1;
    text-align: center;
}

.Contenedor-galeria-img {
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
}

.slide{
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out
}

.slide.active {
    opacity: 1;
}

/* Sin transición para la primera imagen */
.slide.no-transition {
    opacity: 1; /* Directamente visible sin fade */
    transition: none;
}

.subcon-galeria-logo{
    width: 100%;
    margin-bottom: 1rem;
}

.subcon-galeria-logo h1{
    font-weight: bold;
    font-size: 2.75rem;
    color: white;   
    padding: 0;
    margin: 0;
}

.subcon-galeria-frase{
    width: 100%;
    border-radius: 10px;
    color:  #ef9319;
    display: flex;
    align-items: center;
    justify-content:center;
    margin-bottom: 1rem;
}

.subcon-galeria-frase p{
    padding: 0;
    margin: 0;
}

.subcon-galeria-contactar{
    height: 45px;
    width: 290px;
    border-radius: 10px;
    background-color: #e49e42;
    color: white;
    display: flex;
    align-items: center;
    justify-content:center;
}

/* ////////// Frase seccion ////////// */
.Seccion-frase{
    line-height: 1.30rem;
    font-weight: 600;
    width: 100%;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.Seccion-frase div{
    width: 100%;
    border-radius: 5px;
    border: 1px solid black;
    color:#1e5ba0;
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 3rem;
    text-align: center;
}

/* ////////// Seccion info ////////// */

.Seccion-info{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.Contenedor-centrado{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 3rem;
    margin-right: 3rem;
    width: 100%;
    height: 100%;
}

.Contenedor-info-info{
    width: 47%;
    height: 450px;
    line-height: 1.30rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Contenedor-info-info p{
    padding: 0;
    margin: 10px 30px;
    line-height: 2.2rem;
}

.Negritas{
    color: #ef9319;
    font-family: 'Lucida sans';
    font-size: 1.20rem;
    line-height: 1.75rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* Agrega una sombra ligera */;
}

.Subrayada{
    color: #1e5ba0;
    font-size: 1.25rem;
    text-decoration: underline;
    font-weight: bold;
}

.Contenedor-info-img {
    width: 47%;
    height: 450px;
    border-radius: 8px;
}
/* ////////// banners ////////// */

.Bann{
    margin: 1rem 0 0 0;
    padding: 0;
    font-weight: 600;
    width: 100%;
    height: 200px;
    color: #fff;
    display: flex;
    background-color: #001543;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 50px;
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.Bann.show {
    opacity: 1;
    transform: translateY(0);
}
/* ////////// Servicios ////////// */

.Seccion-servicios{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu {
    width: 100%;
    background: #fff;
    margin: 1rem 3rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 23px;
    background: #f1f1f150;
    cursor: pointer;
    border: 1px solid #dddddd8a;
}

.menu-item:hover {
    background: #8fc1f071;
}

.arrow {
    transition: transform 0.3s ease;
}

.dropdown {
    display: none;
    overflow: hidden;
    background: #f9f9f9;
}

.icon-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
    justify-content: space-evenly;

}

.icon-self {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #e49e42;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.icon {
    width: 25%; /* 4 iconos por fila en pantallas grandes */
    box-sizing: border-box;
    padding: 0.5rem;
    display: flex;
    flex-shrink: 1;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
}

.icon-title {
    text-align: center;
}


.dropdown.show {
    display: block;
}

.menu-item.active .arrow {
    transform: rotate(180deg);
}

.menu-item.active {
    background: #8fc1f071;
}

/* ////////// Nosotros ////////// */

.Seccion-nosotros{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-wrapper {
    width: 100%;
    height: auto;
    margin: 1rem 2rem;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    
}

.carousel-images {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-image {
    min-width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cont-img {
    width: 50%;
    height: 500px;
}

.caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    text-align: center;
    padding: 20px 100px;
    box-sizing: border-box;
    z-index: 10; /* Ensure text is above images */
    font-size: 1rem;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20; /* Ensure buttons are above images and text */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.prev-button {
    left: 0;
}

.next-button {
    right: 0;
}

.carousel-indicators {
    position: relative;
    text-align: center;
    margin-top: 10px;
}

.indicator {
    display: inline-block;
    width: 22%;
    height: 10px;
    background: rgb(180, 180, 180);
    border-radius: 5px;
}

.indicator.active {
    background: #8fc1f071;
}

/* ////////// Mision y Vision ////////// */
.BannerMision{
    margin: 1rem 0 0 0;
    height: auto;
    width: 100%;
    color: #fff;
    display: flex;
    background-color: #001543;
    align-items: center;
    justify-content: center;
    position: relative;
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
  
.BannerMision.show {
    opacity: 1;
    transform: translateY(0);
}

.Contenedor-mision-vision{
    width: 100%;
    line-height: 1.75rem;
    margin: 1rem 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    
}

.Contenedor-mision-vision h1{
    width: 100%;
    padding: 0;
    margin: 0 0 10px 0;
}

.Contenedor-mision-vision p{
    width: 100%;
    padding: 0;
    margin: 0;
}

.Seccion-mision-vision{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Contenedor-margen{
    width: 100%;
    height: auto;
    margin: 1rem 3rem;
    display: flex;
    justify-content: space-between;
}

.Contenedor-margen h1{
    margin: 0;
    padding: 0;
    text-align: center;
}

.Contenedor-margen p{
    margin: 0.5rem 0 0 0;
    padding: 0;
    
}

.Contenedor-mision-borde{
    width: 32%;
    height: auto;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    box-shadow: 0 2px 2px  rgba(0, 0, 0, 0.3);
    background-position: 0 50%;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
}

.Contenedor-mision-centrado{
    width: 32%;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    box-shadow: 0 2px 2px  rgba(0, 0, 0, 0.3);
    padding-bottom: 0.8rem;
}


.img-mision{
    width: 100%;
    padding-top: 100%;
    position: relative;
}

.text-vision{
    width: 100%;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 0.6rem 0.6rem 0 0.6rem;
    text-align: justify;
}

/* ////////// Seccion Form ////////// */

.Seccion-form{
    width: 100%;
    display: flex;
    background-color: blueviolet;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: 0 63%;
}

.Subcon-form-tex{
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-size: 1.2rem;
    line-height: 1.3;
    width: 48%;
    height: 300px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.form-negrita{
    font-weight: bold;
    font-size: 1.30rem;
    color: #e49e42;
}

.form-subrayado{
    font-weight: bold;
    text-decoration: underline;
}

.Subcon-form-form{
    margin-right: 35px;
    width: 35%;
    height: auto;
    background-color:#fff;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 89%;
    padding: 10px 0;
    font-size: .85rem;
}

form input{
    font-size: .85rem;
    max-width: 100%;
    height: 35px;
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background-color: #b1b0b01c;
}

.form-sec{
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
    
}

.form-sec.final{
    width: 100%;
}

.form-sec.final textarea{
    border: 1px solid rgba(0, 0, 0, 0.2);
    background-color: #b1b0b01c;
    font-family: Arial, Helvetica, sans-serif;
    padding: 10px 0;
    max-width: 100%;
    height: 90px;
    resize: vertical;
    border-radius: 3px;

}

.form-sec.final div{
    width: 100%;
}


.form-sec div{
    display: flex;
    flex-direction: column;
    width: 48%;
}


form button{
    margin-top: 1rem;
    color: #ffffff;
    width: 100px;
    padding: 10px 0;
    background-color: #001543;
    border: 1px solid rgba(0, 0, 0, 0.2);
}
/* ////////// Footer ////////// */

footer{
    background-color: #4D7CC4;
    width: 100%;
}

.Contenedor-redes-footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 60px;
}

.Contenedor-iconos-footer{
    margin-bottom: 12px;
    text-align: center;
    color: #ffffff;
    justify-content: space-between;
    display: flex;
}

.Contenedor-iconos-footer i{
    color: rgb(0, 0, 0);
    border-radius: 50%;
    box-shadow: 0px 5px 10px rgb(0, 0, 0, 0.5);
    background-color: #ddd;
    text-align: center;
    padding: 5px;
    transition: 0.3s ease;
    margin: 5px;
}

.fa-twitter:hover{
    background-color: #000;
    color: #fff;
}

.fa-instagram:hover{
    background-color: #df5516;
    color: #fff;
}
.fa-facebook:hover{
    background-color: #0a33e9;
    color: #fff;
}

hr{ 
    width: 100%;
    border: 0.5px solid rgba(255, 255, 255, 0.2);
    margin: 0 20px;
}

.Contenedor-iconos-footer p{
    margin: 0;
    padding: 0;
}

.Contenedor-nav-footer{
    width: 200px;
    display: flex;
    flex-direction: column;
    margin-left: 3rem;
}

.nav-footer{
    display: flex;
    flex-direction: column;
}

.nav-footer a{
    text-decoration: none;
    color: #ffffff;
    margin-bottom: 12px;
}
.nav-footer a:hover{
    color:#e49e42;
}

.Contenedor-resumen-footer{
    width: 100%;
    display: flex;
}

.Contenedor-resumen-footer h1{
    padding: 0;
    margin: 0 0 5px 0;
    color: #e49e42;
    font-size: 1.35rem;
}

.Contendor-final-info{
    width: 100%;
    margin: 1rem 0 0.5rem 0;
    text-align: center;
    color: #ffffff;
}

.Contendor-final-info p{
    margin: 0;
    padding: 0;
    font-size: .75rem;
}

.speed-dial-container {
    z-index: 999; /* Aumenta el z-index */
    position: fixed;
    bottom: 55px;
    right: 10px; /* Reduce el valor para acercarlo más al borde derecho */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.speed-dial-container a {
    z-index: 999; /* Aumenta el z-index */
    text-decoration: none;
}

.speed-dial-menu {
    z-index: 999; /* Aumenta el z-index */
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0.3s, opacity 0.3s;
}

.speed-dial-btn {
    z-index: 999; /* Aumenta el z-index */
    width: 52px;
    height: 52px;
    background-color: #dba934;
    border: 1px solid #ccc;
    color: #000;
    border-radius: 50%;
    display: flex; 
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.speed-dial-btn:hover {
    background-color: #e69b2b;
}

.speed-dial-btn i {
    font-size: 30px;
}

.speed-dial-btn a {
    text-decoration: none;
}

.tooltip {
    z-index: 999; /* Aumenta el z-index */
    position: fixed;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    font-size: 12px;
}

.speed-dial-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

.main-button {
    z-index: 10000000;
    border: 0;
    box-sizing: border-box;
    width: 56px;
    height: 56px;
    background-color: #dba934;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: transform 0.3s;
}

.main-button svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
}

.main-button.active svg {
    transform: rotate(45deg);
}

.speed-dial-menu.show {
    visibility: visible;
    opacity: 1;
}
.inset-0 {
    display: none; /* Mantener oculto por defecto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo oscuro */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Asegurar que esté sobre el resto del contenido */
}

.modal-content {
    background-color: white;
    border-radius: 8px;
    width: 100%;
    max-width: 600px; /* Ancho máximo del modal */
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-button {
    background: none;
    border: none;
    font-size: 24px;
    color: black;
    cursor: pointer;
}

.close-button:hover {
    color: red; /* Cambia color al pasar el ratón */
}

.hidden{
    display: none;
}

/* Aseguramos que los inputs estén alineados y se vean bien */

/* Centramos el formulario dentro del modal */
form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Aseguramos que los inputs estén alineados y centrados */
.form-group {
    display: flex;
    flex-direction: column;
    width: 100%; /* Ocupar todo el ancho disponible */
    max-width: 400px; /* Ajustar el tamaño máximo de los campos */
    margin-bottom: 1rem;
}

label {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

input, textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #007bff;
}

button[type="submit"] {
    background-color: #007bff;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 1rem;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

.w-full,.p-5{
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
    justify-items: center;
}
@media (max-width: 890px) {

header{
    border-bottom: 0;
}

.navbar {
    position: fixed;
    display: flex; /* Mostrar enlaces cuando la clase active está presente */
    flex-direction: row; /* Opcional: apilar enlaces verticalmente */
    left: 0;
    width: 100%;
    background-color: #4D7CC4; /* Color de fondo */
    z-index: 100000; /* Asegúrate de que esté encima */
    padding-left: 0;
}
.nav-links {
    display: none; /* Ocultar enlaces en pantallas pequeñas */
}

.nav-links.active {
    display: flex; /* Mostrar enlaces cuando la clase active está presente */
    flex-direction: column; /* Opcional: apilar enlaces verticalmente */
    position: absolute; /* Para que se superpongan en la pantalla */
    top: 55px; /* Ajustar según la altura de tu navbar */
    left: 0;
    width: 100%;
    background-color: #333; /* Color de fondo */
    z-index: 100000; /* Asegúrate de que esté encima */
    padding-left: 0;
}

.nav-links.active li{
margin-bottom: 10px;
}

.hamburger {
    display: block; /* Mostrar hamburguesa en pantallas pequeñas */
}

.Seccion-frase div{
    margin: 0 2rem;
}

.Seccion-frase div p{
    font-size: 15px;
    margin: 10px;
    width: 100%;
}

.Seccion-info{
    height: auto;
    width: 100%;
}

.Contenedor-centrado{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0 2rem;
    width: 100%;
}

.subcon-galeria-logo h1{
    font-weight: bold;
    font-size: 2.5rem;
    line-height: 1.5;
    color: white;   
    padding: 0;
    margin: 0;
}

.Contenedor-info-info{
    width: 100%;
    padding: 0;
    margin-bottom: 10px;
}

.Contenedor-info-info p{
   margin: 10px 20px;
   font-size: 1rem;
   line-height: 1.4;
}

.Negritas{
    font-size: 18px;
}

.Contenedor-info-img{
    width: 0;
    height: 0;
    opacity: 0;
}

.Contenedor-mision-vision {
    width: 100%;
    margin: 10px 20px;
}

.img-mision{
    width: 100%;
    padding-top: 100%;
    position: relative;
}


.Contenedor-mision-vision h1{
    font-size: 22px;
    width: 100%;
}
.Contenedor-mision-vision p{
    font-size: 15px;
}

.Contenedor-margen{
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin: 20px 20px;
    width: 100%;
}

.Contenedor-mision-borde{
    width: auto;
    height: auto;
    padding-bottom: 0.5rem;

}

.Contenedor-mision-centrado{
    width: auto;
    height: auto;
    padding-bottom: 0.5rem;
    margin: 30px 0;
}

.Seccion-form{
    padding: 1rem;
    box-sizing: border-box;
}

.Subcon-form-tex{
    width: 100%;
}

.Subcon-form-form{
    width: 100%;
    margin-right: 0;
}

.form-sec label{
    font-size: 13px;
}

form {
    width: 90%;
    margin: 10px 0;
    justify-content: center;
    align-items: center;
}

.form-sec{
    flex-direction: column;
}

.form-sec div {
    margin-top: 10px;
}

.form-sec div{
    width: 100%;
}

.form-sec input{
    max-width: 100%;
}


.Contenedor-redes-footer{
    height: auto;
    width: auto;
    
}

.Contenedor-nav-footer{
    width: auto;
    margin-left: 10px;
}

.Contenedor-nav-footer h1{
    font-size: 14px;
}

.nav-footer a{
    font-size: 12px;
}

.Contendor-final-info p{
    font-size: 8px;
}


.icon-container {
    display: flex;
    flex-wrap: wrap; /* Permite que los íconos se envuelvan a la siguiente línea si es necesario */
    width: 100%;
    align-items: center; /* Centrar verticalmente */
    align-content: center;
    align-content: center;
    justify-content: center; /* Centrar horizontalmente */
}

.icon-self{
    width: 70px; /* Tamaño del círculo */
    height: 70px; /* Tamaño del círculo */
    border-radius: 50%; /* Hace que el fondo sea un círculo */
    background-color: #e49e42; /* Color de fondo amarillo-naranjoso */
    display: flex; /* Para centrar el ícono */
    align-items: center; /* Centrar verticalmente */
    align-content: center;
    justify-content: center; /* Centrar horizontalmente */
    margin-bottom: 10px; /* Espacio entre el ícono y el título */
}

.icon {
    width: 50%; /* Ajusta el ancho para encajar cuatro íconos por fila */
    box-sizing: border-box;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.icon-title {
    text-align: center; /* Centrar el texto debajo del ícono */
}


.caption{
    font-size: 1rem;
    padding: 12px;
}

.carousel-button{
    width: 40px;
    height: 40px;
    font-size: 90%;
}

.carousel-image{
    height: 100%;
}

.cont-img{
    height: 500px;
    width: 90%;
    background-position: center;
    
}
}

@media (max-width: 400px) {
.carousel-button{
        width: 30px;
        height: 30px;
        font-size: 90%;
}

.cont-img{
    height: 250px;
    width: 80%;
    background-position: center;
    
}
        
.Subcon-form-form{
    margin: 0;
}

}


@media (max-width:310px)
{
.Contenedor-info-info p{
    margin: 10px 20px;
    font-size: .9rem;
    line-height: 1.15;
}

.Negritas{
    font-size: .90rem;
}

.Subrayada{
    font-size: .90rem;
}

.subcon-galeria-logo h1{
    font-size: 2rem;

}

.subcon-galeria-contactar {
width: 200px;
}

.Contenedor-resumen-footer h1{
    padding: 0;
    margin: 0 0 5px 0;
    color: #e49e42;
    font-size: 1rem;
}

.icon{
    width: 100%;
}

.caption{
    font-size: .65rem;
    padding: 12px;
}

}







