:root{
    --background: #E9ECF2;
    --main-color: #E5262B;
    --main-color-light: #f44147;
}
.logo-container-wrapper{
    margin: 0 !important;
}
.global-nav{
    padding: 7px;
    column-gap: 10px;
}
.logo-container-wrapper{
    background-color: #D0D6E3;
}

.nav-project-logo{
    width: 100%;
    height: 35px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.content-title-wrapper{
    border-color: rgba(77, 95, 94, .25);
}

#smooth-wrapper:has(.main-section[data-name="iste"]) .inspect-button{
    color: #064750 !important;
}
#smooth-wrapper:has(.main-section[data-name="iste"]) .featured-slider-wrapper{
    background-color: #E2ED42 !important;
}

/*
.brands-content{
    position: relative;
}
.brands-content .scrolling{
    position: absolute;
    top: 0;
    left: 0;
}

.project-search{
    width: 1100px;
}
.project-search-content{
    width: 100%
}
.project-search-content > *{
    width: 100%;
}
.input-arrow{
    padding-right: 60px !important;
}
.input-arrow:before{
    right: 15px;
}
*/

.inspect-button{
    background-color: var(--main-color);
    color: white;
    height: 100%;
    border-radius: 40px;
    display: flex;
    align-items: center;
    font-size: 17px;
    transition: 250ms all !important;
    cursor: pointer;
}
.inspect-button:hover{
    filter: brightness(125%);
}

.featured-slider-wrapper{
    padding: 0 20px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
.featured-item{
    display: flex;
    align-items: center;
    column-gap: 10px;
    padding: 20px 0;
}
.featured-title{
    font-weight: 600;
    font-size: 17px;
}
.featured-item i{
    width: 20px;
    height: 20px;
}

.logo-container .logo-img{
    width: 80%;
    height: fit-content;
    display: flex;
    align-items: center;
}
.logo-img img{
    width: 100%;
    height: auto;
}

.logo-dropdown-button{
    background-color: #fff;
    border-radius: 100%;
    padding: 10px;
    font-size: 10px;
    cursor: pointer;
}
.logo-dropdown-button i{
    transition: 250ms all !important;
}
.logo-container-wrapper.active .logo-dropdown-button > i{
    transform: rotate(180deg);
}

.dropdown-menu:has(> .project-router-wrapper){
    left: 0;
    transform: none;
    width: calc(100vw - 60px);
    background-color: var(--background);
    box-shadow: 0 0 50px 0 rgba(10, 40, 50, .1);
}
.project-router-nav{
    width: 100%;
    padding: 30px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.project-router-nav > * {
    background-color: #fff;
}
.project-router-image{
    overflow: hidden;
    width: 100%;
    height: 250px;
}
.project-router-image img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: 250ms all ease-out;
    filter: brightness(.85);
}
.project-router-item:hover .project-router-image img{
    transform: scale(1.1);
    filter: brightness(1);
}
.project-router-name{
    text-decoration: underline;
    text-decoration-color: transparent;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
    transition: 375ms all ease-in !important;
}
.project-router-item:hover .project-router-name{
    text-decoration-color: #000;
}
.project-router-wrapper{
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.project-router-item{
    display: block;
    background-color: white;
    border: 2px solid #ccc;
    border-radius: 20px !important;
    overflow: hidden;
    font-size: 1.3rem;
}
.project-router-item-content{
    padding: 5px 20px 20px;
}
.project-router-item .fade-text{
    color: #9f9f9f;
}

@property --project-router-progress {
  syntax: '<percentage>';
  initial-value: 0%;
  inherits: false;
}

.project-router-progress{
    --project-router-progress: 0%;
    transition: 250ms --project-router-progress ease-out;
    width: 100%;
    height: 5px;
    border-radius: 100px;
    margin-top: 20px;
    background: linear-gradient(to right, #3E7071 var(--project-router-progress), #fff var(--project-router-progress));
}
.project-router-nav > *{
    font-size: 24px;
    position: relative;
    z-index: 2;
}

.project-router-mobile-wrapper{

    position: relative;
    z-index: 10;
}
.project-router-mobile{
    list-style: none;
}
.project-router-mobile{
    font-size: 1.35rem;
}
.project-router-mobile a{
    display: block;
    padding: 10px 0;
}
