:root {
    --colorPrimary: #439b04;
    --colorSecondary: #3F7819;
    --colorBtn: #ffffff;
}

html {
    scroll-behavior: smooth;
}

/* sidebar */
#sidebar {
    width: 20%;
    background: #ffffff;

}

.sidebar-new-inner .top-button-wrap .btn {
    width: 44%;
    text-align: center;
    font-size: 14px;
    padding: 12px 0px;
    text-transform: capitalize;
}

.top-button-wrap .btn a {
    color: #fff;
}

.sidebar-new-inner .top-button-wrap {
    display: flex;
    justify-content: space-evenly;
}

.sidebar-new-inner .top-button-wrap .btn-secondary {
    color: #fff;
    background-color: #4c4c4c;
    border-color: #4c4c4c;
}

.middle-button-wrap .btn-primary {}

/* Effects */
@keyframes rocking {
    0% {
        transform: rotate(0deg)
    }

    25% {
        transform: rotate(0deg)
    }

    50% {
        transform: rotate(2deg)
    }

    75% {
        transform: rotate(-2deg)
    }

    100% {
        transform: rotate(0deg)
    }
}

@-webkit-keyframes Gradient {
    0% {
        background-position: 0 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0 50%
    }
}

@-moz-keyframes Gradient {
    0% {
        background-position: 0 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0 50%
    }
}

@keyframes Gradient {
    0% {
        background-position: 0 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0 50%
    }
}

.effetMoveGradient,
.effetMoveGradient:hover {
    text-shadow: 0px 3px 6px var(--colorPrimary);
    background-color: var(--colorSecondary);
    background: linear-gradient(-45deg, var(--colorPrimary), var(--colorSecondary), var(--colorPrimary), var(--colorSecondary));
    background-size: 400% 400%;
    -webkit-animation: Gradient 3s ease infinite, rocking 3s ease infinite;
    animation-delay: 2s;
    -moz-animation: Gradient 3s ease infinite, rocking 3s ease infinite;
    animation-delay: 2s;
    animation: Gradient 3s ease infinite, rocking 3s ease infinite;
    animation-delay: 2s;
    color: var(--colorBtn);
    border: none;
}

.effetGradient,
.effetGradient:hover {
    text-shadow: 0px 3px 6px var(--colorPrimary);
    background-color: var(--colorSecondary);
    background: linear-gradient(-45deg, var(--colorPrimary), var(--colorSecondary), var(--colorPrimary), var(--colorSecondary));
    background-size: 400% 400%;
    -webkit-animation: Gradient 3s ease infinite;
    -moz-animation: Gradient 3s ease infinite;
    animation: Gradient 3s ease infinite;
    color: var(--colorBtn);
    border: none;
}

.effectScale {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.effectScale:hover {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -ms-transform: scale(1.08);
    -o-transform: scale(1.08);
    transform: scale(1.08);
}

.intl-tel-input,
.iti {
    width: 100%;
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@-webkit-keyframes bounceIn {

    from,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }

    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes bounceIn {

    from,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }

    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.bounceIn {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
}

@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    80% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    80% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}


#sidebar .sidebar-form {
    padding: 15px 15px;
    margin: 15px 15px;
    box-shadow: 0 4px 15px rgb(12 35 34 / 48%) !important;
}

.sidebar-form h6 {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
}

.sidebar-form .form-control:focus {
    border-color: #439b04;
}

.sidebar-form .form-control {
    min-height: 50px;
}

.sidebar-form .form-control button {
    min-height: 50px;
}

.meena-gal.meena-hr .effetGradient.effectScale {
    border: 2px solid #fff;
}

/* deals-modal */
@media only screen and (min-width: 992px) {
    .modal-dialog {
        max-width: 550px;
        border-radius: 0px;
    }
}

#deals-modal {
    z-index: 1080;
}

#deals-modal .modal-header {
    justify-content: center;
    position: relative;
}

.modal-header-logo {
    width: 100%;
    text-align: center;
}

.modal-header-logo img {}

#deals-modal .close {
    position: absolute;
    padding: 2px 3px;
    right: 0;
    top: 0;
    margin: 0px;
}

