 p a{
        color: #808080;
    }
    p a:hover{
            color: #80163e;
            text-decoration: none;
    }

@media screen and (min-width: 1366px) {
    #top-nav {
        max-width: 80%;
    }
}

.bluu-title,
.bluu-title-white {
    font-size: 2.6rem;
    font-weight: 800;
    color: #808080;
    letter-spacing: 2px;
    line-height: 1.2;
    margin-bottom: 2em;
    position: relative;
}

.bluu-title::after,
.bluu-title-white::after {
    content: "";
    background: #80163E;
    width: 66px;
    height: 5px;
    position: absolute;
    bottom: -0.5em;
    left: 0;
}

.bluu-title-white {
    color: #fff;
}

.bluu-title-white::after {
    background-color: #fff;
}

.bluu-subtitle {
    color: #808080;
    font-weight: 600;
}

.bluu-row {
    align-items: center;
}


/* Primary Button */

.bluu-btn {
    position: relative;
    display: inline-block;
    margin-top: 1em;
    border: 1px solid #80163e;
    color: #80163e;
    padding: 0.5em 1.6em;
    font-weight: 600;
    font-size: 1.15em;
}

.bluu-btn,
.bluu-btn::after {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.bluu-btn::before,
.bluu-btn::after {
    background: #80163e;
    content: '';
    position: absolute;
    z-index: -1;
}

.bluu-btn:hover {
    color: #fff;
    text-decoration: none;
}

.bluu-btn:focus {
    outline: none;
}

.bluu-btn::after {
    height: 100%;
    left: 0;
    top: 0;
    width: 0;
}

.bluu-btn:hover:after {
    width: 100%;
}


/* Primary Button ends */


/* Secondary Button */

.bluu-btn-white {
    position: relative;
    display: inline-block;
    margin-top: 1em;
    border: 1px solid #fff;
    color: #fff;
    padding: 0.5em 1.6em;
    font-weight: 600;
    font-size: 1.15em;
}

.bluu-btn-white,
.bluu-btn-white::after {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.bluu-btn-white::before,
.bluu-btn-white::after {
    background: #fff;
    content: '';
    position: absolute;
    z-index: -1;
}

.bluu-btn-white:hover {
    color: #80163e;
    text-decoration: none;
}

.bluu-btn-white:focus {
    outline: none;
}

.bluu-btn-white::after {
    height: 100%;
    left: 0;
    top: 0;
    width: 0;
}

.bluu-btn-white:hover:after {
    width: 100%;
}


/* Secondary Button ends */

.category-home-button {
    cursor: pointer;
    background: transparent;
}

.navbar-nav li {
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 1rem;
    padding-bottom: 0rem;
}


/* Home Page styling */

.home-delivery-quality {
    padding: 5em 0;
}

.delivery-quality-image-wrap {
    height: 470px;
    position: relative;
    overflow-y: clip;
    margin: 2em 0;
}

.delivery-quality-image-wrap img {
    position: absolute;
    width: 50vw;
    height: 100%;
    object-fit: cover;
}

.home-projects-section {
    padding: 5em 0;
    background: #F2F2F2;
}

.home-corporate-section {
    display: flex;
}

.home-category {
    display: inline-flex;
    width: calc(100% / 5);
    position: relative;
    height: 520px;
    overflow: hidden;
    flex-flow: column;
    transition: 0.5s ease;
}

.home-category:hover {
    width: 700px;
    /* border-bottom: 10px solid #80163E; */
}

.home-category::after {
    position: absolute;
    width: 100%;
    height: 10px;
    background: #000;
    z-index: 29;
    bottom: -.6em;
    content: '';
}

.home-category:hover {
    overflow: visible;
}

.home-category:hover::after {
    background: #80163E;
}

.home-category-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.home-category-content {
    position: absolute;
    padding: 4em;
    display: flex;
    flex-flow: column;
    color: #fff;
    transition: 0.5s ease;
    transform: translateY(390px);
    width: 600px;
}

.home-category-description {
    opacity: 0;
    transition: all 1s linear;
}

.home-category:hover .home-category-content {
    transform: translateY(0);
}

.home-category-title {
    width: 100%;
    position: relative;
    margin-bottom: 2em;
}

.home-category:hover .home-category-description {
    opacity: 1;
}

.home-category-title::after {
    content: "";
    position: absolute;
    width: 35px;
    height: 3px;
    background: #fff;
    bottom: -0.5em;
    left: 0;
}

.home-category-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00000073;
}

.home-category-title i {
    display: none !important;
    position: static !important;
    padding: 0 !important;
    transform: rotate( 180deg);
    transition: 0.5s ease;
}

.home-category:hover i {
    transform: rotate( 0deg);
}

@media screen and (max-width: 1199px) {
    .home-corporate-section {
        display: block;
    }
    .home-category {
        width: 100%;
    }
    .home-category:hover {
        width: 100%;
    }
    .home-category-title i {
        display: inline-block !important;
    }
}

@media screen and (max-width: 576px) {
    .home-category-content {
        padding: 1em;
        width: 235px;
    }
    .home-category-content {
        transform: translateY(430px);
    }
    .home-category-description {
        max-height: 193px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media screen and (max-width: 387px) {
    .bluu-subtitle {
        font-size: 1.4em;
    }
}

.getinTouchSection {
    padding: 6em 0;
}

.getinTouchText {
    margin-bottom: 3em;
}

.home-clients-section {
    margin: 6em 0;
}

.home-clients-section .slick-slider {
    margin: 2em 0;
}


/* Home page styling ends */


/* About Page */

.about-cover {
    position: relative;
    min-height: 25em;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    color: #fff;
}

.about-banner-cover {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-cover h3 {
    font-weight: 400;
    margin: 3em 0;
}

.about-cover strong {
    font-weight: 900;
}

.about-image-wrap {
    position: relative;
    height: 550px;
}

.about-image-wrap img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-bluu-section {
    margin: 6em 0;
}

.about-what-we-do-section {
    margin: 6em 0;
}

.about-mission-section {
    position: relative;
    padding: 6em 0;
    margin: 6em 0;
}

.about-mission-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: #f4f4f4;
    z-index: -1;
}

.bluu-highlight {
    font-weight: bold;
    color: #80163E;
}

@media screen and (max-width: 991px) {
    .about-mission-title {
        margin-top: 1em;
    }
    #team .modal-body .image {
        border-radius: 0;
    }
}

#ourvalues .bluu-title {
    color: #fff;
}

#ourvalues .bluu-title::after {
    background: #fff;
}

