/* =========== Inner Page Common ============== */
.page-banner{
    --banner-height : 200px;
    background: linear-gradient(rgba(30, 31, 64, 0.8), rgba(30, 31, 64, 0.8)), url(https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80) center / cover no-repeat;
    height:var(--banner-height);
    position: relative;
    display: flex;
    align-items: center;
}

.page-banner:before{
    content: "";
    position: absolute;
    top: 0;
    left: calc(var(--banner-height) * -1);
    width: calc(60% + var(--banner-height));
    height: var(--banner-height);
    background-color: var(--primary-color);
    z-index: 1;
    transform: skewX(-45deg);
}
.page-banner > *{
    position: relative;
    z-index: 2;
    color:#fff;
}

.page-banner h1{
    font-size:2.8rem;
    letter-spacing: 4px;
}



.breadcrumb{
    display: flex;
    margin-bottom:1.5rem;
    padding: 1rem 0;
}

.breadcrumb-wrapper{
    display: flex;
    position:relative;
    align-items: center;
}

.breadcrumb-item{
    position: relative;
}
.breadcrumb-item > *{
    font-size: 0.85rem;
    color: #999 !important;
}
.breadcrumb-item.active > *,
.breadcrumb-item > a:hover{
    color:#666 !important;
}

.breadcrumb-item:not(:last-child)::after {
    content: "/";
    display: inline-block;
    margin: 0 20px;
    color: #999;
}



.page-main{
    padding-bottom: 4rem;
    font-size:1.1rem;
}
.page-main h4{
    font-size:1.3rem;
    color:var(--primary-color-lighten);
}

.page-main h3{
    font-size:1.5rem;
    color:var(--primary-color-lighten);
}

.page-main a{
    color:var(--primary-color-lighten);
}
.page-main a:hover{
    color:var(--second-color);
}


/* Our Services */
.our-services .block-grid-col{
    display:flex;
    flex-direction: column;
    row-gap: 2rem;
}



/* Our Team */
.our-team .block-grid-col > *{
    padding: 2.5rem 0;
    border-bottom: 1px solid #eee;
}

/* Contact Us  */
.company-info{
    margin-bottom:4rem;
}

.company-info .block-grid-row{
    gap:3rem;
}

.company-info-map{
    height: 100%;
}
.company-info-map > p{
    margin:0;
    height:100%;
}

.company-info-map iframe{
    width: 100%;
    height: 100%;
    border:0;
}

.contact-us-form input,
.contact-us-form textarea{
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s;
}