.informaton {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background-color: #000000;
    position: relative;
    z-index: 0;
    margin-bottom: 60px;
    overflow: hidden;
}
.informaton::before,
.informaton::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    /* height: 115%; */
    width: 78%;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    pointer-events: none;
    opacity: 0.85;
}
.informaton::before {
    left: 0px;
    height: 250px;
    background-image: url('/assets/img/home/background_left.png');
    background-position: left center;
}
.informaton::after {
    right: 0px;
    height: 250px;
    background-image: url('/assets/img/home/background_right.png');
    background-position: right center;
}

.informaton .company {
    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;
    font-size: 35px;
    text-align: center;
    margin-top: 80px;
    margin-bottom: 0px;
    margin-left: 50px;
    margin-right: 50px;
}

.informaton .slogan {
    background: linear-gradient(90deg,
        #BBBBBB 0%,
        #BBBBBB 0%,
        #7A8FA3 25%,
        #0F2A62 50%,
        #7A8FA3 75%,
        #BBBBBB 100%
    );
    background-size: 500% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: AnimationInformationTitle 25s linear infinite;
    font-size: 22px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 70px;
    margin-left: 50px;
    margin-right: 50px;
}


.products {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 80px;
}

.products .product {
    background-color: transparent;
    padding-bottom: 50px;
    max-width: 1200px;
    height: 500px;
    margin-left: 30px;
    margin-right: 30px;
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    transition: all 0.1s;
    will-change: transform, opacity;
}
.products .product:hover {
    transform: scale(1.005);
    transition: transform 0.2s ease;
}

.products .product.visible {
    opacity: 1;
    transform: scale(1);
}

.products .product-main {
    display: flex;
    flex-direction: row;
    background-color: #0A0A0F;
    border: 2px solid #1F2A44;
    border-radius: 20px;
    margin-bottom: 25px;
    will-change: transform, opacity;
    transition: all 0.2s;
}
.products .product-main:hover {
    border: 2px solid #13357C;
    box-shadow: 0px 0px 30px #13357C, inset 0px 0px 0px #13357C;
    transition: all 0.5s ease;
}

.products .product-popular .product-main {
    border: 2px solid #13357C;
    box-shadow: 0px 0px 30px #1F2A44, inset 0px 0px 0px #1F2A44;
    transition: all 0.2s;
}
.products .product-popular .product-main:hover {
    border: 2px solid #13357C;
    box-shadow: 0px 0px 30px #13357C, inset 0px 0px 0px #13357C;
    transition: all 0.4s ease;
}

.products .product-main-info {
    display: flex;
    flex-direction: row;
}

.products .product-main-info-management {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    margin-left: 40px;
}

.products .product-main-info-management-data-photo {
    width: 220px;
    height: 220px;
    background-color: #00030F;
    border: 2px solid #1F2A44;
    border-radius: 10px;
    padding: 30px;
    margin-left: auto;
    margin-right: auto;
}

.products .product-main-info-management-data-name {
    font-size: 22px;
    text-align: center;
    margin: 0px;
    margin-top: 10px;
}

.products .product-main-info-management-more {
    color: #BBBBBB;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    background-color: #0C1437;
    border: 2px solid #0F2A62;
    border-radius: 6px;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 50px;
    padding-right: 50px;
    margin-top: 37px;
    margin-bottom: 40px;
    transition: all 0.2s ease;
}
.products .product-main-info-management-more:hover {
    color: #E6E6E6;
    background-color: #0E1844;
    border: 2px solid #0F2A62;
}

.products .product-main-info-management-more i {
    color: #BBBBBB;
    font-size: 16px;
    margin-right: 5px;
    transition: all 0.2s ease;
}
.products .product-main-info-management-more:hover i {
    color: #E6E6E6;
}

.products .product-main-info-details {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    margin-bottom: 40px;
    margin-left: 40px;
    margin-right: 40px;
}