.about-icon-box {
    color: #fff;
    padding: 1em;
}

.image-wrap {
    padding: 2em 0;
}

.icon-box-title {
    margin-left: 1em;
    font-weight: 700;
}


/* Projects Filter */

#projects-filter {
    padding: 2em 0;
}

#projects-status-filter {
    float: left;
    list-style: none;
    margin-bottom: 0;
    width: 100%;
}

#projects-status-filter li {
    float: left;
    padding: 0.5em 1.5em;
    margin: 1em;
    border: 1.5px solid #f2f2f2;
    text-transform: uppercase;
    font-weight: 400;
    cursor: pointer;
    color: #808080;
}

#projects-status-filter .active {
    border-color: #80163E;
    color: #80163E;
    font-weight: 600;
}

#projectCategoryFilter {
    padding: 0.5em 1em;
    margin: 1em;
    border: none;
    border-bottom: 1.5px solid #707070;
    text-transform: uppercase;
    font-weight: 600;
    color: #808080;
    background: #fff;
}

#projectCategoryFilter:focus {
    outline: none;
}

@media screen and (min-width: 1200px) {
    #projects-status-filter li:first-child {
        margin-left: 0;
    }
}

@media screen and (max-width: 1199px) and (min-width: 768px) {
    #projects-status-filter li {
        width: calc(calc(100% - 6em)/3);
        padding: 0.5em 0.6em;
    }
}

@media screen and (max-width: 767px) {
    #projects-status-filter li {
        width: 100%;
        margin: 0.5em 0;
    }
}


/* Project filter ends */


/* Project Listing content */


/* .project-data {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: flex-end;
    background: #00000059;
} */

.project-item-wrap {
    position: relative;
    height: 355px;
    margin-bottom: 2em;
    display: flex;
    align-items: flex-end;
    background: #00000059;
    overflow: hidden;
}

.project-list-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    transition: 1s ease;
    transform: scale(1.01);
}

.project-item-wrap:hover .project-list-image {
    transform: scale(1.1);
}

.project-item-wrap.project-row-even {
    height: 185px;
}

@media screen and (max-width: 1200px) {
    .project-item-wrap.project-row-even {
        height: 355px;
    }
}

.project-data {
    width: 100%;
    display: flex;
    align-items: flex-end;
    padding: 1em;
    justify-content: space-between;
}

.project-data-item {
    color: #fff;
    margin-bottom: 0;
}

.project-data-item i {
    position: static !important;
    display: inline-block !important;
    border: 2px solid #fff;
    border-radius: 50% !important;
    padding: 3.5px 8px !important;
    margin-right: 0.5em;
    overflow: hidden;
}

.project-data-link {
    text-align: right;
    font-weight: 700;
    color: #fff;
    opacity: 50%;
    display: inline-flex;
    transition: 0.5s ease;
    align-items: center;
    min-width: 147px;
}

.project-data-link:hover {
    opacity: 1;
    color: #fff;
    text-decoration: none;
}

#load-more-button-wrap {
    text-align: center;
    margin: 2em 0 7em;
}

#project-listing-title {
    margin: 4em 0;
    overflow: hidden;
}

#project-listing-image-wrap {
    height: 550px;
    position: relative;
    overflow-y: clip;
}

@media screen and (max-width: 991px) {
    #project-listing-image-wrap {
        height: 350px;
    }
}

#project-listing-image-wrap img {
    width: 50vw;
    position: absolute;
    object-fit: cover;
    height: 100%;
}

