/*

UBI Template

*/


:root {
    --blue: #1e90ff;
    --white: #ffffff;
    --primary-color: #0066b3; /* Common */

    --secondary-color: #f9102d; /* Common */

    --primary-font: 'Poppins', 'sans-serif';
    --secondary-font: 'Playfair Display';
    --primary-bg: #fff; /* BG */

    --secondary-bg: #e5f0f7; /* BG */

    --secondary-co: #EED67F; /* Font Color */

    --btn_pri_color: #f5e8bb; /* Btn */

    --btn_sec_color: #fff; /* Btn */
}


body {
    font-family: 'Poppins', 'sans-serif';
    background-color: #fff;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

p {
    font-size: 13px;
    color: #7a7a7a;
    line-height: 24px;
    left: 0.25px;
}

section {
    padding-top: 80px;
}

.view-more {
    font-size: 18px;
    text-decoration: underline;
    font-weight: 600;
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

    .section-heading span {
        /*font-size: 17px;*/
        /*display: block;*/
        /*margin: 0px;*/
        color: var(--secondary-color);
    }

    .section-heading h2 {
        margin-bottom: 0px;
        margin-top: 14px;
        font-size: 30px;
        font-weight: 600;
        color: #232323;
        letter-spacing: 0.5px;
    }
/*.section-heading span{
  color: var(--secondary-color);
}*/

/*Form Button style*/
fieldset .ripple-surface {
    font-size: 14px;
    font-weight: 600;
    background-color: var(--secondary-color);
    border-radius: 10px;
    color: #fff;
    padding: 5px 15px;
    border: 1.5px solid var(--secondary-color);
}

    fieldset .ripple-surface:hover {
        background: transparent;
        color: var(--secondary-color);
        border: 1.5px solid var(--secondary-color);
    }

.blue-button a {
    display: inline-block;
    background-color: #4883ff;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 16px;
    text-decoration: none;
    border: 2px solid #4883ff;
    transition: all 0.5s;
}

    .blue-button a:hover {
        background-color: transparent;
        color: #4883ff;
    }


/* Header Style */

.cf:before,
.cf:after {
    content: '';
    display: table;
    visibility: hidden;
}

.cf:after {
    clear: both;
}

.cf {
    *zoom: 1;
}

#header {
    overflow: visible;
    position: relative;
    background-color: #fff;
}


#primary-nav-button {
    background: transparent;
    display: block;
    position: absolute;
    border: none;
    bottom: 0;
    right: 4%;
    top: 0;
    z-index: 9;
    padding: 0;
    outline: none;
    text-decoration: none;
    color: #e91e63;
    text-align: center;
    font-weight: 900;
    font-size: 0;
}

    #primary-nav-button:hover {
        background: rgba(0,0,0,0.05);
    }

    #primary-nav-button.selected {
        background: rgba(0,0,0,0.1);
    }

    #primary-nav-button:before {
        /* content: 'â˜°'; */
        content: '\2261';
        display: inline-block;
        background-color: #fdfeff;
        font-size: 41px;
        font-style: normal;
        font-weight: normal;
        line-height: 1.05;
        width: 45px;
        height: 48px;
        line-height: 48px;
        border-radius: 5px;
        color: inherit;
        speak: none;
        border: none;
    }

#header .logo {
    float: left;
    background: #fff;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    position: absolute;
    left: -300px;
    width: 250px;
    height: fit-content;
    -webkit-animation: slide 0.3s forwards;
    -webkit-animation-delay: 0.5s;
    animation: slide 0.3s forwards;
    animation-delay: 0.5s;
}

    #header .logo img {
        width: 100%;
        /*overflow: hidden;*/
        border-radius: 10px;
    }

#primary-nav {
    -webkit-box-shadow: none;
    -webkit-box-shadow: none;
}

@-webkit-keyframes slide {
    100% {
        left: 0;
    }
}

@keyframes slide {
    100% {
        left: 0;
    }
}


.menu {
    float: right;
    right: 8%;
    padding: 20px 10px;
}

    .menu li {
        float: left;
        margin-left: 30px;
        position: relative;
        line-height: 100px;
    }

        .menu li:last-child {
            margin-right: 0;
        }

    .menu .sub-menu li {
        width: 100%;
        margin-left: 0px;
    }

    .menu li a {
        display: block;
        text-decoration: none;
    }

#primary-nav li a {
    color: #121212;
    font-weight: bold;
    line-height: 28px;
    padding: 0px 15px;
    font-size: 18px;
    font-weight: 400;
    transition: all 0.5s;
}

#primary-nav li > a:hover,
#primary-nav li.selected > a {
    color: #4883ff;
}

.sub-menu {
    border-top: 3px solid #4883ff;
}

    .sub-menu li a {
        line-height: 50px !important;
        font-size: 15px !important;
        color: #7a7a7a;
    }



.downarrow {
    background: none;
    display: inline-block;
    padding: 0;
    text-align: center;
    min-width: 3px;
}

.sub-menu .downarrow {
    position: absolute;
    right: 0;
    top: 12px;
    font-size: 18px;
    padding-right: 10px;
}

.downarrow:before {
    content: '\25be';
    color: inherit;
    display: block;
    font-size: 1em;
    line-height: 1.1;
    width: 1em;
    height: 1em;
}

.menu .sub-menu {
    display: none;
    position: absolute;
    left: 0;
    max-height: 1000px;
}

    .menu .sub-menu li {
        line-height: 40px;
    }

    .menu .sub-menu.hide {
        display: none;
    }

#primary-nav .sub-menu {
    background: #fff;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.25);
    min-width: 160px;
    z-index: 200;
    max-height: 300px;
    overflow-y: scroll !important;
}

    #primary-nav .sub-menu li {
        border-bottom: 1px solid #ddd;
    }

        #primary-nav .sub-menu li:last-child {
            border-bottom: 0;
        }

    #primary-nav .sub-menu .downarrow:before {
        content: '\25b8';
    }

#primary-nav.mobile {
    display: none;
    position: absolute;
    top: 100px;
    background: #fff;
    width: 100%;
    right: 15px;
    left: 0;
    z-index: 999999;
}

    #primary-nav.mobile .menu {
        text-align: center;
        width: 100%;
    }

    #primary-nav.mobile li {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid #ddd;
    }

        #primary-nav.mobile li:first-child {
            width: 100%;
            margin: 0;
            border-top: 1px solid #ddd;
        }

        #primary-nav.mobile li.selected > a {
            border-bottom: 1px solid #ddd;
        }

        #primary-nav.mobile li:last-child {
            border: none;
        }


    #primary-nav.mobile .sub-menu {
        float: left;
        position: relative;
        width: 100%;
    }

        #primary-nav.mobile .sub-menu .downarrow {
            top: 15px;
            position: absolute;
            right: 15px;
        }

