
body {
    background: #fff;
    color: #18191d;
    font-family: "Open Sans", sans-serif;
	font-size:15px;
}

a {
    color: #007bff;
    transition: 0.5s;
	text-decoration:none;
}

    a:hover,
    a:active,
    a:focus {
        color: #0b6bd3;
        outline: none;
        text-decoration: none;
    }

p {
    padding: 0;
    margin: 0 0 15px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
}
.clearfix{width:100%;}

/* Back to top button */

.back-to-top {
    position: fixed;
    display: none;
    background: #007bff;
    color: #fff;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    border-radius: 50%;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 11;
}

    .back-to-top i {
        padding-top: 12px;
        color: #fff;
    }

/* Prelaoder */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #f2f2f2;
        border-top: 6px solid #007bff;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        -webkit-animation: animate-preloader 1s linear infinite;
        animation: animate-preloader 1s linear infinite;
    }

@-webkit-keyframes animate-preloader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    height:77px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    padding:10px 0;
    background: #0065b0;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
}

    #header.header-scrolled,
    #header.header-pages {
        height:70px;
        padding: 10px 0;
    }

    #header .logo h1 {
        font-size: 36px;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-weight: 400;
        letter-spacing: 3px;
        text-transform: uppercase;
    }

        #header .logo h1 a,
        #header .logo h1 a:hover {
            color: #00366f;
            text-decoration: none;
        }

    #header .logo img {
        padding: 0;
        margin: 0px 0;
        max-height:55px;
    }

.main-pages {
    margin-top: 60px;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Desktop Navigation */

.main-nav {
    /* Drop Down */
    /* Deep Drop Down */
}

    .main-nav,
    .main-nav * {
        margin: 0;
        padding: 0;
        list-style: none;
    }

        .main-nav > ul > li {
            position: relative;
            white-space: nowrap;
            float: left;
        }

        .main-nav a {
            display: block;
            position: relative;
            color: #fff;
            padding:15px 20px;
            transition: 0.3s;
            font-size: 14px;
            font-weight: 500;
        }

            .main-nav a:hover,
            .main-nav .active > a,
            .main-nav li:hover > a {
                color: #b0d6ff;
                text-decoration: none;
            }

        .main-nav .drop-down ul {
            display: block;
            position: absolute;
            left: 0;
            top: calc(100% + 30px);
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            padding: 10px 0;
            background: #fff;
            box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
            transition: ease all 0.3s;
        }

        .main-nav .drop-down:hover > ul {
            opacity: 1;
            top: 100%;
            visibility: visible;
        }

        .main-nav .drop-down li {
            min-width: 180px;
            position: relative;
        }

        .main-nav .drop-down ul a {
            padding: 10px 20px;
            font-size: 13px;
            color: #004289;
        }

            .main-nav .drop-down ul a:hover,
            .main-nav .drop-down ul .active > a,
            .main-nav .drop-down ul li:hover > a {
                color: #007bff;
            }

        .main-nav .drop-down > a:after {
            content: "\f107";
            font-family: FontAwesome;
            padding-left: 5px;
        }

        .main-nav .drop-down .drop-down ul {
            top: 0;
            left: calc(100% - 30px);
        }

        .main-nav .drop-down .drop-down:hover > ul {
            opacity: 1;
            top: 0;
            left: 100%;
        }

        .main-nav .drop-down .drop-down > a {
            padding-right: 35px;
        }

            .main-nav .drop-down .drop-down > a:after {
                content: "\f105";
                position: absolute;
                right: 15px;
            }

/* Mobile Navigation */

.mobile-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 9999;
    overflow-y: auto;
    left: -260px;
    width: 260px;
    padding-top: 18px;
    background: rgba(19, 39, 57, 0.8);
    transition: 0.4s;
}

    .mobile-nav * {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .mobile-nav a {
        display: block;
        position: relative;
        color: #fff;
        padding: 10px 20px;
        font-weight: 500;
		font-size:13px;
    }

        .mobile-nav a:hover,
        .mobile-nav .active > a,
        .mobile-nav li:hover > a {
            color: #74b5fc;
            text-decoration: none;
        }

    .mobile-nav .drop-down > a:after {
        content: "\f078";
        font-family: FontAwesome;
        padding-left: 10px;
        position: absolute;
        right: 15px;
    }

    .mobile-nav .active.drop-down > a:after {
        content: "\f077";
    }

    .mobile-nav .drop-down > a {
        padding-right: 35px;
    }

    .mobile-nav .drop-down ul {
        display: none;
        overflow: hidden;
    }

    .mobile-nav .drop-down li {
        padding-left: 20px;
    }

.mobile-nav-toggle {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

    .mobile-nav-toggle i {
        margin: 18px 18px 0 0;
        color: #004289;
    }

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(19, 39, 57, 0.8);
    overflow: hidden;
    display: none;
}

.mobile-nav-active {
    overflow: hidden;
}

    .mobile-nav-active .mobile-nav {
        left: 0;
    }

    .mobile-nav-active .mobile-nav-toggle i {
        color: #fff;
    }

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

#intro {
    width: 100%;
    position: relative;
    /*background: url("../images/intro-bg.png") center bottom no-repeat;
    background-size: cover;
	background-color: red;
  	background-image: linear-gradient(#2e97e1, #003a78);*/
    padding:150px 0 50px 0;
}

    #intro .intro-img {
        width: 50%;
        float: left;
    }

    #intro .intro-info {
        width: 40%;
        float: right;
    }

        #intro .intro-info h2 {
            color: #fff;
            margin-bottom: 40px;
            font-size: 48px;
            font-weight: 700;
        }

            #intro .intro-info h2 span {
                color: #74b5fc;
                text-decoration: underline;
            }

        #intro .intro-info .btn-get-started,
        #intro .intro-info .btn-services {
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            display: inline-block;
            padding: 10px 32px;
            border-radius: 50px;
            transition: 0.5s;
            margin: 0 20px 20px 0;
            color: #fff;
        }

        #intro .intro-info .btn-get-started {
            background: #007bff;
            border: 2px solid #007bff;
            color: #fff;
        }

            #intro .intro-info .btn-get-started:hover {
                background: none;
                border-color: #fff;
                color: #fff;
            }

        #intro .intro-info .btn-services {
            border: 2px solid #fff;
        }

            #intro .intro-info .btn-services:hover {
                background: #007bff;
                border-color: #007bff;
                color: #fff;
            }

