.why-us {
    h2 {
        margin-bottom: 60px;
    }
    .items {
        display: flex;
        justify-content: space-between;
        .item {
            display: flex;
            flex-direction: column;
            align-items: center;
            span {
                font-size: 192px;
                line-height: 192px;
                font-family: Jost, sans-serif;
                font-weight: 500;   
            }
            h3 {
                text-align: center;
                margin-top: 20px;
                font-weight: 500;
            }
            &:nth-child(1) {
                span {
                    color: var(--blue);
                }
            }
            &:nth-child(3) {
                span {
                    color: var(--pink);
                }
            }
        }
    }
}
.about {
    position: relative;
    p {
        color: var(--white-70);
    }
    h2 {
        margin-bottom: 60px;
    }
    .items {
        display: flex;
        gap: 80px;
        > div {
            flex: 1 1 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            ul {
                &.mb {
                    margin-bottom: 20px;
                }
            }
        }
    }
    &::before {
        content: '';
        position: absolute;
        left: -80px;
        top: 60px;
        width: 140px;
        height: 100px;
        background: rgba(196, 250, 248, .7);
        filter: blur(68px);
    }
    &::after {
        content: '';
        position: absolute;
        right: 150px;
        top: 290px;
        width: 160px;
        height: 60px;
        background: rgba(247, 205, 240, 0.5);
        filter: blur(50px);
    }
}
@media screen and (max-width: 1720px) {
    .why-us .items .item {
        span {
            font-size: 112px;
            line-height: 112px;
        }
        h3 {
            margin-top: 20px;
        }
    }
}
@media screen and (max-width: 1279px) {
    .why-us .items {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        .item h3 {
            margin-top: 10px;
        }
    }
    .about {
        h2 {
            margin-bottom: 40px;
        }
        .items {
            display: flex;
            gap: 40px;
            flex-direction: column;
        }
        &::after {
            top: auto;
            bottom: 20px;
            right: 50px;
        }
    }
}
@media screen and (max-width: 767px) {
    .why-us {
        h2 {
            margin-bottom: 40px;
        }
        .items {
            .item {
                span {
                    font-size: 72px;
                    line-height: 72px;
                }
            }
        }
    }
}