.mobile .downarrow,
.mobile .sub-menu .downarrow {
    position: absolute;
    top: 42px;
    right: 25px;
}

#primary-nav.mobile .sub-menu .downarrow:before {
    content: '\25be';
}

#primary-nav-button.mobile {
    display: inline-block;
}

#primary-nav li .city_selector {
    padding: 6px 25px;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50px;
}

#primary-nav li > .city_selector:hover,
#primary-nav li.selected > .city_selector {
    color: #fff;
}

#header .scrolled {
    background: #0e0d0d73;
    height: 10rem;
}

#primary-nav .sub-menu::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
}

#primary-nav .sub-menu::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: var(--secondary-color);
}

a.login_btn_lead_page {
    border: 1px solid #0099cc;
    border-radius: 25px;
    font-size: 18px !important;
    padding: 0.6rem 3rem !important;
    color: #ffffff !important;
    background-color: #0099CC;
}

/* New Menu */

#nav-container {
    position: fixed;
    height: 100vh;
    width: 100%;
    pointer-events: none;
}

    #nav-container .bg {
        position: absolute;
        top: -5px;
        right: 0;
        width: 100%;
        height: 100vh;
        visibility: hidden;
        opacity: 0;
        transition: .3s;
        background: #000;
    }

    #nav-container:focus-within .bg {
        visibility: visible;
        opacity: .6;
    }

    #nav-container * {
        visibility: visible;
    }

.button {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
    -webkit-appearance: none;
    border: 0;
    background: #fff;
    border-radius: 0;
    height: 70px;
    width: 30px;
    top: 16px;
    right: 60px;
    border-radius: 5px;
    width: 45px;
    padding: 12px;
    height: 48px;
    line-height: 48px;
    cursor: pointer;
    pointer-events: auto;
    /*margin-left: 25px;*/
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

.icon-bar {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--secondary-color);
    transition: .3s;
}

    .icon-bar + .icon-bar {
        margin-top: 5px;
    }

#nav-container:focus-within .button {
    pointer-events: none;
}

#nav-container:focus-within .icon-bar:nth-of-type(1) {
    transform: translate3d(0,8px,0) rotate(45deg);
}

#nav-container:focus-within .icon-bar:nth-of-type(2) {
    opacity: 0;
}

#nav-container:focus-within .icon-bar:nth-of-type(3) {
    transform: translate3d(0,-8px,0) rotate(-45deg);
}

#nav-content {
    margin-top: 90px;
    padding: 20px;
    width: 90%;
    max-width: 300px;
    position: absolute;
    top: 0;
    right: 0;
    height: calc(100% - 70px);
    background: #fff;
    pointer-events: auto;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    transform: translateX(100%);
    transition: transform .3s;
    will-change: transform;
    contain: paint;
}

    #nav-content ul {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    #nav-content li a {
        padding: 10px 5px;
        display: block;
        text-transform: uppercase;
        transition: color .1s;
        animation: showItem .3s ease forwards;
        /*box-shadow: 0 8px 8px -10px rgba(0, 0, 0, .4);*/
        cursor: pointer;
        border-bottom: 1px solid #e5e5e5;
        display: block;
        font-size: 16px;
        outline: none;
        text-decoration: none;
        transform-origin: top;
        /* transform: rotateX(-90deg); */
        transform: translateX(10px);
    }

        #nav-content li a:hover {
            color: var(--secondary-color);
        }

    #nav-content li:not(.small) + .small {
        margin-top: auto;
    }

.small {
    display: flex;
    align-self: center;
    border-top: 1px solid #333;
    width: 100%;
    text-align: center;
    justify-content: center;
}

    .small a {
        font-size: 12px;
        font-weight: 400;
        color: #888;
    }

        .small a + a {
            margin-left: 15px;
        }

#nav-container:focus-within #nav-content {
    transform: none;
}



/* Banner Style */

section.banner {
    padding: 0px;
}