#projects-listing-wrap {
    margin: 3em 0;
}

.projects-main-title {
    font-size: 4em !important;
    line-height: 1;
}

.projectText {
    font-size: 1em;
    padding-top: 0;
    margin: 2em 0;
    color: #808080;
    padding-right: 8%;
}

.ourprojectHeading h1 {
    font-size: 3.4rem;
    margin-bottom: 1.6em;
}

@media screen and (max-width: 991px) {
    #project-listing-image-wrap img {
        width: 100%;
    }
}

@media screen and (max-width: 767px) and (min-width: 576px) {
    .projects-main-title {
        font-size: 3em !important;
        line-height: 1;
    }
    .ourprojectHeading h1 {
        font-size: 2.4rem;
        margin-bottom: 1.6em;
    }
}

@media screen and (max-width: 576px) {
    .projects-main-title {
        font-size: 2.5em !important;
    }
}


/* Project listing content ends */


/* Projects load more */

#projects-load-more {
    padding: 0.5em 1em;
    background: transparent;
    border: 1px solid #808080;
    font-weight: 600;
    color: #808080;
    transition: 0.25s;
    cursor: pointer;
}

#projects-load-more:focus {
    outline: none;
}

#projects-load-more:hover {
    box-shadow: inset 9.5em 0 0 0 #80163e;
    color: #fff;
    border-color: #80163e;
}


/* Projects load more ends */


/* Project Single */

.project-cover-section {
    position: relative;
    padding: 5em 0;
    display: flex;
    align-items: center;
}

.project-cover-image {
    width: 100%;
    position: absolute;
    height: 100%;
    object-fit: cover;
}

.gallery-column-img {
    margin-top: 2em;
    vertical-align: middle;
    width: 100%;
}

#projects-gallery {
    padding: 7em 0 0;
}


/* Project single page ends */


/* Header Styling */

.opaque {
    opacity: 1 !important;
}

.main-menu-trigger {
    position: fixed;
    top: 0;
    z-index: 998;
}

#site-logo-wrap {
    position: fixed;
    top: 0;
    display: flex;
    /*background: #ffffffd9;*/
    z-index: 999;
    transition: all .3s ease;
    transform: translateX(-172px);
}

.side-logo-sticky {
    transform: translateX(0) !important;
}

#site-logo {
    padding: 1em 2em;
    max-height: 100px;
    background: #fff;
}

.main-menu-trigger {
    position: fixed;
    display: flex;
    top: 0;
    left: 75px;
    z-index: 998;
    width: 75px;
    height: 134px;
    background: #80163e;
    transform: translateX(-80px);
    transition: all .3s ease;
}

.menu-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.main-menu-trigger.sticky {
    transform: translateX(-1px);
}

#sticky-scroll-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: calc(100%);
    z-index: 1005;
    background: #fff;
    height: 100px;
    display: flex;
    align-items: center;
    transform: translateY(-172px);
    transition: all .3s ease;
    z-index: 99;
}

#sticky-scroll-menu.scroll-down {
    transform: translateY(0);
}

#toggle-sticky:focus {
    outline: none;
}

.responsive-menu-trigger {
    display: none;
}

#site-top-logo {
    padding: 0.5em 0;
    max-height: 6.5em;
}

.toggle-menu-icon {
    width: 30px;
    height: 30px;
    position: relative;
    margin: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.toggle-menu-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #ffffff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate( 0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate( 0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.toggle-menu-icon span:nth-child(1) {
    top: 5px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.toggle-menu-icon span:nth-child(2) {
    top: 15px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.toggle-menu-icon span:nth-child(3) {
    top: 25px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.toggle-menu-icon.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 4px;
    left: 5px;
}

.toggle-menu-icon.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

.toggle-menu-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 25px;
    left: 5px;
}

#responsive-side-menu {
    position: fixed;
    height: 100Vh;
    width: 100vw;
    top: 0;
    z-index: 1001;
    background: #00000000;
    transition: all .3s ease;
    transform: translateX(100vw);
}

.top-nav-row {
    display: flex;
    align-items: center;
}

footer {
    color: #fff;
    position: relative;
    padding: 3% 0 2%;
    font-size: .9rem;
    min-height: inherit;
}

footer a,
footer p em {
    font-weight: bold;
    font-size: .9rem;
    color: #fff;
    transition: all 0.1s linaer;
    font-style: normal;
}

footer p strong a {
    margin-top: 2em;
}

footer a:hover {
    color: #fff;
}

footer .copywrite {
    padding-top: 17%;
    font-size: .8rem;
}

footer .footerLinks p a {
    font-size: .8rem;
    font-weight: normal;
}

footer .footerLinks {
    padding-top: 11%;
}

footer .footerLinks p {
    margin-bottom: .6em;
}

.logoLeft {
    position: absolute;
    left: 4%;
    max-width: 5.5em;
    top: 17%;
}

footer .socialIcons {
    display: flex;
    padding-top: 22%;
}

footer .socialIcons li {
    list-style: none;
}

