html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container-fluid {
    padding: 0;
    margin: 0;
}
a {
    color: #0068b4 !important;
    text-decoration: none !important;
}

/* Inner Banner */
.inner-banner {
    position: relative;
}

.inner-banner h1 {
    padding: 0;
    margin: 0;
    color: #FFFFFF;
    font-size: 60px;
    line-height: 1;
}

.inner-banner.no-opacity:after {
    display: none;
}

.inner-banner:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .45);
}

.inner-banner picture {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

/* picture */
picture {
    display: block;
}

picture.cont_brn,
picture.resi_brn {
    padding: 12% 0
}

picture.cont_brn {
    background: no-repeat center center/cover;
}

.innerpage-ban-heading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 90%;
    margin: 0;
    text-align: center;
}


.innerpage-ban-heading,
.main-project-details h2 {
    padding-top: 10px;
    margin: 0;
    margin-bottom: 20px;
}

.innerpage-ban-heading:before {
    content: '';
    width: 35px;
    height: 1px;
    margin: 0 auto;
    background: var(--godrej-blue);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.innerpage-ban-heading:before {
    background: #FFFFFF;
}



/* css for blog listing */

.card {
    border: none;
    border-radius: unset;
}

.card figure {
    overflow: hidden;
    border-radius: 3px;
    margin: 0;
}

.card figure img {
    transition: all .25s ease;
}

.card:hover figure img {
    transform: scale(1.16);
}

.card-body {
    padding: 0;
    display: flex;
    flex-flow: column;
}

.card-body h5 {
    font-size: 18px;
}

.card-body .btn {
    width: 100%;
    margin-top: auto;
}

.card-body a.btn-blog {
    text-transform: uppercase;
}

.card.bg-white {
    border: solid 1px #ced4da;
    padding: 24px;
    height: 100%;
    border-radius: 3px;
}


h1 span {
    display: block;
}

.synopsis {
    background: #fff5f5;
    border-radius: 8px;
    padding: 15px;
}

.table-of-content {
    background: #f0f6fb;
    border-radius: 8px;
    padding: 15px;    
}

.table-of-content h3, p, .synopsis h3, p {
    text-align: left;
}

.table-of-content h3, .synopsis h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
}

.table-of-content, .synopsis {
    height: fit-content;
}

.content-synopsis ul, .content-synopsis ol {
    text-align: left;
    list-style-type: disc;
    padding-left: 30px;
    font-size: 14px;
    margin: 10px 0;
}

.content-synopsis ol {
    list-style-type: decimal;
}

.content-synopsis li+li {
    margin-top: 10px;
}

.content-synopsis a {
    color: #333333 !important;
    font-size: 14px;
}

.content-synopsis a:hover, .content-synopsis a:focus {
    color: #0068b4 !important;
}

.content-synopsis p+p {
    margin-top: 10px;
}

.ul-font {
    list-style-type: disc;
    padding-left: 40px;
}


.left-content {
  width: 70% !important;
  overflow-y: auto; /* enable scrolling */
}

.right-content {
  width: 30% !important;
  position: sticky;
  top: 100px;
  height: fit-content;
}


@media screen and (max-width: 991px) {
    .blog-container {
        flex-direction: column-reverse;
    }

    .left-content, .right-content {
        width: 100% !important;
    }

    .right-content {
        position: unset;
    }

    .inner-banner h1 {
        font-size: 25px;
    }
}