.products .product-main-info-details-description {
    color: #BBBBBB;
    font-size: 17px;
    background-color: #0F1626;
    border: 2px solid #1F2A44;
    border-radius: 10px;
    margin: 0px;
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    width: 852px;
    height: 220px;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
}
.products .product-main-info-details-description::-webkit-scrollbar {
    width: 10px;
    margin-right: 10px;
}
.products .product-main-info-details-description::-webkit-scrollbar-thumb {
    background-color: #1F2A44;
    border-top-left-radius: 10px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 5px;
}

.products .product-main-info-details-description i {
    color: #18439E;
    font-size: 18px;
    margin-right: 5px;
}

.products .product-main-info-details-description-part-start {
    color: #E6E6E6;
    font-size: 18px;
    margin: 0px;
}

.products .product-main-info-details-description-part-middle {
    color: #D4D4D4;
    font-size: 16px;
    margin: 0px;
    margin-top: 20px;
}

.products .product-main-info-details-description-part-end {
    color: #BBBBBB;
    font-size: 17px;
    margin: 0px;
    margin-top: 30px;
}

.products .product-main-info-details-features {
    display: flex;
    flex-direction: row;
    margin-top: 48px;
}

.products .product-main-info-details-features-feature-1,
.products .product-main-info-details-features-feature-2,
.products .product-main-info-details-features-feature-3 {
    display: flex;
    flex-direction: row;
    text-decoration: none;
    background-color: #0A0F1F;
    border: 2px solid #1F2A44;
    border-radius: 10px;
    width: 100%;
    transition: all 0.2s;
}
.products .product-main-info-details-features-feature-1:hover,
.products .product-main-info-details-features-feature-2:hover,
.products .product-main-info-details-features-feature-3:hover {
    background-color: #111827;
    border: 2px solid #13357C;
    transition: all 0.3s;
}

.products .product-main-info-details-features-feature-1,
.products .product-main-info-details-features-feature-2 {
    margin-right: 46px;
}

.products .product-main-info-details-features-feature-icon {
    width: 90px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: -5px;
}

.products .product-main-info-details-features-feature-description {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #E6E6E6;
    font-size: 18px;
    width: 135px;
    margin-right: 30px;
}


.why-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 3px solid #1F2A44;
    border-bottom: 3px solid #1F2A44;
    box-shadow: 0px 0px 100px #1F2A44, inset 0px 0px 0px #1F2A44;
}

.why-cards .title {
    color: #E6E6E6;
    font-size: 25px;
    text-align: center;
    margin: 0px;
    margin-top: 80px;
    margin-bottom: 60px;
    margin-left: 50px;
    margin-right: 50px;
}

.why-cards .cards-1,
.why-cards .cards-2 {
    display: flex;
    flex-direction: row;
}

.why-cards .cards-2 {
    margin-top: 30px;
    margin-bottom: 80px;
}

.why-cards .cards-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #0A0A0F;
    border: 2px solid #1F2A44;
    border-radius: 10px;
    width: 400px;
    height: 380px;
    box-shadow: 0px 0px 0px #1F2A44, inset 0px 0px 30px #1F2A44;
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    transition: all 0.2s;
    will-change: transform, opacity;
}
.why-cards .cards-card:hover {
    border: 2px solid #13357C;
    box-shadow: 0px 0px 30px #13357C, inset 0px 0px 0px #13357C;
    transform: translateY(-5px);
    transition: box-shadow transform 0.2s ease;
}

.why-cards .cards-card.visible {
    opacity: 1;
    transform: scale(1);
}

.why-cards .card-2 {
    margin-left: 30px;
}

.why-cards .cards-card-icon {
    display: flex;
    margin-top: 40px;
    margin-bottom: 10px;
}

.why-cards .cards-card-icon-image {
    width: 100px;
}

.why-cards .cards-card-title {
    color: #E6E6E6;
    font-size: 20px;
    text-align: center;
    margin: 0px;
    margin-top: 10px;
    margin-left: 50px;
    margin-right: 50px;
}

.why-cards .cards-card-description {
    color: #BBBBBB;
    font-size: 16px;
    text-align: center;
    margin: 0px;
    margin-top: 20px;
    margin-left: 50px;
    margin-right: 50px;
}