/* Login Section
--------------------------------*/
.Login_box {
        padding: 30px;
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        margin: 0 10px 40px 10px;
        background: #fff;
        box-shadow: 0 10px 20px 0 rgba(68, 88, 144, 0.3);
        transition: all 0.3s ease-in-out;
		border: 1px solid #ccc;
    }
.Login_box:hover {
            -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
        }

.Login_box .title {
    /* margin-left: 40px; */
    font-weight: 700;
    margin-bottom: 15px;
    font-size:20px;
}

.custom-control-label{line-height:23px; margin:0 0 0 25px;}



/*------------------- Start Inner CSS --------------------------*/
.Top_follow{float:right; margin:-5px 0 5px; color:#004289;}
.Top_follow a{width:auto; height:auto; display:inline-block; padding:2px 5px;}
.Top_follow a.TopLogin{padding:2px 15px;}
#Main_Container{margin-top:76px;}
.Inner_Container{margin:20px 0; width:100%; float:left;}
.card {border:none; border-radius:0; box-shadow:0px 0px 10px rgba(127, 137, 161, 0.3); margin-bottom:20px;}

.cardbox-row{display:-ms-flexbox; display:flex; -ms-flex-wrap:wrap; flex-wrap:wrap; margin-right:-5px; margin-left:-5px;}

.TopBanner{width: 100%; position: relative; background: url("../Images/TopBannerBg-2.jpg") center top no-repeat; background-size: cover; padding:50px 0; margin:0 0 30px; color:#fff;}
			
.FollowUs{width:45px; height:auto; padding:15px 5px; margin:150px 0 0; background:#0065b0; border:4px solid #e3e3e3; border-right:none; border-radius:10px 0 0 10px; position:absolute; right:0px; z-index:9;}
.FollowUs a{color:#fff; font-size:18px; padding:5px; display:block;}
.FollowUs a:hover{color:#b0d6ff;}

.content-heading{font-weight: bold; text-transform: uppercase; color: grey;}
.medium-bold {font-size:medium; font-weight:bold;}
.Heading{
color: #0065b0;
    font-size: 25px;
    text-align: center;
    font-weight: bold;
    margin: 0 0 20px;
    width: 100%;
    /* letter-spacing: 1px; */
    font-family: sans-serif;}
/*.Heading::before {width:130px; height: 2px; background: #0065b0; content: ""; margin:0px -125px -7px 0px; display: inline-block;}*/
.Classifieds_Section{margin:30px 0 0;}

.Clf_Details{width: 100%; padding:10px;}
.Clf_Head{font-size: 18px; margin: 0; color: #0065b0; margin: 0 0 5px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;}
.Clf_Rating {width: 100%; color: #333; font-size: 13px;}
.Clf_Star {color:#0065b0; margin:0 0 0 10px;}
.Clf_Details .fa {margin: 0;width: 15px;}

.Location_Section{margin:30px 0 0;}
.Resident_btn{padding:10px 20px;}


/*------------------- End Inner CSS --------------------------*/

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {background: #00428a; padding: 0 0 30px 0; color: #eee; font-size: 14px; bottom: 0;}
#footer .copyright {text-align: center;padding-top: 30px;font-size: 13px;color: #f1f7ff;}
#footer .copyright a {color: #bfddfe; padding:0 10px;}
#footer .copyright a:hover {color: #f1f7ff;}

/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/

@media (min-width: 992px) {

}

@media (max-width: 991px) {
#header {height:77px;padding: 10px 0;}
#header .logo h1 {font-size: 28px;padding: 8px 0;}
#intro {padding: 140px 0 60px 0;}
#intro .intro-img {width: 80%;float: none;margin: 0 auto 25px auto;}
#intro .intro-info {width: 80%;float: none;margin: auto;text-align: center;}
#why-us .card {margin: 0;}
.Top_follow{float:right; margin:0 0 5px; color:#fff;}
}

@media (max-width: 768px) {
.back-to-top{bottom: 15px;}
}

@media (max-width: 767px) {
#intro .intro-info {width: 100%;}
#intro .intro-info h2{font-size: 34px; margin-bottom: 30px;}
.section-header p{width: 100%;}
}

@media (max-width: 574px) {
    #intro{padding: 100px 0 20px 0;}
	.row{margin:0;}
}
u {
    text-decoration: none;
    border-bottom: 2px solid #0065b0;
    padding-bottom: 8px;
}
.nivo-caption{
    padding: 25px 0;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.card-header {
    padding: 20px;
    color: #0065b0;

}
.welcome_box {
    background-color: #0065b0b0;
    width: fit-content;
    text-align: center;
    padding: 8px 15px;
    margin-bottom: 20px;
    font-size: 17px;
}
.list-point-icon{
       font-size: 18px;
    padding-right: 10px;
    color: #0065b0;
}
.benefit_points{
        width: 100%;
    background: url(../Images/background-home.jpg) center top no-repeat;
    background-size: cover;
    padding: 50px 0;
    margin: 0 0 30px;
    color: #fff;
}
.service-title {
    color: #ffffff;
    text-align: left;
    font-size: 16px;
    text-transform: uppercase;
    padding-bottom: 20px;
    padding-top: 20px;
    position: relative;
    margin-bottom: 10px;
}
.service-title::after {
    position: absolute;
    content: "";
    background: #fff;
    width: 50px;
    height: 1px;
    left: 0;
    bottom: 5px;
}
@media only screen and (max-width: 900px) {
  .main-nav a {
            display: block;
            position: relative;
            color: #fff;
            padding:12px 10px;
            transition: 0.3s;
            font-size: 14px;
            font-weight: 500;
        }
}