/*#deals-modal .modal-header img{*/
/*width: 60%;*/
/*}*/
#deals-modal .modal-header img {
    width: 180px;
}

#deals-modal .modal-footer {
    background-color: var(--colorPrimary);
    color: var(--colorBtn);
    padding: 0px;
    text-align: center;
}

#deals-modal .modal-footer a {
    display: block;
    width: 100%;
    color: var(--colorBtn);
    font-weight: 500;
    font-size: 20px;
    padding: 12px 15px;
}

.modal {
    padding-right: 0px !important;
}

.spl-modal .modal-title {
    text-transform: capitalize;
    letter-spacing: 0px;
    font-size: 32px;
    font-weight: 600;
    color: #fff;
}

.spl-modal .modal-header {
    background-color: #439b04;
}

.modal-left-part ul li {
    list-style: none;
}

.modal-left-part ul li img {
    width: 60px;
    filter: invert(60%) sepia(82%) saturate(4618%) hue-rotate(63deg) brightness(94%) contrast(97%);
}

.modal-left-part ul {
    margin-top: 0;
    margin-bottom: 0px;
    padding-left: 0px;
}

.modal-left-part {
    background-color: #f9f9f9;
    height: 100%;
}

.modal-left-part h4 {
    font-weight: 600;
    color: #449c04;
}

.modal-left-part h6 {
    color: #449c04;
    font-weight: 500;
}

.modal-right-part h5 {
    font-size: 24px;
    line-height: 36px;
    font-weight: 600;
}

.modal-right-part h5 span {
    color: #f00;
}

.modal-right-part .sidebar-form .form-control {
    min-height: 50px;
}

.modal-right-part .sidebar-form .btn {
    min-height: 50px;
}


/* sidebar */

/* header */

.topbar {
    width: calc(100% - 20%);
    box-shadow: 0 4px 15px rgb(12 35 34 / 41%) !important;
}

.nav-item .nav-link img {
    width: 19px;
    margin-right: 4px;
}

/* header */

/* body-section */

#main-wrapper.home {
    width: calc(100% - 20%);
}

/* banner-left-part */

.hero-fullscreen {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.hero-fullscreen img {
    height: 100%;
    object-fit: cover;
}

.banner-left-part {
    position: absolute;
    left: 20px;
    top: 50px;
    background-color: #fff;
    padding: 15px;
    box-shadow: 0 4px 15px rgb(12 35 34 / 48%) !important;
    width: 22.5vw;
    z-index: 10;
}

.bl-upper h5 {
    font-size: 24px;
    font-weight: 600;
    color: #439b04;
    margin-bottom: 8px;
}

.bl-upper h3 {
    font-size: 30px;
    line-height: 38px;
    font-weight: 600;
    color: #000;
}

.bl-upper h4 {
    font-size: 26px;
    color: #000;
}

.bl-upper h6 {
    font-size: 20px;
    font-weight: 500;
    color: #000;
}

.bl-lower h5 {
    font-size: 24px;
    color: #000;
    line-height: 32px;
    font-weight: 500;
}

.bl-lower h5 span {
    font-weight: 700;
}

.bl-lower h2 {
    color: #439b04;
}

.bl-lower h2 span {
    font-weight: 700;
}

.bl-lower p {
    color: #000;
    margin-bottom: 6px;
}

.bl-lower p:last-child {
    margin-bottom: 0px;
}

.grey-bg {
    background-color: #e8e8e8;
    padding: 10px;
}

.offers {
    display: block;
    font-size: 14px;
    margin: 5px 0;
    color: var(--colorBtn);
    padding: 5px;
    font-weight: bold;
    text-transform: capitalize;
    text-align: center;
}

.grey-bg td.heading2 {
    color: #000;
    font-weight: 400;
    font-size: 14px;
    margin-left: 0;
}

.grey-bg td.heading1 {
    color: #000;
    font-weight: 700;
    font-size: 14px;
}

/* banner-left-part */

/* floor-plans */

#plans .card-img-top {
    height: 450px;
}

#plans .popup-gallery .card {
    position: relative;
    overflow: hidden;
    border-radius: 0px;
}

#plans.meena-gal.meena-hr {
    padding: 40px 15px 20px;
}

