/*---------------------Roots-----------------*/

:root {
    ---green: #1BB46D;
    ---white: #ffffff;
    ---black: #1F1F5F;
    ---border: #e5e5e5;
    ---paragraph: #919191;
}

/*---------------------Roots-----------------*/
.project-container {
    max-width: 100%;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: center;
}
#col2{
    margin-top: 30px;
}

.project-images {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.project-images img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    display: block;
}

.project-content {
    width: 60%;
}

.project-section h2 {
    font-size: 90px;
    font-weight: 800;
    color: var(---black);
    margin-bottom: 20px;
    text-align: center;
    font-family: "Bebas Neue", sans-serif;
}

.project-content h3 {
    font-size: 60px;
    color: var(---black);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 60px;
    font-family: "Bebas Neue", sans-serif;
}

.project-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.project-grid h4 {
    font-size: 20px;
    color: var(---black);
    margin-bottom: 10px;
}

.project-grid ul {
    list-style: none;
}

.project-grid ul li {
    font-size: 14px;
    margin-bottom: 8px;
    position: relative;
    padding-left: 18px;
    color: var(---paragraph);
    line-height: 1.5;
}

.project-grid ul li::before {
    content: "";
    width: 7px;
    height: 7px;
    background: var(---green);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 7px;
}

/* Tablet */

@media (max-width: 1366px) {
    .project-content h3 {
        font-size: 40px;
        color: var(---black);
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 40px;
    }

    .project-section h2 {
        font-size: 70px;
        margin-bottom: 20px;
    }

}


@media (max-width: 1280px) {
    .project-content h3 {
        font-size: 35px;
        margin-bottom: 20px;
        line-height: 35px;
    }

    .project-grid ul li {
        font-size: 12px;
        margin-bottom: 8px;
        position: relative;
        padding-left: 18px;
        color: var(---paragraph);
        line-height: 1.5;
    }

    .project-grid h4 {
        font-size: 16px;
    }
}

@media (max-width: 1080px) {
    .project-content h3 {
        font-size: 30px;
        margin-bottom: 20px;
        line-height: 30px;
    }

    .project-grid ul li {
        font-size: 10px;
        margin-bottom: 8px;
        position: relative;
        padding-left: 15px;
        color: var(---paragraph);
    }

    .project-grid h4 {
        font-size: 12px;
    }
}


@media (max-width: 992px) {
    .project-container {
        flex-direction: column;
    }

    .project-images,
    .project-content {
        width: 100%;
    }

    .project-content h3 {
        font-size: 40px;
        line-height: 40px;
    }
        .project-section h2 {
        font-size: 60px;
        margin-bottom: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
            .project-section h2 {
        font-size: 50px;
        margin-bottom: 20px;
        line-height: 50px;
    }
    .project-grid {
        grid-template-columns: 1fr;
    }

    .project-content h3 {
        font-size: 40px;
    }

    .project-grid h4 {
        font-size: 18px;
    }

    .project-grid ul li {
        font-size: 13px;
    }
}

@media (max-width: 500px) {

    .project-content h3 {
        font-size: 35px;
    }

    .project-grid h4 {
        font-size: 16px;
    }

    .project-grid ul li {
        font-size: 12px;
    }
                .project-section h2 {
        font-size: 40px;
        margin-bottom: 20px;
        line-height: 40px;
    }
}

@media (max-width: 450px) {
                    .project-section h2 {
        font-size: 30px;
        margin-bottom: 20px;
        line-height: 30px;
    }

    .project-content h3 {
        font-size: 30px;
        line-height: 30px;
    }

    .project-grid h4 {
        font-size: 14px;
    }

    .project-grid ul li {
        font-size: 10px;
    }
}

@media (max-width: 400px) {

    .project-content h3 {
        font-size: 25px;
        line-height: 25px;
    }

    .project-grid h4 {
        font-size: 14px;
    }

    .project-grid ul li {
        font-size: 10px;
    }
}