.banner {
    background-image: url(../img/main_banner.jpg);
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

    .banner .banner-caption {
        padding: 100px 0px 250px 0px;
    }

        .banner .banner-caption .line-dec {
            width: 80px;
            height: 3px;
            background-color: #4883ff;
        }

        .banner .banner-caption h2 {
            margin-top: 20px;
            margin-bottom: 20px;
            font-size: 60px;
            text-align: center;
            letter-spacing: 0.5px;
            color: #fff;
        }

        .banner .banner-caption span {
            font-size: 22px;
            color: #fff;
            letter-spacing: 0.5px;
        }

        .banner .banner-caption .blue-button {
            margin-top: 30px;
        }

    .banner .submit-form .tab-content {
        border-bottom: 5px solid var(--primary-color);
        background-color: #fff;
        padding: 40px;
        -webkit-box-shadow: 0 4px 10px 0 rgb(0 0 0 / 20%), 0 4px 20px 0 rgb(0 0 0 / 10%);
        box-shadow: 0 4px 10px 0 rgb(0 0 0 / 20%), 0 4px 20px 0 rgb(0 0 0 / 10%);
        border-radius: 15px;
    }

.nav-pills .nav-link {
    margin-bottom: 0;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
}



.submit-form {
    margin-bottom: -40px;
}

    .submit-form .nav-pills {
        margin-left: 3.8rem;
    }

    .submit-form .first-item {
        border-right: 1px solid #ddd;
    }

    .submit-form .second-item {
        border-right: 1px solid #ddd;
    }

    .submit-form .third-item {
        border-right: 1px solid #ddd;
    }

    .submit-form select {
        width: 100%;
        height: 45px;
        border: none;
        background-color: transparent;
        font-size: 16px;
        color: #9a9a9a;
        outline: none;
        padding: 0px 10px;
        display: inline-block;
    }

    .submit-form input {
        width: 100%;
        height: 45px;
        /*border: none;*/
        background-color: transparent;
        font-size: 16px;
        color: #9a9a9a;
        /*outline: none;*/
        padding: 0px 20px;
        display: inline-block;
        box-shadow: none;
    }

        .submit-form input:focus {
            /*border-width: 0px;*/
            outline: 0; /* I have also tried outline:none */
            -webkit-appearance: none;
            box-shadow: none;
            -moz-box-shadow: none;
            -webkit-box-shadow: none;
        }

    .submit-form button {
        width: auto;
        height: 50px;
        line-height: 35px;
        text-align: center;
        display: inline-block;
        border-radius: 0px;
        background-color: var(--secondary-color);
        font-size: 17px;
        border-radius: 20px;
        letter-spacing: 0.5px;
        color: #fff;
        font-weight: 600;
        border: 2px solid var(--secondary-color);
        transition: all 0.5s;
    }

        .submit-form button:hover {
            background-color: transparent;
            color: var(--secondary-color);
        }

    .submit-form .has-search {
        position: relative;
    }

        .submit-form .has-search .form-control {
            padding-left: 3.375rem;
            margin-bottom: 0px;
        }

        .submit-form .has-search .form-control-feedback {
            position: absolute;
            z-index: 2;
            display: block;
            width: 3.375rem;
            height: 4.375rem;
            line-height: 4.75rem;
            text-align: center;
            font-size: 16px;
            pointer-events: none;
            color: #aaa;
        }

    .submit-form label {
        font-size: 16px;
        padding-left: 3.5rem;
        position: absolute;
        top: 6px;
        left: 0.75rem;
        padding-top: 1rem !important;
        padding-top: 0.37rem;
        pointer-events: none;
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0;
        -webkit-transition: all .2s ease-out;
        transition: all .2s ease-out;
        color: rgba(0,0,0,.6);
        margin-bottom: 0;
    }

.form-outline .form-control.active ~ .form-label, .form-outline .form-control:focus ~ .form-label {
    -webkit-transform: translateY(-1rem) translateY(-0.8rem) scale(.8);
    transform: translateY(-1rem) translateY(-0.8rem) scale(.8);
}

.form-outline .form-control:focus ~ .form-label {
    color: #1266f1;
}

.form-outline .form-control ~ .form-label {
    position: absolute;
    top: 0;
    left: 0rem;
    padding-top: 0rem;
    pointer-events: none;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
    color: rgba(0,0,0,.6);
    margin-bottom: 0;
}

.submit-form .nav-pills .nav-link.active, .submit-form .nav-pills .show > .nav-link {
    background-color: var(--primary-color);
}

.submit-form .textbox .autoComplete {
    left: 0;
    position: absolute;
    top: calc(100% + 5px);
    width: 100%;
}

    .submit-form .textbox .autoComplete .item {
        animation: showItem .3s ease forwards;
        background-color: #fff;
        box-shadow: 0 8px 8px -10px rgba(0, 0, 0, .4);
        box-sizing: border-box;
        color: var(--secondary-color);
        cursor: pointer;
        border-bottom: 1px solid #e5e5e5;
        display: block;
        font-size: 1.5rem;
        opacity: 0;
        outline: none;
        padding: 10px;
        text-decoration: none;
        transform-origin: top;
        /* transform: rotateX(-90deg); */
        transform: translateX(10px);
    }

        /*Nilesh Changes*/
        .submit-form .textbox .autoComplete .item:hover,
        .submit-form .textbox .autoComplete .item:focus {
            background-color: #fafafa;
            color: var(--secondary-color);
        }

@keyframes showItem {
    0% {
        opacity: 0;
        /* transform: rotateX(-90deg); */
        transform: translateX(10px);
    }

    100% {
        opacity: 1;
        /* transform: rotateX(0); */
        transform: translateX(0);
    }
}

.popular-places .owl-nav {
    display: block;
}

    .popular-places .owl-nav .owl-prev, .popular-places .owl-nav .owl-next {
        position: absolute;
        height: 40px;
        width: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff !important;
        border-radius: 50%;
        opacity: 1;
        margin-top: auto;
        margin-bottom: auto;
        box-shadow: -2px 1px 10px #bdbdbd;
        top: calc(50% - 30px);
        cursor: pointer;
    }

        .popular-places .owl-nav .owl-prev span, .popular-places .owl-nav .owl-next span {
            font-size: 40px;
            color: var(--secondary-color);
        }

    .popular-places .owl-nav .owl-prev {
        left: -20px;
    }

    .popular-places .owl-nav .owl-next {
        right: -20px;
    }

.popular-places .owl-dots {
    margin-top: 40px;
    text-align: center;
    display: none;
}

    .popular-places .owl-dots .owl-dot span {
        width: 12px;
        height: 12px;
        background-color: #cdcdcd !important;
        display: inline-block;
        border-radius: 50%;
        margin: 0 3px;
    }

    .popular-places .owl-dots .active span {
        background-color: #4883ff !important;
    }

    .popular-places .owl-dots button {
        outline: none;
    }

.popular-places .popular-item .thumb {
    position: relative;
}

    .popular-places .popular-item .thumb img {
        position: relative;
        width: 100%;
        overflow: hidden;
        z-index: 1;
        border-radius: 5px;
    }

    .popular-places .popular-item .thumb .text-content {
        /*position: absolute;
  bottom: 20px;
  left: 20px;*/
        z-index: 9;
        color: #000;
        display: flex;
        justify-content: space-between;
        margin-top: 10px;
    }

        .popular-places .popular-item .thumb .text-content h4 {
            font-size: 19px;
            font-weight: 500;
            letter-spacing: 0.5px;
            margin-top: 0px;
            margin-bottom: 5px;
        }

        .popular-places .popular-item .thumb .text-content a {
            font-size: 15px;
            font-weight: 300;
            letter-spacing: 0.5px;
            display: block;
        }

    .popular-places .popular-item .thumb .plus-button {
        position: absolute;
        bottom: 20px;
        right: 20px;
        z-index: 9;
    }


        .popular-places .popular-item .thumb .plus-button i {
            width: 30px;
            height: 30px;
            line-height: 30px;
            display: inline-block;
            text-align: center;
            border: 1px solid #fff;
            border-radius: 5px;
            color: #fff;
            transition: all 0.5s;
        }

            .popular-places .popular-item .thumb .plus-button i:hover {
                background-color: rgba(250,250,250,0.3);
            }



section.featured-places {
    margin-top: 80px;
    padding-bottom: 80px;
    background-color: var(--secondary-bg);
}

.featured-places .featured-item .thumb {
    position: relative;
    z-index: 1;
}

    .featured-places .featured-item .thumb img {
        width: 100%;
        overflow: hidden;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }

    .featured-places .featured-item .thumb .overlay-content {
        position: absolute;
        z-index: 9;
        top: 30px;
        left: 30px;
        color: #fff;
    }

        .featured-places .featured-item .thumb .overlay-content li {
            display: inline;
            margin-right: 3px;
        }

    .featured-places .featured-item .thumb .date-content {
        position: absolute;
        z-index: 9;
        top: 30px;
        right: 30px;
        color: #fff;
        text-align: center;
        width: 90px;
        height: 90px;
        display: inline-block;
        text-align: center;
        vertical-align: middle;
        background-color: #4883ff;
        border-radius: 50%;
    }

        .featured-places .featured-item .thumb .date-content h6 {
            font-size: 24px;
            font-weight: 700;
            margin-top: 18px;
            margin-bottom: 5px;
            letter-spacing: 0.5px;
        }

        .featured-places .featured-item .thumb .date-content span {
            font-size: 12px;
            font-weight: 300;
            text-transform: uppercase;
            display: block;
            letter-spacing: 0.5px;
        }

.featured-places .featured-item .down-content {
    background-color: #fff;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
    padding: 20px 20px 20px 20px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

    .featured-places .featured-item .down-content h4 {
        margin-top: 0px;
        font-size: 19px;
        font-weight: 600;
        color: var(--secondary-color);
        margin-bottom: 5px;
    }

    .featured-places .featured-item .down-content h5 {
        color: var(--secondary-color);
    }

    .featured-places .featured-item .down-content span {
        display: block;
        font-size: 13px;
        color: #4883ff;
        margin-bottom: 15px;
    }

    .featured-places .featured-item .down-content p {
        margin-bottom: 20px;
    }

    .featured-places .featured-item .down-content .col-md-6 {
        padding-left: 0px;
        padding-right: 0px;
    }

    .featured-places .featured-item .down-content .text-button {
        text-align: center;
        height: 50px;
        line-height: 50px;
        border-top: 1px solid #ddd;
        margin: 0px -5px;
    }

    .featured-places .featured-item .down-content .first-button {
        border-right: 1px solid #ddd;
    }

    .featured-places .featured-item .down-content .text-button a {
        font-size: 12px;
        text-transform: uppercase;
        color: #7a7a7a;
        letter-spacing: 0.5px;
        text-decoration: none;
        display: inline-block;
        width: 100%;
        transition: all 0.5s;
    }

        .featured-places .featured-item .down-content .text-button a:hover {
            color: #4883ff;
        }

.featured-places .owl-carousel .owl-nav {
    display: block;
    margin-top: 25px;
}

.featured-places .owl-nav {
    position: absolute;
    left: 50%;
}

    .featured-places .owl-nav .owl-prev, .featured-places .owl-nav .owl-next {
        position: absolute;
        height: 40px;
        width: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #fff !important;
        border-radius: 50%;
        opacity: 1;
        margin-top: auto;
        margin-bottom: auto;
        box-shadow: -2px 1px 10px #bdbdbd;
        /*top: calc(50% - 30px);*/
        cursor: pointer;
    }

.featured-places .owl-carousel .owl-stage {
    display: flex;
    align-items: center;
}

.featured-places .owl-nav .owl-prev span, .featured-places .owl-nav .owl-next span {
    font-size: 40px;
    color: var(--secondary-color);
}

.featured-places .owl-nav .owl-prev {
    left: -45px;
}

.featured-places .owl-nav .owl-next {
    right: -45px;
}

.featured-places .owl-dots {
    display: none;
}

.featured-places .feature_project {
    padding-bottom: 60px;
}




section.our-services .service-item {
    text-align: center;
    /*border: 2px solid blue;*/
    border-radius: 10px;
    padding: 20px 15px;
    display: flex;
}

    section.our-services .service-item .icon img {
        max-width: 100%;
        padding-right: 15px;
    }

    section.our-services .service-item .icon {
        max-width: 75px;
        min-width: 75px;
    }

    section.our-services .service-item .text {
        text-align: left;
    }

        section.our-services .service-item .text p {
            line-height: 15px;
        }


    section.our-services .service-item h4 {
        font-size: 19px;
        font-weight: 600;
        margin-top: 5px;
        margin-bottom: 15px;
    }

section.our-services .card_primary {
    border: 2px solid var(--primary-color);
}

    section.our-services .card_primary h4 {
        color: var(--primary-color);
    }

section.our-services .card_secondary {
    border: 2px solid var(--secondary-color);
}

    section.our-services .card_secondary h4 {
        color: var(--secondary-color);
    }

.our-services .left-content h4 {
    font-size: 19px;
    font-weight: 600;
    color: #232323;
    margin-top: 0px;
    margin-bottom: 25px;
}

.our-services .left-content .blue-button {
    margin-top: 25px;
}

.down-services {
    border-top: 1px solid #ddd;
    margin-top: 60px;
    padding-top: 60px;
}

.accordion li {
    position: relative;
}

    .accordion li a {
        border: 1px solid #ddd;
    }

    .accordion li:last-child a {
    }

    .accordion li p {
        display: none;
    }

.accordion a {
    width: 100%;
    display: block;
    cursor: pointer;
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 0.5px;
    color: #232323;
    user-select: none;
    padding: 15px 20px;
    text-decoration: none;
}

    .accordion a:after {
        width: 15px;
        height: 15px;
        background-color: #ddd;
        border-radius: 50%;
        position: absolute;
        right: 20px;
        content: " ";
        top: 22.5px;
        transform: rotate(-45deg);
        -webkit-transition: all 0.2s ease-in-out;
        -moz-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
    }

.accordion p {
    margin: 0px;
    padding: 20px;
    border: 1px solid #ddd;
}

a.active:after {
    background-color: #4883ff;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.our-services .main-content {
    position: relative;
    padding-bottom: 60px;
}

    .our-services .main-content .owl-theme .custom-nav {
        position: absolute;
        left: 50%;
    }

.our-services .owl-nav .owl-prev, .our-services .owl-nav .owl-next {
    position: absolute;
    height: 40px;
    width: 40px;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff !important;
    border-radius: 50%;
    opacity: 1;
    margin-top: auto;
    margin-bottom: auto;
    box-shadow: -2px 1px 10px #bdbdbd;
    /*top: calc(50% - 30px);*/
    cursor: pointer;
}

.our-services .owl-carousel .owl-stage {
    display: flex;
    align-items: center;
}

.our-services .owl-nav .owl-prev span, .our-services .owl-nav .owl-next span {
    font-size: 40px;
    color: var(--secondary-color);
}

.our-services .owl-nav .owl-prev {
    left: -45px;
}

.our-services .owl-nav .owl-next {
    right: -45px;
}

.main-content .owl-theme .custom-nav {
    margin-top: 25px;
}



section#video-container {
    margin-top: 80px;
}

#video-container {
    position: relative;
    width: 100%;
    height: 560px;
    overflow: hidden;
    z-index: 1;
}

    #video-container video,
    .video-overlay {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        min-width: 100%;
        min-height: 100%;
    }

    #video-container .video-overlay {
        z-index: 9999;
        background: rgba(0,0,0,0.7);
        width: 100%;
    }

    #video-container .video-content {
        z-index: 99999;
        position: absolute;
        height: 100%;
        width: 100%;
        top: 50%;
        transform: translateY(-50%);
    }

        #video-container .video-content .inner {
            height: 100%;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-flow: column wrap;
        }

            #video-container .video-content .inner span {
                font-size: 17px;
                display: block;
                margin: 0px;
                color: #fff;
            }

            #video-container .video-content .inner h2 {
                margin-bottom: 0px;
                margin-top: 14px;
                font-size: 23px;
                font-weight: 500;
                color: #fff;
                letter-spacing: 0.5px;
            }

            #video-container .video-content .inner a {
                margin-top: 30px;
                width: 60px;
                height: 60px;
                display: inline-block;
                text-align: center;
                line-height: 56px;
                color: #fff;
                background-color: rgba(250,250,250,0.1);
                font-size: 18px;
                border: 3px solid #fff;
                border-radius: 50%;
            }