.faq {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* border-top: 3px solid #1F2A44; */
    /* box-shadow: 0px 0px 70px #1F2A44, inset 0px 0px 0px #1F2A44; */
}

.faq .title {
    color: #E6E6E6;
    font-size: 25px;
    text-align: center;
    margin: 0px;
    margin-top: 100px;
    margin-bottom: 60px;
    margin-left: 50px;
    margin-right: 50px;
}

.faq .card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: #0A0A0F;
    border: 2px solid #1F2A44;
    border-radius: 10px;
    width: 500px;
    height: 280px;
    margin-bottom: 100px;
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    transition: all 0.2s;
    will-change: transform, opacity;
}
.faq .card:hover {
    border: 2px solid #13357C;
    transition: border 0.5s ease;
}

.faq .card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.faq .card-description {
    color: #BBBBBB;
    font-size: 18px;
    text-align: center;
    margin: 0px;
    margin-top: 50px;
    margin-bottom: 20px;
    margin-left: 50px;
    margin-right: 50px;
}

.faq .card-open {
    color: #BBBBBB;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    background-color: #0C1437;
    border: 2px solid #0F2A62;
    border-radius: 6px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 50px;
    padding-right: 50px;
    margin-bottom: 50px;
    transition: all 0.2s ease;
}
.faq .card-open:hover {
    color: #E6E6E6;
    background-color: #0E1844;
    border: 2px solid #0F2A62;
}

.faq .card-open i {
    color: #BBBBBB;
    font-size: 16px;
    margin-right: 5px;
    transition: all 0.2s ease;
}
.faq .card-open-button:hover i {
    color: #E6E6E6;
}



@media (max-width: 1300px) {
    .products .product {
        display: flex;
        max-height: 427px;
        padding: 0px;
        margin: 0px;
        margin-bottom: 40px;
    }
    .products .product-main {
        padding: 0px;
        margin: 0px;
    }

    .products .product-main-info-management-more {
        margin-top: 22px;
    }

    .products .product-main-info-details {
        margin-left: 30px;
    }
        
    .products .product-main-info-details-description {
        width: 800px;
    }

    .products .product-main-info-details-features {
        margin-top: 30px;
    }

    .products .product-main-info-details-features-feature-1,
    .products .product-main-info-details-features-feature-2 {
        margin-right: 20px;
    }
}


@media (max-width: 1200px) {
    .informaton::before {
        background-image: url('/assets/img/home/background_left_2.png');
    }
    .informaton::after {
        background-image: url('/assets/img/home/background_right_2.png');
    }


    .products .product {
        margin-bottom: 80px;
        max-height: 1000px;
    }

    .products .product-main {
        height: 107%;
    }

    .products .product-main-info-management {
        display: flex;
        flex-direction: column;
    }

    .products .product-main-info-management-data-photo {
        width: 200px;
        height: 200px;
    }

    .products .product-main-info-management-data-name {
        font-size: 20px;
    }

    .products .product-main-info-management-more {
        padding-left: 42px;
        padding-right: 42px;
        margin-top: 30px;
    }

    .products .product-main-info-management-more {
        font-size: 15px;
    }

    .products .product-main-info-management-more i {
        font-size: 15px;
    }

    .products .product-main-info-details {
        display: flex;
        flex-direction: column;
    }

    .products .product-main-info-details-description {
        width: 569px;
        min-height: 330px;
    }

    .products .product-main-info-details-description i {
        font-size: 17px;
        margin-right: 5px;
    }

    .products .product-main-info-details-description-part-start {
        font-size: 17px;
    }

    .products .product-main-info-details-description-part-middle {
        font-size: 16px;
        margin-top: 25px;
    }

    .products .product-main-info-details-description-part-end {
        font-size: 16px;
        margin-top: 40px;
    }

    .products .product-main-info-details-features {
        margin-left: -230px;
    }

    .products .product-main-info-details-features-feature-description {
        font-size: 17px;
    }
}