footer .socialIcons li i {
    position: static !important;
    padding: 0 !important;
    margin-right: .7em !important;
    font-weight: 300 !important;
    font-size: 14px !important;
}

footer .socialIcons li a {
    text-decoration: none;
}

footer h2 {
    line-height: 1.2;
}

.home-projects-section p,
.home-delivery-quality p,
.home-delivery-quality p,
.excellenceSection p {
    color: #808080;
}

#about-who-we-are .about-content {
    padding-left: 14%;
}

#about-what-we-do .about-content {
    padding-right: 14%;
}

#about-mission .mission-row .about-content {
    padding-right: 14%;
}

#about-mission .about-mission-wrap .about-content {
    padding-right: 0;
    padding-left: 14%;
}

#about-mission .mission-row .position-static .about-content {
    padding-right: 0%;
    padding-left: 14%;
}

.setH {
    min-height: 80vh;
}

#innerBanner {
    height: 25em;
}

.turnkeyText {
    padding-right: 8%;
}

.delivery-quality-content {
    padding-right: 8%;
}

.about-content p {
    color: #808080;
}

.about-content p.bluu-highlight {
    color: #80163E;
}
.profileBlock {
        display: flex;
        align-items: top;
        justify-content: center;
         flex-direction: row; 
    }
    .profileBlock  li{
        list-style: none;
        margin: 2% 1.5%;
        display: flex;
    }
    .profileBlock  li picture{
        position: relative;
        display: block;
        width: 15vw;
        height: 21vw;

    }
    .profileBlock  li picture img{
        position: absolute;
        object-fit: cover;
        width: 100%;
        height: 100%;
        max-width: 100%;
        cursor: pointer;
        -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
        filter: grayscale(100%);
    }

    .profileBlock  li picture p{
        position: absolute;
        bottom: 0;
        background: rgba(128, 22, 62, 0.6);
        width: 100%;
        height: 5em;
        text-align: center;
        color: #fff;
        font-size: .6rem;
        font-weight: 100;
        padding: .3rem 0 .5em;
        margin: 0;
        transition: all .1s linear;
    }
    .profileBlock  li picture p strong {
        color: #fff;
        font-size: .8rem;
        margin: 0;
        padding: 2px 0 0px 0;
        display: block;
    }
    .profileBlock  li .leftBox{
        width: 0;
        height: 0;
        opacity: 0;
        visibility: hidden;
        transition: all .3s linear;
       
        

    }
    .profileBlock  li.active .leftBox{
        width: 450px;
        height: 100%;
        visibility: visible;
        opacity: 1;

    }
    .profileBlock  li .leftBox .inner {
        width: 450px;
        height: 21vw;
        padding:3em;
        font-size: .8rem;
        color: #808080;
        border: 1px solid #80163e;
        position: relative;
    }
    .profileBlock  li .leftBox .inner h2{
        font-size: 1rem;
        color: #80163e;
        font-weight: 100;
        line-height: 1.6;
        padding-bottom: 1.32em;
    }
    .profileBlock  li .leftBox .inner h2 strong{
        display: block;
    }
    .profileBlock  li .leftBox .inner .colseIcon {
        background:#80163e;
        padding: .8em 1em;
        cursor: pointer;
        position: absolute;
        color: #fff;
        right: 0;
        bottom: 0;
        display: block;
        border: 1px solid #80163e;
        border-right: 0;
        border-bottom: 0;
        transition: all .2s linear;
    }
    .profileBlock  li .leftBox .inner .colseIcon:hover {
        background: #fff;
        color:#80163e;
    }
    .profileBlock li picture  figure{
        width: 100%;
        height: 100%;
        position: relative;
        cursor: pointer;
    }
    
    .profileBlock li:hover picture  img, .profileBlock  li.active picture  img{
         -webkit-filter: grayscale(0%);
        filter: grayscale(0%);
    }
    .profileBlock  li.active picture p{
        opacity: 0;
        visibility: hidden;
    }
    #whatsapp-icon-sticky{
        width: 4em;
    }
     #whatsapp-icon-sticky img {
        max-width: 100%;
     }
@media only screen and (min-width: 1800px) {
    .profileBlock li picture {
        position: relative;
        display: block;
        width: 12.3vw;
        height: 16vw;
    }
    .profileBlock li .leftBox .inner{
            width: 480px;
            height: 16vw;
    }
}
@media only screen and (max-width: 1500px) {
    .logoLeft {
        position: absolute;
        left: 2%;
        max-width: 5.2em;
        top: 19%;
    }
}