section.pricing-tables .table-item {
    text-align: center;
    background-color: #eeeeee;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    padding: 0px 0px 40px 0px;
}

    section.pricing-tables .table-item .top-content {
        background-color: #4883ff;
        padding: 30px;
        color: #fff;
        border-top-right-radius: 10px;
        border-top-left-radius: 10px;
    }

        section.pricing-tables .table-item .top-content h4 {
            font-size: 19px;
            font-weight: 500;
            letter-spacing: 0.5px;
            margin: 0px;
            margin-bottom: 0px;
        }

        section.pricing-tables .table-item .top-content h1 {
            font-size: 32px;
            font-weight: 700;
            letter-spacing: 0.5px;
            margin-top: 20px;
            margin-bottom: 10px;
        }

    section.pricing-tables .table-item ul {
        margin: 40px 0px !important;
    }

        section.pricing-tables .table-item ul li {
            margin: 25px 0px;
        }

            section.pricing-tables .table-item ul li a {
                font-size: 14px;
                font-weight: 600;
                color: #4a4a4a;
                text-decoration: none;
                transition: all 0.5s;
            }

                section.pricing-tables .table-item ul li a:hover {
                    color: #4883ff;
                }

section.contact .section-heading {
    margin-top: 60px;
    margin-bottom: 30px;
}

