@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.7.1/font/bootstrap-icons.css");
:root {
    --white: #ffffff;
    --dblue: #001531;
}




* {
    font-family: "Montserrat", serif;
    
}
h1 {
    font-size: 4rem;
}
p {
    font-size: 1.1rem;
}
.fade {
    -webkit-animation: fade 1s;
    animation: fade 1s;
}
.tittle {
    font-family: "DM Serif Display", serif;
}
.white {
    color: var(--white);
}
.bg-dblue {
    background: #001531;

}
nav {
    background-color: transparent;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}
nav .row {
    z-index: 101;
}
.navbar-menu {
    height: 90px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    padding: 0 8rem;
}
.logo {
    width: 40%;
}
.nav-item {
    padding: 0.5rem 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    z-index: 101;
}
.nav-item div {
    -webkit-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}
.nav-item:hover div {
    opacity: 1 !important;
    -webkit-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}
.nav-link {
    color: #fff;
    font-size: 1rem;
    padding: 0 !important;
}
.nav-link:hover {
    color: #fff;
}
.menu-hamburguesa {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.menu-hamburguesa > div {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    cursor: pointer;
}
.menu-hamburguesa > div > div:first-child,
.menu-hamburguesa > div > div:nth-child(2) {
    width: 40px;
    background-color: #fff;
    height: 2px;
    margin: 0.6rem 0;
    border-radius: 5px;
    -webkit-transition: 1s ease-in-out transform;
    transition: 1s ease-in-out transform;
}
.menu-hamburguesa > div > div:nth-child(3) {
    width: 20px;
    background-color: #fff;
    height: 2px;
    margin: 0.6rem 0;
    border-radius: 5px;
    -webkit-transition: 1s ease-in-out transform;
    transition: 1s ease-in-out transform;
}
.change > div:first-child {
    -webkit-transform: translatex(-15rem);
    transform: translatex(-15rem);
    -webkit-transition: 1.5s all ease-in-out !important;
    transition: 1.5s all ease-in-out !important;
}
.change > div:nth-child(2) {
    -webkit-transform: translatex(-15rem);
    transform: translatex(-15rem);
    -webkit-transition: 1s all ease-in-out !important;
    transition: 1s all ease-in-out !important;
}
.change > div:nth-child(3) {
    opacity: 0;
    -webkit-transform: translateX(-15rem);
    transform: translateX(-15rem);
    -webkit-transition: 0.5s all ease-in-out !important;
    transition: 0.5s all ease-in-out !important;
}
.menu {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    height: 101vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 102;
}
.menu > div > div {
    width: 30vw;
    background-color: var(--dblue);
    height: 101vh;
}
#btn-cerrar-menu {
    cursor: pointer;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 1rem 0;
}
#btn-cerrar-menu:hover {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
#btn-cerrar-menu > div:first-child {
    width: 40px;
    background-color: #fff;
    height: 2px;
    margin: 0.6rem 0;
    border-radius: 5px;
    -webkit-transform: translatey(12px) rotate(45deg);
    transform: translatey(12px) rotate(45deg);
}
#btn-cerrar-menu > div:nth-child(2) {
    width: 40px;
    background-color: #fff;
    height: 2px;
    margin: 0.6rem 0;
    border-radius: 5px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
