
.intro-bg{
    background-image: unset;
}

.breadcrumb{
    padding: 0 10px;
    border-radius: 40px;
    background-color: #fff;
    width: fit-content;
    font-size: 1rem;
    margin-bottom: 20px;
    border: 1px solid #eee;
    display: flex;
}

.breadcrumb a{
    padding: 7px 10px;
    max-width: 300px;
    text-overflow: ellipsis;
    overflow: hidden;
    text-wrap: nowrap;
}
.breadcrumb a:not(.breadcrumb a:last-child){
    border-right: 1px solid #eee;
}
.breadcrumb a:last-child{
    opacity: .5
}

.project-search-wrapper{
    position: absolute;
    display: flex;
    bottom: 0;
    width: 100%;
    height: 90vh;
    align-items: end;
    justify-content: center;
    padding: 40px;
}
.blog-search-wrapper{
    position: relative !important;
    height: fit-content !important;
    padding: 0 !important;
    z-index: 10;
}
.project-search{
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 90px;
    column-gap: 15px;
    display: flex;
    align-items: center;
}
.filter-button{
    width: 90px;
    height: 90px;
    background-color: #F4F6F6;
    border-radius: 100%;
}
.filter-button{
    display: flex;
    align-items: center;
    justify-content: center;
}
.filter-button .icon{
    width: 40px;
    height: 40px;
}
.project-search{
    width: fit-content;
}
.project-search-content{
    display: flex;
    align-items: center;
}
.project-search-content [tabindex]{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 15px 15px;
    min-width: 250px !important;
    height: fit-content;
    min-height: 100%;
    border: 1px solid transparent;
    border-radius: 60px;
    transition: 100ms all !important;
}
.project-search-content [tabindex]:before{
    font-size: 24px;
}
.project-search-content [tabindex]:hover{
    background-color: #ededed;
    cursor: pointer;
}
.project-search .input{
    font-size: 1rem;
    border: none;
    background-color: transparent;
    color: #4D5F5E;
    width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}
.project-search-content [tabindex]:active,
.project-search-content [tabindex]:focus,
.project-search-content [tabindex]:has(*:focus){
    background-color: transparent !important;
    border-color: black;
}

.input-select{
    position: relative;
}
.input-select.active:before{
    transform: rotate(90deg)
}
.dropdown-menu{
    pointer-events: none;
}
.dropdown-trigger.active .dropdown-menu,
.logo-dropdown-button.active .dropdown-menu{
    pointer-events: all !important;
}
.select-menu-trigger{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
:is(.select-menu, .dropdown-menu){
    position: absolute;
    background-color:  #fff;
    top: 125%;
    min-width: 350px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 30px;
    padding: 20px 20px 20px 20px;
    width: 100%;
    max-width: calc(100vw - 20px);
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .1);
    list-style: none;
    transition: 250ms opacity !important;
    z-index: 1;
}
.input-select:not(.active) .select-menu,
.dropdown-trigger:not(.active) .dropdown-menu{   
    opacity: 0 !important;
    pointer-events: none;
}
.select-menu ul{
    padding-right: 5px;
    list-style: none;
    max-height: 25vh;
    overflow-y: scroll;
    position: relative
}
.select-menu ul::-webkit-scrollbar{
    background-color: white;
    width: 10px
}
.select-menu ul::-webkit-scrollbar-thumb{
    background-color: #eee;
    border-radius: 40px;
}
.select-menu li a{
    padding: 15px 15px;
    display: flex;
    column-gap: 20px;
    border-radius: 40px;;
}
.select-menu li a:hover{
    background-color: #000;
    color: #fff;
}
.input-select.active .select-menu{
    display: block !important;
}
.input-select:not(.noselect) .select-menu li a:before{
    content: "";
    width: 30px;
    min-width: 30px;
    height: 30px;
    min-height: 30px;
    border: 1px solid black;
    border-radius: 10px;
    display: block;
    transition: 250ms all !important;
}
.input-select:not(.noselect) .select-menu li a:hover:before{
    border-color: #fff;
}
.select-menu li a.active:before{
    background-color: black;
}
.select-menu li a:after{
    border: none;
    position: absolute;
    background-color: unset;
    filter: invert(100%);
}
.input-select.noselect .select-menu li a:after{
    content: none !important;
}
.select-menu li a:not(.active):hover:after{
    filter: none;
}
.select-menu hr{
    margin: 20px 0;
    opacity: 1;
    border-color: #ccc;
    border-style: solid;
}
.button-container{
    justify-content: space-between;
    column-gap: 10px;
}
.button-container a{
    width: 50%
}
.vertical-divider{
    content: "";
    margin: 10px;
    padding: 0;
    min-width: 1px;
    min-height: 100%;
    background-color: #ccc;
}

/* Dropdown Box */

.dd-box-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.dd-box-item{
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #ccc;
    position: relative;
    transition: 250ms all !important;
    cursor: pointer;
}
.dd-box-item:hover{
    border: 1px solid black;
}
.dd-box-content{
    height: 24px;
    overflow: hidden;
}
.dd-box-item.active .dd-box-content{
    height: auto;
}
.dd-box-item.active{
    height: auto;
    max-height: unset;
}
.dd-box-item :is(h3){
    max-width: 100%;
    line-height: 24px !important;
    margin: 0 40px 0 0;
}
.dd-box-item:not(.active) :is(h3){
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}
.dd-box-item :is(p){
    line-height: 1.7;
    white-space: break-spaces !important;
}
.dd-box-indicator{
    position: absolute;
    display: flex;
    right: 40px;
    top: 40px;
    width: 15px;
    height: 15px;
    justify-content: center;
}
.dd-box-indicator .line-vertical{
    width: 2px;
    height: 100%;
    background-color: black;
    position: absolute;
    transform-origin: center;
    transition: 250ms all !important;
    transform: rotate(90deg) translateX(-0.5px)
}
.dd-box-indicator .line-horizontal{
    width: 100%;
    height: 2px;
    background-color: black;
    align-self: center;
    position: absolute;
}
.dd-box-item.active .line-vertical{
    transform: none !important;
}
.dd-box-item a{
    display: block;
    margin-left: auto;
    width: fit-content;
    text-decoration: underline
}
.dd-box-item .black-button{
    margin-top: 20px;
}

/* End Dropdown Box */

/* Project Search Mobile */

.project-search-mobile{
    width: 100%;
    padding: 10px;
    border-radius: 20px;
    background-color: #fff;
    font-size: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.search-input-wrapper{
    position: relative;
}
.search-input-wrapper .icon{
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translate(50%, -50%);
    font-size: 25px
}
.search-input{
    width: 100%;
    border: none;
    font-size: 1.25rem;
    background-color: var(--background);
    border-radius: 100px;
    padding: 20px 0 20px 60px;
}

/* End Project Search Mobile */