.wrapper {
    text-align: center;
}

/* Modal button */
.modal-btn {
    display: inline-block;
    background-color: #4883ff;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 16px;
    text-decoration: none;
    border: 2px solid #4883ff;
    transition: all 0.5s;
}

    .modal-btn:hover {
        background-color: transparent;
        color: #4883ff;
    }

.immage_for_header_login_ubi_logo {
    width: 80%;
}

/* Modal */
.modal {
    background-color: rgba(0,0,0,.65);
    display: none;
    overflow: auto;
    position: fixed;
    z-index: 1000;
    padding-top: 10%;
    padding-bottom: 10%;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.modal-content .section-heading {
    text-align: left;
    margin-top: 0px !important;
}

    .modal-content .section-heading h2 {
        margin-top: 10px;
    }

.modal-content .left-content {
    padding: 30px;
}

    .modal-content .left-content input {
        border-radius: 0px;
        padding-left: 15px;
        font-size: 13px;
        color: #aaa;
        background-color: #f4f4f4;
        border: 1px solid #eee;
        outline: none;
        box-shadow: none;
        line-height: 40px;
        height: 40px;
        width: 100%;
        margin-bottom: 25px;
    }

    .modal-content .left-content textarea {
        border-radius: 0px;
        padding-left: 15px;
        padding-top: 10px;
        font-size: 13px;
        color: #aaa;
        background-color: #f4f4f4;
        border: 1px solid #eee;
        outline: none;
        box-shadow: none;
        min-height: 140px;
        height: 160px;
        max-height: 180px;
        width: 100%;
        max-width: 100%;
        margin-bottom: 25px;
    }

    .modal-content .left-content button {
        display: inline-block;
        background-color: #4883ff;
        color: #fff;
        font-size: 15px;
        font-weight: 500;
        padding: 10px 16px;
        text-decoration: none;
        border-radius: 0px;
        border: 2px solid #4883ff;
        transition: all 0.5s;
    }

        .modal-content .left-content button:hover {
            background-color: transparent;
            color: #4883ff;
        }

.modal-content .right-content {
    background-color: #4883ff;
    padding: 30px 30px 65px 30px;
    color: #fff;
}

    .modal-content .right-content .section-heading h2 {
        color: #fff;
    }

    .modal-content .right-content .section-heading span {
        color: #fff;
    }

    .modal-content .right-content p {
        margin-bottom: 50px;
        color: #fff;
    }

    .modal-content .right-content ul li span {
        font-size: 13px;
        color: #fff;
        font-weight: 600;
        letter-spacing: 0.3px;
        width: 80px;
        display: inline-block;
    }

    .modal-content .right-content ul li a {
        font-size: 13px;
        color: #fff;
        letter-spacing: 0.5px;
        text-decoration: none;
    }

    .modal-content .right-content ul li {
        margin: 10px 0px;
    }

/* Modal Content */
.modal-content {
    position: relative;
    top: 0px;
    width: 60%;
    margin: 0 auto;
    background-color: #fff;
    //background-color: #fff;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
}

.modal-animated-in {
    animation: totop-in .3s ease;
}

.modal-animated-out {
    animation: totop-out .3s ease forwards;
}

.modal-content .close {
    position: absolute;
    right: -30px;
    top: -30px;
    width: 60px;
    height: 60px;
    z-index: 9999;
    display: inline-block;
    text-align: center;
    line-height: 60px;
    background-color: #fff;
    color: #4883ff;
    border-radius: 50%;
    opacity: 1;
}

    .modal-content .close:hover {
        background-color: #fff;
        color: #4883ff;
    }

/* Keyframes */
@keyframes totop-in {
    0% {
        top: 600px;
        opacity: 0;
    }

    100% {
        top: 0;
        opacity: 1;
    }
}

@keyframes totop-out {
    0% {
        top: 0px;
        opacity: 1;
    }

    100% {
        top: -100%;
        opacity: 0;
    }
}

/* slide form */
.form_1 {
    top: 42.5%;
}
.form_2 {
    top: 59.8%;
}

.form_3 {
    top: 55%;
}

.slideform-contact select {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 1rem;
    color: #919191;
}
#CaptchaImage{
    max-width: 125px;
}

