/* PROJECTS - HERO */
.projects-hero {
    position: relative;
    width: 100%;
    height: 600px;
    min-height: fit-content;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 30% 95%, 20% 100%, 10% 95%, 0 95%);
}

.projects-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    z-index: 1;
}

.projects-hero-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    background-color: #8787878c;
    backdrop-filter: brightness(50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.projects-hero-overlay hr {
    background-color: var(--main-color);
    margin-left: 30px;
    
}

.projects-hero-overlay h1 {
    text-align: left;
    font-weight: 600;
    margin-left: 20px;
    font-size: 4rem;
    max-width: 90vw;
    margin-bottom: 0;
}

.projects-hero-overlay p {
    margin-left: 20px;
    margin-top: 10px;
    font-size: 2rem;
}

.projects-hero-overlay .button {
    margin-left: 20px;
    font-size: 2rem;
    width: fit-content;
}

.projects-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 0px;
}

.projects-wrapper > * {
    max-width: 80%;
}

.projects-wrapper h1 {
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
}

.projects-wrapper ol{
    counter-reset: item;
    margin-top: 40px;
    list-style: none;
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 20px;
}

.projects-wrapper li::before {
    content: counter(item);
    counter-increment: item;
    font-size: 4rem;
    color: var(--main-color);
    margin-right: 30px;
    flex-shrink: 0;
}

.projects-wrapper li {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    width: 320px;
    max-width: 90vw;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 0px;
    padding: 10px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--main-color);
}

.projects-wrapper iframe {
    margin-top: 50px;
}