.enquire-div {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.enquire-div .btn {
    border: 2px solid #fff;
}

#plans .popup-gallery .card:hover .enquire-div {
    opacity: 1;
    transition: 0.3s ease-in-out;
}

#plans2 .card-img-top {
    height: auto;
}

@media only screen and (max-width:1920px) {
    #plans .card-img-top {
        height: 340px;
    }
}

@media only screen and (max-width:1599px) {
    #plans .card-img-top {
        height: 260px;
    }
}

@media only screen and (max-width:1200px) {
    #plans .card-img-top {
        height: 200px;
    }
}

@media only screen and (max-width:575px) {
    #plans .card-img-top {
        height: auto;
    }
}

/* floor-plans */

/* video-section */

.video-section iframe {
    height: 600px !important;
}

@media only screen and (max-width:1899px) {
    .video-section iframe {
        height: 400px !important;
    }
}

@media only screen and (max-width:991px) {
    .video-section iframe {
        height: 360px !important;
    }
}

@media only screen and (max-width:767px) {
    .video-section iframe {
        height: 320px !important;
    }
}

@media only screen and (max-width:575px) {
    .video-section iframe {
        height: 280px !important;
    }
}

@media only screen and (max-width:410px) {
    .video-section iframe {
        height: 220px !important;
    }
}

/* video-section */


/* gallery-part */

.gallery-section-second .card-img-top {
    height: 200px;
    transition: 0.3s ease-in-out;
}

section.gallery-section-second {
    padding: 40px 15px 20px;
}

/* gallery-part */

/* location-part */

.popup-map-gallery .card-img-top {
    border: 1px solid #439b04;
    border-radius: 0;
}

.popup-map-gallery.popup-gallery .card:hover .enquire-div {
    opacity: 1;
}

/* location-part */

/* location-advantages */

.location-advantage-tab-wrap .nav {
    justify-content: center;
}

.location-advantage-tab-wrap .nav-item {
    margin: 10px;
}

.location-advantage-tab-wrap .nav-pills .nav-link.active {
    color: #fff;
    background-color: #439b04;
    border: 2px solid #439b04;
}

.location-advantage-tab-wrap .nav-pills .nav-link {
    border-radius: 0px;
    border: 2px solid #439b04;
    color: #439b04;
    font-weight: 500;
    font-size: 18px;
}

.location-advantage-inner h6 i {
    color: #439b04;
}

.location-advantage-inner h6 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
}

/* location-advantages */

/* body-section */


/* sidebar-responsive */


@media only screen and (max-width:1699px) {
    .sidebar-new-inner .top-button-wrap .btn {
        font-size: 16px;
        display: block;
        width: 100%;
        padding: 10px 0px;
    }

    .sidebar-new-inner .top-button-wrap {
        display: block;
        padding: 0px 15px;
    }

    .sidebar-new-inner .top-button-wrap .btn.btn-secondary {
        margin-bottom: 16px;
    }
}

@media only screen and (max-width:1399px) {
    .sidebar-new-inner .top-button-wrap .btn {
        font-size: 13px;
    }

    .middle-button-wrap .btn {
        font-size: 13px;
        padding-left: 5px;
        padding-right: 5px;
    }

    .sidebar-form h6 {
        font-size: 12px;
    }

    .sidebar-form .form-control {
        min-height: auto;
    }

    .sidebar-new-inner .sidebar-form .btn {
        font-size: 14px;
        padding-left: 5px;
        padding-right: 5px;
    }
}

@media only screen and (max-width:1199px) {

    .sidebar-new-inner .top-button-wrap .btn,
    .middle-button-wrap .btn,
    .sidebar-new-inner .sidebar-form .btn {
        font-size: 12px;
    }
}

/* sidebar-responsive */

/* modal-responsive */

@media only screen and (max-width:1499px) {

    .spl-modal .modal-title {
        font-size: 26px;
        font-weight: 500;
    }
}

/* modal-responsive */

/* header-responsive */

@media only screen and (max-width:1349px) {
    .header13 .h13-nav .navbar-nav .nav-item .nav-link {
        padding: 25px 11px;
        font-size: 14px;
    }

    .nav-item .nav-link img {
        width: 16px;
        margin-right: 4px;
    }
}

