.projects {
    padding-top: 68px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.title {
    text-align: center;
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    letter-spacing: -2px;
    color: white;
}

.projects .section {
    margin-top: 50px;
    position: relative;
    z-index: 100;
}

.projects .section .row {
    display: flex;
    justify-content: space-between;
    grid-column-gap: 40px;
    margin-top: 68px;
}

.projects .section .row:first-child {
    margin-top: 0;
}

.projects .section .row:nth-child(2n) {
    flex-direction: row-reverse;
}

.row .rside {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.row .rside .image img {
    max-width: 716px;
    width: 100%;
}

/**/

.projects .content .logo {
    padding: 10px 6px;
}

.projects .content .logo img {
    height: 48px;
    width: auto;
}

.projects .description {
    margin-top: 25px;
    max-width: 502px;
}

.projects .description h4 {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: #FFFFFF;
    margin-top: 12px;
}

.projects .description p {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
    opacity: 0.65;
}

.projects .description a {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
    text-decoration: underline;
}

.projects .buttonGroup {
    margin-top: 25px;
    display: flex;
    grid-column-gap: 12px;
}

.projects .buttonGroup a {
    display: inline-block;
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    max-width: 240px;
    width: 100%;
}

.projects .buttonGroup a:nth-child(1) {
    background-color: rgb(2, 76, 187);
}

.projects .buttonGroup a:nth-child(2) {
    background-color: #26272B;
}

/**/

.lspot, .rspot {
    background: rgba(32, 31, 39, 0.6);
    filter: blur(50px);
    border-radius: 50%;
    width: 680px;
    height: 680px;
    position: absolute;
}

.lspot {
    left: -300px;
    top: -300px;
    z-index: 1;
}

.rspot {
    right: -300px;
    bottom: -300px;
}

@media screen and (max-width: 1024px) {
    .projects .section .row {
        flex-direction: column-reverse;
        align-items: center;
        grid-row-gap: 37px;
    }

    .projects .section .row:nth-child(2n) {
        flex-direction: column-reverse;
    }
}

@media screen and (max-width: 525px) {
    .title {
        font-size: 24px;
    }
}

@media screen and (max-width: 480px) {
    .projects .buttonGroup {
        flex-direction: column;
        grid-row-gap: 12px;
    }

    .projects .buttonGroup a {
        max-width: none;
    }
}






