.wrap-about-section {
    width: 100%;
    overflow: hidden;
}

.about-section {
    box-sizing: border-box;
    margin: 0px auto 0px auto;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    padding: 0px;
}

@media (min-width:1350px) {
    .about-section {
        max-width: 1351px;
    }
}

@media (max-width: 1000px) {
    .about-section {
        width: auto;
    }
}
/*******************************************/
/*                 Seccion 1               */
/*******************************************/
.wrap-about-section-1 {
    background-color: transparent;
    padding-top: 40px;
}

.about-section-1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 0px;
}

.about-section-1 .col1 {
    display: flex;
    justify-content:flex-start;
    align-items: center;
    flex-direction: column;
    padding: 10px;
}

.about-section-1 .col1 article .separator-text {
    width: 100%;
    height: 2px;
    background-color: rgb(0,0,153,.5);
    border-radius: 2px;
}

.about-section-1 .col1 article {
    padding: 10px 20px;
    border-radius: 10px;
    /* background-color: rgb(0,0,153,.1); */
}

.about-section-1 .col1 article h2 {
    text-align: left;
    font-family: 'headm', serif;
    font-size: clamp(24pt, 4vw , 40pt);
    font-weight: 200;
    color: rgb(0,0,153);
    text-shadow: 3px 3px 1px rgb(0,0,153,.1);
}

.about-section-1 .col1 p {
    font-family: 'textm', serif;
    text-align: justify;
    font-weight: 300;
    font-size: clamp(10pt, 1.5vw , 12pt);
}

.wrap-figure-article {
    background-color: transparent;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    margin: 10px 0px 0px 0px;
}

.wrap-figure-article img {
    width: 20%;
}

.about-section-1 .col2 {
    display: flex;
    justify-content: center;
    align-items: center;    
    padding: 40px;
}

.about-section-1 .col2 img {
    width: 80%;
    height: auto;
    border-radius: 10px;
    box-shadow: 5px 5px 1px rgb(0,0,153,.1);
}


@media (max-width:890px) {
    .about-section-1 {
        display: block;
    }
}
/*****************************************************/
/*                    Seccion 2                      */
/*****************************************************/
.wrap-about-section-2 {
    background-color: transparent;
}

.about-section-2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    box-sizing: border-box;
    padding: 0px 20px;
}

.about-section-2 article {
    width: 480px;
    text-align: justify;
    background-color: transparent;
    padding: 10px 20px;
    transition: .5s all;
    /* background-color: rgb(0,0,153,.1); */
    border-radius: 20px;
}

.about-section-2 article .separator-text {
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color: rgb(0,0,153,.5);
}

.about-section-2 article h2 {
    width: 100%;
    text-align: left;
    font-family: 'headm', serif;
    font-weight: 200;
    font-size: clamp(24pt,4vw,26pt);
    border:none;
    padding: 10px 0px;
    color: rgb(0,0,153);
    text-shadow: 3px 3px 1px rgb(0,0,153,.1);
    border-radius: 10px;
}

.about-section-2 article p {
    font-family: 'textm', serif;
    font-weight: 300;
    font-size: clamp(11pt, 1.5vw, 12pt);
    color: #222222;
    padding: 20px;
}

@media (max-width:789px) {
    .about-section-2 {
        gap: 10px;
    }
}
/*********************************************/
/*              Seccion 3                    */
/*********************************************/
.wrap-about-section-3 {
    background-color: transparent;
    padding: 30px 0px;
}

.about-section-3 {
    padding: 0px;
    background-color: transparent;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.about-section-3 h2 {
    width: 100%;
    font-size: clamp(20pt, 4vw, 24pt);
    font-family: 'headm', serif;
    font-weight: 200;
    text-align: center;
    color: rgb(0,0,153);
    line-height: 1.6em;
    margin: 0 0 20px 0;
}

.about-section-3 .values {
    position: relative;
    width: 200px;
    height: auto;
    overflow: hidden;
    padding: 0px;
    display: block;
    z-index: 4000;
}

.about-section-3 .values ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.about-section-3 .values ul li {
    position: inherit;
    margin: 20px 0px;
    font-size: 12pt;
    font-weight: 200;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: pointer;
    letter-spacing: 5px;
    transition: .5s all;
}

.about-section-3 .left ul li {
    text-shadow: -10px 0px 5px #aaaaaa;
}

.about-section-3 .right ul li {
    text-shadow: 10px 0px 5px #aaaaaa;
}


.about-section-3 .left ul li:hover {
    text-shadow: 10px 0px 5px #aaaaaa;
    font-weight: 400;
}

.about-section-3 .right ul li:hover {
    text-shadow: -10px 0px 5px #aaaaaa;
    font-weight: 400;
}

.about-section-3 .left ul li:nth-child(1) {
    padding-right: 10px;
    transform: rotate(10deg);
}

.about-section-3 .left ul li:nth-child(2) {
    padding-right: 20px;
    transform: rotate(5deg);
}

.about-section-3 .left ul li:nth-child(3) {
    padding-right: 30px;
}

.about-section-3 .left ul li:nth-child(4) {
    padding-right: 20px;
    transform: rotate(355deg);
}

.about-section-3 .left ul li:nth-child(5) {
    padding-right: 10px;
    transform: rotate(350deg);
}

.about-section-3 .right ul li:nth-child(1) {
    padding-left: 10px;
    transform: rotate(350deg);
}

.about-section-3 .right ul li:nth-child(2) {
    padding-left: 20px;
    transform: rotate(355deg);
}

.about-section-3 .right ul li:nth-child(3) {
    padding-left: 30px;
}

.about-section-3 .right ul li:nth-child(4) {
    padding-left: 20px;
    transform: rotate(5deg);
}

.about-section-3 .right ul li:nth-child(5) {
    padding-left: 10px;
    transform: rotate(10deg);
}

.about-section-3 .left {
    text-align: right;
}

.about-section-3 .right {
    text-align: left;
    padding-left: 0px;
}

.about-section-3 .logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: rotateShadows 5s infinite linear;
    width: 150px;
    height: 150px;
}