.slideform-contact {
    position: fixed;
    right: -350px;
    transform: translateY(-50%);
    width: 350px;
    height: auto;
    padding: 40px;
    background: #fff;
    box-shadow: 0px 10px 15px 0px rgb(0 0 0 / 20%);
    box-sizing: border-box;
    transition: 0.5s;
    z-index: 111;
}

    .slideform-contact .form-control{
        line-height: 2!important;
    }
    
    .slideform-contact.active {
        right: 0;
    }

    .slideform-contact .card-body{
        padding: 0rem 0.5rem;
    }

    .slideform-contact .form-control input,
    .slideform-contact .form-control textarea {
        width: 100%;
        height: 45px;
        border-radius: 10px !important;
        padding: 5px 20px;
        box-sizing: border-box;
        /*border: 1px solid rgba(0,0,0,.5);*/
        outline: none;
        font-size: 15px !important;
    }

    .slideform-contact .form-outline .form-control.form-control-lg {
        font-size: 14px;
        line-height: 2;
        margin-bottom: 1rem;
    }

    .slideform-contact .form-outline label.form-label {
        font-size: 14px;
    }

    .slideform-contact .form-outline .form-control.form-control-lg.active ~ .form-label, .slideform-contact .form-outline .form-control.form-control-lg:focus ~ .form-label {
        -webkit-transform: translateY(-1.5rem) translateY(0.1rem) scale(.8);
        transform: translateY(-1.5rem) translateY(0.1rem) scale(.8);
    }

    .slideform-contact h2 {
        margin: 0 0 15px;
        padding: 0;
        font-size: 1.8rem;
    }

    .slideform-contact textarea {
        height: 48px;
        resize: none;
    }

.btn_for_view_download {
    background: var(--primary-color);
    color: #fff;
    cursor: pointer;
    border: none;
    font-size: 15px;
}

.toggle {
    position: absolute;
    height: 43px;
    width: 43px;
    text-align: center;
    cursor: pointer;
    background: #fff;
    top: 0;
    left: -43px;
    line-height: 41px;
    border: 1px solid var(--secondary-color);
    box-shadow: 0px 10px 15px 0px rgb(0 0 0 / 20%);
    animation: fadeInRight 1s ease-in-out;
}

.form1:before {
    /*content: '\2709';
        font-family: fontAwesome;
        font-size: 23px;
        color: #fff;*/
    content: url(../img/home_loan_icon.png);
    transform: scale(.68);
    font-size: 28px;
    display: block;
    width: 80%;
    height: 90%;
}

.form2:before {
    content: url(../img/ask_question_icon.png);
    transform: scale(.68);
    font-size: 28px;
    display: block;
    width: 80%;
    height: 90%;
}

.form3:before {
    content: url(../img/request_callback_icon.png);
    transform: scale(.68);
    font-size: 28px;
    display: block;
    width: 80%;
    height: 90%;
}

.toggle.active:before {
    content: '\2716';
    margin-left: 4px;
}
/* slide form end */


footer {
    margin-top: 80px;
    padding: 80px 0px 70px 0px;
    border-top: 1px solid #ddd;
    background: rgb(0,80,153);
    background: -moz-linear-gradient(180deg, rgba(0,80,153,1) 9%, rgba(0,0,0,1) 54%);
    background: -webkit-linear-gradient(180deg, rgba(0,80,153,1) 9%, rgba(0,0,0,1) 54%);
    background: linear-gradient(180deg, rgba(0,80,153,1) 9%, rgba(0,0,0,1) 54%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#005099",endColorstr="#000000",GradientType=1);
}

    footer .footer-heading h4 {
        font-size: 21px;
        color: #fff;
        letter-spacing: 0.5px;
        margin-top: 15px;
        margin-bottom: 30px;
    }


    footer .about-ubi .logo {
        margin-bottom: 40px;
    }

    footer .about-ubi ul li a {
        /*width: 32px;
  height: 32px;*/
        display: inline-block;
        text-align: center;
        line-height: 10px;
        /*background-color: #cdcdcd;*/
        /*border-radius: 50%;*/
        font-size: 22px;
        color: #fff;
        padding-right: 12px;
        padding-left: 12px;
        border-right: 1px solid;
        transition: all 0.5s;
    }

    footer .useful-links .about-ubi ul li i {
        font-size: 22px;
    }

    footer .about-ubi p {
        margin-bottom: 25px;
    }

    footer .about-ubi ul li a:hover {
        /*background-color: var(--secondary-color);*/
    }

    footer .useful-links ul li {
        margin-bottom: 5px;
    }

        footer .useful-links ul li a {
            font-size: 16px;
            color: #fff;
            letter-spacing: 0.5px;
            text-decoration: none;
            transition: all 0.5s;
        }

            /*footer .useful-links ul li a:hover {
  color: var(--secondary-color);
}*/
            footer .useful-links ul li a:hover i {
                color: var(--secondary-color);
            }

        footer .useful-links ul li i {
            color: #fff;
            font-size: 6px;
            position: relative;
            top: -3px;
            margin-right: 8px;
        }

    footer .contact-info p {
        margin-bottom: 25px;
    }

    footer .contact-info ul li {
        margin: 10px 0px;
    }

        footer .contact-info ul li span {
            font-size: 13px;
            color: #7a7a7a;
            font-weight: 600;
            letter-spacing: 0.3px;
            width: 80px;
            display: inline-block;
        }

    footer .about-ubi .social-icons {
        margin-bottom: 20px;
    }

    footer .about-ubi ul li a:first-child {
        padding-left: 0;
    }

    footer .about-ubi ul li a:last-child {
        border-right: none;
    }

    footer .contact-info ul li a {
        font-size: 13px;
        color: #4883ff;
        letter-spacing: 0.5px;
        text-decoration: none;
    }

    footer .copyright_text p {
        font-size: 16px;
        color: #cdcdcd;
    }

/* PROJECTS Page CSS */
.banner.sub-pages {
    background: unset;
}

.sub-pages .submit-form {
    margin-top: 15em;
}

.subpages-header #primary-nav li .city_selector {
    border: 2px solid #ccc;
    background: #ccc;
}