@media only screen and (max-width: 1350px) {
    .logoLeft {
        position: absolute;
        left: 2%;
        max-width: 4.5em;
        top: 19%;
    }
    .container {
        max-width: 1000px;
    }
    footer h2 {
        font-size: 26px;
    }
    footer {
        font-size: .7rem;
    }
    footer a,
    footer p em {
        font-size: .8rem;
    }
    footer .socialIcons {
        padding-top: 21%;
        margin-bottom: 0;
    }
    footer .footerLinks {
        padding-top: 12%;
    }
    footer .copywrite {
        padding-top: 7%;
        font-size: .7rem;
    }
    body,
    .nav-item .nav-link,
    .dropdown-menu a {
        font-size: .8rem;
    }
    .home-category {
        height: 500px;
    }
    h4 {
        font-size: 22px;
    }
    .bluu-title,
    .bluu-title-white {
        font-size: 2.2rem;
    }
    .fitout-slide-wrapper .title {
        font-size: 4rem;
    }
    #sticky-scroll-menu {
        height: 80px;
    }
    #site-logo {
        max-height: 80px;
    }
    #sticky-scroll-menu .navbar-nav li {
        padding-top: 0;
    }
    .sticky-submenu,
    .sticky-topmenu {
        padding: 1.5em 0 1em;
        height: 81px;
    }
    .bluu-title,
    .bluu-title-white {
        font-size: 2.2rem;
    }
    .turnkeyText {
        padding-right: 5%;
    }
    .profileBlock li .leftBox .inner{
            font-size: .7rem;
    }
    .profileBlock li picture p{
        padding: .2rem 0;
        font-size: .5rem;
        height: 5em;
    }
}

@media screen and (max-width: 1199px) {
    body {
        padding-top: 100px;
    }
    #site-logo-wrap {
        transform: translateY(0);
    }
    #top-nav {
        display: none;
    }
    #toggle-sticky {
        display: none;
    }
    #site-logo-wrap {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #fff;
    }
    #site-logo {
        max-height: 100px;
    }
    .responsive-menu-trigger {
        display: block;
    }
    #responsive-menu-icon {
        margin: 1em 2em;
    }
    #responsive-menu-icon span {
        background: #80163e;
    }
    #responsive-side-menu.is-open {
        transform: translateX(0);
    }
    .sidebar-overlay {
        display: none;
        width: 100vw;
        height: 100%;
        background: #00000040;
        position: absolute;
        top: 0;
        z-index: -1;
        opacity: 0;
        transition: all .3s ease;
    }
    .responsive-menu {
        position: absolute;
        width: 350px;
        height: 100%;
        top: 0;
        right: 0;
        background: #fff;
        z-index: 1001;
        overflow: auto;
    }
    #responsive-side-menu.is-open .responsive-menu {
        transform: translateX(0px);
    }
    .sidemenu-logo-wrap {
        display: block;
        text-align: right;
        margin: 1em 3em 2em;
    }
    .side-menu {
        text-align: right;
        list-style: none;
    }
    .side-menu li {
        margin-bottom: 1em;
    }
    .responsive-menu .dropdown-menu {
        display: block;
        position: static;
        float: none;
        box-shadow: none;
        text-align: revert;
        padding-bottom: 0 !important;
    }
    .responsive-menu .dropdown-menu {
        margin-bottom: 0;
    }
    .side-menu-close-wrap {
        display: flex;
        flex-direction: row-reverse;
    }
    #responsive-menu-close {
        margin: 1em;
    }
    #responsive-menu-close span {
        background-color: #80163E;
    }
}


/* Header styling ends */


/* Home Page Responsiveness */

.category-home-button {
    cursor: pointer;
}

.category-home-button:hover {
    color: #80163e;
    outline: none;
}

#corporategroupCarousel {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 30vw;
}

.imgBox1,
.imgBox2,
.imgBox3,
.imgBox4,
.imgBox5 {
    width: 25%;
    padding: 5%;
}

.imgBox:hover {
    border-bottom: 10px solid #80163e;
}

@media screen and (max-width: 1199px) {
    .sectionHeading h2,
    .sectionHeadingTwo h2 {
        margin-left: 0;
    }
    .deliveringContentH p {
        padding-left: 0;
    }
    .deliveringContentH {
        padding: 1em;
    }
    .ourProjectSection {
        padding: 0;
        margin: 0;
    }
    .imgBox {
        width: 100% !important;
        min-height: 350px;
        border-bottom: 10px solid #80163e;
    }
    #corporategroupCarousel {
        flex-direction: column;
        height: auto;
    }
    .imgBox .overlay {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        opacity: 1;
        visibility: visible;
        height: 80%;
        width: 100%;
        transform: translateX(0%);
        transition: all 0.8s ease-in;
    }
    .imgBox .overlay p {
        opacity: 1;
    }
    .imgBox::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        background: rgba(0, 0, 0, 0.6);
        z-index: -1;
    }
}


/* About and service page sticky */

.servicesNav.sticky-top {
    z-index: 10 !important;
}

.sticky-submenu,
.sticky-topmenu {
    position: sticky;
    top: 0px !important;
    background: #fff;
    z-index: 9;
    border-bottom: 1px solid #eee;
    padding: 2em 0 1em;
    margin-top: 0;
    height: 100px;
}

.servicesNav.sticky-top {
    top: 0px !important;
    height: 100px;
}

@media screen and (max-width: 1350px) {
    .sticky-submenu,
    .sticky-topmenu {
        padding: 1.5em 0 1em;
        height: 80px;
    }
}

