:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #868e96;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #868e96;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji",
        "Segoe UI Emoji", "Segoe UI Symbol";
    --font-family-monospace: "SFMono-Regular", Menlo, Monaco, Consolas,
        "Liberation Mono", "Courier New", monospace;
}

*,
::after,
::before {
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
}

@-ms-viewport {
    width: device-width;
}

header,
section {
    display: block;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji",
        "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
}

h3,
h5 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

a {
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}

img {
    vertical-align: middle;
    border-style: none;
}

a,
button,
input:not([type="range"]),
select {
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}

button {
    border-radius: 0;
}

button,
input,
select {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

[type="submit"],
button,
html [type="button"] {
    -webkit-appearance: button;
}

[type="button"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
}

h3,
h5 {
    margin-bottom: 0.5rem;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.2;
    color: inherit;
}

h3 {
    font-size: 1.75rem;
}

h5 {
    font-size: 1.25rem;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-12,
.col-md-3,
.col-md-4,
.col-md-8,
.col-sm-12 {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 576px) {
    .col-sm-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .col-md-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-md-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-md-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .offset-md-1 {
        margin-left: 8.333333%;
    }
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-image: none;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.form-control::-ms-expand {
    background-color: transparent;
    border: 0;
}

.form-control::-webkit-input-placeholder {
    color: #868e96;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: #868e96;
    opacity: 1;
}

.form-control::-ms-input-placeholder {
    color: #868e96;
    opacity: 1;
}

select.form-control:not([size]):not([multiple]) {
    height: calc(2.25rem + 2px);
}

.form-group {
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
}

.btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.fade {
    opacity: 0;
}

.w-100 {
    width: 100% !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

@media (min-width: 576px) {
    .text-sm-center {
        text-align: center !important;
    }
}

@media (min-width: 768px) {
    .text-md-left {
        text-align: left !important;
    }
}

.text-uppercase {
    text-transform: uppercase !important;
}

.swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.swiper-wrapper {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.swiper-slide {
    -webkit-flex-shrink: 0;
    -ms-flex: 0 0 auto;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
}

@charset "UTF-8";

@font-face {
    font-family: "FontAwesome";
    src: url(http://socialpanga.in/shriramproperties/LP/assets/fonts/fontawesome-webfont.eot?v=4.7.0);
    src: url(http://socialpanga.in/shriramproperties/LP/assets/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0)
            format("embedded-opentype"),
        url(http://socialpanga.in/shriramproperties/LP/assets/fonts/fontawesome-webfont.woff2?v=4.7.0) format("woff2"),
        url(http://socialpanga.in/shriramproperties/LP/assets/fonts/fontawesome-webfont.woff?v=4.7.0) format("woff"),
        url(http://socialpanga.in/shriramproperties/LP/assets/fonts/fontawesome-webfont.ttf?v=4.7.0) format("truetype"),
        url(http://socialpanga.in/shriramproperties/LP/assets/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular)
            format("svg");
    font-weight: 400;
    font-style: normal;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fa-phone:before {
    content: "\f095";
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.mt-10 {
    margin-top: 10px;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-10 {
    margin-bottom: 10px;
}

.pt-10 {
    padding-top: 10px;
}

.pb-10 {
    padding-bottom: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.fs-14 {
    font-size: 14px;
}

.fs-16 {
    font-size: 16px;
}

.fs-21 {
    font-size: 21px;
}

@media only screen and (max-width: 767px) {
    .pt-xs-15 {
        padding-top: 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 949px) {
    .pt-sm-15 {
        padding-top: 15px;
    }

    .text-sm-center {
        text-align: center;
    }
}

@font-face {
    font-family: "MontserratSemiBold";
    src: url(http://socialpanga.in/shriramproperties/LP/assets/fonts/MontserratSemiBold.eot);
    src: url(http://socialpanga.in/shriramproperties/LP/assets/fonts/MontserratSemiBold.eot) format("embedded-opentype"),
        url(http://socialpanga.in/shriramproperties/LP/assets/fonts/MontserratSemiBold.woff2) format("woff2"),
        url(http://socialpanga.in/shriramproperties/LP/assets/fonts/MontserratSemiBold.woff) format("woff"),
        url(http://socialpanga.in/shriramproperties/LP/assets/fonts/MontserratSemiBold.ttf) format("truetype"),
        url(http://socialpanga.in/shriramproperties/LP/assets/fonts/MontserratSemiBold.svg#MontserratSemiBold) format("svg");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "PlayFairDisplayRegular";
    src: url(http://socialpanga.in/shriramproperties/LP/assets/fonts/PlayFairDisplayRegular.eot);
    src: url(http://socialpanga.in/shriramproperties/LP/assets/fonts/PlayFairDisplayRegular.eot) format("embedded-opentype"),
        url(http://socialpanga.in/shriramproperties/LP/assets/fonts/PlayFairDisplayRegular.woff2) format("woff2"),
        url(http://socialpanga.in/shriramproperties/LP/assets/fonts/PlayFairDisplayRegular.woff) format("woff"),
        url(http://socialpanga.in/shriramproperties/LP/assets/fonts/PlayFairDisplayRegular.ttf) format("truetype"),
        url(http://socialpanga.in/shriramproperties/LP/assets/fonts/PlayFairDisplayRegular.svg#PlayFairDisplayRegular)
            format("svg");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "RobotoRegular";
    src: url(http://socialpanga.in/shriramproperties/LP/assets/fonts/RobotoRegular.eot);
    src: url(http://socialpanga.in/shriramproperties/LP/assets/fonts/RobotoRegular.eot) format("embedded-opentype"),
        url(http://socialpanga.in/shriramproperties/LP/assets/fonts/RobotoRegular.woff2) format("woff2"),
        url(http://socialpanga.in/shriramproperties/LP/assets/fonts/RobotoRegular.woff) format("woff"),
        url(http://socialpanga.in/shriramproperties/LP/assets/fonts/RobotoRegular.ttf) format("truetype"),
        url(http://socialpanga.in/shriramproperties/LP/assets/fonts/RobotoRegular.svg#RobotoRegular) format("svg");
}

body {
    font-family: "MontserratLight";
    font-size: 14px;
    color: #3d383a;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

.roboto {
    font-family: "RobotoRegular";
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}

.banner-captions {
    top: 100px;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 99;
}

.white-color {
    color: #fff;
}

.phone-no {
    background: rgba(255, 255, 255, 0.85);
    padding: 5px 10px;
    margin-right: -15px;
    color: #4e4e4e;
    font-family: "MontserratSemiBold";
    display: inline-block;
}

.phone-no i {
    width: 20px;
    height: 20px;
    line-height: 18px;
    display: inline-block;
    color: #ebb240;
    border: 1px solid;
    border-radius: 50%;
    text-align: center;
    font-size: 12px;
}

#form {
    border: 1px solid #b9b9b9;
    background: rgba(255, 255, 255, 0.85);
}

h3,
h5 {
    font-family: "PlayFairDisplayRegular";
}

.form-title {
    font-family: "PlayFairDisplayRegular";
    display: block;
    width: 100%;
    background: #61727e;
}

.roboto {
    font-family: "RobotoRegular";
}

select.form-control:not([size]):not([multiple]) {
    height: auto;
}

.form-control {
    border: 1px solid #909090;
    border-radius: 0;
    padding: 5px 10px;
    line-height: normal;
}

select.form-control {
    padding: 4px 10px;
}

.form-holder {
    margin-top: -60px;
}

.help-block.with-errors {
    font-size: 12px;
    color: #a00;
}

.btn-primary {
    border-radius: 0;
    background: #ebb240;
    border-color: #ebb240;
    text-transform: uppercase;
}

.sticky-btns {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.sticky-btns a {
    width: 50%;
    float: left;
    height: 36px;
    text-align: center;
    color: #fff;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    background-color: #ebb240;
    line-height: 36px;
}

.dummy-div {
    height: 36px;
    width: 100%;
}

.sticky-btns a:last-child {
    border-right: none;
}

.modal-header {
    background: #ebb240;
    border-radius: 0;
}

.modal-title {
    color: #fff;
}

.modal-content {
    border-radius: 0;
}

@media only screen and (max-width: 950px) {
    .banner-captions {
        top: 0;
        position: relative;
        left: 0;
        width: 100%;
        z-index: 99;
        bottom: 0;
    }

    .white-bg-mobile {
        background: rgba(255, 255, 255, 0.87);
    }
}

form {
    opacity: 0;
}