.about-section-3 .logo {
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 100px;
    pointer-events: none;
    animation: 5s boxShadows infinite;
}

.about-section-3 .logo img {
    width: 100%;
    margin: 0px auto;
}

@keyframes boxShadows {
    0% {
        box-shadow: 0px -10px 1px rgb(30,56,168,.1),/*arriba*/
                    10px 0px 1px rgb(30,56,168,.1),/*derecha*/
                    0px 10px 1px rgb(30,56,168,.1),/*abajo*/
                    -10px 0px 1px rgb(30,56,168,.1),/*izquierda*/
                    0px 20px 1px rgb(30,56,168,.1),/*abajo*/
                    20px 0px 1px rgb(30,56,168,.1),/*derecha*/
                    0px -20px 1px rgb(30,56,168,.1),/*arriba*/
                    -20px 0px 1px rgb(30,56,168,.1);/*izquierdo*/
    }
    25% {
        box-shadow: 10px 0px 1px rgb(30,56,168,.1),/*derecha*/
                    0px 10px 1px rgb(30,56,168,.1),/*abajo*/
                    -10px 0px 1px rgb(30,56,168,.1),/*izquierda*/
                    0px -10px 1px rgb(30,56,168,.1),/*arriba*/
                    20px 0px 1px rgb(30,56,168,.1),/*derecha*/
                    0px -20px 1px rgb(30,56,168,.1),/*arriba*/
                    -20px 0px 1px rgb(30,56,168,.1),/*izquierda*/
                    0px 20px 1px rgb(30,56,168,.1);/*abajo*/
    }
    50% {
        box-shadow: 0px 10px 1px rgb(30,56,168,.1),/*abajo*/
                    -10px 0px 1px rgb(30,56,168,.1),/*izquierda*/
                    0px -10px 1px rgb(30,56,168,.1),/*arriba*/
                    10px 0px 1px rgb(30,56,168,.1),/*derecha*/
                    0px -20px 1px rgb(30,56,168,.1),/*arriba*/
                    -20px 0px 1px rgb(30,56,168,.1),/*izquierda*/
                    0px 20px 1px rgb(30,56,168,.1),/*abajo*/
                    20px 0px 1px rgb(30,56,168,.1);/*derecha*/
    }
    75% {
        box-shadow: -10px 0px 1px rgb(30,56,168,.1),/*izquierda*/
                    0px -10px 1px rgb(30,56,168,.1),/*arriba*/
                    10px 0px 1px rgb(30,56,168,.1),/*derecha*/
                    0px 10px 1px rgb(30,56,168,.1),/*abajo*/
                    -20px 0px 1px rgb(30,56,168,.1),/*izquierda*/
                    0px 20px 1px rgb(30,56,168,.1),/*abajo*/
                    20px 0px 1px rgb(30,56,168,.1),/*derecha*/
                    0px -20px 1px rgb(30,56,168,.1);/*arriba*/
    }
    100% {
        box-shadow: 0px -10px 1px rgb(30,56,168,.1),/*Inicia*/
                    10px 0px 1px rgb(30,56,168,.1),
                    0px 10px 1px rgb(30,56,168,.1),
                    -10px 0px 1px rgb(30,56,168,.1),
                    0px 20px 1px rgb(30,56,168,.1),
                    20px 0px 1px rgb(30,56,168,.1),
                    0px -20px 1px rgb(30,56,168,.1),
                    -20px 0px 1px rgb(30,56,168,.1);
    }
}