@media only screen and (max-width:1199px) and (min-width:992px) {
    .navbar .navbar-brand img {
        width: 170px !important;
    }

    .header13 .h13-nav .navbar-nav .nav-item .nav-link {
        padding: 25px 6px;
        font-size: 12px;
        font-weight: 500;
    }

    .nav-item .nav-link img {
        width: 15px;
        margin-right: 3px;
    }
}

@media only screen and (max-width:991px) {
    .navbar-nav .nav-item {
        width: 100%;
        text-align: center;
    }
}

/* header-responsive */

/* left-side-responsive */

@media only screen and (max-width:991px) {

    /* header */
    .topbar {
        width: 100%;
    }

    /* left-part */
    #main-wrapper.home {
        width: 100%;
    }
}

/* left-side-responsive */

/* banner-responsive */

@media only screen and (max-width:1399px) {
    .bl-upper h5 {
        font-size: 20px;
        font-weight: 500;
        margin-bottom: 0px;
    }

    .bl-upper h3 {
        font-size: 20px;
        line-height: 28px;
        font-weight: 600;
        color: #000;
    }

    .bl-upper h4 {
        font-size: 20px;
        line-height: 22px;
    }

    .bl-upper h6 {
        font-size: 18px;
        font-weight: 500;
        color: #000;
    }

    .offers.effetGradient {
        font-size: 12px !important;
    }

    .bl-lower h5 {
        font-size: 18px;
        line-height: 24px;
        font-weight: 500;
    }

    .bl-lower h2 {
        line-height: 24px;
        font-size: 20px;
    }

    .hero-fullscreen {
        height: 600px;
    }

    .bl-lower p {
        color: #000;
        margin-bottom: 0px;
        font-size: 11px;
    }
}

@media only screen and (max-width:1199px) and (min-width:992px) {
    .banner-left-part {
        padding: 11px;
        width: 300px;
    }
}

@media only screen and (min-width:992px) {
    .booking-open-start-wrap .banner-left-part {
        display: none;
    }
}

@media only screen and (max-width:991px) {
    .banner-left-part {
        display: none;
    }

    .booking-open-start-wrap .banner-left-part {
        display: block;
        position: relative;
        width: 100%;
        top: 0;
        left: 0;
        box-shadow: none !important;
        border-bottom: 1px solid #ddd;
    }

    .hero-fullscreen {
        height: 500px;
    }
}

@media only screen and (max-width:767px) {
    .hero-fullscreen {
        height: 450px;
    }
}

@media only screen and (max-width:575px) {
    .hero-fullscreen {
        height: 360px;
    }
}

/* 
@media only screen and (max-width:475px) {
    .hero-fullscreen {
        height: 330px;
    }
}

@media only screen and (max-width:425px) {
    .hero-fullscreen {
        height: 300px;
    }
}

@media only screen and (max-width:360px) {
    .hero-fullscreen {
        height: 270px;
    }
} */

/* banner-responsive */

/* gallery-responsive */

.gallery-section-second .card-img-top {
        height: auto;
    }


/*@media only screen and (max-width:1920px) {*/
/*    .gallery-section-second .card-img-top {*/
/*        height: 220px;*/
/*    }*/
/*}*/

/*@media only screen and (max-width:1600px) {*/
/*    .gallery-section-second .card-img-top {*/
/*        height: 180px;*/
/*    }*/
/*}*/

/*@media only screen and (max-width:1199px) {*/
/*    .gallery-section-second .card-img-top {*/
/*        height: 140px;*/
/*    }*/
/*}*/

/*@media only screen and (max-width:767px) {*/
/*    .gallery-section-second .card-img-top {*/
/*        height: 210px;*/
/*    }*/
/*}*/

/*@media only screen and (max-width:575px) {*/
/*    .gallery-section-second .card-img-top {*/
/*        height: auto;*/
/*    }*/
/*}*/

/* gallery-responsive */

/* location-responsive */

@media only screen and (max-width:2560px) {
    .map-location-wrap iframe {
        height: 500px !important;
    }
}

@media only screen and (max-width:1920px) {
    .map-location-wrap iframe {
        height: 450px !important;
    }
}

