/* Animacion de Carga */
@keyframes loader 
{
    from 
    {
      transform: translate(-50%, -50%) rotate(0deg);
    }
  
    to 
    {
      transform: translate(-50%, -50%) rotate(360deg);
    }
}

body.no-scroll
{
    overflow: hidden;
}

.content 
{
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    gap: 20px;
    padding: 80px 0px 20px 0px;
    z-index: 0;
}

.content .section 
{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
}

.content .section .color 
{
    position: absolute;
    width: calc(100% - 40px);
    height: 100%;
    left: 20px;
    border-radius: 10px;
}

.content .section .color.no-full
{
    height: calc(100% - 60px);
    gap: 30px;
} 

.content .section .color.primary
{
    background: var(--transparent1);
}

.content .section .color.secondary
{
    background: var(--transparent2);
}

.content .section .color.tertiary
{
    background: var(--transparent3);
}

.content .section .section-body
{
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
    margin: 20px 0px;
    overflow: hidden;
}

.content .section .section-body.of-visible
{
    overflow: visible;
}

.content .section .section-body .header-img
{
    position: relative;
    display: flex;
    height: calc(100vw/2.74);
    overflow: hidden;
}

.content .section .section-body .header-img img
{
    position: absolute;
    width: 100%;
    height: auto;
    top: -30px;
    object-fit: contain;
}

.content .section .section-body .header-img .header-paralax
{
    position: absolute;
    display: flex;
    justify-content: left;
    align-items: baseline;
    width: 100%;
    top: 30px;
    padding-left: 20px;
}

.content .section .header-img .header-paralax p
{
    font-size: 64px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--sit1);
    text-shadow: 2px 7px 5px rgba(0,0,0,0.7), 
    0px -4px 10px rgba(255,255,255,0.3);
}

.content .section .header-img .header-paralax .paralax-img
{
    position: relative;
    width: auto;
    height: 100px;
    top: 0px;
    object-fit: contain;
}

.content .section .section-body .header-img .header-paralax svg
{
    height: 100px;
}

.content .section .section-body .section-title
{
    position: relative;
    width: 100%;
    text-align: center;
}

.content .section .section-body .section-title p
{
    font-size: 28px;
    font-weight: 600;
}

.content .section .section-body .section-title p.primary
{
    color: var(--sit1);
}

.content .section .section-body .section-title p.secondary
{
    color: var(--sit2);
}

.content .section .section-body .section-title p.tertiary
{
    color: var(--sit3);
}

.content .section .outstanding-news
{
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}
  
.content .section .outstanding-carousel 
{
    display: flex;
    width: 100%;
    transition: transform .5s ease;
    gap: 20px;
}
  
