/* MAIN PROJECTS */
.projects-container {
    grid-template-columns: repeat(2,1fr);
    margin-top: 0;
    row-gap: 4.5rem;
}
.main-tags {
    position: absolute;
    bottom: -40px;
    right: 0;
    flex-wrap: nowrap;
    margin-top: 4rem;
    white-space: nowrap;
    overflow-x: scroll;
    left: 0;
    flex-wrap: nowrap !important;
}
.main-tags span.project-tag {
    border-color: #cad2d2;
    color: #000;
}

/* SINGLE PROJECT */
.project-header-section {
    background: linear-gradient(180deg, var(--primaryColor) 75%, white 20%);
    padding: 14rem 0 0;
}
.project-header-section .container {
    max-width: 1200px
}
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}
.breadcrumbs a, .breadcrumbs p {
    color: #fff;
    text-decoration: none;
    font-size: 0.875rem;
}
.breadcrumbs i {
    font-size: 11px;
}
.project-header-section h1 {
    font-size: 3rem;
    color: #fff;
    flex: 1;
}
.project-tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-top: 4rem;
}
.project-tag {
    font-size: 10px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.035px;
    text-transform: uppercase;
    padding: 9px 18px 7px;
    border-radius: 25px;
    border: 1px solid rgba(202, 210, 210, 0.35);
    display: flex;
    align-items: center;
    gap: 8px;
    height: fit-content;
}
.project-header-section .project-meta {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr 1fr;
    color: white;
    margin-bottom: 2rem;
}
.project-header-section .project-meta h6  {
    text-transform: uppercase;
    font-size: 1.05rem;
}
.project-header-section .project-meta div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.project-header-section .project-meta span {
    color: white;
    font-size: 1.25rem;
}

.project-header-section .project-image {
    height: 36rem;
    margin-top: 1rem;
    width: 100%;
    flex: 1;
}
.project-header-section .project-image img {
    border-radius: 12px;
    width: 100%;
    height: 36rem;
    object-fit: cover;
}
.project-header-section .project-gallery {
    margin-top: 1rem;
}
.project-header-section .project-gallery img {
    border-radius: 4px;
    object-fit: cover;
    aspect-ratio: 10/6 ;
}
.project-header-section .slick-arrow {
    background: white;
    color: #000;
}

.project-content .container {
    max-width: 1200px;
}
.project-container {
    display: flex;
    gap: 4rem;

}
.floating-sidebar {
    position: sticky;
    top: 4rem;
    align-self: flex-start;
    background: var(--primaryColor);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 0 0 22%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.floating-sidebar p {
    color: white;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 114%;
}
.floating-sidebar a:hover {
    background: var(--secondaryColor);
}
@media (max-width: 980px) {
    .floating-sidebar {display:none;}
}

.project-thumbnails {
    /* display: flex; */
    gap: 1rem;
    margin-top: 1rem;
}
.project-thumbnails .thumbnail {
    /* flex: 0 0 27%; */
    width: 18rem;
    margin-right: 10px;
    height: 12rem;
    overflow: hidden;
    border-radius: 4px;
}
.project-thumbnails .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accordion-content {
    margin-top: 1rem;
}
.accordion-content p {
    font-size: 0.95rem;
    line-height: 160%;
    margin-bottom: 1rem;
}
.accordion-content ul li {
    font-size: 0.95rem;
    line-height: 160%;
}