@media only screen and (max-width:1600px) {
    .map-location-wrap iframe {
        height: 380px !important;
    }
}

@media only screen and (max-width:1199px) {
    .map-location-wrap iframe {
        height: 320px !important;
    }
}

@media only screen and (max-width:991px) {
    .map-location-wrap iframe {
        height: 300px !important;
    }
}

@media only screen and (max-width:767px) {
    .map-location-wrap iframe {
        height: 330px !important;
    }
}

@media only screen and (max-width:475px) {
    .map-location-wrap iframe {
        height: 280px !important;
    }
}

@media only screen and (max-width:374px) {
    .map-location-wrap iframe {
        height: 250px !important;
    }
}

/* location-responsive */

/* price-table-responsive */

@media only screen and (max-width:767px) {
    #price .table-price thead {
        display: none;
    }

    #price .table-price tbody,
    #price .table-price tr,
    #price .table-price td {
        display: block;
        text-align: center;
    }

    #price .table-price tr td:first-child {
        font-size: 22px;
        font-weight: 600;
    }

    #price .table-price td {
        border: none;
        font-size: 18px;
        font-weight: 500;
        padding: 1rem 0.75rem;
    }

    #price .table-price td a {
        color: #439b04;
        font-size: 22px;
        font-weight: 600;
    }
}

/* price-table-responsive */

/* location-advantage-responsive */

@media only screen and (max-width:1199px) and (min-width:992px) {
    .location-advantage-tab-wrap .nav-pills .nav-link {
        font-size: 14px;
    }
}

@media only screen and (max-width:991px) {
    .location-advantage-tab-wrap .nav-item {
        margin: 0px;
        width: 100%;
        text-align: center;
    }
}

@media only screen and (max-width:767px) {
    .location-advantage-tab-wrap .nav-pills .nav-link.active {
        border: 1px solid #439b04;
    }

    .location-advantage-tab-wrap .nav-pills .nav-link {
        border: 1px solid #439b04;
        font-size: 14px;
        padding: 10px 2px;
    }
}

@media only screen and (max-width:575px) {
    .location-advantage-inner h6 {
        font-size: 16px;
        line-height: 22px;
        font-weight: 500;
    }
}

/* location-advantage-responsive */

/* heading-section-responsive */

@media only screen and (max-width:767px) {
    section>h3 {
        padding: 10px 0px 0px;
        font-size: 24px;
    }
}

@media only screen and (max-width:575px) {
    section>h3 {
        font-size: 18px;
    }

    section {
        padding: 30px 15px;
    }
}

/* heading-section-responsive */

/* spl-icon-section-responsive */

.client-box.spl-client-box {
    min-height: 56px;
    padding: 0px 13px;
}

.client-box.spl-client-box h3 {
    font-size: 18px;
    color: #000;
}

@media only screen and (max-width:575px) {
    .client-box-wrapper .client-box {
        display: flex;
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }

    .client-box.spl-client-box {
        min-height: 0px;
        padding: 10px 5px;
    }

    .client-box.spl-client-box h3 {
        font-size: 12px;
        font-weight: 500;
        color: #000;
    }

    .client-box-wrapper .client-box .icon {
        height: auto;
        width: auto;
    }

    .client-box-text {
        width: 100%;
        text-align: center;
    }

    .client-box .m-l-10,
    .client-box .m-l-20 {
        margin-left: 0px !important;
    }

    .client-box-wrapper .client-box .info {
        margin: 3px 0;
        font-size: 15px;
    }

    .client-box-wrapper .client-box .text {
        font-size: 14px;
    }
}

/* spl-icon-section-responsive */

/* modal-responsive */

/* deals-modal */

@media only screen and (max-width:991px) {
    .modal-left-part ul li {
        display: inline-block;
        margin: 0px 5px;
    }

    .modal-left-part ul li img {
        width: 50px;
    }

    .modal-right-part h5 {
        font-size: 20px;
        line-height: 28px;
        margin: 12px 0 12px;
    }

    .modal-left-part h6 {
        font-size: 16px;
        margin-bottom: 0px !important;
    }
}

@media only screen and (max-width:767px) {
    .spl-modal .modal-title {
        font-size: 19px;
    }
}