#btn-cerrar-menu.change {
    opacity: 0;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-transition: 1s all ease;
    transition: 1s all ease;
}
.menu-fijo {
    position: fixed !important;
    width: 100%;
    z-index: 9999;
    top: 0;
    -webkit-box-shadow: 3px 11px 26px -20px rgba(0, 0, 0, 0.91);
    box-shadow: 3px 11px 26px -20px rgba(0, 0, 0, 0.91);
    -webkit-transition-duration: 0.1s;
    transition-duration: 0.1s;
    background-color: #001531;
}
.menu-fijo .nav-item .nav-link {
    color: #ffffff !important;
}
.menu-fijo .nav-item div {
    background: #ffffff !important;
}
.menu-fijo .menu-ong div {
    background-color: var(--white) !important;
}
.sombreado-barra {
    -webkit-box-shadow: 3px 15px 26px -20px rgba(0, 0, 0, 0.91);
    box-shadow: 3px 15px 26px -20px rgba(0, 0, 0, 0.91);
}
.menu-ong div {
    background-color: #1f2b36 !important;
}
.padding {
    padding: 0 8rem;
}
.padding-text {
    padding: 0 6rem;
}
.banner-principal {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #001531 0%,
      rgba(9, 9, 121, 0) 50%,
      #001531 100%
    ),
    url("../images/roma-web.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll; /* podés cambiar a fixed si querés efecto parallax */
}
.banner-principal .row {
    height: 100%;
}
.banner-principal .row .tittle-banner {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    color: var(--white);
}
.banner-principal .row .tittle-banner button {
    border: 1px solid var(--white);
    padding: 0.7rem 2rem;
    color: var(--white);
    background: transparent;
    font-size: 1.1rem;
    margin-top: 2rem;
}
.banner-principal .row .tittle-banner button i {
    margin-right: 15px;
}
.banner-principal .row .tittle-banner button:hover {
    background: var(--white);
    color: var(--dblue);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.banner-principal .row .bot-banner {
    width: 100%;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 2rem;
}
.banner-principal .row .bot-banner .numbers {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.banner-principal .row .bot-banner .numbers .number {
    padding: 0 1rem;
    color: var(--white);
}
.banner-principal .row .bot-banner .numbers .number .data {
    font-size: 2rem;
    font-weight: 700;
}
.banner-principal .row .bot-banner .divider {
    background: var(--white);
    height: 1px;
    width: 100%;
}
.video {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.video video {
    width: 80%;
}
.eventos .description,
.notice .description {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.eventos .description .date,
.notice .description .date {
    font-size: 1.3rem;
}
.eventos .description .tittle h2,
.notice .description .tittle h2 {
    font-weight: 600;
}
.eventos .divider,
.notice .divider {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.eventos .divider div,
.notice .divider div {
    background: #707070;
    width: 50%;
    opacity: 0.28;
    height: 1px;
}
.slider-logos .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.slider-logos div img {
    width: 70%;
    margin: auto;
}
.banner-internas {
    background-size: cover !important;
    background-position: bottom right !important;
    background-repeat: no-repeat !important;
    height: 55vh;
    width: 100%;
}
.square {
    margin-top: -8rem;
}
.square .tittle-square {
    background: var(--dblue);
    height: 35vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 2rem;
}
.square .tittle-square .divider {
    background: #ffffff;
    opacity: 0.39;
    width: 100%;
    height: 1px;
}
.desarrollos {
    margin-top: -2rem;
}
.desarrollos .desarrollo.left .image,
.desarrollos .desarrollo.right .image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    border-radius: 9px;
    padding: 1rem;
}
.desarrollos .desarrollo.left .image img,
.desarrollos .desarrollo.right .image img {
    width: 23%;
}
.desarrollos .desarrollo.left .description,
.desarrollos .desarrollo.right .description {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 2rem 6rem;
}
.desarrollos .desarrollo.left .description a,
.desarrollos .desarrollo.right .description a {
    background: var(--dblue);
    color: var(--white);
    padding: 1rem;
    border: 1px solid var(--dblue);
}
.desarrollos .desarrollo.left .description a:hover,
.desarrollos .desarrollo.right .description a:hover {
    background: var(--white);
    color: var(--dblue);
    text-decoration: none;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.desarrollos .desarrollo.left .divider,
.desarrollos .desarrollo.right .divider {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.desarrollos .desarrollo.left .divider div,
.desarrollos .desarrollo.right .divider div {
    background: #707070;
    width: 50%;
    opacity: 0.28;
    height: 1px;
}
.desarrollos .desarrollo.right .image {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.ong {
    height: 100vh;
}
.ong .img-ong {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.ong .img-ong h1 {
    cursor: pointer;
    position: absolute;
    top: 55%;
}
.ong .img-ong .img {
    position: relative;
    width: 75%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 75vh;
}
.ong .img-ong .img button {
    border: none;
    background: none;
}
.ong .img-ong .img button img {
    width: 15vw;
}
.ong .img-ong .img .huerta {
    position: absolute;
    top: 5vh;
}
.ong .img-ong .img .capacitacion {
    position: absolute;
    bottom: 0;
    right: 0;
}
.ong .img-ong .img .construccion {
    position: absolute;
    bottom: 0;
    left: 0;
}
.ong .img-ong .img .flecha1 {
    width: 7vw;
    position: absolute;
    right: 9vw;
}
.ong .img-ong .img .flecha2 {
    width: 16vw;
    position: absolute;
    bottom: 0;
}
.ong .img-ong .img .flecha3 {
    width: 7vw;
    position: absolute;
    left: 9vw;
}
.ong .text-ong {
    background: var(--dblue);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.ong .text-ong h1 {
    padding: 0 2rem;
    opacity: 1;
}
.ong .text-ong p {
    padding: 0 2rem;
}
.ong .text-ong .divider {
    background: #ffffff;
    opacity: 0.39;
    width: 75%;
    height: 2px;
    margin: 1rem 0;
}
.banner-empresa {
    height: 100vh;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}
.croquis.left .description {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.croquis.left .description .content {
    text-align: right;
}
.croquis.right .description {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.croquis.right .description .content {
    text-align: left;
}
.characteristics {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.characteristics .characteristic {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 30%;
    margin: 1.5%;
}
.characteristics .characteristic img {
    width: 40px;
    margin-bottom: 0.5rem;
}
.characteristics .characteristic .text {
    font-weight: 600;
}
.quienes-somos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.quienes-somos .divider {
    background: #001531;
    width: 100%;
    height: 2px;
    margin: 1rem 0;
}
.quienes-somos .content {
    text-align: right;
}
.employers {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.employers .employer {
    width: 25%;
    margin: 1.5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.employers .employer img {
    width: 250px;
    margin-bottom: 1rem;
}
.employers .employer .name {
    font-weight: 700;
    margin: 0;
}
.contact-tittle {
    background: var(--dblue);
    height: 40vh;
}
.contact-tittle .divider {
    background: #ffffff;
    width: 100%;
    height: 1px;
}
.contact {
    background: var(--dblue);
    height: 60vh;
}
.contact .map p {
    color: var(--white);
}
.contact .map iframe {
    height: 40vh;
}
.contact .form form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
}
.contact .form form input {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--white);
    background: none;
    height: 50px;
    margin-bottom: 1.5rem;
    color: var(--white);
}
.contact .form form input::-webkit-input-placeholder {
    color: var(--white);
    font-style: italic;
    font-size: 1.1rem;
    letter-spacing: 0.48px;
    font-weight: 300;
}
.contact .form form input::-moz-placeholder {
    color: var(--white);
    font-style: italic;
    font-size: 1.1rem;
    letter-spacing: 0.48px;
    font-weight: 300;
}
.contact .form form input:-ms-input-placeholder {
    color: var(--white);
    font-style: italic;
    font-size: 1.1rem;
    letter-spacing: 0.48px;
    font-weight: 300;
}
.contact .form form input::-ms-input-placeholder {
    color: var(--white);
    font-style: italic;
    font-size: 1.1rem;
    letter-spacing: 0.48px;
    font-weight: 300;
}
.contact .form form input::placeholder {
    color: var(--white);
    font-style: italic;
    font-size: 1.1rem;
    letter-spacing: 0.48px;
    font-weight: 300;
}
.contact .form form div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
}
.contact .form form div button {
    border: 1px solid var(--white);
    background: var(--dblue);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 1.3rem;
}
.contact .form form div button:hover {
    background: var(--white);
    color: var(--dblue);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.privacidad {
    margin-top: 8rem;
}
.privacidad h1,
.privacidad h3,
.privacidad li,
.privacidad p {
    color: var(--white);
}
footer {
    background: var(--dblue);
}
footer .logo-footer {
    width: 200px;
}
footer .footer-text {
    color: #8b949d;
    font-style: italic;
}
footer .footer-text a {
    margin-bottom: 0;
    text-decoration: none;
    color: #8b949d;
}
footer .footer-redes a img {
    width: 25px;
}
@media (max-width: 1535px) {
    h1 {
        font-size: 3rem;
    }
    p {
        font-size: 1rem;
    }
    .padding {
        padding: 0 6rem;
    }
    .padding-text {
        padding: 0 4rem;
    }
    .navbar-menu {
        padding: 0 6rem;
    }
    .detalle-navidad {
        width: 300px;
    }
    .ong .img-ong {
        margin-top: 4rem;
    }
    .ong .img-ong .img {
        width: 70%;
        height: 70vh;
    }
    .ong .img-ong .img button img {
        width: 12vw;
    }
    .ong .img-ong .img .flecha1 {
        right: 7vw;
    }
    .ong .img-ong .img .flecha3 {
        left: 7vw;
    }
}
@media (max-width: 991px) {
    h1 {
        font-size: 3rem;
    }
    .navbar-menu {
        padding: 0 2rem;
    }
    .formulario {
        display: none !important;
    }
    .boton-modal-mobile {
        display: block;
    }
    .padding {
        padding: 0 2rem;
    }
    .padding-text {
        padding: 0 15px;
    }
    .nav-destock {
        display: none !important;
    }
    .nav-logo {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }
    .menu-hamburguesa {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        display: block !important;
    }
    .navbar-menu {
        padding: 0 2rem;
    }
    .detalle-navidad {
        width: 220px;
    }
    .banner-principal .row .tittle-banner button {
        font-size: 1rem;
    }
    .video video {
        width: 100%;
    }
    .desarrollo.right .img-notice,
    .evento.right .img-notice,
    .notice.right .img-notice {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .desarrollo.right .description,
    .evento.right .description,
    .notice.right .description {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .desarrollo.right .divider,
    .evento.right .divider,
    .notice.right .divider {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }
    .desarrollo.left .img-notice,
    .evento.left .img-notice,
    .notice.left .img-notice {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .desarrollo.left .description,
    .evento.left .description,
    .notice.left .description {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .desarrollo.left .divider,
    .evento.left .divider,
    .notice.left .divider {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }
    .banner-internas {
        height: 35vh;
        background-position: center !important;
    }
    .square {
        margin-top: 0;
    }
    .square .tittle-square {
        height: 25vh;
    }
    .desarrollos {
        margin-top: -2rem;
    }
    .desarrollos .desarrollo.left .image,
    .desarrollos .desarrollo.right .image {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 25vh;
    }
    .desarrollos .desarrollo.left .image img,
    .desarrollos .desarrollo.right .image img {
        width: 50%;
    }
    .desarrollos .desarrollo.left .description,
    .desarrollos .desarrollo.right .description {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 2rem 0;
    }
    .desarrollos .desarrollo.left .description a,
    .desarrollos .desarrollo.right .description a {
        font-size: 0.8rem;
    }
    .ong {
        height: 100%;
    }
    .ong .img-ong {
        margin-top: 6rem;
    }
    .ong .img-ong h1 {
        top: 55%;
    }
    .ong .img-ong .img {
        width: 100%;
        height: 50vh;
    }
    .ong .img-ong .img button img {
        width: 30vw;
    }
    .ong .img-ong .img .huerta {
        top: 5vh;
    }
    .ong .img-ong .img .capacitacion {
        bottom: 2vh;
        right: 0;
    }
    .ong .img-ong .img .construccion {
        bottom: 2vh;
        left: 0;
    }
    .ong .img-ong .img .flecha1 {
        width: 15vw;
        right: 20vw;
    }
    .ong .img-ong .img .flecha2 {
        width: 30vw;
        bottom: 5vw;
    }
    .ong .img-ong .img .flecha3 {
        width: 15vw;
        left: 20vw;
    }
    .croquis.left .image,
    .croquis.right .image {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .croquis.left .description,
    .croquis.right .description {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .croquis.left .description .content,
    .croquis.right .description .content {
        text-align: center;
    }
    .quienes-somos {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .quienes-somos .content {
        text-align: center;
    }
    .employers .employer {
        width: 47%;
        margin: 1.5%;
    }
    .employers .employer img {
        width: 170px;
    }
    .contact-tittle {
        height: 100%;
    }
    .contact-tittle .col-12 {
        margin-top: 5rem;
    }
    .contact {
        background: var(--dblue);
        height: 100%;
    }
    .contact .map {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .contact .map p {
        color: var(--white);
    }
    .contact .form {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        margin-bottom: 2rem;
    }
    .contact .form form input {
        margin-bottom: 1rem;
    }
    .contact .form form input::-webkit-input-placeholder {
        font-size: 0.8rem;
    }
    .contact .form form input::-moz-placeholder {
        font-size: 0.8rem;
    }
    .contact .form form input:-ms-input-placeholder {
        font-size: 0.8rem;
    }
    .contact .form form input::-ms-input-placeholder {
        font-size: 0.8rem;
    }
    .contact .form form input::placeholder {
        font-size: 0.8rem;
    }
    .contact .form form div button {
        width: 100%;
        font-size: 1rem;
    }
}
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    p {
        font-size: 0.8rem;
    }
    .navbar-menu {
        height: 70px;
    }
    .nav-logo {
        max-width: 50% !important;
    }
    .logo {
        width: 100%;
    }
    .menu-hamburguesa {
        max-width: 50% !important;
    }
    .banner-principal .row .tittle-banner {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding-top: 100px;
        text-align: center;
    }
    .banner-principal .row .tittle-banner button {
        width: 100%;
    }
    .banner-principal .row .bot-banner .numbers {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .banner-principal .row .bot-banner .numbers .number {
        width: 50%;
        text-align: center;
        padding: 1rem;
    }
    .banner-principal .row .bot-banner .numbers .number .data {
        font-size: 1.5rem;
    }
    .banner-principal .row .bot-banner .numbers .number .info {
        font-size: 0.8rem;
    }
    .carrousel .slider {
        height: 300px;
        margin: 1rem 0;
    }
    .carrousel .arrows {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    footer .logo-footer {
        width: 150px;
        margin-bottom: 1rem;
    }
    footer .footer-redes {
        margin-top: 1rem;
    }
}
@media (max-height: 700px) {
    .banner-principal .row .tittle-banner {
        padding-top: 70px;
    }
    .banner-principal .row .bot-banner .numbers .number {
        padding: 0.5rem;
    }
    .banner-principal .row .bot-banner .numbers .number .data {
        margin-bottom: 0.5rem;
    }
    .banner-principal .row .bot-banner .numbers .number .info {
        margin-bottom: 0.5rem;
    }
}
@-webkit-keyframes fade {
    0% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fade {
    0% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


.ftco-section {
    padding: 7em 0;
    background-color: #001531;

}

    .container {
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto; }
        @media (min-width: 576px) {
          .container {
            max-width: 540px; } }
        @media (min-width: 768px) {
          .container {
            max-width: 720px; } }
        @media (min-width: 992px) {
          .container {
            max-width: 960px; } }
        @media (min-width: 1200px) {
          .container {
            max-width: 1140px; } }

            .slider-hero {
                position: relative; }

                .owl-carousel {
                    position: relative; }
                    .owl-carousel .owl-item {
                      opacity: 1; }
                      .owl-carousel .owl-item.active {
                        opacity: 1; }
                    .owl-carousel .owl-nav {
                      position: absolute;
                      top: 50%;
                      width: 100%; }
                      .owl-carousel .owl-nav .owl-prev,
                      .owl-carousel .owl-nav .owl-next {
                        position: absolute;
                        -webkit-transform: translateY(-50%);
                        -ms-transform: translateY(-50%);
                        transform: translateY(-50%);
                        margin-top: 0;
                        color: white !important;
                        -webkit-transition: 0.7s;
                        -o-transition: 0.7s;
                        transition: 0.7s;
                        opacity: 1; }
                        @media (prefers-reduced-motion: reduce) {
                          .owl-carousel .owl-nav .owl-prev,
                          .owl-carousel .owl-nav .owl-next {
                            -webkit-transition: none;
                            -o-transition: none;
                            transition: none; } }
                        .owl-carousel .owl-nav .owl-prev span:before,
                        .owl-carousel .owl-nav .owl-next span:before {
                          font-size: 30px; }
                      .owl-carousel .owl-nav .owl-prev {
                        left: 20px; }
                      .owl-carousel .owl-nav .owl-next {
                        right: 20px; }
                    .owl-carousel .owl-dots {
                      text-align: center;
                      margin-top: 0;
                      position: absolute;
                      bottom: 20px;
                      right: 0;
                      left: 0; }
                      .owl-carousel .owl-dots .owl-dot {
                        width: 10px;
                        height: 10px;
                        margin: 5px;
                        border-radius: 50%;
                        background: rgba(255, 255, 255, 0.5);
                        position: relative; }
                        .owl-carousel .owl-dots .owl-dot:hover, .owl-carousel .owl-dots .owl-dot:focus {
                          outline: none !important; }
                        .owl-carousel .owl-dots .owl-dot.active {
                          background: #ff5959; }
                  
                  .owl-carousel.owl-drag .owl-item {
                    -ms-touch-action: pan-y;
                    touch-action: pan-y; }

                    .work {
                        width: 100%; }
                        .work .img {
                          width: 100%;
                          height: 600px;
                          position: relative;
                          z-index: 0;
                          border-radius: 10px;
                          overflow: hidden;
                          -webkit-box-shadow: 0px 20px 35px -30px rgba(0, 0, 0, 0.26);
                          -moz-box-shadow: 0px 20px 35px -30px rgba(0, 0, 0, 0.26);
                          box-shadow: 0px 20px 35px -30px rgba(0, 0, 0, 0.26); }
                          .work .img:after {
                            position: absolute;
                            top: 0;
                            left: 0;
                            right: 0;
                            bottom: 0;
                            content: '';
                            z-index: -1;
                            background: #000;
                            opacity: .3; }
                        .work .text h2 {
                          font-size: 60px;
                          font-weight: 200;
                          color: #fff;
                          text-transform: uppercase; }
                          @media (max-width: 991.98px) {
                            .work .text h2 {
                              font-size: 40px; } }
                        .work .text span {
                          font-size: 12px;
                          letter-spacing: 1px;
                          color: rgba(0, 0, 0, 0.3);
                          text-transform: uppercase;
                          font-weight: 500; }

                          .thumbnail {
                            list-style: none;
                            padding: 0;
                            margin: 0;
                            position: absolute;
                            bottom: 0px;
                            left: 50%;
                            transform: translateY(50%) translateX(-50%);
                            z-index: 99;
                            width: 100%;
                        }
                        .thumbnail li {
                            display: inline-block;
                        }
                              .thumbnail li a {
                                display: block;
                                margin: 4px; }
                                .thumbnail li a img {
                                    width: 80px;
                                    border-radius: 10%;
                                    transform: scale(0.8);
                                    transition: .3s all ease;
                                    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
                                }
                                .thumbnail li.active a img {
                                    border: 4px solid #fff;
                                    transform: scale(1.1);
                                    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.2);
                                }
                              @media (max-width: 767.98px) {
                                .thumbnail li a img {
                                  width: 50px; } }

.textform{
  color: white;
  position: relative;
  top: 15px;
  right: 50px
}

@media (min-width: 1368.98px) {
  .textform{
    color: white;
    position: relative;
    top: 0px;
    right: 250px
  }
}

.textform a {
  color: inherit; /* Utiliza el color predeterminado del texto */
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Style for the main container */
.contenedor-principal {
  width: 80%;
  margin: 0 auto;
  padding-top: 40px; /* Add padding-top for spacing above testimonials */
}
/* Style for the testimonial container (individual slides) */
.swiper-slide {
  padding: 20px;
  margin-bottom: 40px; /* Added spacing between slides */
}

/* Style for the testimonial title */
.swiper-slide h2 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 10px;
}

/* Style for the testimonial author */
.swiper-slide .autor {
  font-weight: bold;
  margin-bottom: 5px;
}

/* Style for the testimonial content */
.swiper-slide .contenido {
  text-align: center; /* Center the text within the slide */
}

/* Swiper navigation button styles (optional) */
.swiper-button-next,
.swiper-button-prev {
  color: #000;
}

.swiper-pagination-bullet {
  background: #ccc;
}

.swiper-pagination-bullet-active {
  background: #000;
}

/* Style for the button container */
.button-container {
  text-align: center; /* Center the button horizontally */
  margin-top: 40px; /* Add space above the button */
}

/* Style for the button */
.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #001531; /* Adjust background color as needed */
  color: white; /* Adjust text color as needed */
  border: none;
  border-radius: 5px; /* Add rounded corners */
  cursor: pointer;
  transition: background-color 0.3s; /* Add a smooth hover effect */
}

/* Hover effect for the button */
.btn:hover {
  background-color: #dce1e7; /* Adjust hover background color */
}

.titulo-resenas {
  margin-top: 150px;
  text-align: center; /* Center the title horizontally */
}

.subautor{

 color: #001531;
 font-weight: 500;

}


.cta {
  background-color: #1f2b37;
  transition: background 2s ease;
  display: inline-block;
  padding: 0.8em 3em 0.8em 3em;
  border-radius: 100px;
  font-family: "Raleway";
  box-shadow: 0px 5px 40px #000000ea;
  color: white;
  text-decoration: none;
  font-size: 1.2em;
  overflow: hidden;
  backface-visibility: hidden;
  position: relative;
}

.cta:active {
  transform: translateY(3px);
}


.btn-text-parent {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.wrap_text {
  display: inline-block;
}

.buildin-btn-text {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
  width: 100%;
  transform: translateY(100%);
}
.buildin-btn-text .btn-letter {
  opacity: 0;
}

.btn-letter {
  display: inline-block;
  margin: 0em 0.05em;
  position: relative;
  transition: transform 300ms, opacity 300ms ease;
}

.current-btn-text .btn-letter:nth-child(1) {
  transition-delay: 49ms;
}

.current-btn-text .btn-letter:nth-child(2) {
  transition-delay: 99ms;
}

.current-btn-text .btn-letter:nth-child(3) {
  transition-delay: 149ms;
}

.current-btn-text .btn-letter:nth-child(4) {
  transition-delay: 199ms;
}

.current-btn-text .btn-letter:nth-child(5) {
  transition-delay: 249ms;
}

.current-btn-text .btn-letter:nth-child(6) {
  transition-delay: 299ms;
}

.current-btn-text .btn-letter:nth-child(7) {
  transition-delay: 349ms;
}

.current-btn-text .btn-letter:nth-child(8) {
  transition-delay: 399ms;
}

.current-btn-text .btn-letter:nth-child(9) {
  transition-delay: 449ms;
}

.current-btn-text .btn-letter:nth-child(10) {
  transition-delay: 499ms;
}

.current-btn-text .btn-letter:nth-child(11) {
  transition-delay: 549ms;
}

.current-btn-text .btn-letter:nth-child(12) {
  transition-delay: 599ms;
}

.current-btn-text .btn-letter:nth-child(13) {
  transition-delay: 649ms;
}

.current-btn-text .btn-letter:nth-child(14) {
  transition-delay: 699ms;
}

.current-btn-text .btn-letter:nth-child(15) {
  transition-delay: 749ms;
}

.current-btn-text .btn-letter:nth-child(16) {
  transition-delay: 799ms;
}

.current-btn-text .btn-letter:nth-child(17) {
  transition-delay: 849ms;
}

.current-btn-text .btn-letter:nth-child(18) {
  transition-delay: 899ms;
}

.current-btn-text .btn-letter:nth-child(19) {
  transition-delay: 949ms;
}

.current-btn-text .btn-letter:nth-child(20) {
  transition-delay: 999ms;
}

.current-btn-text .btn-letter:nth-child(21) {
  transition-delay: 1049ms;
}

.current-btn-text .btn-letter:nth-child(22) {
  transition-delay: 1099ms;
}

.current-btn-text .btn-letter:nth-child(23) {
  transition-delay: 1149ms;
}

.current-btn-text .btn-letter:nth-child(24) {
  transition-delay: 1199ms;
}

.current-btn-text .btn-letter:nth-child(25) {
  transition-delay: 1249ms;
}

.current-btn-text .btn-letter:nth-child(26) {
  transition-delay: 1299ms;
}

.current-btn-text .btn-letter:nth-child(27) {
  transition-delay: 1349ms;
}

.current-btn-text .btn-letter:nth-child(28) {
  transition-delay: 1399ms;
}

.current-btn-text .btn-letter:nth-child(29) {
  transition-delay: 1449ms;
}

.current-btn-text .btn-letter:nth-child(30) {
  transition-delay: 1499ms;
}

.buildin-btn-text .btn-letter:nth-child(0) {
  opacity: 0;
  transition-delay: 0ms;
}

.buildin-btn-text .btn-letter:nth-child(1) {
  opacity: 0;
  transition-delay: 50ms;
}

.buildin-btn-text .btn-letter:nth-child(2) {
  opacity: 0;
  transition-delay: 100ms;
}

.buildin-btn-text .btn-letter:nth-child(3) {
  opacity: 0;
  transition-delay: 150ms;
}

.buildin-btn-text .btn-letter:nth-child(4) {
  opacity: 0;
  transition-delay: 200ms;
}

.buildin-btn-text .btn-letter:nth-child(5) {
  opacity: 0;
  transition-delay: 250ms;
}

.buildin-btn-text .btn-letter:nth-child(6) {
  opacity: 0;
  transition-delay: 300ms;
}

.buildin-btn-text .btn-letter:nth-child(7) {
  opacity: 0;
  transition-delay: 350ms;
}

.buildin-btn-text .btn-letter:nth-child(8) {
  opacity: 0;
  transition-delay: 400ms;
}

.buildin-btn-text .btn-letter:nth-child(9) {
  opacity: 0;
  transition-delay: 450ms;
}

.buildin-btn-text .btn-letter:nth-child(10) {
  opacity: 0;
  transition-delay: 500ms;
}

.buildin-btn-text .btn-letter:nth-child(11) {
  opacity: 0;
  transition-delay: 550ms;
}

.buildin-btn-text .btn-letter:nth-child(12) {
  opacity: 0;
  transition-delay: 600ms;
}

.buildin-btn-text .btn-letter:nth-child(13) {
  opacity: 0;
  transition-delay: 650ms;
}

.buildin-btn-text .btn-letter:nth-child(14) {
  opacity: 0;
  transition-delay: 700ms;
}

.buildin-btn-text .btn-letter:nth-child(15) {
  opacity: 0;
  transition-delay: 750ms;
}

.buildin-btn-text .btn-letter:nth-child(16) {
  opacity: 0;
  transition-delay: 800ms;
}

.buildin-btn-text .btn-letter:nth-child(17) {
  opacity: 0;
  transition-delay: 850ms;
}

.buildin-btn-text .btn-letter:nth-child(18) {
  opacity: 0;
  transition-delay: 900ms;
}

.buildin-btn-text .btn-letter:nth-child(19) {
  opacity: 0;
  transition-delay: 950ms;
}

.buildin-btn-text .btn-letter:nth-child(20) {
  opacity: 0;
  transition-delay: 1000ms;
}

.buildin-btn-text .btn-letter:nth-child(21) {
  opacity: 0;
  transition-delay: 1050ms;
}

.buildin-btn-text .btn-letter:nth-child(22) {
  opacity: 0;
  transition-delay: 1100ms;
}

.buildin-btn-text .btn-letter:nth-child(23) {
  opacity: 0;
  transition-delay: 1150ms;
}

.buildin-btn-text .btn-letter:nth-child(24) {
  opacity: 0;
  transition-delay: 1200ms;
}

.buildin-btn-text .btn-letter:nth-child(25) {
  opacity: 0;
  transition-delay: 1250ms;
}

.buildin-btn-text .btn-letter:nth-child(26) {
  opacity: 0;
  transition-delay: 1300ms;
}

.buildin-btn-text .btn-letter:nth-child(27) {
  opacity: 0;
  transition-delay: 1350ms;
}

.buildin-btn-text .btn-letter:nth-child(28) {
  opacity: 0;
  transition-delay: 1400ms;
}

.buildin-btn-text .btn-letter:nth-child(29) {
  opacity: 0;
  transition-delay: 1450ms;
}

.buildin-btn-text .btn-letter:nth-child(30) {
  opacity: 0;
  transition-delay: 1500ms;
}

.cta:hover {
  background: black;
}
.cta:hover .current-btn-text .btn-letter {
  opacity: 0;
  transform: translateY(-100%);
}
.cta:hover .buildin-btn-text .btn-letter {
  opacity: 1;
  transform: translateY(-100%);
}

.container {
  text-align: center;
}

#eventosdest {
    background-color: white;
    /* Otras propiedades de estilo que necesites */
}






.gallery-container {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    height: 80vh;
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gallery-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #001531;
    z-index: 1;
}

.text-right {
    position: absolute;
    right: 2%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    text-align: left;
    width: 250px;
}

.panels-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.gallery-panel {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 30vh;
    width: 15vw;
    border-radius: 10px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    margin: 10px;
    position: absolute;
    transition: height 0.5s ease-in-out, width 0.5s ease-in-out, border-radius 0.5s ease-in-out, border-color 0.5s ease-in-out, transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    border: 5px solid transparent;
    overflow: hidden;
    opacity: 0;
    z-index: 2;
}

.content3 {
    position: absolute;
    bottom: 10px;
    left: 10px;
    text-align: left;
    z-index: 3;
    display: none;
    padding: 5px 10px;
    border-radius: 5px;
}

.logo {
    display: block;
    margin: 0 auto 10px;
}

.barrio-name {
    margin: 0;
    text-decoration: none;
    color: white;
}

.gallery-panel.active-panel .content3 {
    display: block;
}

.gallery-panel.active-panel {
    height: 60vh;
    width: 30vw;
    border-radius: 10px;
    transform: translateX(0);
    opacity: 1;
    left: 50%;
    transform: translateX(-50%);
}



@media (max-width: 480px) {
    .gallery-container {
        flex-direction: column;
    }

    .gallery-panel {
        flex: 1;
    }

    .gallery-panel.active-panel {
        flex: 3;
    }
    .cta {
        font-size: 1em;
      }
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 3;
}

.left-arrow {
    left: 2%;
}

.right-arrow {
    right: 2%;
}

.rpc{

    margin-right: 7px;

}

@media (max-width: 480px) {
 
    .rpc{



    }

}

.dialog-wrapper {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
}

.dialog {
    background-color: white;
    padding: 0;
    border-radius: 8px;
    width: 600px;
    height: 600px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background-color: transparent;
    font-size: 24px;
    color: #3c2c7c;
    cursor: pointer;
    z-index: 1;
}

.dialog img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visible {
    opacity: 1;
    visibility: visible;
}
.vertical-icons {
    position: absolute;
    right: 80px; /* Ajusta esta distancia para centrar más */
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vertical-line {
    width: 2px;
    height: 50px;
    background-color: white;
    margin: 20px 0; /* Más espacio entre los iconos */
}

.vertical-icons i {
    color: white;
    font-size: 24px;
    margin: 10px 0; /* Más espacio entre los iconos */
    transition: color 0.3s;
}

.vertical-icons a {
    text-decoration: none;
    padding-bottom: 15px;
}

/* Estilos específicos para cada icono en hover */
.vertical-icons a[href*="wa.me"] i:hover {
    color: #25D366; /* Color de WhatsApp */
}

.vertical-icons a[href*="instagram.com"] i:hover {
    color: #E4405F; /* Color de Instagram */
}

.vertical-icons a[href*="linkedin.com"] i:hover {
    color: #0077B5; /* Color de LinkedIn */
}

.vertical-icons a[href*="facebook.com"] i:hover {
    color: #1877F2; /* Color de Facebook */
}

.news-section {
    display: flex;
    align-items: flex-start;
    margin: 40px 0;
}

.news-section img {
    width: 100%;
    height: auto;
}

.news-section .content {
    padding: 20px;
    flex: 1;
}

@media (max-width: 768px) {
    .news-section {
        flex-direction: column;
.dialog {
    background-color: white;
    padding: 0;
    border-radius: 8px;
    width: 400px!important;
    height: 400px!important;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}
    }

    .news-section img {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .section-title img {
        width: 83%!important; /* Tamaño ajustado para el logo */
        margin-right: 20px;
        margin-top: 18px;
    }
    .vertical-icons {
display: none;
    }
    .logo{
display: none;
    }
}

.card {
    border: none;
    box-shadow: 0 4px 8px #00000038;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-body {
    display: flex;
    flex-direction: column;
}

.btn-primary {
    background-color: #001531;
    border: none;
}

.section {
    padding: 100px 15px;
}
.section-title {
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.section-title h1 {
    font-size: 3rem; /* Tamaño ajustado para el texto principal */
    font-weight: 500;
}
.section-title img {
    width: 200px; /* Tamaño ajustado para el logo */
    margin-left: 20px;
    margin-bottom: 18px;
}
.card {
    margin-bottom: 30px;
}
.card-title {
    margin-top: 15px;
    text-align: center;
}
.card-subtitle {
    text-align: center;
    margin: 15px 0; /* Margen ajustado para separación del título */
}
.btn-custom {
    display: block;
    width: fit-content;
    margin: 0 auto;
    color: black;
    border: 1px solid black;
    border-radius: 25px;
    background-color: white;
}

/* news */
.photo-wrapper {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    overflow: hidden;
    width: 100%;
}

.photo {
    border-radius: 16px;
    overflow: hidden;
    width: 300px;
    height: auto; /* Cambiar de 200px a auto para ajustar la altura */
    position: relative;
    flex-shrink: 0;
    transition: transform 0.25s ease;
    text-align: center; /* Centrar el texto */
}

.photo img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.photo p {
    margin: 0.5rem 0 0;
    font-size: 1rem;
    color: #333;
}

.photo::after {
    content: "";
    position: absolute;
    top: -1rem;
    bottom: -1rem;
    left: -16rem;
    background: linear-gradient(90deg, transparent, white, transparent);
    width: 16rem;
    opacity: 0;
}

.photo:hover::after {
    left: 100%;
    opacity: 0.15;
    transition: inset 1s;
}

.photo:hover {
    transform: scale(1.1) !important;
}

.carousel-container {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 150px;
}

.carouselroma {
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
}

.track-containerroma {
    display: flex;
    width: 100%;
}

.trackroma {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    animation: scroll 10s linear infinite;
    align-items: center;
    position: relative;
}

.slideroma {
    flex: 0 0 auto;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.slideroma img {
    width: 250px;
    height: auto;
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.slideroma.active {
    transform: scale(1.5);
    filter: brightness(1.5);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.trackroma:hover {
    animation-play-state: paused;
}

.event-block {
    background-size: cover;
    background-position: center;
    height: 350px!important;
    border-radius: 10px;
    overflow: hidden;
    width: 95%!important;
    box-shadow: 8px 12px 16px rgba(0, 0, 0, 0.3); /* Sombra más notoria, desplazada hacia abajo y derecha */
    transition: transform 0.3s ease; /* Animación para efecto hover */
    margin-right: 133px!important;
}

.event-block:hover {
    transform: scale(1.02); /* Efecto de zoom al pasar el cursor */
}

.event-info {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white;
    width: 90%;
}

.event-title {
    font-weight: bold;
    font-size: 1.4rem; /* Título un poco más grande */
    margin: 0;
}

.event-subtitle {
    font-size: 1rem;
    overflow: hidden;
    white-space: nowrap; /* Mantiene el subtítulo en una línea */
    text-overflow: ellipsis; /* Muestra "..." si el subtítulo es muy largo */
    margin: 0;
}

.btn-cargar-más {
    display: block;
    margin: 20px auto;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    color: #ffffff;
    background-color: #1F2B37;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn-cargar-más:hover {
    background-color: #001531;
    transform: translateY(-2px);
}

.btn-cargar-más:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 480px) {
  .dialog {
    width: 90%; /* Ajusta el ancho al 90% de la pantalla */
    height: auto; /* Permite que el alto se ajuste automáticamente */
    border-radius: 8px; /* Mantén bordes redondeados */
  }

  .dialog img {
    width: 100%; /* Asegura que la imagen ocupe todo el ancho */
    height: auto; /* Mantén las proporciones de la imagen */
    object-fit: cover; /* Ajusta cómo se muestra la imagen *
  }
}


.banner-principal {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #001531 0%,
      rgba(9, 9, 121, 0) 50%,
      #001531 100%
    ),
    url("./assets/images/roma-web.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll; /* podés cambiar a fixed si querés efecto parallax */
}

/* Asegurar que el contenido quede por encima del fondo */
.banner-principal .row,
.banner-principal .bot-banner,
.banner-principal .vertical-icons {
  position: relative;
  z-index: 2;
}

/* Color base de seguridad (si la imagen no carga) */
.banner-principal::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #001531;
  z-index: 0;
}