@import "../components/header.css";
@import "../components/footer.css";
@import "../components/our-service.css";
@import "../components/conact-us.css";
@import "../components/animationns.css";
@import "../components/statistic.css";


.section1--page-about-us {
    padding-top: calc(32px + 80px);
    margin-bottom: 180px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.our-service__content {
    max-width: 550px;
}

.our-service__3d-animation {
    width: 550px;
    height: 550px;
    flex-shrink: 0;
}

.our-service__title {
    color: var(--text-white);
    font-size: 56px;
    font-weight: 600;
    line-height: 130%;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.our-service__title span {
    background: linear-gradient(90deg, #FEB02B 0%, #DD272C 25%, #9D3B8C 50%, #0096D3 74.85%, #06B457 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.our-service__text {
    color: var(--text-gray-2);
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 48px;
}

.our-service__buttons {
    display: flex;
    gap: 20px;
}

.about-us {
    margin-bottom: 180px;
}

.about-us__title {
    color: var(--text-white);
    text-align: center;
    font-size: 48px;
    font-weight: 600;
    line-height: 130%;
    text-transform: capitalize;
    margin-bottom: 16px;
}

.about-us__title span {
    background: linear-gradient(90deg, #DD272C -11.81%, #9D3B8C 50%, #0096D3 111.81%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-us__text {
    max-width: 930px;
    margin: 0 auto 64px;
    color: var(--text-gray-2);
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
}

.about-us__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.about-us__list-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 12px;
    padding: 24px 16px;
}

.about-us__list-item:nth-child(1) {
    border: 1px solid #DD272C;
    background: linear-gradient(90deg, rgba(221, 39, 44, 0.10) -25%, rgba(157, 59, 140, 0.10) 125%);
}

.about-us__list-item:nth-child(2) {
    border: 1px solid #9D3B8C;
    background: linear-gradient(90deg, rgba(157, 59, 140, 0.10) -50%, rgba(0, 150, 211, 0.10) 150%);
}

.about-us__list-item:nth-child(3) {
    border: 1px solid #0096D3;
    background: linear-gradient(90deg, rgba(0, 150, 211, 0.10) -25%, rgba(6, 180, 87, 0.10) 125%);
}

.about-us__list-item:nth-child(4) {
    border: 1px solid #FEB02B;
    background: linear-gradient(90deg, rgba(254, 176, 43, 0.10) -37.5%, rgba(221, 39, 44, 0.10) 137.5%);
}

.about-us__list-item img {
    margin-bottom: 24px;
}

.about-us__list-item h4 {
    color: var(--text-white);
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    line-height: 130%;
    text-transform: capitalize;
    margin-bottom: 12px;
}

.about-us__list-item p {
    color: var(--text-gray-2);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
}

.page-about-us .section6 {
    margin-bottom: 180px;
}


@media screen and (max-width: 1024px) {
    .section1--page-about-us {
        flex-direction: column-reverse;
        align-items: unset;
    }

    .our-service__content {
        max-width: 100%;
    }

    .our-service__3d-animation {
        margin-inline: auto;
        pointer-events: none;
    }

    .section1--page-about-us {
        margin-bottom: 160px;
    }

    .about-us__list {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 768px) {


    .section1--page-about-us {
        align-items: center;
        margin-bottom: 120px;
        padding-top: 40px;
    }

    .our-service__3d-animation {
        transform-origin: center;
        width: 100%;
        height: auto;
        max-width: 450px;
    }

    .our-service__3d-animation video{
        transform: scale(1.3);
    }

    .our-service__title {
        font-size: 36px;
        margin-bottom: 8px;
    }

    .our-service__text {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .about-us {
        margin-bottom: 100px;
    }

    .page-about-us .section6 {
        margin-bottom: 120px;
    }

    .about-us__title {
        font-size: 32px;
    }

    .about-us__text {
        font-size: 16px;
        margin-bottom: 48px;
    }
}

@media screen and (max-width: 580px) {
    .about-us__list {
        grid-template-columns: 1fr;
    }

    .about-us__list-item {
        /*padding: 24px;*/
    }

    .about-us__list-item h4 {
        font-size: 18px;
    }
}

@media screen and (max-width: 440px) {
    .section1--page-about-us {
        padding-top: 60px;
    }

    .page-about-us .our-service__buttons > div {
        flex: 1;
    }

    .page-about-us .our-service__buttons button {
        width: 100%;
    }

    .our-service__3d-animation {
        transform-origin: center;
        width: 100%;
        height: auto;
        max-width: 320px;
        margin-bottom: 0;
    }
}