@media only screen and (max-width:474px) {
    .modal-left-part ul li {
        margin: 0px 2px;
    }

    .modal-left-part ul li img {
        width: 45px;
    }

    .modal-left-part h6 {
        font-size: 10px;
        font-weight: 600;
    }
}

/* deals-modal */

/* modal-responsive */


#main-wrapper.home.privacy-home {
    width: 100%;
}

.topbar.privacy-topbar {
    width: 100%;
    box-shadow: 0 4px 15px rgb(12 35 34 / 41%) !important;
}

.privacy-wrap-inner {
    background-color: #fff;
    padding: 25px 35px;
    box-shadow: 0 4px 15px rgb(12 35 34 / 20%) !important;
}

.privacy-wrap-inner .Privacy-heading {
    text-align: center;
}

.privacy-wrap-inner .Privacy-heading {
    text-align: center;
    padding: 10px 0px 16px;
    font-size: 50px;
    line-height: 64px;
    position: relative;
    margin-bottom: 16px;
}

.privacy-wrap-inner .Privacy-heading:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    left: 0px;
    bottom: 0px;
    background: #439b04;
}

.privacy-wrap-inner p {
    text-align: justify;
}

.privacy-anchor {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
}


/*Header Phone No style start*/

.navbar-toggler {
    padding: 0.25rem 0.35rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 2px solid #439b04;
    border-radius: 0px;
    color: #439b04;
}

.effetMoveGradient.header-contact {
    background: #fff;
    color: #439b04;
    font-size: 16px;
    font-weight: 600;
    text-shadow: none !important;
}

@media only screen and (max-width:991px) {
    .navbar .navbar-brand img {
        height: auto;
        width: 120px !important;
    }

    .navbar-toggler {
        margin: 7px 0;
    }

    .navbar-brand {
        margin-right: 6px;
    }

    .header13 .h13-nav .navbar-nav .nav-item .nav-link {
        color: #000000;
    }

}

/*Header Phone No style end*/


/* sidebar-start */

.fl-fl1 {
    background: #4267B2;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 4px;
    width: 190px;
    position: fixed;
    right: -153px;
    z-index: 1000;
    border-top-left-radius: 8px;
    font: normal normal 10px Arial;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

.float-sm .fa {
    font-size: 20px;
    color: #fff;
    padding: 10px 0;
    width: 40px;
    margin-left: 6px;
}

.fl-fl3.float-rs.effetMoveGradient:hover {
    background: linear-gradient(-45deg, #25d366, #00ab40, #25d366, #25d366);
}

.fl-fl1 a {
    color: #fff !important;
    text-decoration: none;
    text-align: center;
    line-height: 43px !important;
    vertical-align: top !important;
}

.float-gp {
    top: 270px;
}

.fl-fl1 {
    top: 270px;
}

.fl-fl {
    background: #004dd5;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 4px;
    width: 190px;
    border-bottom-left-radius: 8px;
    position: fixed;
    right: -153px;
    z-index: 1000;
    font: normal normal 10px Arial;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

.fl-fl1:hover,
.fl-fl:hover,
.fl-fl3:hover,
.fl-fl4:hover {
    right: 0;
}

.fl-fl a {
    color: #fff !important;
    text-decoration: none;
    text-align: center;
    line-height: 43px !important;
    vertical-align: top !important;
}

.float-rs {
    bottom: 65px;
}

.fl-fl3 a {
    color: #fff !important;
    text-decoration: none;
    text-align: center;
    line-height: 43px !important;
    vertical-align: top !important;
}

.fl-fl3 {
    background: #25d366;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 4px;
    width: 190px;
    position: fixed;
    right: -153px;
    z-index: 1000;
    font: normal normal 10px Arial;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

.float-ig {
    top: 380px;
}

.float-pn {
    top: 435px;
}

.fl-fl4 {
    background: #e95950;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 4px;
    width: 190px;
    position: fixed;
    right: -153px;
    z-index: 1000;
    font: normal normal 10px Arial;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

.fl-fl4 a {
    color: #fff !important;
    text-decoration: none;
    text-align: center;
    line-height: 43px !important;
    vertical-align: top !important;
}

/* sidebar-end */

/* banner-carousel-start */

.banner .item {
    height: 600px;
    position: relative;
}

.banner .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.25);
}

.banner .item .cover {
    /* padding: 75px 0; */
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /*background: rgba(0, 0, 0, 0.4);*/
    display: flex;
    align-items: center;
}

/* .banner .item .cover .header-content {
    position: relative;
    padding: 56px;
    overflow: hidden;
} */

.banner .item .cover .header-content .line {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    border: 9px solid #fff;
    -webkit-clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
    clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
}

.banner .item .cover .header-content h2 {
    font-weight: 400;
    font-size: 36px;
    color: #fff;
    text-shadow: 1px 1px 0px #000;
}

.banner .item .cover .header-content h1 {
    font-size: 48px;
    font-weight: 400;
    text-transform: uppercase;
    margin: 5px 0 20px;
    word-spacing: 3px;
    color: #fff;
    text-shadow: 1px 1px 0px #000;
}

.banner .item .cover .header-content h4 {
    font-size: 24px;
    font-weight: 300;
    line-height: 36px;
    color: #fff;
    text-shadow: 1px 1px 0px #000;
}

.banner .owl-item.active h1 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
}

.banner .owl-item.active h2 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
}

.banner .owl-item.active h4 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: 0.3s;
}

