.ProjectSlider {
    background-color: #451B17;
    overflow: hidden;
    padding: 12dvw 0 0dvw 0;
    margin-top: -5dvw;
}

.ProjectSlider .titleArrows {
    border-top: 1px solid #FFFFF9;
    padding-top: 35px;
    color: #FF3300;
    font-family: "Manrope", sans-serif;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 500;
    margin-bottom: 35px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: start;
}
.ProjectSlider .title:before {
    content: "";
    display: block;
    width: 50vw;
    height: 1px;
    background-color: #FFFFF9;
    position: absolute;
    top: -1px;
    left: 50%;
}

.ProjectSlider .customArrows{
    display: flex;
    justify-content: flex-end;
    margin-bottom: 24px;
}

.ProjectSlider .customArrows button {
    width: 50px;
    height: 50px;
    font-size: 19px;
    border-radius: 0;
    cursor: pointer;
    background-color: #fffff9;
}
.ProjectSlider .owl-item{ height: 100%; }

.ProjectSlider .customArrows .custom-nav-prev-carousel { transform: rotate(180deg); }
.ProjectSlider .customArrows .disabled .nav-icon { filter: saturate(0) opacity(0.3); }

.ProjectSlider .project {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 5dvw;
}
.ProjectSlider .projectTitle * {
    font-family: 'PT Serif';
    font-size: 56px;
    font-weight: 400;
    line-height: 59px;
    color: #fffff9;
    margin-bottom: 20px;
}
.ProjectSlider .projectExcerpt * {
    font-family: 'Manrope';
    font-size: 32px;
    font-weight: 400;
    line-height: 37px;
    color: #fffff9;
    padding-bottom: 20px;
    border-bottom: 1px solid;
    margin-bottom: 20px;
}
.ProjectSlider .projectDescription * {
    font-family: 'Manrope';
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #fffff9;
}
.ProjectSlider .projectDescription > *:not(:last-child) { margin-bottom: 15px; }
.ProjectSlider .projectDescription ol li {
    list-style: decimal;
    margin-left: 20px;
    padding-left: 10px;
}
.ProjectSlider .projectDescription ul li {
    list-style: disc;
    margin-left: 20px;
    padding-left: 5px;
}
.ProjectSlider .project .image {
    min-width: 493px;
    max-width: 493px;
    height: 806px;
    object-fit: cover;
    object-position: center;
}
.ProjectSlider .project .projectCtas { display: flex; gap: 20px; align-items: center; margin-top: 50px; }
.ProjectSlider .button.bg-transparent { background-color: transparent; color: #FF3300; }
.ProjectSlider .button img { max-width: max-content; margin-right: 10px; }
.ProjectSlider .owl-carousel .owl-item .projectDescription img{
    margin-bottom: 0; 
}

/*Projects Slider Update*/
.ProjectSlider .tabContainer{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 34px;
    margin-bottom: 64px;
}

.ProjectSlider .tabContainer .projectTab{
    cursor: pointer;
    color: white;
    leading-trim: both;
    text-edge: cap;
    font-family: 'Manrope';
    font-size: clamp(20.364px, 3vw,28px);
    font-style: normal;
    font-weight: 400;
    line-height: 34px;
    border-radius: 50%;
    border: 1px solid white;
    width: 220px;
    height: 220px;
    background-color: transparent;
    padding: 0;
    text-align: center;
    box-shadow:
            0 0 15px rgba(255, 255, 255, 0.5),
            0 0 30px rgba(255, 255, 255, 0.3),
            inset 0 0 5px rgba(255, 255, 255, 1);
}

.ProjectSlider .tabContainer .projectTab * { pointer-events: none; }

.ProjectSlider .tabContainer .projectTab.active {
    background: radial-gradient(circle, rgba(255, 51, 0, 0.8) 0%, rgba(255, 51, 0, 0.5) 43.5%, rgba(255, 51, 0, 0) 100%);
    box-shadow:
            0 0 15px rgba(255, 51, 0, 0.2),
            0 0 50px rgba(255, 51, 0, 0.3),
            inset 0 0 10px rgba(255, 255, 255, 0.2);
}

@media screen and (max-width: 1000px) {
    .ProjectSlider .customArrows{
        display: flex;
        justify-content: flex-end;
        margin-bottom: 30px;
    }

    .ProjectSlider .tabContainer .projectTab {
        cursor: pointer;
        color: white;
        font-family: 'Manrope';
        font-size: 28px;
        text-edge: cap;
        font-size: 20.364px;
        font-style: normal;
        font-weight: 400;
        line-height: 24.727px;
        width: 160px;
        height: 160px;
    }

    .ProjectSlider { margin-top: 0;padding: 8dvw 0 5dvw 0; }
    .ProjectSlider .project { flex-direction: column; align-items: normal; gap: 64px; }
    .ProjectSlider .projectTitle * { font-size: 36px; line-height: 100%; }
    .ProjectSlider .projectExcerpt * { font-size: 20px; line-height: 105%; }
    .ProjectSlider .project .projectCtas { flex-direction: column; }
    .ProjectSlider .project .image {
        width: 100%;
        height: 463px;
        min-width: unset;
        max-width: unset;
    }
}