<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.portfolio {
    margin-top: 138px;
}

.portfolio__container {
    max-width: 1245px;
    padding: 0 24px;
    margin: 0 auto;
}

.portfolio__left {
    max-width: 460px;
    margin-top: -58px;
}

.portfolio__box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 1186px;
}

.portfolio__box:after {
    content: "";
    position: absolute;
    top: -225px;
    right: -325px;
    z-index: -1;
    width: 470px;
    height: 461px;
    transform: rotate(-23deg);
    border-radius: 470px;
    opacity: 0.30;
    background: #00C596;
    filter: blur(213px);
}

.portfolio__title {
    color: #FFF;
    font-size: 40px;
    font-weight: 400;
    line-height: 53px;
    margin-bottom: 23px;
}

.portfolio__description {
    color: #C3BFC5;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px;
}

.portfolio__img {
    position: relative;
}

.portfolio__img:before {
    content: "";
    position: absolute;
    left: -100px;
    z-index: -1;
    bottom: -80px;
    width: 319px;
    height: 313px;
    transform: rotate(-23deg);
    border-radius: 319px;
    opacity: 0.30;
    background: #00C596;
    filter: blur(150px);
}

@media (max-width: 1150px) {
    .portfolio__box {
        flex-direction: column;
        row-gap: 50px;
    }

    .portfolio__left {
        max-width: 700px;
        text-align: center;
        margin: 0 auto;
    }
}

@media (max-width: 670px) {
    .portfolio__box {
        row-gap: 30px;
    }

    .portfolio__img {
        width: 100%;
        height: 100%;
    }

    .portfolio__img img {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 500px) {
    .portfolio__title {
        font-size: 35px;
        line-height: 45px;
    }

    .portfolio__container {
        padding: 0 15px;
    }
}</pre></body></html>