@media screen and (max-width: 992px) {
    .servicesNav.sticky-top {
        top: 100px !important;
    }
    .labourSection,
    .turnkeySection,
    .designSection,
    .furnitureHeading p {
        margin-top: 2em;
    }
    .fitoutwHeading h2,
    .turnkeyHeading h2,
    .turnkeySection,
    .designSection,
    .designHeading h2,
    .furnitureHeading p {
        padding-top: 0;
    }
}

@media screen and (max-width: 1460px) and (min-width: 1200px) {
    .navbar-nav li {
        padding-left: 4%;
        padding-right: 4%;
    }
}

@media screen and (max-width: 991px) {
    .sticky-submenu.about-sticky,
    .sticky-top.services-sticky {
        position: static !important;
        height: auto;
    }
    .servicesNav ul li {
        float: left;
        width: calc(100% / 3);
        margin: 0.5em 0;
        text-align: center;
        display: block;
        padding: 0.5em;
    }
    .servicesNav ul {
        display: block;
        float: left;
    }
    #load-more-button-wrap {
        margin: 0;
    }
    #projects-filter {
        padding-bottom: 0;
    }
}

#sidemenu-logo {
    max-height: 120px;
}

#responsive-side-menu .dropdown:hover>.dropdown-menu {
    position: static;
}

.about-strive-wrap {
    position: static;
}

@media screen and (max-width: 991px) and (min-width: 577px) {
    .servicesNav ul li {
        width: 50%;
    }
    .aboutSection {
        padding-top: 2em;
    }
}

@media screen and (max-width: 576px) and (min-width: 376px) {
    .servicesNav ul li {
        width: 100%;
    }
    .sticky-top.services-sticky {
        position: static;
    }
}


/*.hasSubSticky {
    width: 100%;
}*/

.bluu-font {
    color: #80163E;
}

.servicesNav .bluu-btn:hover {
    color: #fff;
}

.services-intro {
    margin: 6em 0;
}

@media screen and (max-width: 576px) {
    .servicesNav .bluu-btn:hover {
        color: #80163E;
    }
    .productsSection img {
        width: 100%;
        margin-bottom: 2em;
    }
    .productsSection {
        padding-bottom: 2rem;
    }
    .services-intro {
        margin: 1em 0;
    }
    .executiveContent {
        padding: 4em 0 0;
    }
}

.services-sticky {
    padding: 2em 0 !important;
    background: #fff;
    border-bottom: 1px solid #eee;
    margin: 0;
}

.labourSection h2 {
    font-weight: 800;
}

.turnkeyText span {
    font-weight: bold;
}


/* Responsive Fixes */

.icon-section {
    padding: 6em 0;
}

.bluu-title.text-white::after {
    background: #fff;
}

.career-text {
    color: #fff;
    font-size: 1.25em;
}

.career-col,
.contact-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
}