.banner .owl-item.active .line {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInLeft;
    animation-delay: 0.3s;
}

/* #owl-carousel1 .owl-dots {
    position: absolute;
    bottom: 39%;
    right: 5%;
} */

#owl-carousel1 .owl-dots {
    position: absolute;
    width: 100%;
    bottom: 5%;
    right: 0%;
    left: 0%;
}

.owl-dot>button {
    background: transparent;
    color: #c3c3c3;
    border: 2px solid #c3c3c3;
    margin: 9px 5px;
    /* font-family: 'Playfair Display'; */
    font-family: "Times New Roman", Times, serif;
    font-size: 18px;
    line-height: 22px;
    cursor: pointer;
}

#owl-carousel1.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
}

#owl-carousel1.owl-theme .owl-nav.disabled+.owl-dots {
    transition: 0.3s ease-in-out;
}

#owl-carousel1.owl-theme:hover .owl-nav.disabled+.owl-dots {
    opacity: 1;
    transition: 0.3s ease-in-out;
}

#owl-carousel1.owl-theme .owl-dots .owl-dot.active>button,
#owl-carousel1.owl-theme .owl-dots .owl-dot:hover>button {
    color: #fff;
    border: 2px solid #fff;
}

#owl-carousel1.owl-theme .owl-dots .owl-dot.active span,
#owl-carousel1.owl-theme .owl-dots .owl-dot:hover span {
    background: #85c227;
    /*    background: #ffc100;*/
}

#owl-carousel1.owl-theme .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    margin: 5px 7px;
    background: transparent;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 0;
    border: 3px solid #fff;
}

.banner .owl-nav .owl-prev {
    position: absolute;
    left: 15px;
    top: 46%;
    opacity: 0;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    background: rgba(0, 0, 0, 0.5) !important;
    width: 40px;
    cursor: pointer;
    height: 40px;
    position: absolute;
    display: block;
    z-index: 1000;
    border-radius: 0;
}

.banner .owl-nav .owl-prev span {
    font-size: 1.6875rem;
    color: #fff;
}

.banner .owl-nav .owl-prev:focus {
    outline: 0;
}

.banner .owl-nav .owl-prev:hover {
    background: #000 !important;
}

.banner .owl-nav .owl-next {
    position: absolute;
    right: 15px;
    top: 43%;
    opacity: 0;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    background: rgba(0, 0, 0, 0.5) !important;
    width: 40px;
    cursor: pointer;
    height: 40px;
    position: absolute;
    display: block;
    z-index: 1000;
    border-radius: 0;
}

.banner .owl-nav .owl-next span {
    font-size: 1.6875rem;
    color: #fff;
}

.banner .owl-nav .owl-next:focus {
    outline: 0;
}

.banner .owl-nav .owl-next:hover {
    background: #000 !important;
}

.banner:hover .owl-prev {
    left: 0px;
    opacity: 1;
}

