#site-about {
    padding: 70px 0px;
}

.site-about-title-wrap {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.site-micro-title {
    text-transform: uppercase;
    border-radius: 40px;
    border: 1px solid var(--site-border);
    height: fit-content;
    width: fit-content;
    padding: 6px 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.site-micro-title svg {
    width: auto;
    height: 1em;
    display: inline-block;
    fill: var(--site-primary);
}

.site-large-description {
    font-size: 40px;
    color: #fff;
}

.site-about-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 50px;
    border: 1px solid var(--site-border);
    border-radius: 16px;
    overflow: hidden;
}


.site-about-item {
    padding: 50px;
    background: var(--site-background);
    position: relative;
    text-align: center;
    overflow: hidden;
}


.site-about-item:is(:nth-child(1), :nth-child(2))::before,
.site-about-item:is(:nth-child(1), :nth-child(2))::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 30%;
    right: 0;
}

.site-about-item:is(:nth-child(1), :nth-child(2))::before {
    background: linear-gradient(to top, transparent, var(--site-primary) 300%);   
    top: 0;
}

.site-about-item:is(:nth-child(1), :nth-child(2))::after {
    background: linear-gradient(to bottom, transparent, var(--site-primary) 300%);    
    bottom: 0;
}


.site-about-item-image {
    width: 50%;
    height: 50%;
    position: absolute;
    top: 0;
    right: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--site-primary);
    /* background-blend-mode: hard-light; */
    border-bottom-left-radius: 150%;
    box-shadow: 6px 1px 0px 3px var(--site-primary);   
}


.site-about-item-title {
    font-size: 20px;
    color: #fff;
    display: none;
}

.site-about-item-description {
    display: flex;
    gap: 10px;
    align-items: center;
}

.site-about-item svg {
    width: auto;
    height: 1em;
    display: inline-block;
    fill: var(--site-primary);
    font-size: 20px;
}


@media (max-width: 1080px) {
    .site-about-title-wrap {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    #site-about {
        padding: 50px 0px;
    }   

    .site-about-item:not(:last-child) {
        border-bottom: 1px solid var(--site-border);
    }

    .site-about-list {
        grid-template-columns: 1fr;
        gap: 0px;     
    }
}

.border-effect {
    position: relative;
    overflow: hidden;
}

.border-effect::before,
.border-effect::after {
    content: "";
    position: absolute;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--site-primary), transparent);
    height: 40%;
}

.border-effect::before {
    top: 1%;
    left: 0;
    animation: lineToBottom 5s linear infinite;
}

.border-effect::after {
    bottom: 1%;
    right: 0;
    animation: lineToTop 5s linear infinite;
}

@keyframes lineToBottom {
    from {
        top: 1%;
        opacity: 1;
    }

    to {
        top: 100%;
        opacity: 0;
    }
}


@keyframes lineToTop {
    from {
        bottom: 1%;
        opacity: 1;
    }

    to {
        bottom: 100%;
        opacity: 0;
    }
}