.oneProject {
    display: none;
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: fit-content;
    background: url('/assets/misc/grains.webp') center center/cover no-repeat, #191934 radial-gradient(circle at 300% 150%, rgba(127, 140, 210, 0.2) 30%, rgba(0, 0, 0, 0.15) 90%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    z-index: 150;
    padding: 45px;
    font-family: var(--fontTwo);
    overflow: hidden;
    animation: projectOpening 250ms ease-out;
}

@keyframes projectOpening {
    from {
        opacity: 0;
        transform: translateY(27px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

.projectsPreview.open .oneProject {
    display: block;
}

.projectName {
    max-width: 75%;
    color: white;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 5vw;
    line-height: 0.85;
    margin-left: 6px;
    margin-bottom: 27px;
    position: relative;
    z-index: 2;
}

.projectShortIntro {
    font-weight: 400;
    color: #ACA0E4;
    font-size: 14px;
    max-width: 800px;
    margin-left: 8px;
    margin-bottom: 45px;
    position: relative;
    z-index: 2;
}

.projectLogo {
    width: 27%;
    height: auto;
    position: absolute;
    right: -3%;
    top: -55px;
    display: block;
    opacity: 0.3;
    z-index: 1;
}

.projectPicture {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0px 27px 75px rgba(172, 160, 228, 0.37));
}

.projectDescription {
    width: calc(100% - 16px);
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
    margin: 30px auto 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.projectDescription td {
    align-content: baseline;
}

.attributeTitle {
    text-transform: uppercase;
    width: fit-content;
    background: -webkit-linear-gradient(-45deg, #FFB266, #E9766F, #C04350);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 15px;
    line-height: 1.27;
    font-weight: 700;
}

.attributeValue {
    font-weight: 400;
    color: #ACA0E4;
    font-size: 14px;
    line-height: 1.37;
    text-transform: capitalize;
    padding: 5px 24px;
}

.attributeValue>a {
    text-decoration: none;
    color: #ACA0E4;
    transition: 250ms ease-out;
}

.attributeValue>a:hover {
    opacity: 0.75;
}

.descriptionParagraph {
    font-weight: 400;
    color: #ACA0E4;
    font-size: 14px;
    max-width: 800px;
    margin-bottom: 37px;
    position: relative;
    z-index: 2;
}

.projectLink {
    position: relative;
    text-decoration: none;
    color: #ACA0E4;
}

.projectLink::after {
    content: '';
    width: 0%;
    height: 1px;
    border: none;
    border-bottom: 1px solid rgba(172, 160, 228, 0.7);
    position: absolute;
    left: 0;
    bottom: -7px;
    transition: 250ms ease-out;
}

.projectLink:hover::after {
    width: 100%;
}

.contentAndGrid {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 30px 0 40px 0;
}

.contentArea {
    display: flex;
    flex-direction: column;
    gap: 37px;
    padding-left: 8px;
}

.oneContentHere>h2 {
    width: fit-content;
    background: -webkit-linear-gradient(-45deg, #ffffff, #AA9CFC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: capitalize;
    font-size: 23px;
    line-height: 1.27;
    margin-bottom: 11px;
}

.oneContentHere>p {
    font-weight: 400;
    color: #ACA0E4;
    font-size: 13px;
    max-width: 90%;
}

.bulletPoints {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 15px;
}

.oneBulletPoint {
    display: flex;
    gap: 11px;
    max-width: 90%;
}

.oneBulletPoint>svg {
    width: 17px;
    height: 17px;
    color: #E9766F;
}

.oneBulletPoint>p {
    font-weight: 400;
    color: #ACA0E4;
    font-size: 13px;
}

.firstShowcaseGrid {
    width: 100%;
    min-width: 800px;
    max-width: 800px;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.firstShowcaseGrid>img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 15px;
}

.imagesArea {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 0 auto;
    padding: 30px 0 0 0;
}

.oneImageBox {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.oneImageBox>h2 {
    text-transform: uppercase;
    width: fit-content;
    background: -webkit-linear-gradient(-45deg, #FFB266, #E9766F, #C04350);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 15px;
    line-height: 1.27;
    font-weight: 700;
    margin-left: 11px;
}

.oneImageBox>img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.mobileViewImages {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.mobileViewImages>img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.noteArea {
    width: 100%;
    margin: 30px auto 0 auto;
    padding: 30px 8px 0 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.noteArea>h2 {
    width: fit-content;
    background: -webkit-linear-gradient(-45deg, #ffffff, #AA9CFC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: capitalize;
    font-size: 23px;
    line-height: 1.27;
    margin-bottom: 11px;
}

.noteArea>p {
    font-weight: 400;
    color: #ACA0E4;
    font-size: 13px;
    width: 90%;
    max-width: 800px;
}

.clientReview {
    width: 100%;
    margin: 30px auto 0 auto;
    padding: 30px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.clientReview>h2 {
    width: fit-content;
    background: -webkit-linear-gradient(-45deg, #ffffff, #AA9CFC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: capitalize;
    font-size: 23px;
    line-height: 1.27;
    margin-bottom: 11px;
    margin-left: 8px;
}

.reviewBox {
    width: 100%;
    max-width: 550px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 27px;
    border-radius: 15px;
    background: url('/assets/misc/grains.webp') center center/cover no-repeat, #191934 radial-gradient(circle at 300% 150%, rgba(127, 140, 210, 0.2) 30%, rgba(0, 0, 0, 0.15) 90%);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.reviewBox>p {
    font-weight: 400;
    color: #ACA0E4;
    font-size: 13px;
    font-style: italic;
}

.scoreBox {
    display: flex;
    flex-direction: column;
    padding-left: 5px;
}

.scoreBox>h2 {
    font-size: 65px;
    line-height: 1;
    background: -webkit-linear-gradient(-45deg, #FFB266, #E9766F, #C04350);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.scoreBox>h2>span {
    font-style: italic;
    font-size: 37%;
}

.scoreBox>p {
    font-weight: 400;
    color: #ACA0E4;
    font-size: 13px;
    display: flex;
    align-items: flex-start;
    gap: 7px;
    text-transform: capitalize;
}

.ratingStars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.ratingStars>svg {
    width: 15px;
    height: 15px;
}

.ratingStars>.glowing {
    fill: yellow;
}

.ratingStars>.nonglowing {
    fill: rgb(97, 97, 97);
}

@media only screen and (max-width: 1280px) {
    .projectName {
        font-size: 6vw;
    }

    .projectLogo {
        top: -45px;
    }

    .descriptionParagraph {
        max-width: 620px;
    }

    .firstShowcaseGrid {
        min-width: 620px;
        max-width: 620px;
    }

    .oneContentHere>h2,
    .noteArea>h2,
    .clientReview>h2 {
        font-size: 19px;
    }
}

@media only screen and (max-width: 1080px) {
    .attributeValue {
        padding: 6px 24px;
    }

    .projectDescription {
        flex-direction: column-reverse;
        gap: 37px;
    }

    .descriptionParagraph {
        margin-bottom: 0px;
    }

    .contentAndGrid {
        flex-direction: column-reverse;
        gap: 37px;
    }

    .firstShowcaseGrid {
        min-width: 100%;
        max-width: 100%;
    }

    .oneContentHere>h2,
    .noteArea>h2,
    .clientReview>h2 {
        font-size: 21px;
    }

    .mobileViewImages {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 1280px) {
    .projectName {
        font-size: 6.5vw;
    }

    .projectLogo {
        top: -37px;
    }

    .projectShortIntro {
        max-width: 620px;
    }

    .scoreBox>h2 {
        font-size: 55px;
    }
}

@media only screen and (max-width: 768px) {
    .oneProject {
        padding: 37px;
    }

    .projectName {
        max-width: 75%;
        font-size: 6vw;
    }

    .projectShortIntro {
        font-size: 13px;
        max-width: 90%;
    }

    .projectLogo {
        width: 32%;
        top: -32px;
    }

    .attributeTitle {
        font-size: 14px;
    }

    .attributeValue {
        font-size: 13px;
    }

    .descriptionParagraph {
        font-size: 13px;
        max-width: 90%;
    }
}

@media only screen and (max-width: 576px) {
    .oneProject {
        padding: 27px 15px 15px 15px;
    }

    .projectName {
        max-width: 80%;
        font-size: 6.3vw;
        line-height: 0.9;
    }

    .projectShortIntro {
        font-size: 12px;
    }

    .projectLogo {
        width: 37%;
        top: -21px;
    }

    .attributeTitle {
        font-size: 13px;
    }

    .attributeValue {
        font-size: 12px;
        padding: 5px 7px;
    }

    .descriptionParagraph {
        font-size: 12px;
    }

    .oneContentHere>h2,
    .noteArea>h2,
    .clientReview>h2 {
        font-size: 17px;
    }

    .oneContentHere>p {
        font-size: 12px;
    }

    .oneBulletPoint>svg {
        width: 16px;
        height: 16px;
    }

    .oneBulletPoint>p {
        font-size: 12px;
    }

    .firstShowcaseGrid {
        grid-template-columns: repeat(1, 1fr);
    }

    .oneImageBox>h2 {
        font-size: 13px;
    }

    .mobileViewImages {
        grid-template-columns: repeat(1, 1fr);
    }

    .noteArea>p {
        font-size: 12px;
    }

    .reviewBox {
        padding: 21px;
    }

    .reviewBox>p {
        font-size: 11px;
        line-height: 1.3;
    }

    .scoreBox>h2 {
        font-size: 45px;
    }

    .scoreBox>p {
        font-size: 12px;
    }
}