.banner:hover .owl-next {
    right: 0px;
    opacity: 1;
}

.banner .owl-theme .owl-nav {
    margin-top: 0;
}

@media only screen and (max-width:1199px) {
    .banner .item .cover .header-content {
        padding: 46px;
    }

    /* .banner .item {
        height: 560px;
    } */
}

@media only screen and (max-width:991px) {
    .banner .item .cover .header-content {
        padding: 15px 40px 15px 15px;
    }

    .banner .item .cover .header-content h2 {
        font-size: 32px;
    }

    .banner .item .cover .header-content h1 {
        font-size: 36px;
        margin: 5px 0 10px;
        word-spacing: 2px;
    }

    .banner .item .cover .header-content h4 {
        font-size: 22px;
        line-height: 28px;
    }

    .page-wrapper {
        padding-top: 46px;
    }

    .banner .item {
        height: 500px;
        position: relative;
    }
}

@media only screen and (max-width:767px) {
    .banner .item {
        height: 450px;
    }

    .banner .item .cover .header-content {
        padding: 36px;
    }

    .banner .item .cover .header-content h2 {
        font-size: 28px;
    }

    .banner .item .cover .header-content h1 {
        font-size: 30px;
    }

    .banner .item .cover .header-content h4 {
        font-size: 20px;
    }

    #owl-carousel1 .owl-dots {
        position: absolute;
        width: 100%;
        bottom: 5%;
        right: 0%;
    }

    #owl-carousel1.owl-theme .owl-dots .owl-dot {
        display: inline-block;
        zoom: 1;
    }
}

@media only screen and (max-width:575px) {
    .banner .item {
        height: 360px;
    }

    .banner .item .cover .header-content {
        padding: 20px 0px;
    }

    .banner .item .cover .header-content h2 {
        font-size: 24px;
    }

    .banner .item .cover .header-content h1 {
        font-size: 26px;
        margin: 5px 0 6px;
    }

    .banner .item .cover .header-content h4 {
        font-size: 20px;
        line-height: 24px;
    }
}

/* banner-carousel-end */

/* footer-img-start */

.footer-img-wrap {
    width: 430px;
    margin: 0 auto;
    margin-top: 6px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-around;
}

.footer-img {
    width: 130px;
    background: #fff;
    height: 60px;
    padding: 5px;
    border: 1px solid #439b04;
    box-shadow: 0 4px 15px rgb(12 35 34 / 19%) !important;
}

.footer-img.footer-img-1 {
    object-fit: contain;
}

.footer-img.footer-img-2 {}

@media only screen and (max-width:575px) {
    .footer-img-wrap {
        width: 100%;
        margin: 0 auto;
        margin-top: 6px;
        margin-bottom: 16px;
        display: flex;
        justify-content: center;
        column-gap: 15px;
        row-gap: 15px;
        flex-wrap: wrap;
    }

    .footer-img {
        width: 130px;
        background: #fff;
        height: 60px;
        padding: 5px;
        border: 1px solid #439b04;
        box-shadow: 0 4px 15px rgb(12 35 34 / 19%) !important;
    }

    .footer-img.footer-img-1 {
        margin-right: 0%;
    }

    .footer-img.footer-img-2 {
        margin-left: 0%;
    }
}

/* footer-img-end */


.view-location-map.d-flex {
    display: flex !important;
}

.footer-img-wrap.bro-pay-btn-tag {
    width: 400px;
}

@media screen and (max-width:575px) {
    .footer-img-wrap.bro-pay-btn-tag {
        width: 100%;

    }

    .footer-img-wrap.bro-pay-btn-tag .btn {
        font-size: 14px;
        padding: 10px 10px;
        margin: 0px 5px;
    }
}

.constru-date-update{
    text-align: center;
    font-weight: 500;
    /*font-family: Georgia, serif;*/
    text-decoration: underline;
    font-size: 26px;
    margin-bottom: 46px;
    text-underline-offset: 12px;
    text-decoration-color: #688c46;
}
.pop-up-update-gallery{
    background-color: #dad1d145;
    padding-top: 18px;
}
.gallery-section-second.gallery-sec-two{
    padding-bottom: 0px;
}