ul.breadcrum-list {
    display: flex;
}

    ul.breadcrum-list li {
        font-size: 14px;
        padding-right: 5px;
        font-weight: 500;
    }

        ul.breadcrum-list li:after {
            content: '>';
            padding-left: 5px;
        }

        ul.breadcrum-list li:last-child::after {
            content: unset;
            padding-left: 0;
        }

.properties-breadcrum {
    margin-left: 3rem;
    margin-bottom: 1rem;
}

.card-border-primary {
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 2.5rem;
}

.properties-about-section {
    margin-top: 8rem;
}

.pro-discub {
    margin-bottom: 1.5rem;
}

.properties-title-section {
    border-bottom: 2px solid #ccc;
    margin-bottom: 2.5rem;
}

.pro-title {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.pro-subtitle {
    font-weight: 500;
}

.single-pro-title h3 {
    color: var(--primary-color);
}

.single-pro-title {
    margin-bottom: 2.5rem;
}

.properties-about-section .col-lg-4 {
    padding-left: 5rem;
}

.card {
    box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
}

.contact-seller .form-outline label.form-label {
    left: 12px;
}

.form-outline .form-control {
    margin-bottom: 1rem;
}

.card-padding {
    padding: 1.5rem 1rem;
}

.contact-seller .form-check {
    padding: 1rem 1.5rem 1.5rem;
}

.btn_for_view_download {
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 30px;
    font-size: 10px;
}

.view-more.about-details-btn {
    margin-top: 8rem;
}
/* END PROJECTS Page CSS */

/* PROJECTS Page CSS */
.banner.city-detail {
    /*background-image: url(../img/mumbai-banner.jpg);*/ /* Removed on 13-02-2023*/
    background-image: url(../img/main_banner.jpg);
    height: 60rem;
}
    .banner.city-detail .overlay {
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
    }

    .banner.city-detail .banner-caption h2 {
        font-size: 75px;
    }

    .banner.city-detail .banner-caption {
        padding: 100px 0px 100px 0px;
    }

.popular-places .hover {
    overflow: hidden;
    position: relative;
    padding-bottom: 60%;
}

.popular-places .hover-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 90;
    transition: all 0.4s;
}

.popular-places .hover img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s;
}

.popular-places .hover-content {
    position: relative;
    z-index: 99;
}

.popular-places .hover_t::after {
    content: '';
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    border: 1px solid #fff;
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 90;
    transition: all 0.3s;
    transform: scale(1.1);
    opacity: 0;
    display: block;
    opacity: 0;
}

.popular-places .hover_t-content {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    text-align: center;
    z-index: 99;
}

    .popular-places .hover_t-content .hover_t-title {
        background-color: rgba(0,0,0,.6);
        width: auto;
        display: inline-block;
        padding: 10px;
    }

.popular-places .hover_t-description {
    opacity: 0;
    transform: scale(1.3);
    transition: all 0.3s;
}

