.informaton {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background-color: #000000;
    border-bottom: 3px solid #1F2A44;
    box-shadow: 0px 0px 0px #1F2A44, inset 0px 0px 50px #1F2A44;
}

.informaton .title {
    font-size: 30px;
    text-align: center;
    background: linear-gradient(90deg,
        #E6E6E6 0%,
        #E6E6E6 0%,
        #7A8FA3 25%,
        #0F2A62 50%,
        #7A8FA3 75%,
        #E6E6E6 100%
    );
    background-size: 500% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: AnimationInformationTitle 25s linear infinite;
    margin: 0px;
    margin-top: 80px;
    margin-bottom: 0px;
    margin-left: 50px;
    margin-right: 50px;
}

.informaton .description {
    font-size: 19px;
    text-align: center;
    background: linear-gradient(90deg,
        #E6E6E6 0%,
        #E6E6E6 0%,
        #7A8FA3 25%,
        #0F2A62 50%,
        #7A8FA3 75%,
        #E6E6E6 100%
    );
    background-size: 500% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: AnimationInformationTitle 25s linear infinite;
    margin: 0px;
    margin-top: 20px;
    margin-bottom: 100px;
    margin-left: 50px;
    margin-right: 50px;
}


.history {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
}

.history .title {
    color: #E6E6E6;
    font-size: 25px;
    text-align: center;
    margin: 0px;
    margin-left: 20px;
    margin-right: 20px;
}

.history .part-text-start {
    color: #DADADA;
    font-size: 18px;
    line-height: 1.5;
    margin: 0px;
    margin-top: 60px;
}

.history .part-text-normal {
    color: #DADADA;
    font-size: 18px;
    line-height: 1.5;
    margin: 0px;
    margin-top: 35px;
}

.history .part-text-normal-2 {
    color: #DADADA;
    font-size: 18px;
    line-height: 1.5;
    margin: 0px;
    margin-top: 50px;
}

.history .part-text-small {
    color: #DADADA;
    font-size: 18px;
    line-height: 1.5;
    margin: 0px;
    margin-top: 20px;
}

.history .part-text-small-2 {
    color: #DADADA;
    font-size: 18px;
    line-height: 1.5;
    margin: 0px;
    margin-top: 5px;
}

.history .part-title-normal {
    color: #E6E6E6;
    font-size: 20px;
    line-height: 1.3;
    margin: 0px;
    margin-top: 50px;
}

.history .part-list-normal {
    margin: 0px;
    margin-top: 10px;
    padding-inline-start: 20px;
}

.history .part-list-normal-text {
    color: #E6E6E6;
    font-size: 17px;
    line-height: 1.4;
    text-align: start;
}
.history .part-list-normal-text::marker {
    color: #18439E;
}

.history .part-list-small {
    margin: 0px;
    margin-top: 5px;
    padding-inline-start: 20px;
}

.history .part-list-small-text {
    color: #E6E6E6;
    font-size: 17px;
    line-height: 1.4;
    text-align: start;
}
.history .part-list-small-text::marker {
    color: #18439E;
}

.history .part-image-normal {
    margin: 0px;
    margin-top: 50px;
    margin-bottom: 10px;
}

.history .part-image-normal-photo {
    border: 2px solid #1F2A44;
    border-radius: 5px;
    width: 680px;
    height: 350px;
    object-fit: cover;
}


.founders {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    margin-top: 100px;
    margin-bottom: 100px;
    margin-left: auto;
    margin-right: auto;
    border-top: 1px solid #1F2A44;
}

.founders .title {
    color: #E6E6E6;
    font-size: 25px;
    text-align: center;
    margin: 0px;
    margin-top: 80px;
    margin-left: 20px;
    margin-right: 20px;
}

.founders .cards {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 60px;
}

.founders .cards-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #00020A;
    border: 2px solid #0F2A62;
    border-radius: 10px;
    width: 435px;
    height: 300px;
    box-shadow: 0px 0px 0px #0F2A62, inset 0px 0px 30px #0F2A62;
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    transition: all 0.2s;
    will-change: transform, opacity;
}
.founders .cards-card:hover {
    box-shadow: 0px 0px 10px #13357C, inset 0px 0px 30px #13357C;
    transition: box-shadow 0.4s ease;
}

