.bannertwo .sub-heading {
    font-size: 1.2rem;
    font-weight: 600;

    @media (max-width:568px) {
        font-size: 1rem;
    }
}

.acc-card {
    /* margin-bottom: .8rem; */
    /* border: 1px solid #dee2e6; */
}

/* .accordion-item:not(:first-of-type){
    border: 1px solid #dee2e6;
} */

.acc-card .accordion-button {
    color: rgb(0, 64, 110);
    font-weight: 600;
    font-size: 1rem;
}

.plustochevron::after {
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='rgba%280,0,0,0.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3e%3cpath d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat;
    background-size: 1rem;
    transition: transform 0.3s ease;
}

.plustochevron:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='rgba%280,0,0,0.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3e%3cpath d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
    transform: rotate(-180deg);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    border: none;
}

.project-card .card {
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgb(0, 64, 110);

    &:hover {
        transform: translateY(-5px);
        box-shadow: 0px 0px 5px 0px rgb(0, 64, 110);
    }
}


.project-card .card-title {
    color: rgb(0, 64, 110);
    font-weight: 600;
}

.project-card .card-text {
    font-size: 1rem;
    text-align: left;
}

.acc-image {
    position: relative;

    @media (max-width:768px) {
        gap: 1rem;
    }
}

.sticky-column {
    position: sticky;
    top: 190px;
}