@media (max-width: 950px) {
    .products .product {
        margin-bottom: 65px;
    }

    .products .product-main-info-details-description {
        width: 419px;
    }
    
    .products .product-main-info-details-features-feature-1,
    .products .product-main-info-details-features-feature-2,
    .products .product-main-info-details-features-feature-3 {
        width: auto;
    }

    .products .product-main-info-details-features-feature-icon {
        width: 75px;
    }

    .products .product-main-info-details-features-feature-description {
        color: #E6E6E6;
        font-size: 14px;
        font-weight: 600;
        width: 100px;
        margin-right: 30px;
    }
}


@media (max-width: 900px) {
    .informaton .company {
        font-size: 28px;
    }
    .informaton .slogan {
        font-size: 18px;
    }

    
    .why-cards .title {
        font-size: 23px;
    }


    .faq .title {
        font-size: 23px;
    }
}


@media (max-width: 880px) {
    .why-cards .cards-1,
    .why-cards .cards-2 {
        display: flex;
        flex-direction: column;
    }
    
    .why-cards .cards-2 {
        margin: 0px;
        margin-top: 30px;
        margin-bottom: 80px;
    }

    .why-cards .card-2 {
        margin: 0px;
        margin-top: 30px;
    }
}


@media (max-width: 820px) {
    .informaton::before {
        background-image: url('/assets/img/home/background_left_3.png');
    }
    .informaton::after {
        background-image: url('/assets/img/home/background_right_3.png');
    }
}


@media (max-width: 780px) {
    .products .product {
        margin-bottom: -55px;
    }

    .products .product-main {
        height: 83%;
    }

    .products .product-main-info-management-data-name {
        font-size: 20px;
    }

    .products .product-main-info-details-description {
        width: 350px;
    }

    .products .product-main-info-details-description i {
        font-size: 16px;
        margin-right: 5px;
    }

    .products .product-main-info-details-description-part-start {
        font-size: 16px;
    }

    .products .product-main-info-details-description-part-middle {
        font-size: 15px;
        margin-top: 15px;
    }

    .products .product-main-info-details-description-part-end {
        font-size: 15px;
        margin-top: 25px;
    }
    
    .products .product-main-info-details-features {
        display: none;
    }
}


@media (max-width: 700px) {
    .products .product {
        margin-bottom: 30px;
        height: auto;
    }

    .products .product-main {
        height: 100%;
        width: 100%;
    }
    
    .products .product-main-info {
        display: flex;
        flex-direction: column;
    }

    .products .product-main-info-management {
        margin: 0px;
    }

    .products .product-main-info-management-data-photo {
        width: 205px;
        height: 205px;
        margin-top: 30px;
    }

    .products .product-main-info-management-more {
        text-align: center;
        position: relative;
        top: 385px;
        width: 85%;
        margin: 0px;
        margin-left: 30px;
        margin-right: 30px;
    }

    .products .product-main-info-details {
        position: relative;
        top: -35px;
        margin-top: 0px;
        margin-bottom: 85px;
        margin-left: 30px;
        margin-right: 30px;
    }
}


@media (max-width: 500px) {
    .informaton .company {
        font-size: 27px;
    }
    .informaton .slogan {
        font-size: 17px;
    }
}


@media (max-width: 450px) {
    .faq .card {
        width: auto;
        height: auto;
        margin-left: 20px;
        margin-right: 20px;
    }
}


@media (max-width: 450px) {
    .products .product-main {
        margin-left: 20px;
        margin-right: 20px;
    }

    .products .product-main-info-management-data-photo {
        margin-left: 20px;
        margin-right: 20px;
    }

    .products .product-main-info-management-more {
        top: 425px;
    }

    .products .product-main-info-details-description {
        width: auto;
        min-height: 370px;
    }


    .why-cards .cards-card {
        width: auto;
        height: auto;
        margin-left: 20px;
        margin-right: 20px;
    }

    .why-cards .cards-card-description {
        margin-bottom: 80px;
    }
}