@media screen and (max-width: 576px) {
    .servicesNav .bluu-btn:hover {
        color: #80163E;
    }
    .bluu-title,
    .bluu-title-white {
        font-size: 1.8rem;
        margin-bottom: 1.4em;
    }
    .bluu-subtitle {
        font-size: 1.2em;
    }
    .home-category-content {
        width: 100%
    }
    .footerLogo {
        width: 50px;
    }
    .footernavHeading h2 {
        padding-top: 0;
        line-height: 1.2;
        font-size: 1.2rem;
    }
    .footernavHeading h2 br {
        display: none
    }
    .socialLinks {
        padding-top: 1em;
    }
    .addressFooter li:nth-last-child(2) {
        margin-top: 2rem;
    }
    .addressFooter3 li:last-child {
        margin-top: 2.3rem;
    }
    .theForm {
        padding: 1rem;
    }
    div.wpforms-container-full .wpforms-form .wpforms-five-sixths,
    div.wpforms-container-full .wpforms-form .wpforms-four-sixths,
    div.wpforms-container-full .wpforms-form .wpforms-four-fifths,
    div.wpforms-container-full .wpforms-form .wpforms-one-fifth,
    div.wpforms-container-full .wpforms-form .wpforms-one-fourth,
    div.wpforms-container-full .wpforms-form .wpforms-one-half,
    div.wpforms-container-full .wpforms-form .wpforms-one-sixth,
    div.wpforms-container-full .wpforms-form .wpforms-one-third,
    div.wpforms-container-full .wpforms-form .wpforms-three-fourths,
    div.wpforms-container-full .wpforms-form .wpforms-three-fifths,
    div.wpforms-container-full .wpforms-form .wpforms-three-sixths,
    div.wpforms-container-full .wpforms-form .wpforms-two-fourths,
    div.wpforms-container-full .wpforms-form .wpforms-two-fifths,
    div.wpforms-container-full .wpforms-form .wpforms-two-sixths,
    div.wpforms-container-full .wpforms-form .wpforms-two-thirds {
        margin-left: 0
    }
    div.wpforms-container-full .wpforms-form .wpforms-one-half,
    div.wpforms-container-full .wpforms-form .wpforms-three-sixths,
    div.wpforms-container-full .wpforms-form .wpforms-two-fourths {
        width: 100%
    }
    .fitout-slide-wrapper .title {
        border-bottom: 0;
    }
    .delivery-quality-image-wrap,
    .about-image-wrap {
        height: 20em;
    }
    .delivery-quality-image-wrap img {
        width: 100%;
    }
    .home-delivery-quality {
        padding: 1em 0;
    }
    .excellenceText p {
        padding-bottom: 2em;
    }
    .excellenceHeading h1 {
        margin-top: 0;
    }
    .home-projects-section {
        padding: 2em 0;
    }
    .home-clients-section {
        margin: 3em 0;
    }
    footer h2 {
        font-size: 19px;
        padding-top: 6%;
    }
    footer {
        padding: 1em .5em 2em;
    }
    .logoLeft {
        position: absolute;
        right: 26px;
        max-width: 4.5em;
        top: 13px;
        left: initial;
    }
    footer h2 {
        font-size: 19px;
        padding-top: 6%;
    }
    footer .socialIcons {
        padding-top: 7%;
        margin-bottom: 9%;
    }
    footer .footerLinks {
        position: absolute;
        padding-top: 0;
        order: 5;
        bottom: -12em;
    }
    footer .copywrite {
        padding-top: 9%;
        font-size: .7rem;
    }
    footer .footerLinks p {
        display: inline-block;
        margin-right: 12px;
    }
    div.wpforms-container-full .wpforms-form input.wpforms-field-medium,
    div.wpforms-container-full .wpforms-form select.wpforms-field-medium,
    div.wpforms-container-full .wpforms-form .wpforms-field-row.wpforms-field-medium,
    div.wpforms-container-full .wpforms-form input.wpforms-field-small,
    div.wpforms-container-full .wpforms-form select.wpforms-field-small,
    div.wpforms-container-full .wpforms-form .wpforms-field-row.wpforms-field-small,
    div.wpforms-container-full .wpforms-form input.wpforms-field-large,
    div.wpforms-container-full .wpforms-form select.wpforms-field-large,
    div.wpforms-container-full .wpforms-form .wpforms-field-row.wpforms-field-large {
        width: 100% !important;
    }
    .home-category {
        height: 320px;
    }
    .home-category-content {
        transform: translateY(240px);
    }
    #about-who-we-are .about-content {
        padding-left: 0;
    }
    #about-what-we-do .about-content {
        padding-right: 0%;
    }
    #about-mission .mission-row .about-content {
        padding-right: 0%;
    }
    #about-mission .mission-row .position-static .about-content {
        padding-right: 0%;
        padding-left: 0%;
    }
    .turnkeyText {
        padding-right: 0%;
    }
    .delivery-quality-content {
        padding-right: 0;
    }
    .projectText {
        padding-right: 0;
    }
    .team{
        margin: 1.5em 0 0 0;
    }
    .profileBlock{
        flex-wrap: wrap;
    }
    .profileBlock li{
        width: 100%;
        display: block;
        overflow: hidden;
    }
    .profileBlock li picture {
        position: relative;
        display: block;
        width: 100%;
        height: auto;
    }

    .profileBlock li picture img{
        position: static;
        height: auto;
    }
    .profileBlock li.active{
        overflow: auto;
    }
    .profileBlock li .leftBox{
            transition: height .3s linear;
    }
    .profileBlock li.active .leftBox{
        height: 300px;
        width: 100%;
    }
    .profileBlock li .leftBox .inner{
        height: 300px;
        width: 100%;
    }
}

@media screen and (max-width: 991px) and (min-width: 300px) {
    .bluu-title,
    .bluu-title-white {
        margin-bottom: 1.3em;
    }
    .about-bluu-section,
    .about-what-we-do-section {
        margin: 3em 0;
    }
    .about-image-wrap {
        height: 300px;
    }
    .about-mission-section {
        padding: 0em 0 2em;
        margin: 3em 0 0;
    }
    .about-strive-wrap {
        position: relative;
        padding-top: 2em;
        padding-bottom: 2em;
    }
    .about-mission-background {
        width: 100%;
        height: 100%;
    }
    .about-mission-wrap h1 {
        margin-top: 1em;
    }
    .about-mission-title {
        margin-top: 1.5em;
    }
    .icon-section {
        padding: 3em 0 2em;
    }
    .executiveContent {
        padding: 3em 0 0;
    }
    .team-member h4 {
        margin-bottom: 0;
    }
    .banner-link a {
        display: block;
        margin-top: 2em;
    }
    .project-cover-section {
        padding: 2em 0;
    }
    .delivery-quality-image-wrap {
        height: auto;
    }
    .career-col,
    .contact-col {
        margin-bottom: 3em;
    }
    .delivery-quality-image-wrap img {
        position: static;
        width: 100%;
    }
    .servicesNav li a {
        display: block;
        text-transform: uppercase;
        border-right: 1px solid #eee;
    }
    .ourprojectHeading h1 {
        font-size: 2.2rem;
    }
    .sidemenu-logo-wrap {
        margin: 1em 3em;
    }
    .side-menu li {
        margin-bottom: 0.5em;
    }
    #about-mission .about-mission-wrap .about-content {
        padding-right: 0;
        padding-left: 0;
    }
    #about-who-we-are .about-content {
        padding-left: 0
    }
    #about-what-we-do .about-content,
    #about-mission .mission-row .about-content {
        padding-right: 0;
    }
    #projectCategoryFilter {
        width: 100%;
        margin: 1em 0;
    }
}