.content .section .outstanding-carousel .carousel-element
{
    display: flex;
    flex-direction: row;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.content .section .outstanding-carousel.three .carousel-element
{
    min-width: calc(100%/3 - 40px/3);
}

.content .section .outstanding-carousel.two .carousel-element
{
    min-width: calc(100%/2 - 10px);
}

.content .section .outstanding-carousel.one .carousel-element
{
    min-width: calc(100%);
}
  
.content .section .outstanding-carousel .carousel-element img,
.content .section .outstanding-carousel .carousel-element video
{
    width: 100%;
    object-fit: contain;
}

.content .section .carousel-element .carousel-element-more
{
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    top: 0;
    width: 33%;
    height: 0%;
    border-radius: 10px;
    transition: var(--transicion2);
    overflow: hidden;
}

.content .section .outstanding-carousel.three .carousel-element .carousel-element-more
{
    width: calc(100%/3 - 40px/3);
}

.content .section .outstanding-carousel.two .carousel-element .carousel-element-more
{
    width: calc(100%/2 - 10px);
}

.content .section .outstanding-carousel.one .carousel-element .carousel-element-more
{
    width: calc(100%);
}

.content .section .carousel-element:hover .carousel-element-more
{
    height: 100%;
}

.content .section .carousel-element .carousel-element-more::before
{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background: var(--black);
    opacity: .6;
}

.content .section .carousel-element-more p
{
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

.content .section .carousel-element-more .more-header
{
    position: relative;
    display: flex;
    width: 100%;
    padding: 20px;
    text-align: left;
}

.content .section .carousel-element-more .more-footer
{
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    gap: 20px;
}

.content .section .carousel-element-more .more-footer .footer-element
{
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.content .section .carousel-element-more .more-footer .footer-element i
{
    font-size: 20px;
    color: var(--white);
}

.content .section .carousel-element-more .more-footer .footer-element p
{
    font-size: 14px;
}

.content .section .outstanding-news .prev,
.content .section .outstanding-news .next 
{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    border: 4px solid var(--white);
    background: var(--sit3);
    border-radius: 50%;
    cursor: pointer;
}
  
.content .section .outstanding-news .prev 
{
    left: 1px;
}
  
.content .section .outstanding-news .next 
{
    right: 1px;
}
  
.content .section .outstanding-news .prev i,
.content .section .outstanding-news .next i 
{
    font-size: 22px;
    color: var(--white);
}

.content .section .projects-list
{
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    height: auto;
    gap: 20px;
}

.content .section .projects-list .project-element
{
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 20px;
    gap: 20px;
    border-radius: 10px;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transicion2);
    cursor: pointer;
}

.content .section .projects-list .project-element.hover
{
    transform: scale(1.03);
    box-shadow: var(--shadowPrincipal);
}

.content .section .projects-list .project-element.un-hover
{
    transform: scale(0.97);
    filter: blur(3px);
}

.content .section .projects-list .project-element img
{
    width: 100%;
    height: auto;
    object-fit: contain;
}

.content .section .projects-list .project-data
{
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
}

.content .section .projects-list .project-data .project-name
{
    position: relative;
    width: 100%;
}

.content .section .projects-list .project-data .project-name p
{
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
}

.content .section .projects-list .project-data .project-location
{
    position: relative;
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 10px;
}

.content .section .projects-list .project-data .project-location i
{
    font-size: 24px;
    color: var(--sit1);
}

.content .section .projects-list .project-data .project-location p
{
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
}

.content .section .project-button,
.content .section .news-button
{
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
}

.content .section .project-button button,
.content .section .news-button button
{
    font-size: 16px;
    font-weight: 600;
    padding: 10px;
    border: none;
    border-radius: 10px;
    background: var(--sit1);
    color: var(--white);
    cursor: pointer;
}

.content .section .projects-statistics
{
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
}

.content .section .projects-statistics .statistics
{
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 1000px;
    height: 125px;
    padding: 20px;
    gap: 40px;
    border-radius: 10px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.content .section .statistics .statistics-group
{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 100%;
    gap: 40px;
}

.content .section .statistics .statistic-element
{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    gap: 5px;
    cursor: pointer;
}

.content .section .statistics .statistic-element i
{
    font-size: 38px;
    color: var(--sit2);
    transition: var(--transicion2);
}

.content .section .statistics .statistic-element svg 
{
    width: auto;
    height: 45px;
    transition: var(--transicion2);
    fill: var(--sit2);
}

.content .section .statistics .statistic-element p
{
    font-size: 22px;
    font-weight: 600;
    color: var(--sit3);
    transition: var(--transicion2);
}

.content .section .statistics .statistic-element:hover i
{
    font-size: 28px;
}

.content .section .statistics .statistic-element:hover svg
{
    height: 28px;
}

.content .section .statistics .statistic-element:hover p
{
    font-size: 16px;
    color: var(--sit2);
}

.content .section .statistics .statistic-element .hidden-descriptor
{
    position: relative;
    display: flex;
    text-align: center;
    width: auto;
    height: 0px;
    overflow: hidden;
    transition: var(--transicion2);
}

.content .section .statistics .statistic-element .hidden-descriptor p
{
    font-size: 14px;
    font-weight: 500;
    color: var(--sit2);
    transition: var(--transicion2);
}

.content .section .statistics .statistic-element:hover .hidden-descriptor
{
    height: 20px;
}

.content .section .statistics .statistic-element:hover .hidden-descriptor p
{
    color: var(--sit1);
}

.content .section .projects-statistics .statistics .line
{
    position: relative;
    min-width: 3px;
    height: 85%;
    border-radius: 5px;
    background: var(--sit1);
}

.content .section .news-list
{
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    height: auto;
    gap: 20px;
}

.content .section .news-list .new-element
{
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    border-radius: 10px;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transicion2);
    overflow: hidden;
    cursor: pointer;
}

.content .section .news-list .new-element img
{
    width: 100%;
    height: auto;
    object-fit: contain;
}

.content .section .news-list .new-element .new-detail
{
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 20px;
    gap: 20px;
}

.content .section .news-list .new-element .new-title
{
    position: relative;
    width: 100%;
    height: 50px;
}

.content .section .news-list .new-element .new-title p
{
    font-size: 16px;
    font-weight: 600;
    color: var(--black);    
    display: -webkit-box;
    width: 100%;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.content .section .news-list .new-date
{
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.content .section .news-list .new-date i
{
    font-size: 24px;
    color: var(--sit3);
}

.content .section .news-list .new-date p
{
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
}

.content .section .new-element .new-hidden
{
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    bottom: 0;
    width: 100%;
    height: 0%;
    padding: 0;
    border-radius: 10px;
    transition: var(--transicion2);
    overflow: hidden;
}

.content .section .new-element:hover .new-hidden
{
    height: 100%;
    padding: 20px;
}

.content .section .new-element .new-hidden::before
{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--black);
    opacity: .6;
}

.content .section .new-element .new-hidden .new-hidden-body
{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: calc(100% - 24px);
    gap: 10px;
    transition: var(--transicion2);
    overflow: hidden;
    opacity: 0;
}

.content .section .new-element .new-hidden i,
.content .section .new-element .new-hidden p
{
    color: var(--white);
}

.content .section .new-element .new-hidden .new-hidden-body i
{
    font-size: 30px;
}

.content .section .new-element .new-hidden .new-hidden-body p
{
    font-size: 18px;
    font-weight: 600;
}

.content .section .new-element .new-hidden .new-hidden-footer
{
    position: relative;
    display: flex;
    width: 100%;
    justify-content: flex-end;
    gap: 10px;
    transition: var(--transicion2);
    overflow: hidden;
    opacity: 0;
}

.content .section .new-element .new-hidden .new-hidden-footer i
{
    font-size: 24px;
}

.content .section .new-element .new-hidden .new-hidden-footer p
{
    font-size: 16px;
    font-weight: 600;
}

.content .section .new-element:hover .new-hidden .new-hidden-body,
.content .section .new-element:hover .new-hidden .new-hidden-footer
{
    opacity: 1;
}

.content .section .news-button button
{
    background: var(--sit3);
}

@media (max-width: 1000px)
{
    .content .section .section-body .header-img .header-paralax svg
    {
        height: 70px;
    }
    .content .section .statistics .statistic-element p
    {
        font-size: 16px;
    }
}

@media (max-width: 850px)
{
    .content .section .header-img .header-paralax p
    {
        font-size: 48px;
    }

    .content .section .header-img .header-paralax .paralax-img
    {
        height: 65px;
    }
    .content .section .section-body .header-img .header-paralax svg
    {
        height: 55px;
    }

    .content .section .projects-list,
    .content .section .news-list
    {
        grid-template-columns: repeat(2, 1.5fr);
    }

    .content .section .projects-statistics .statistics 
    {
        gap: 20px;
    }
}

@media (max-width: 550px)
{
    .content .section .header-img .header-paralax p
    {
        font-size: 30px;
    }

    .content .section .header-img .header-paralax .paralax-img
    {
        height: 45px;
    }

    .content .section .section-body .header-img .header-paralax svg
    {
        height: 35px;
    }
    
    .content .section .section-body .section-title p
    {
        font-size: 24px;
    }

    .content .section .section-body
    {
        width: calc(100% - 20px);
    }

    .content .section .section-body.full
    {
        width: 100%;
    }

    .content .section .projects-list,
    .content .section .news-list
    {
        grid-template-columns: repeat(1, 3fr);
    }

    .content .section .projects-statistics .statistics 
    {
        flex-direction: column;
        width: calc(100% - 60px);
        height: 240px;
        gap: 20px;
    }

    .content .section .statistics .statistics-group
    {
        width: 100%;
        gap: 20px;
        height: 110px;
    }

    .content .section .statistics .medium
    {
        position: unset;
        display: none;
    }
}

/* Loader que carga al ingresar a la pagina */
.loader
{
    position: fixed;
    top: 0;
    height: 100vh;
    width: 100vw;
    z-index: 15;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1.2s;
    opacity: 1;
    z-index: 1000;
}
/* Se oculta loader */
.loader.hide
{
    opacity: 0;
}
/* Imagen del loader */
.loader .img-loader
{
    position: absolute;
    width: 80px;
}
/* Contenido del loader */
.lcontainer 
{
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    height: 130px;
    width: 130px;
    animation: loader 1.2s linear infinite;
    background-color: var(--white);
    background-image: var(--gradiant);
}
.lcontainer span 
{
    position: absolute;
    border-radius: 50%;
    height: 100%;
    width: 100%;
    background-color: var(--white);
    background-image: var(--gradiant);;
}
.lcontainer span:nth-of-type(1) 
{
    filter: blur(5px);
} 
.lcontainer span:nth-of-type(2) 
{
    filter: blur(10px);
} 
.lcontainer span:nth-of-type(3) 
{
    filter: blur(25px);
} 
.lcontainer span:nth-of-type(4) 
{
    filter: blur(50px);
}
.lcontainer::after 
{
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    opacity: 0.7;
    background-color: #fff;
    border: solid 5px #ffffff;
    border-radius: 50%;
}

/* Mensaje de notificacion */
.toast {
    position: fixed;
    top: 25px;
    right: 30px;
    display: none;
    border-radius: 12px;
    background: #fff;
    padding: 20px 35px 20px 25px;
    box-shadow: 0 7px 25px rgba(0, 0, 0, 0.487);
    background-origin: border-box;
    overflow: hidden;
    transform: translateX(calc(100% + 30px));
    animation: animate-color 5s linear forwards;
    border-left: 6px solid currentColor;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
    z-index: 400;
}

/* Se muestra mensaje */
.toast.active {
    transform: translateX(0%);
}

/* Contenido del mensaje */
.toast .toast-content {
    display: flex;
    align-items: center;
}

/* Icono del mensaje */
.toast-content .check {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 35px;
    min-width: 35px;
    border-radius: 50%;
}

/* Estilo para icono de exito */
.toast-content .check.nice {
    background: var(--gradiant);
}

/* Estilo para icono de error */
.toast-content .check.error {
    background-color: var(--sit3);
}

/* Estilo del icono */
.toast-content .check .icon {
    color: #fff;
    width: 23px;
    height: 23px;
}

/* Texto del mensaje */
.toast-content .message {
    display: flex;
    flex-direction: column;
    margin: 0 20px;
}

/* Estilo de span */
.toast .message .text {
    font-size: 18px;
    font-weight: 400;
    color: #666666;
}

/* Estilo del titulo del mensaje */
.toast .message .text.text-1 {
    font-weight: 600;
    color: #333;
}

/* Boton para cerrar mensaje */
.toast .close {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 35px;
    height: 35px;
    padding: 5px;
    cursor: pointer;
    opacity: 0.7;
}

.toast .close:hover {
    opacity: 1;
}

/* Barra de progreso del mensaje */
.toast .progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 6px;
    width: 100%;
    background: #ddd;
}

.toast .progress:before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: var(--gradiant);
}

.toast .progress.active:before {
    animation: progress 5s linear forwards;
}