@media (max-width:690px) {
    .about-section-3 {
        display:block;
    }

    .about-section-3 .values {
        margin: 0px auto;
    }

    .about-section-3 .logo {
        margin: 20px auto;
    }

    .about-section-3 .left ul li:nth-child(even) {
        padding: 0px;
        text-align: center;
        transform: none;
    }

    .about-section-3 .left ul li:nth-child(odd) {
        padding: 0px;
        text-align: center;
        transform: none;
    }

    .about-section-3 .right ul li:nth-child(even) {
        padding: 0px;
        text-align: center;
        transform: none;
    }

    .about-section-3 .right ul li:nth-child(odd) {
        padding: 0px;
        text-align: center;
        transform: none;
    }
}
/************************************************/
/*               Seccion 4                      */
/************************************************/
.wrap-about-section-4 {
    background-color: transparent;
}

.wrap-stars {
    width: 100%;
    height: 100%;
    position: absolute;
    color: aliceblue;
    z-index: 5001;
    opacity: 1;
    top: 0px;
    left: 0px;
}

.about-section-4 {
    position: relative;
    padding-top: 30px;
    padding-bottom: 50px;
    z-index: 5002;
}

.about-section-4 h2 {
    width: 100%;
    text-align: center;
    font-size: clamp(12pt, 1vw + 1rem, 20pt);
    font-family: 'FontHeaders', serif;
    font-weight: 600;
    color: aliceblue;
    margin: 0px;
    position: relative;
}

.linea-tiempo {
    position: relative;
    width: 500px;
    max-width: 95vw;
    height: 100%;
    font-family: Arial;
    margin: 0px auto;
  }
  .momento {
    position: relative;
    width: 45%;
    box-sizing: border-box;
    font-family: 'FontHeaders', serif;
    text-align: center;
  }

  .momento:nth-child(even) {
    left: 55%;
  }

  .linea-tiempo::before {
    content: '';
    position: absolute;
    width: 3px;
    background-color: aliceblue;
    left: 50%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0px 0px 10px #3f6398;
  }
  
  .momento::after {
    content: '';
    position: absolute;
    top: calc(50% + 10px);
    right: calc(-11.11% - 11.5px);
    height: 20px;
    width: 20px;
    background-color: aliceblue;
    border-radius: 50%;
    box-shadow: 0px 0px 10px hwb(216 25% 40%);
  }
  
  .momento:nth-child(even)::after {
    left: calc(-11.11% - 8.5px);
  }

  .momento h3 {
    margin: 10px 0px;
    font-size: 11pt;
    text-align: center;
    font-weight: 500;
    color: aliceblue;
  }
  
  .momento .descripcion {
    background-color: rgb(170,170,170, .5);
    border-radius: 10px;
    padding: 10px;
    line-height: 22px;
    font-size: 10pt;
    color: #fefefe;
    box-shadow: -10px 10px 1px rgb(240, 248, 255, .1);
  }
  
  .momento .descripcion::after {
    content: '';
    position: absolute;
    right: -10px;
    top: calc(50% + 10px);
    height: 0;
    width: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid rgb(170, 170, 170, .5);
  }
  
  .momento:nth-child(even) .descripcion {
    background-color: rgb(63, 99, 152, .5);
    color: #fefefe;
    box-shadow: 10px 10px 1px rgb(63, 99, 152, .1);
  }
  
  .momento:nth-child(even) .descripcion::after{
    left: -10px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid rgb(63, 99, 152, .5);
    border-left: none;
  }
/*************************************************/
/*               Seccion de contacto         */
/*************************************************/
.wrap-about-section-contac {
    background-color: transparent;
    background-image: url(../img/background_contact1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
    z-index: 10;
}
  
.wrap-about-section-contac .overlay {
    background-color: rgb(0,0,0,.6);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 11;
  }
  
  .about-section-contac {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, 1fr);
    padding: 40px;
    position: relative;
    z-index: 12;
  }
  
  .about-section-contac .col1 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .about-section-contac .col1 p {
    font-family: 'textt', serif;
    font-weight: 500;
    color: rgb(255,255,255);
    font-size: clamp(14pt, 1.5vw, 18pt);
    text-align: center;
  }
  
  .about-section-contac .col1 button {
    cursor: pointer;
    background-color: rgb(255,255,255);
    color: rgb(0,0,0,.8);
    border: none;
    border-radius: 20px;
    padding: 10px 25px;
    font-family: 'textt', serif;
    font-weight: 900;
    font-size: 14pt;
    transition: .5s all;
  }
  
  .about-section-contac .col1 button:hover {
    transform: translateY(-3px);
    box-shadow: 0px 4px 10px rgb(255,255,255,.3);
  }
  
  .about-section-contac .col2 {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .about-section-contac .col2 img {
    width: 30%;
    height: auto;
  }

  @media (max-width:730px) {
    .about-section-contac {
        display: block;
    }
  }
/*******************************************************/
/*                     Partners                        */
/*******************************************************/
.wrap-about-section-partners {
    background-color: rgb(6, 9, 34);
  }

  .about-section-partners {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
  }

  .about-section-partners .partner {
    width: 180px;
    display: block;
    padding: 0px;
  }

  .about-section-partener .partner img {
    width: 100%;
    filter: drop-shadow(5px 5px 1px rgb(0,0,0,.1));
  }