.slick-slide,
.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
}

.clients-slider-one::before,
.clients-slider-two::before,
.clients-slider-one::after,
.clients-slider-two::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 100%;
    top: 0;
    z-index: 1;
}

.clients-slider-one::before,
.clients-slider-two::before {
    background: linear-gradient( 90deg, #fff, transparent);
    left: 0;
}

.clients-slider-one::after,
.clients-slider-two::after {
    background: linear-gradient( 90deg, transparent, #fff);
    right: 0;
}

.project-item-wrap .bi-arrow-right::before {
    transition: 0.5s ease;
}

.project-item-wrap:hover .bi-arrow-right::before {
    animation: arrow 0.4s linear;
    /* transform: translate(9px, 0px); */
}

@keyframes arrow {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(50px, 0);
    }
    50.1% {
        transform: translate(50px, -50px);
    }
    50.2% {
        transform: translate(-50px, -50px);
    }
    50.3% {
        transform: translate(-50px, 0);
    }
    100% {
        transform: translate(0, 0);
    }
}


/* Sidebar - Connect links */

.sidebarConnect {
    list-style: none;
    text-align: right;
}

.sidebarConnect li {
    display: block;
    margin-bottom: 0.8em;
    padding: 0 15px;
}

.sidebarConnect li a,
.sidebarConnect li {
    color: #808080;
}

.sidebar-social>a>.sidebarSocialLinks {
    position: static !important;
    color: #808080 !important;
    padding-top: 0;
}

.sidebar-social {
    display: flex !important;
    flex-direction: row-reverse !important;
}


/* Slider responsive content */

@media only screen and (max-width: 767px) and (min-width: 576px) {
    .fitout-slide-wrapper .title {
        font-size: 4em;
    }
    .excellenceHeading h1 {
        font-size: 2em;
    }
    .about-cover h3 {
        font-size: 1.8em;
        line-height: 1.5;
    }
    
}

@media only screen and (max-width: 575px) and (min-width: 370px) {
    .fitout-slide-wrapper .title {
        font-size: 2.5em;
    }
    .fitout-custom-slide .btn {
        margin-top: 0;
    }
    .excellenceHeading h1 {
        font-size: 1.8em;
    }
    .about-cover h3 {
        font-size: 2em;
    }
    .servicesNav ul li {
        width: 100%;
        margin: 0;
    }
    
    #home-spy-scroll {
        display: none;
    }
}

@media only screen and (max-width: 374px) and (min-width: 300px) {
    .fitout-slide-wrapper .title {
        font-size: 2em;
    }
    .fitout-custom-slide .btn {
        margin-top: 0;
    }
    .excellenceHeading h1 {
        font-size: 1.6em;
    }
    .about-cover h3 {
        font-size: 1.5em;
        line-height: 1.3;
    }
    #home-spy-scroll {
        display: none;
    }
}



#lightgallery {
    list-style: none;
    margin: 0;
    columns: 2;
  column-gap: 1rem;
}

.gallery-item {
    
   margin: 0 1rem 1rem 0;
  display: inline-block;
  width: 100%;
    
}
/*#lg-gallery .lg-outer .lg-thumb {
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
}*/
.lg-outer .lg-thumb {
    margin: 0 auto;
     display: inline-block;
}
.gallery-item img {
   
   max-width: 100%;
   margin: 0;
    
}

.lg-backdrop {
    background-color: #000000cc !important;
}

.lg-outer .lg-thumb-outer {
    background-color: transparent !important;
    text-align: center;
}

.lg-thumb-outer.lg-grab {
    position: absolute;
    bottom: 1em;
}

.lg-outer .lg-image {
    max-height: calc(100vh - 250px) !important;
}

.lg-thumb-item.active {
    border-color: #80163e !important;
}

.service-brandsSection .slick-slide img {
    margin: auto;
}
.lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html{
    display: none;
}
@media screen and (max-width: 576px) {
    .lg-thumb-outer, .lg-outer .lg-toogle-thumb{
        display: none;
    }
    .executivePrimary{
        font-size: 1rem;
    }
    .profileBlock li picture p{
        font-size: .6rem;
    }
    .sticky-submenu.about-sticky, .sticky-top.services-sticky{
        display: none;
    }
    .ourServices{
        padding-top: 1em;
    }
    .sidebarConnect{
        display: none;
    }
}
@media screen and (max-width: 1350px) and (min-width: 300px) {
    .team-member .captionBx {
        height: 3.8em;
    }
}