.popular-places .hover_t img {
    width: 110%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.popular-places .hover_t .hover-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.popular-places .hover_t:hover img {
    width: 100%;
}

.popular-places .hover_t:hover::after {
    opacity: 1;
    transform: none;
}

.popular-places .hover_t:hover .hover_t-title {
    background-color: rgb(0 96 177 / 71%);
}

.popular-places .hover_t:hover .hover_t-description {
    opacity: 1;
    transform: none;
}

.popular-places .hover_t:hover .hover-overlay {
    background: rgba(0, 0, 0, 0.8);
}

.popular-places .simple-pagination ul {
    margin: 30px 0 20px;
    padding: 0;
    list-style: none;
    text-align: center;
}

.popular-places .simple-pagination li {
    display: inline-block;
    margin-right: 5px;
}

.popular-places .simple-pagination li {
    display: inline-block;
    margin-right: 5px;
}

.popular-places .simple-pagination .current {
    color: #FFF;
    background-color: #f9102d91;
    border-color: var(--secondary-color);
    cursor: pointer;
}

.popular-places .simple-pagination li a, .popular-places .simple-pagination li span {
    color: #666;
    padding: 5px 10px;
    text-decoration: none;
    font-size: 16px;
    border: 1px solid #EEE;
    background-color: #FFF;
    box-shadow: 0px 0px 10px 0px #eee;
}

.popular-places .simple-pagination .prev.current,
.popular-places .simple-pagination .next.current {
    background: var(--secondary-color);
}

.popular-places .list-wrapper {
    padding: 15px;
}

.city-list .list-item .down-content {
    background-color: #fff;
    box-shadow: 0px 5px 15px rgb(0 0 0 / 10%);
    padding: 20px 20px 20px 20px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.city-list .section-heading {
    margin-bottom: 30px;
    margin-top: 60px;
}

.side_menu {
    position: fixed;
    top: 15rem;
    right: 0;
    background-color: #fff;
    border-radius: 6px 0 0 6px;
    box-shadow: 0 6px 8px 0 rgb(0 0 0 / 33%);
    z-index: 1;
}

    .side_menu ul {
        box-sizing: border-box;
        padding: 10px;
    }

        .side_menu ul:last-child {
            border-top: 1px solid #e3e8ee;
        }

        .side_menu ul li:first-child {
            margin-top: 0;
        }

    .side_menu button {
        width: 100%;
        display: flex;
        box-sizing: border-box;
        padding: 8px 10px 7px 10px;
        text-align: right;
        background: transparent;
        border: 1px solid #e92327;
        border-radius: 6px;
        -webkit-transition: all 150ms ease-out 0s;
        -moz-transition: all 150ms ease-out 0s;
        -ms-transition: all 150ms ease-out 0s;
        transition: all 150ms ease-out 0s;
    }

    .side_menu .first_menu button {
        margin-bottom: 10px;
    }

    .side_menu .first_menu li:last-child button {
        margin-bottom: 0;
    }

    .side_menu ul li button .icon {
        width: 18px;
        height: 18px;
    }

    .side_menu ul li button .label {
        margin-left: 7px;
        color: #0066b3;
        font-weight: 600; /* added on 03-Feb-2023 */
    }

.form2:before, .form3:before {
    content: unset;
}

.toggle.form2, .toggle.form3 {
    display: none;
}

    .toggle.form2.active, .toggle.form3.active {
        display: block;
        border: 0;
        box-shadow: unset;
        right: 0;
        left: unset;
        top: 3px;
    }

.btn-outline {
    color: #e92327;
    border: 1.5px solid #0066b3;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: bold;
}

.properties-title-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #ccc;
    margin-bottom: 2.5rem;
}

body .emicalculator-section {
    font-family: "Open Sans", sans-serif;
}
    
 /* Media Queries */

    @media (max-width:992px) {

        .banner .banner-caption {
            padding: 200px 30px;
        }

        .submit-form input {
            margin-bottom: 20px;
            border-bottom: 1px solid #ddd;
            border-radius: 0px;
        }

        .submit-form select {
            margin-bottom: 20px;
            border-bottom: 1px solid #ddd;
            border-radius: 0px;
        }

        .featured-places .featured-item {
            margin-bottom: 30px;
        }

            .featured-places .featured-item .down-content .first-button {
                border-right: none;
            }

        section.our-services .service-item {
            margin-bottom: 30px;
        }

        .down-services .left-content {
            margin-bottom: 60px;
        }

        #video-container .video-content {
            padding: 0 30px;
            text-align: center;
        }

        .table-item {
            margin-bottom: 30px;
        }

        .modal-content {
            width: 90%;
        }

            .modal-content .close {
                right: 50%;
                left: 50%;
                transform: translateX(-50%);
                top: -30px;
                box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
            }

        footer .useful-links {
            margin-top: 60px;
        }

        footer .contact-info {
            margin-top: 60px;
        }
    }
    /* Extra small devices (phones, 600px and down) */
    @media only screen and (max-width: 600px) {
        .banner .banner-caption h2 {
            font-size: 24px;
        }

        .submit-form label {
            font-size: 13px;
            padding-top: 1.3rem !important;
        }

        .submit-form input {
            margin-bottom: 0;
        }

        #form-submit .has-search {
            margin-bottom: 20px;
        }

        .banner .submit-form .tab-content {
            padding: 20px 15px;
        }

        .submit-form button {
            height: 40px;
            line-height: 24px;
            font-size: 15px;
        }

        .popular-places .owl-nav .owl-prev {
            left: 0px;
        }

        .popular-places .owl-nav .owl-next {
            right: 0px;
        }

        #header .logo {
            width: 160px;
        }

        #primary-nav li .city_selector {
            font-size: 14px;
            line-height: 18px;
            padding: 6px 14px;
        }

        .menu {
            float: right;
            right: 12%;
            padding: 10px 10px;
        }

        .button {
            top: 7px;
            right: 30px;
            width: 35px;
            padding: 10px;
            height: 40px;
            line-height: 40px;
        }

        .icon-bar {
            /*height: 2px;*/
        }

        .banner .banner-caption {
            padding: 75px 0px 60px 0px;
        }



        .immage_for_header_login_75years {
        }

        .cb-form-section {
            margin-left: 0rem;
        }

        .section-heading h2 {
            font-size: 26px;
        }

        #nav-content {
            margin-top: 60px;
            height: calc(100% - 60px);
        }

        footer .useful-links {
            margin-top: 20px;
        }

            footer .useful-links .about-ubi ul li i {
                font-size: 14px;
            }

        footer .about-ubi ul li a {
            padding-right: 7px;
        }

        .properties-about-section .col-lg-4 {
            padding-left: calc(var(--bs-gutter-x)/2);
            margin-top: 5rem;
        }

        .submit-form .nav-pills {
            margin-left: 0;
        }

        .sub-pages .submit-form {
            margin-top: 10em;
        }

        .nav-pills .nav-link {
            padding: 17px 20px 16px;
        }

        .banner.city-detail .banner-caption h2 {
            font-size: 35px;
        }

        .banner.city-detail .banner-caption {
            padding: 135px 0px 50px 0px;
        }

        footer .footer-heading h4 {
            font-size: 18px;
        }

        .blank {
            display: none;
        }

        .side_menu ul.first_menu {
            column-count: 3;
        }

        .side_menu {
            top: unset;
            right: 0;
            bottom: 0;
            width: 100%;
            border-radius: 0;
        }

            .side_menu button {
                align-items: center;
                justify-content: center;
            }

            .side_menu button {
                padding: 4px;
            }

            .side_menu ul li button .label {
                font-size: 8px;
            }

        .slideform-contact.active, fieldset .ripple-surface {
            width: 100%;
        }

    }
    /* Small devices (portrait tablets and large phones, 600px and up) */
    @media only screen and (min-width: 600px) {
        ...
    }

    /* Mobile Devices*/
    /* Changes in CSS 03-02-2023 */
    @media only screen and (max-width: 475px) {
        .custom_container_for_property_title {
            display: block;
        }

        .responsiev_btn_for_project_detail {
            margin-bottom: 2rem;
        }

        .properties-title-section fieldset {
            width: 30%;
        }

        .properties-title-section .btn-outline {
            color: #e92327;
            border: 1.5px solid #0066b3;
            padding: 10px 4px;
            border-radius: 10px;
            font-weight: bold;
            display: block;
            text-align: center;
        }
    }

    /* Medium devices (landscape tablets, 768px and up) */
    @media only screen and (min-width: 768px) {
        ...
    }
    /* Large devices (laptops/desktops, 992px and up) */
    @media only screen and (min-width: 992px) {
        /*.form_2{
        top: 54.5%;
    }
    .form_3 {
        top: 60%;
    }*/
    }
    /* Extra large devices (large laptops and desktops, 1200px and up) */
    @media only screen and (min-width: 1200px) {
    }


    @media screen and (max-width: 1366px) and (min-width: 1200px) {
        .form_2 {
            top: 61.1%;
        }

        .form_3 {
            top: 68%;
        }
    }

    @media screen and (max-width: 1535px) and (min-width: 1440px) {
        .form_2 {
            top: 60.5%;
        }

        .form_3 {
            top: 67%;
        }
    }

    @media screen and (max-width: 1919px) and (min-width: 1536px) {
        .form_2 {
            top: 61.8%;
        }

        .form_3 {
            top: 61%;
        }

        .form_1 {
            top: 42.5%; /* Changes By Nilesh */
        }
    }
    /* Extra large devices (large laptops and desktops, 1200px and up) */