.founders .cards-card.visible {
    opacity: 1;
    transform: scale(1);
}

.founders .cards-card-2 {
    margin-left: 30px;
}

.founders .cards-card-fullname {
    color: #E6E6E6;
    font-size: 20px;
    margin: 0px;
    margin-top: 60px;
}

.founders .cards-card-role {
    color: #18439E;
    font-size: 15px;
    font-weight: 600;
    margin: 0px;
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
}

.founders .cards-card-description {
    color: #BBBBBB;
    font-size: 16px;
    text-align: center;
    margin: 0px;
    margin-top: 30px;
    margin-left: 50px;
    margin-right: 50px;
}


.values {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    padding-bottom: 100px;
    margin-top: 100px;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
    border-top: 1px solid #1F2A44;
}

.values .title {
    color: #E6E6E6;
    font-size: 25px;
    text-align: center;
    margin: 0px;
    margin-top: 80px;
    margin-left: 20px;
    margin-right: 20px;
}

.values .cards {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 60px;
}

.values .cards-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #0A0A0F;
    border: 2px solid #1F2A44;
    border-radius: 10px;
    width: 350px;
    height: 330px;
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    transition: all 0.2s;
    will-change: transform, opacity;
}
.values .cards-card:hover {
    border: 2px solid #13357C;
    transition: all 0.3s ease;
}

.values .cards-card.visible {
    opacity: 1;
    transform: scale(1);
}

.values .cards-card-2 {
    margin-left: 30px;
}

.values .cards-card-3 {
    margin-top: 30px;
}

.values .cards-card-4 {
    margin-top: 30px;
    margin-left: 30px;
}

.values .cards-card-icon {
    display: flex;
}

.values .cards-card-icon-image {
    margin-top: 40px;
    width: 100px;
    margin-bottom: 10px;
}

.values .cards-card-name {
    color: #E6E6E6;
    font-size: 20px;
    margin: 0px;
    margin-top: 10px;
}

.values .cards-card-description {
    color: #BBBBBB;
    font-size: 16px;
    text-align: center;
    margin: 0px;
    margin-top: 20px;
    margin-left: 40px;
    margin-right: 40px;
}



@media (max-width: 950px) {
    .history {
        max-width: auto;
        margin-top: 80px;
        margin-left: 20px;
        margin-right: 20px;
    }
    
    
    .founders  {
        margin-left: 20px;
        margin-right: 20px;
    }
    
    
    .founders .cards {
        gap: 20px;
    }
    
    .founders .cards-card {
        height: auto;
    }

    .founders .cards-card-2 {
        margin: 0px;
    }

    .founders .cards-card-description {
        margin-bottom: 80px;
    }

    
    .values {
        margin-left: 20px;
        margin-right: 20px;
    }
    
    .values .cards {
        gap: 20px;
    }

    .values .cards-card {
        margin: 0px;
    }
}


@media (max-width: 900px) {
    .informaton .title {
        font-size: 28px;
    }
    .informaton .description {
        font-size: 18px;
    }

    
    .founders .title {
        font-size: 23px;
    }

    
    .values .title {
        font-size: 23px;
    }
}


@media (max-width: 770px) {
    .values .cards {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .values .cards-card {
        width: 450px;
        height: 330px;
    }
}


@media (max-width: 750px) {
    .founders .cards {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .values {
        max-width: auto;
    }
}


@media (max-width: 550px) {
    .values .cards {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .values .cards-card {
        width: auto;
        height: 330px;
    }
}


@media (max-width: 500px) {
    .informaton .title {
        font-size: 27px;
    }
    .informaton .description {
        font-size: 17px;
    }
}


@media (max-width: 475px) {
    .founders .cards-card {
        width: auto;
    }

    .founders .cards-card-description {
        margin-left: 35px;
        margin-right: 35px;
    }
}