.projectHeader{
    background-color: #2b3445;
    position: relative;
    color: #fff;
    display: flex;
}
.projectHeader:before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
    z-index: 9;
}
.projectHeaderLeft{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 2rem;
}
.projectHeader h1{
    font-size: 36px;
    margin-top: 100px;
    font-weight: 800;
}
.projectHeader p{
    font-size: 14px;
}
.projectImg{
    width: 60%;
    height: 400px;
    overflow: hidden;
    /* clip-path: polygon(100% 0, 100% 100%, 15% 100%, 20% 0%, 25% 0%); */
    clip-path: polygon(0 0, 84% 0, 100% 100%, 0% 100%);
}
.projectHeader ul{
    padding: 0;
    margin: 1rem 0;
    display: flex;
    flex-direction: row;
}
.projectHeader ul li{
    padding: 5px 10px;
    margin-right: 5px;
    background-color: #ffcf2d;
    color: #000;
    border-radius: 0.25rem;
}


.topMenu {
    position: relative;
    /* margin-top: 70px; */
    /* background: var(--white-color); */
    background: rgb(232 235 247);
    position: sticky;
    top: 70px;
    z-index: 150;
    border-bottom: 1px solid #ddd;
    padding: 0.75rem 0;
}

.cateMenu {
    display: flex;
}

.sub-nav-holder {
    width: 100%;
    box-sizing: border-box;
    overflow: auto;
    color: var(--black-color);
    font-size: 1.4rem;
    font-weight: 500;
    scrollbar-width: none;
}

.sub-nav-holder::-webkit-scrollbar {
    display: none;
}

@media (min-width: 992px) {
    .sub-nav-holder {
        color: var(--black-color);
        box-shadow: 0 14px 12px -17px rgba(29, 40, 62, 0.4);
        font-weight: normal;
    }
    .sub-nav {
        margin: auto;
    }
}

.sub-nav {
    display: flex;
}

.sub-nav a,
.sub-nav .a {
    color: inherit;
    text-align: center;
    box-sizing: border-box;
    white-space: nowrap;
    padding: 6px 15px 4px;
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    border-radius: 0.25rem;
}

.sub-nav a.active {
    color: var(--white-color);
    background: #f00;
}


.projectContent{
    padding: 2rem;
    background-color: #fff;
    margin-top: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 14px 12px -17px rgba(29, 40, 62, 0.4);
}
.projectContent h2{
    font-size: 30px;
    margin-bottom: 1rem;
    font-weight: 600;
}
.projectContent ul{
    padding: 0;
    display: flex;
    flex-direction: column;
}
.projectContent ul li{
    margin-bottom: 0.5rem;
}

#amenities ul{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
#amenities ul li{
    width: calc(33.333% - 1rem);
}
#amenities ul li{
    margin-right: 1rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    padding: 0.5rem 1rem;
    background-color: #d38134;
    color: #fff;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.specification{
    border: 1px solid #ddd;
    padding: 1rem;
    padding-bottom: 0;
    border-radius: 0.25rem;
    position: relative;
    display: block;
    height: 100%;
}
.specification h5{
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}
.galleryBox {
    height: 250px;
    position: relative;
    display: block;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
    background: #e9e9e9;
    border: 1px solid #ddd;
}
#plans h5{
    font-size: 1rem;
    margin: 0.5rem 0;
}
.planBox {
    height: 400px;
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: 0.3s;
    background: #e9e9e9;
}
.projectContent ifram{
    display: inline-block;
}

.sidebar.sticky-top {
    top: 85px;
    z-index: 100;
}
.sidebar .leadBox{
    background: linear-gradient(to bottom, #ffc10e 0%, #f58a29 100%);
    padding: 2rem;
    position: relative;
    border-radius: 0.5rem;
}

.leadBox .form-control{
    border: 0;
    background: transparent;
    border-bottom: 1px solid #595959;
    border-radius: 0;
    padding: 0;
    min-height: 40px;
    font-weight: 500;
    margin-bottom: 1rem;
}




@media(max-width:800px){
    .projectHeader{
        flex-direction: column;
    }
    .projectImg{
        width: 100%;
        clip-path: none;
        height: auto;
    }
    .projectHeaderLeft{
        padding: 0 2rem;
    }
    .projectHeader h1{
        margin-top: 1rem;
        font-size: 1.5rem;
    }
    .projectHeader ul{
        flex-direction: column;
    }
    .projectHeader ul li{
        margin: 0.15rem 0;
    }
    .projectContent{
        padding: 1rem;
        border: 1px solid #ddd;
    }
    #amenities ul li{
        width: calc(50% - 1rem);
        font-size: 1rem;
    }
}