@import url('https://fonts.googleapis.com/css2?family=Allura&family=Anton&family=Archivo:ital,wght@0,100..900;1,100..900&family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Cinzel:wght@400..900&family=Lexend+Deca:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&family=Rajdhani:wght@300;400;500;600;700&family=Roboto:ital,wght@0,100..900;1,100..900&family=Russo+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Allura&family=Anton&family=Archivo:ital,wght@0,100..900;1,100..900&family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Cinzel:wght@400..900&family=Lexend+Deca:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&family=Rajdhani:wght@300;400;500;600;700&family=Roboto:ital,wght@0,100..900;1,100..900&family=Russo+One&display=swap');
/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px;
    color: #393939;
    overflow-x: hidden;
    font-family: "Montserrat", sans-serif;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 0px;
    padding: 0;
    list-style-type: none;
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 20px;
}

.pt-5 {
    padding-top: 50px;
}

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

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pb-8 {
    padding-bottom: 80px;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-8 {
    padding-top: 80px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.all-section {
    padding: 80px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

.btn10 {
    border: 1px solid #a30000 !important;
    text-align: center;
    position: relative;
    overflow: hidden !important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    background: #a30000 !important;
    z-index: 10;
    display: inline-block;
    color: #fff;
    padding: 20px 20px;
    border-radius: 10px;
    font-size: 17px;
    font-family: Poppins;
    font-weight: 400
}

.btn10:hover {
    border: 1px solid #a30000 !important;
    color: #fff !important
}

.btn10::before {
    content: '';
    width: 0%;
    height: 100%;
    display: block;
    background: #a30000;
    position: absolute;
    -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    left: -10%;
    opacity: 1;
    top: 0;
    z-index: -12;
    -moz-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    -o-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    -webkit-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    transition: all .7s cubic-bezier(.77, 0, .175, 1);
    box-shadow: 2px 0 14px rgba(0, 0, 0, .6);
    border-color: #a30000 !important
}

.btn10::after {
    content: '';
    width: 0%;
    height: 100%;
    display: block;
    background: #fff;
    position: absolute;
    -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    left: -10%;
    opacity: 0;
    top: 0;
    z-index: -15;
    -webkit-transition: all .94s cubic-bezier(.2, .95, .57, .99);
    -moz-transition: all .4s cubic-bezier(.2, .95, .57, .99);
    -o-transition: all .4s cubic-bezier(.2, .95, .57, .99);
    transition: all .4s cubic-bezier(.2, .95, .57, .99);
    box-shadow: 2px 0 14px rgba(0, 0, 0, .6);
    border-color: #a30000 !important
}

.btn10:hover::before,
.btn1O:hover::before {
    opacity: 1;
    width: 116%
}

.btn10:hover::after,
.btn1O:hover::after {
    opacity: 1;
    width: 120%
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: "Rajdhani", sans-serif;
    font-size: 85px;
    line-height: 80px;
    color: #fff;
    font-weight: 600;
    margin: 0 0 5px;
    text-transform: uppercase;
    text-shadow: 0px 7px #13386c;
}

h2 {
    font-family: "Rajdhani", sans-serif;
    font-size: 45px;
    /* line-height: 30px; */
    color: #000000;
    font-weight: 600;
    margin: 0 0 10px;
    text-transform: uppercase;
}

h3 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 30px;
    line-height: 34px;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 24px;
    line-height: 29px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 20px;
    line-height: 25px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 18px;
    line-height: 23px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

p {
    color: #7c7c7c;
    font-size: 14px;
    line-height: 25px;
    font-weight: 600;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/* Header Start */


header {
    position: absolute;
    z-index: 999;
    width: 100%;
    padding: 20px 0;
}

.header-logo {
    text-align: center;
}

.header-logo a img {
    width: 181px;
    height: 52px;
    object-fit: contain;
}

.menusec-icon a img {
    width: 31px;
    height: 25px;
    object-fit: contain;
}

.menu-button {
    text-align: end;
}
.acount-icon i {
    width: 50px;
    height: 50px;
    display: grid;
    place-content: center;
    border: 2px solid #fff;
    border-radius: 50px;
    font-size: 20px;
    color: #fff;
}

.menu-button {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}
.theme-btn-1 {
    background: #fff;
    padding: 17px 35px;
    border-radius: 50px;
    font-size: 16px;
    text-transform: uppercase;
    color: #000;
    font-weight: 600;
    /* animation: pulse-animation 2s infinite; */
    transition: .5s all;
}
.theme-btn-1:hover {
    background: #1b4a78;
    color: #fff;
    box-shadow: 0 0 2px 2px #fff;
}
.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
    text-transform: capitalize;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #393939;
    padding: 8px 22px;
    font-size: 16px;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #28b16d;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li:hover a {}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}


/* Header Ends */

/* Banner Start */


.side-menu-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 25%;
    height: 100%;
    color: #fff;
    z-index: 9999999;
    transition: left 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    background-image: -webkit-linear-gradient(90deg, rgb(99, 146, 192) 0%, rgb(27, 73, 119) 100%);
}

.side-menu-overlay.active {
    left: 0;
}

.menu-content {
    padding: 10px 30px;
}

.menu-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-content ul li {
    margin: 15px 0;
}

.menu-content ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}



.close-btn {
    font-size: 36px;
    padding: 20px;
    cursor: pointer;
    align-self: flex-end;
}


.main-banner-img {
    width: 100%;
    object-fit: cover;
}

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators {}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px !important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
}


html {
    overflow-x: hidden;
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #28b16d;
    width: 10px;
    height: 12px;
}

.banner_text h1 span {
    display: block;
}

.banner_text {
    text-align: center;
}

.banner_text p {
    width: 58%;
    margin: 0 auto;
    color: #a4b6c9;
    line-height: 25px;
}

.banner_text form input {
    width: 100%;
    height: 70px;
    padding: 0 30px;
    border-radius: 50px;
    border: none;
    text-transform: capitalize;
    font-weight: 600;
    color: #7c7c7c;
    font-size: 15px;
}

.banner_text form {
    width: 50%;
    margin: 0 auto;
    margin-top: 18px;
    display: flex;
    align-items: center;
    position: relative;
}

.banner_text-form-btn {
    position: absolute;
    right: 10px;
}

.banner_text-form-btn button {
    width: 180px;
    height: 55px;
    text-transform: uppercase;
    background-image: url(../images/banner-btn-back.png);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    /* animation: pulse-animation 2s infinite; */
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgb(41 69 210);
    }

    100% {
        box-shadow: 0 0 0 20px rgb(180 9 9 / 5%);
    }
}

/* Banner Ends */


/*Population Characteristics Start*/


.most-populated-state ul li span {
    background-image: -webkit-linear-gradient(90deg, rgb(99, 146, 192) 0%, rgb(27, 73, 119) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    border-radius: 50%;
}

.most-populated-state ul li span img {
    width: 28px;
    height: 34px;
    object-fit: contain;
    animation: tada 1.5s ease infinite;
}

@keyframes tada {

    0% {
        transform: scale(1);
    }

    10%,
    20% {
        transform: scale(0.9) rotate(-3deg);
    }

    30%,
    50%,
    70%,
    90% {
        transform: scale(1.1) rotate(3deg);
    }

    40%,
    60%,
    80% {
        transform: scale(1.1) rotate(-3deg);
    }

    100% {
        transform: scale(1) rotate(0);
    }

}

.most-populated-state ul {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

.population-characteristics-row {
    margin-top: 35px;
}

.most-populated-state p {
    margin-top: 20px;
    margin-bottom: 35px;
}

.most-populated-state-images {
    text-align: end;
}

.most-populated-state-images {
    border: 1px solid #e7e7e7;
    border-radius: 25px;
    width: 98%;
    padding: 50px 10px 30px;
    float: right;
    position: relative;
}

.most-populated-state-select {
    position: absolute;
    top: 25px;
    left: 25px;
}

.most-populated-state-select select {
    width: 140px;
    padding: 0 20px;
    border-radius: 50px;
    border: 1px solid #eaeaea;
    color: #000;
    font-weight: 600;
    height: 40px;
}

.form-select:focus {
    border-color: inherit !important;
    outline: 0;
    box-shadow: inherit !important;
}

.population-characteristics-sec {
    padding: 100px 0;
}

.population-characteristics-heading {
    text-align: center;
}

.population-characteristics-heading p {
    width: 65%;
    margin: 0 auto;
}

.most-populated-state h2 {
    font-size: 35px;
}

.most-populated-state ul li h2 {
    font-size: 25px;
    margin-bottom: -5px;
}

.most-populated-state ul li a {
    font-family: "Rajdhani", sans-serif;
    font-size: 35px;
    color: #000;
    font-weight: 600;
}

.theme-btn-2 {
    background-image: -webkit-linear-gradient(90deg, rgb(99, 146, 192) 0%, rgb(27, 73, 119) 100%);
    padding: 16px 25px;
    border-radius: 50px;
    color: #fff !important;
    text-transform: uppercase;
    font-weight: 600;
    /* animation: pulse-animation 2s infinite; */
    transition: .5s all;
}
.theme-btn-2:hover {
    color: #fff;
    background-image: -webkit-linear-gradient(90deg, rgb(45 101 188) 0%, rgb(81 115 152) 100%);
}
/*Population Characteristics Ends*/

/*Smarter Investments Start*/

.smarter-investments-sec .row.back {
    justify-content: center;
    background-image: url(../images/smarter-investments-back.jpg);
    width: 100%;
    height: 456px;
    background-size: cover;
    text-align: center;
    padding-top: 110px;
    border-radius: 20px;
}

.smarter-investments-heading h2 {
    line-height: 65px;
    color: #ffff;
    font-size: 60px;
    margin-bottom: 5px;
}

.smarter-investments-heading p {
    color: #becbd8;
    width: 75%;
    margin: 0 auto;
}

.smarter-investments-zip-code-row {
    border: 1px solid #efeeee;
    padding: 10px 20px;
    border-radius: 15px;
}


.smarter-investments-zip-code-row p {
    margin-bottom: 0;
    color: #7c7c7c;
    font-size: 16px;
}

.smarter-investments-zip-code-row select {
    width: 100%;
    height: 45px;
    border-radius: 50px;
    padding: 0 15px;
    font-weight: 500;
    border: 1px solid #e5e4e4;
    color: #7c7c7c;
}

.smarter-investments-asian-row {
    border: 1px solid #efeeee;
    padding: 15px 0px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.smarter-investments-asian-row p {
    margin-bottom: 0;
    font-size: 16px;
}

.smarter-investments-race-text p {
    color: #000;
    font-size: 16px;
}

.smarter-investments-form {
    border: 2px solid #f6f5f5;
    padding: 40px 35px;
    background: #fff;
    box-shadow: 0 0 5px 0 #f7f7f7;
    border-radius: 20px;
    margin-top: -120px;
    position: relative;
}

.smarter-investments-race-row p {
    color: #000;
    font-size: 16px;
    margin-bottom: 0;
}

.smarter-investments-race-row {
    padding: 20px 0;
}

.smarter-investments-race-number {
    text-align: center;
}

.smarter-investments-race-text {
    padding-left: 20px;
}

.smarter-investments-graf-box {
    text-align: center;
    margin-top: 50px;
}

/*Smarter Investments Ends*/


/*Housing Characteristics Start*/

.housing-characteristics-sec {
    padding: 100px 0;
}

.housing-characteristics-btn {
    margin-top: 30px;
}

.housing-characteristics-text h2 {
    margin-bottom: 15px;
}

.housing-characteristics-graf {
    margin-left: 20px;
    border: 1px solid #e7e7e7;
    padding: 100px 30px 30px;
    border-radius: 20px;
    position: relative;
}

.housing-characteristics-select {
    position: absolute;
    top: 25px;
    width: 100%;
    left: 30px;
}

.housing-characteristics-select select {
    width: 100%;
    height: 45px;
    border-radius: 50px;
    border: 1px solid #e8e8e8;
    padding: 0 20px;
    color: #000;
    font-weight: 500;
}

#chartdiv {
    width: 100%;
    height: 500px;
}

/*Housing Characteristics Ends*/

/*Footer Start*/

.footer-sec {
    background: #272727;
}

.ftr-qucik-links ul {
    line-height: 35px;
}

.ftr-contact-info ul li a {
    color: #a9a9a9;
    font-weight: 500;
}

.ftr-contact-info ul {
    line-height: 35px;
}

.ftr-follow-us {
    float: right;
}

.ftr-contact-info {
    margin-left: 100px;
}

.footer-main-copy-right-row p {
    margin-bottom: 0;
    color: #ffffff;
}


.ftr-follow-us ul li a {
    color: #a9a9a9;
    font-weight: 500;
}

.ftr-follow-us ul {
    line-height: 35px;
}

.footer-main-copy-right-row {
    border-top: 1px solid #464646;
    /*text-align: center;*/
    padding: 20px 0;
}

.footer-bottom ul {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
    color: #fff;
}

.footer-bottom ul li a {
    font-size: 16px;
    color: #a9a9a9;
}

.footer-top-row {
    text-align: center;
    padding: 40px 0 30px;
    border-bottom: 1px solid #525252;
}

.footer-main-logo a img {
    width: 181px;
    height: 52px;
    object-fit: contain;
    margin-bottom: 15px;
}

.footer-main-logo p {
    margin-bottom: 0;
    color: #ffffff;
}

.footer-main-row {
    padding: 50px 0 40px;
}

.footer-main-row h2 {
    font-size: 25px;
    color: #ffffff;
}

.ftr-qucik-links ul li a {
    color: #a9a9a9;
    font-weight: 500;
}


/*Footer Ends*/


/*Renter Characteristics Start*/

.inner-banner-sec {
    background-image: url(../images/inner-banner.jpg);
    width: 100%;
    height: 500px;
    background-size: cover;
    display: flex;
    align-items: center;
    text-align: center;
}

.inner-banner-heading h1 {
    margin-bottom: 0;

}

.renter-characteristics-sec {
    padding: 120px 0;
}

.renter-characteristics-text p {
    color: #000;
}

.renter-characteristics-number-box p {
    margin-bottom: 5px;
}

.renter-characteristics-number-box {
    margin-bottom: 15px;
    margin-top: 10px;
}

.renter-characteristics-number-box h3 {
    font-family: "Rajdhani", sans-serif;
    font-size: 25px;
    margin-bottom: 0;
    font-weight: 600;
}

.renter-characteristics-images {
    border: 1px solid #d7d7d7;
    padding: 50px 30px;
    margin-left: 15px;
    border-radius: 20px;
}


/*Renter Characteristics Ends*/


/*Subsciption Start*/


.inner-subscription-sec {
    padding: 120px 0;
}

.inner-subscription-images img {
    width: 95%;
    height: 584px;
    object-fit: cover;
    border-radius: 20px;
}

.inner-subscription-text h2 span {
    font-size: 87px;
}

.inner-subscription-text h2 {
    font-size: 50px;
    margin-bottom: 20px;
}

.inner-subscription-text ul li a {
    color: #000000;
    font-weight: 600;
    position: relative;
    padding-left: 25px;
}

.inner-subscription-text ul {
    line-height: 40px;
}

.inner-subscription-text ul li a:before {
    content: "";
    position: absolute;
    background: #034ed2;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    left: 0px;
    top: 4px;
}

.inner-subscription-btn {
    margin-top: 40px;
}

.inner-subscription-btn a {
    border: 1px solid #165bd5;
    padding: 18px 40px;
    text-transform: uppercase;
    border-radius: 50px;
    color: #165bd5;
    font-weight: 600;
    transition: .5s all;
    /* animation: pulse-animation 2s infinite; */
}
.inner-subscription-btn a:hover {
    background: #165bd5;
    color: #fff;
}


/*Subsciption Ends*/


/*Population Characteristics Start*/

.population-characteristices-sec {
    padding: 120px 0;
}


.population-characteristices-graf img {
    width: 100%;
}

.diversity-text p {
    color: #000;
}

.diversity-text ul li h2 {
    font-size: 25px;
    line-height: 25px;
    margin-bottom: 0;
    color: #000;
}

.diversity-text ul li span {
    color: #000;
    font-weight: 600;
    width: 15px;
    display: block;
}

.diversity-text ul {
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.hispanic-population {
    margin-top: 12px;
}

.hispanic-population h2 {
    font-size: 30px;
    margin-bottom: 5px;
}

.population-characteristices-graf {
    margin-left: 20px;
    border: 1px solid #d7d7d7;
    padding: 30px 40px;
    border-radius: 25px;
}

.diversity-images {
    margin-left: 20px;
    border: 1px solid #d7d7d7;
    padding: 40px 20px;
    border-radius: 25px;
}

.population-characteristices-row-two {
    margin-top: 50px;
}

.population-characteristices-row-three {
    margin-top: 50px;
}


/*Population Characteristics Ends*/


/*Other Characteristics Start*/


.other-characteristics-sec {
    padding: 100px 0;
}

.other-characteristics-text p {
    color: #000000;
}

.other-characteristics-text h3 {
    font-family: "Rajdhani", sans-serif;
    font-size: 25px;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 600;
}

.other-characteristics-text h2 {
    margin-bottom: 15px;
}

/*Other Characteristics Ends*/


/*How It Works Start*/


.how-it-works-sec {
    padding: 100px 0;
}

.how-it-works-heading {
    text-align: center;
}

.how-it-works-heading p {
    width: 60%;
    margin: 0 auto;
}

.how-it-works-box-text span img {
    width: 23px;
    height: 23px;
    object-fit: contain;
}

.how-it-works-box-text span {
    background-image: -webkit-linear-gradient(90deg, rgb(99, 146, 192) 0%, rgb(27, 73, 119) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    border-radius: 50%;
}

.how-it-works-box-text h2 {
    font-size: 25px;
    margin-bottom: 5px;
    margin-top: 18px;
}

.how-it-works-box-text {
    border: 1px solid #daecff;
    padding: 25px 20px 30px;
    border-radius: 30px;
    background: #ffff;
    height: 225px;
}

.how-it-works-box-text p {
    margin-bottom: 0;
}

.how-it-works-box {
    background: #f4f8fc;
    padding: 15px 15px;
    border-radius: 30px;
    border: 1px solid #d9ecff;
    margin-top: 35px;
}


/*How It Works Ends*/


/*Housing Characteristics Start*/


.renter-characteristics-text.house h3 {
    margin-bottom: 0;
    font-family: "Rajdhani", sans-serif;
    text-transform: uppercase;
    font-size: 25px;
    margin-top: 20px;
}

.renter-characteristics-text.house .renter-characteristics-number-box h3 {
    margin-top: 0 !important;
}


/*Housing Characteristics Ends*/


/*Employment Characteristics Start*/


.renter-characteristics-sec.house.employment .housing-characteristics-select {
    left: 0;
    padding: 0 30px;
}

.employment-characteristics-text h2 {
    font-size: 35px;
    line-height: 35px;
}

.employment-characteristics-row {
    margin-top: 80px;
}


/*Employment Characteristics Ends*/


/*Get In Touch Start*/


.inner-contact-us-sec {
    padding: 100px 0;
}

.get-in-touch-box h2 {
    text-transform: capitalize;
    font-size: 45px;
    margin-bottom: 18px;
}

.get-in-touch-box ul li h2 {
    font-size: 20px;
    margin-bottom: 0;
}

.get-in-touch-box ul {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    margin-top: 25px;
}

.get-in-touch-box ul li span img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.get-in-touch-box ul li a {
    color: #000;
    font-weight: 600;
}

.get-in-touch-form {
    margin-left: 20px;
    background: #f5f5f5;
    padding: 55px 30px;
    border-radius: 20px;
}

.get-in-touch-form input {
    width: 100%;
    height: 60px;
    margin-bottom: 25px;
    color: #7c7c7c;
    padding: 0 15px;
    border-radius: 10px;
    background: #ffffff;
    border: none;
    font-weight: 600;
}

.get-in-touch-form form {
    margin-top: 35px;
}

.get-in-touch-form input::placeholder {

    color: #7c7c7c;

}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.get-in-touch-form textarea::placeholder {

    color: #7c7c7c;

}

.get-in-touch-select {
    position: relative;
    display: flex;
    align-items: center;
}

.get-in-touch-select-icon {
    position: absolute;
    right: 10px;
    pointer-events: none;
}

.get-in-touch-form select {
    width: 100%;
    height: 60px;
    color: #7c7c7c;
    padding: 0 15px;
    border-radius: 10px;
    background: #ffffff;
    border: none;
    font-weight: 600;
}

.get-in-touch-form button {
    width: 100%;
    height: 58px;
    border-radius: 50px;
    background: #1b4977;
    text-transform: uppercase;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
}

.get-in-touch-form textarea {
    width: 100%;
    height: 150px;
    margin-bottom: 25px;
    color: #7c7c7c;
    padding: 15px 15px;
    border-radius: 10px;
    background: #ffffff;
    border: none;
    font-weight: 600;
    resize: none;
}

/*Get In Touch Ends*/

/*About Methodolgy Start*/

.about-methodolgy-sec {
    padding: 100px 0;
}

.about-methodolgy-images img {
    width: 100%;
    height: 490px;
    object-fit: cover;
    border-radius: 20px;
}

.about-methodolgy-text h2 {
    margin-bottom: 15px;
}

.about-methodolgy-text ul {
    background: #f4f8fc;
    padding: 5px 10px;
    width: 220px;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: #7c7c7c;
    font-weight: 600;
    border: 1px solid #d8ecff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.about-methodolgy-row-text {
    margin-top: 30px;
}

.about-methodolgy-text ul li span {
    background-image: -webkit-linear-gradient(90deg, rgb(27, 73, 119) 0%, rgb(99, 146, 192) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
}

.why-civalyze-row {
    margin-top: 50px;
}


/*About Methodolgy Ends*/


/*Inner Account Start*/


.inner-account-sec {
    padding: 100px 0;
}

.inner-account-form {
    padding: 40px 25px;
    border: 1px solid #cccccc;
    border-radius: 20px;
}

.inner-account-form label {
    color: #888888;
    font-weight: 500;
    margin-top: 10px;
}

.inner-account-form ul li input {
    width: 15px;
    height: 16px;
    margin: 0;
    margin-right: 8px;
}

.inner-account-form ul li {
    font-weight: 500;
    color: #7c7c7c;
}


.inner-account-form ul {
    display: flex;
    align-items: center;
    margin-top: 25px;
    margin-bottom: 25px;
}

.inner-account-form input, .inner-account-form select {
    width: 100%;
    height: 55px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    margin-top: 5px;
    padding: 0 15px;
    -webkit-appearance: auto;
}

.inner-account-btn {
    text-align: center;
}

.inner-account-btn button {
    background-image: -webkit-linear-gradient(90deg, rgb(89, 149, 255) 0%, rgb(11, 84, 212) 100%);
    border: none;
    height: 55px;
    color: #fff;
    text-transform: uppercase;
    width: 30%;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    /* animation: pulse-animation 2s infinite; */
}


/*Inner Account Ends*/


/*Media Query Start*/

@media only screen and (min-width: 1366px) and (max-width: 1920px) {}

@media only screen and (min-width: 1200px) and (max-width: 1365px) {
.footer-main-copy-right-row {

        padding: 15px 0 !important;
    }
    .about-methodolgy-sec.privacy h2 {
        font-size: 35px !important;
        margin-bottom: 5px !important;
    }
.about-methodolgy-sec.privacy h4 {
   
    font-size: 25px !important;
    
}
.about-methodolgy-sec.privacy ul li {

    font-size: 13px !important;

}
.about-methodolgy-sec.privacy h5 {

    font-size: 25px !important;
    margin-bottom: 10px;
    margin-top: 15px;
}
    .analysis-table-content table.table th {
    
            font-size: 16px !important;
   
}
.projection-sec .text-center h4 {
    font-size: 28px !important;
    margin: 10px 0 !important;
    font-weight: 600 !important;
 
}
    .anly-icon {
        width: 100px !important;
        height: 100px !important;
        margin: 0 auto 15px !important;
    }
    section.projection-sec h3 {
        font-size: 25px !important;
        line-height: 30px !important;
        margin-bottom: 10px !important;
    }
    .get-in-touch-box ul li h2 {
    font-size: 20px !important;
   
}
.get-in-touch-form form {
    margin-top: 15px !important;
}
.get-in-touch-form input {
    width: 100% !important;
    height: 50px !important;
    margin-bottom: 10px !important;
    padding: 0 15px !important;
    font-size: 14px !important;
}

.get-in-touch-form button {
    width: 100% !important;
    height: 45px !important;
    border-radius: 50px !important;
    background: #1b4977 !important;
    text-transform: uppercase !important;
    font-size: 15px !important;
    color: #fff !important;
    font-weight: 500 !important;
}

.get-in-touch-form textarea {
    width: 100% !important;
    height: 150px !important;
     font-size: 14px !important;
     margin-bottom: 10px !important;
}
.inner-account-form input, .inner-account-form select {
 
    height: 48px !important;
   
    margin-top: 5px !important;
    padding: 0 15px !important;
  
    font-size: 14px !important;
}
.inner-account-form {
    padding: 30px 25px !important;
 
}
.inner-account-btn button {
    
    height: 45px !important;
   
    width: 60% !important;
   
}
.inner-account-sec {
    padding: 60px 0 !important;
}

.inner-subscription-btn {
    margin-top: 30px !important;
}
.inner-subscription-sec {
    padding: 80px 0 !important;
}
.inner-subscription-btn a {

    padding: 15px 30px !important;

}
.inner-subscription-text h2 span {
    font-size: 55px !important;
}
.g-recaptcha {
    margin-bottom: 10px !important;
}
    .get-in-touch-box h2 {
    text-transform: capitalize !important;
    font-size: 40px !important;
    margin-bottom: 0px !important;
}
    .inner-contact-us-sec {
    padding: 70px 0 !important;
}
    .about-methodolgy-sec {
    padding: 40px 0 !important;
}
    .inner-banner-sec {
 
    height: 350px !important;
   
}
.get-in-touch-form {
    margin-left: 10px !important;
    background: #f5f5f5 !important;
    padding: 25px 20px !important;
    border-radius: 20px !important;
}
    .bentont-text h5 {
    font-size: 20px !important;
    text-align: center !important;
    margin-top: 10px !important;
    margin-bottom: 5px !important;
}
.year-change-content p {
    font-size: 16px !important;
   
}
.bentont-text h2 {
    font-size: 40px !important;
    text-align: center !important;
    line-height: 50px !important;
    margin-bottom: 0 !important;
}
.bentont-text h4 {
    font-size: 18px !important;

    line-height: 34px !important;
    margin: 0px 0 !important;
   
}
    .banner_text {
    margin-top: 10px !important;
}
.bentont-text {

    padding: 30px !important; 
    width: 100% !important;
    margin-top: 20px !important;
}
section.zipcode-overview-sec .benton-head {
    text-align: center;
    margin-bottom: 10px !important;
}
    .projection-sec {
  
    padding: 70px 0 10px !important;
}
.anly-icon img {
    width: 50px !important;
}
.projection-sec .benton-head h2 {
    line-height: 30px !important;
    margin-bottom: 10px !important;
}
.projection-sec .text-center {
    padding: 20px 15px 30px !important;
    margin-top: 20px !important;
    height: 430px !important;
}

.benton-head h3 {
    font-size: 28px !important;
    margin-bottom: 18px !important;
}
    .menu-button .theme-btn-1 {
        padding: 10px 14px !important;
        border-radius: 50px !important;
        font-size: 11px !important;
    }
.menu-button {

    gap: 10px !important;
}
.acount-icon i {
    width: 40px !important;
    height: 40px !important;
 
    font-size: 15px !important;
    
}
.header-logo a img {
    width: 160px !important;
    height: 45px !important;
   
}
.menusec-icon a img {
    width: 25px !important;
    height: 25px !important;
  
}
.footer-main-row {
    padding: 30px 0 30px !important;
}
.smarter-investments-sec {
    padding: 0px 0 40px !important;
}
.analysis-table-content table.table td {
    font-size: 14px !important;
    
}
html .bold-text {
    font-size: 15px !important;
    color: #000 !important;
}
    
    .analysis-tab-box ul.tbing li {
    width: 48% !important;
}
    
    .zipcode-analysis h2 {
    margin-bottom: 10px !important;
}



    .housing-characteristics-select {

        top: 15px;
        width: 100%;
        left: 20px;
    }


    .housing-characteristics-select select {
        width: 100%;
        height: 40px;

        font-size: 12px;
    }

    .housing-characteristics-graf {
        margin-left: 10px;
        border: 1px solid #e7e7e7;
        padding: 70px 20px 20px;
    }

    .smarter-investments-race-row p {

        font-size: 14px;

    }

    .smarter-investments-sec .row.back {

        height: 250px;
        background-size: cover;
        text-align: center;
        padding-top: 40px;
        border-radius: 20px;
        margin-left: 0;
    }

    .smarter-investments-heading p {

        width: 100%;

    }

    .smarter-investments-heading h2 {
        line-height: 40px;

        font-size: 40px;

    }

    .smarter-investments-zip-code-row p {

        font-size: 14px;
    }

    .smarter-investments-zip-code-row select {

        height: 40px;

        font-size: 14px;
    }

    .smarter-investments-asian-row p {

        font-size: 14px;
    }

    .smarter-investments-race-text p {

        font-size: 14px;
    }

    .housing-characteristics-sec {
        padding: 50px 0;
    }

    .smarter-investments-form {
        padding: 20px 20px;
        margin-top: -60px;
    }

    .smarter-investments-asian-row {

        margin-bottom: 10px;
    }

    .most-populated-state ul li h2 {
        font-size: 20px;

    }

    .most-populated-state ul li span {

        width: 55px;
        height: 55px;
        border-radius: 50%;
    }

    .most-populated-state ul li a {

        font-size: 23px;

    }

    .most-populated-state-select {

        top: 15px;
        left: 15px;
    }

    .theme-btn-2 {
        padding: 15px 18px;
        font-size: 11px;
    }

    .banner_text p {
        width: 78%;
        margin: 0 auto;
        color: #a4b6c9;
        line-height: 20px;
    }

    .most-populated-state h2 {
        font-size: 20px;
    }

    .banner_text form input {
        width: 100%;
        height: 60px;

    }

    .banner_text-form-btn button {
        width: 180px;
        height: 50px;

    }

    .banner_text form {
        width: 80%;
        margin: 0 auto;
        margin-top: 10px;

    }

    h1 {

        font-size: 45px;
        line-height: 45px;

    }

    .theme-btn-1 {

        padding: 17px 30px;
        border-radius: 50px;
        font-size: 12px;

    }

    .population-characteristics-sec {
        padding: 50px 0;
    }

    .most-populated-state p {

        margin-bottom: 25px;
    }


    .footer-main-row h2 {
        font-size: 20px;

    }

    h2 {

        font-size: 35px;
        line-height: 35px;

    }

    p {

        font-size: 12px;
        line-height: 20px;

    }

    .footer-top-row {
        text-align: center;
        padding: 20px 0 20px;

    }

    .ftr-follow-us ul li a {

        font-size: 14px;
    }

    .ftr-contact-info {
        margin-left: 50px;
    }

    .ftr-qucik-links ul li a {

        font-size: 14px;
    }

    .ftr-contact-info ul li a {

        font-size: 14px;
    }

    .side-menu-overlay {

        width: 100%;

    }
    .main-banner-img {
   
    height: 430px !important;
}
  .footer-bottom-right ul li a {
    font-size: 14px;
  
}

}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    
    .main-banner-img {
   
    height: 400px !important;
}

.footer-bottom-right ul li a {
    font-size: 13px;
  
}

 .footer-main-copy-right-row {

        padding: 15px 0 !important;
    }
    .analysis-table-content table.table th {
    
            font-size: 16px !important;
   
}
.projection-sec .text-center h4 {
    font-size: 28px !important;
    margin: 10px 0 !important;
    font-weight: 600 !important;
 
}
    .anly-icon {
        width: 100px !important;
        height: 100px !important;
        margin: 0 auto 15px !important;
    }
    section.projection-sec h3 {
        font-size: 25px !important;
        line-height: 30px !important;
        margin-bottom: 10px !important;
    }
    .get-in-touch-box ul li h2 {
    font-size: 20px !important;
   
}
.get-in-touch-form form {
    margin-top: 15px !important;
}
.get-in-touch-form input {
    width: 100% !important;
    height: 50px !important;
    margin-bottom: 10px !important;
    padding: 0 15px !important;
    font-size: 14px !important;
}

.get-in-touch-form button {
    width: 100% !important;
    height: 45px !important;
    border-radius: 50px !important;
    background: #1b4977 !important;
    text-transform: uppercase !important;
    font-size: 15px !important;
    color: #fff !important;
    font-weight: 500 !important;
}

.get-in-touch-form textarea {
    width: 100% !important;
    height: 150px !important;
     font-size: 14px !important;
     margin-bottom: 10px !important;
}
.inner-account-form input, .inner-account-form select {
 
    height: 48px !important;
   
    margin-top: 5px !important;
    padding: 0 15px !important;
  
    font-size: 14px !important;
}
.inner-account-form {
    padding: 30px 25px !important;
 
}
.inner-account-btn button {
    
    height: 45px !important;
   
    width: 60% !important;
   
}
.inner-account-sec {
    padding: 60px 0 !important;
}

.inner-subscription-btn {
    margin-top: 30px !important;
}
.inner-subscription-sec {
    padding: 80px 0 !important;
}
.inner-subscription-btn a {

    padding: 15px 30px !important;

}
.inner-subscription-text h2 span {
    font-size: 55px !important;
}
.g-recaptcha {
    margin-bottom: 10px !important;
}
    .get-in-touch-box h2 {
    text-transform: capitalize !important;
    font-size: 40px !important;
    margin-bottom: 0px !important;
}
    .inner-contact-us-sec {
    padding: 70px 0 !important;
}
    .about-methodolgy-sec {
    padding: 40px 0 !important;
}
    .inner-banner-sec {
 
    height: 350px !important;
   
}
.get-in-touch-form {
    margin-left: 10px !important;
    background: #f5f5f5 !important;
    padding: 25px 20px !important;
    border-radius: 20px !important;
}
    .bentont-text h5 {
    font-size: 20px !important;
    text-align: center !important;
    margin-top: 10px !important;
    margin-bottom: 5px !important;
}
.year-change-content p {
    font-size: 16px !important;
   
}
.bentont-text h2 {
    font-size: 40px !important;
    text-align: center !important;
    line-height: 50px !important;
    margin-bottom: 0 !important;
}
.bentont-text h4 {
    font-size: 18px !important;

    line-height: 34px !important;
    margin: 0px 0 !important;
   
}
    .banner_text {
    margin-top: 40px !important;
}
.bentont-text {

    padding: 30px !important; 
    width: 100% !important;
    margin-top: 20px !important;
}
section.zipcode-overview-sec .benton-head {
    text-align: center;
    margin-bottom: 10px !important;
}
    .projection-sec {
  
    padding: 70px 0 10px !important;
}
.anly-icon img {
    width: 50px !important;
}
.projection-sec .benton-head h2 {
    line-height: 30px !important;
    margin-bottom: 10px !important;
}
.projection-sec .text-center {
    padding: 20px 15px 30px !important;
    margin-top: 20px !important;
    height: 430px !important;
}

.benton-head h3 {
    font-size: 28px !important;
    margin-bottom: 18px !important;
}
    .menu-button .theme-btn-1 {
        padding: 10px 14px !important;
        border-radius: 50px !important;
        font-size: 11px !important;
    }
.menu-button {

    gap: 10px !important;
}
.acount-icon i {
    width: 40px !important;
    height: 40px !important;
 
    font-size: 15px !important;
    
}
.header-logo a img {
    width: 160px !important;
    height: 45px !important;
   
}
.menusec-icon a img {
    width: 25px !important;
    height: 25px !important;
  
}
.footer-main-row {
    padding: 30px 0 30px !important;
}
.smarter-investments-sec {
    padding: 0px 0 40px !important;
}
.analysis-table-content table.table td {
    font-size: 14px !important;
    
}
html .bold-text {
    font-size: 15px !important;
    color: #000 !important;
}
    
    .analysis-tab-box ul.tbing li {
    width: 48% !important;
}
    
    .zipcode-analysis h2 {
    margin-bottom: 10px !important;
}



    .housing-characteristics-select {

        top: 15px;
        width: 100%;
        left: 20px;
    }


    .housing-characteristics-select select {
        width: 100%;
        height: 40px;

        font-size: 12px;
    }

    .housing-characteristics-graf {
        margin-left: 10px;
        border: 1px solid #e7e7e7;
        padding: 70px 20px 20px;
    }

    .smarter-investments-race-row p {

        font-size: 14px;

    }

    .smarter-investments-sec .row.back {

        height: 250px;
        background-size: cover;
        text-align: center;
        padding-top: 40px;
        border-radius: 20px;
        margin-left: 0;
    }

    .smarter-investments-heading p {

        width: 100%;

    }

    .smarter-investments-heading h2 {
        line-height: 40px;

        font-size: 40px;

    }

    .smarter-investments-zip-code-row p {

        font-size: 14px;
    }

    .smarter-investments-zip-code-row select {

        height: 40px;

        font-size: 14px;
    }

    .smarter-investments-asian-row p {

        font-size: 14px;
    }

    .smarter-investments-race-text p {

        font-size: 14px;
    }

    .housing-characteristics-sec {
        padding: 50px 0;
    }

    .smarter-investments-form {
        padding: 20px 20px;
        margin-top: -60px;
    }

    .smarter-investments-asian-row {

        margin-bottom: 10px;
    }

    .most-populated-state ul li h2 {
        font-size: 20px;

    }

    .most-populated-state ul li span {

        width: 55px;
        height: 55px;
        border-radius: 50%;
    }

    .most-populated-state ul li a {

        font-size: 23px;

    }

    .most-populated-state-select {

        top: 15px;
        left: 15px;
    }

    .theme-btn-2 {
        padding: 15px 18px;
        font-size: 11px;
    }

    .banner_text p {
        width: 78%;
        margin: 0 auto;
        color: #a4b6c9;
        line-height: 20px;
    }

    .most-populated-state h2 {
        font-size: 20px;
    }

    .banner_text form input {
        width: 100%;
        height: 60px;

    }

    .banner_text-form-btn button {
        width: 180px;
        height: 50px;

    }

    .banner_text form {
        width: 80%;
        margin: 0 auto;
        margin-top: 10px;

    }

    h1 {

        font-size: 45px;
        line-height: 45px;

    }

    .theme-btn-1 {

        padding: 17px 30px;
        border-radius: 50px;
        font-size: 12px;

    }

    .population-characteristics-sec {
        padding: 50px 0;
    }

    .most-populated-state p {

        margin-bottom: 25px;
    }


    .footer-main-row h2 {
        font-size: 20px;

    }

    h2 {

        font-size: 35px;
        line-height: 35px;

    }

    p {

        font-size: 12px;
        line-height: 20px;

    }

    .footer-top-row {
        text-align: center;
        padding: 20px 0 20px;

    }

    .ftr-follow-us ul li a {

        font-size: 14px;
    }

    .ftr-contact-info {
        margin-left: 50px;
    }

    .ftr-qucik-links ul li a {

        font-size: 14px;
    }

    .ftr-contact-info ul li a {

        font-size: 14px;
    }

    .side-menu-overlay {

        width: 100%;

    }
    .analysis-table-content table.table {
  
    width: 1000px !important;
}
    .about-methodolgy-sec.privacy h2 {
        font-size: 35px !important;
        margin-bottom: 5px !important;
    }
.about-methodolgy-sec.privacy h4 {
   
    font-size: 25px !important;
    
}
.about-methodolgy-sec.privacy ul li {

    font-size: 13px !important;

}
.about-methodolgy-sec.privacy h5 {

    font-size: 25px !important;
    margin-bottom: 10px;
    margin-top: 15px;
}
   
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .analysis-table-content table.table {
   
    width: 1000px !important;
}

.footer-bottom-right ul li a {
    font-size: 12px;
    color: #a9a9a9;
}

.footer-main-copy-right-row .col-lg-6.col-md-12.col-12 {
    width: 50%;
}

    .footer-main-copy-right-row {

        padding: 15px 0 !important;
    }
    .about-methodolgy-sec.privacy h2 {
        font-size: 35px !important;
        margin-bottom: 5px !important;
    }
.about-methodolgy-sec.privacy h4 {
   
    font-size: 25px !important;
    
}
.about-methodolgy-sec.privacy ul li {

    font-size: 13px !important;

}
.about-methodolgy-sec.privacy h5 {

    font-size: 25px !important;
    margin-bottom: 10px;
    margin-top: 15px;
}
    .analysis-table-content table.table th {
    
            font-size: 16px !important;
   
}
.projection-sec .text-center h4 {
    font-size: 28px !important;
    margin: 10px 0 !important;
    font-weight: 600 !important;
 
}
    .anly-icon {
        width: 100px !important;
        height: 100px !important;
        margin: 0 auto 15px !important;
    }
    section.projection-sec h3 {
        font-size: 25px !important;
        line-height: 30px !important;
        margin-bottom: 10px !important;
    }
    .get-in-touch-box ul li h2 {
    font-size: 20px !important;
   
}
.get-in-touch-form form {
    margin-top: 15px !important;
}
.get-in-touch-form input {
    width: 100% !important;
    height: 50px !important;
    margin-bottom: 10px !important;
    padding: 0 15px !important;
    font-size: 14px !important;
}

.get-in-touch-form button {
    width: 100% !important;
    height: 45px !important;
    border-radius: 50px !important;
    background: #1b4977 !important;
    text-transform: uppercase !important;
    font-size: 15px !important;
    color: #fff !important;
    font-weight: 500 !important;
}

.get-in-touch-form textarea {
    width: 100% !important;
    height: 150px !important;
     font-size: 14px !important;
     margin-bottom: 10px !important;
}
.inner-account-form input, .inner-account-form select {
 
    height: 48px !important;
   
    margin-top: 5px !important;
    padding: 0 15px !important;
  
    font-size: 14px !important;
}
.inner-account-form {
    padding: 30px 25px !important;
 
}
.inner-account-btn button {
    
    height: 45px !important;
   
    width: 60% !important;
   
}
.inner-account-sec {
    padding: 60px 0 !important;
}

.inner-subscription-btn {
    margin-top: 30px !important;
}
.inner-subscription-sec {
    padding: 80px 0 !important;
}
.inner-subscription-btn a {

    padding: 15px 30px !important;

}
.inner-subscription-text h2 span {
    font-size: 55px !important;
}
.g-recaptcha {
    margin-bottom: 10px !important;
}
    .get-in-touch-box h2 {
    text-transform: capitalize !important;
    font-size: 40px !important;
    margin-bottom: 0px !important;
}
    .inner-contact-us-sec {
    padding: 70px 0 !important;
}
    .about-methodolgy-sec {
    padding: 40px 0 !important;
}
    .inner-banner-sec {
 
    height: 350px !important;
   
}
.get-in-touch-form {
    margin-left: 10px !important;
    background: #f5f5f5 !important;
    padding: 25px 20px !important;
    border-radius: 20px !important;
}
    .bentont-text h5 {
    font-size: 20px !important;
    text-align: center !important;
    margin-top: 10px !important;
    margin-bottom: 5px !important;
}
.year-change-content p {
    font-size: 16px !important;
   
}
.bentont-text h2 {
    font-size: 40px !important;
    text-align: center !important;
    line-height: 50px !important;
    margin-bottom: 0 !important;
}
.bentont-text h4 {
    font-size: 18px !important;

    line-height: 34px !important;
    margin: 0px 0 !important;
   
}
    .banner_text {
    margin-top: 100px;
}
.bentont-text {

    padding: 30px !important; 
    width: 100% !important;
    margin-top: 20px !important;
}
section.zipcode-overview-sec .benton-head {
    text-align: center;
    margin-bottom: 10px !important;
}
    .projection-sec {
  
    padding: 70px 0 10px !important;
}
.anly-icon img {
    width: 50px !important;
}
.projection-sec .benton-head h2 {
    line-height: 30px !important;
    margin-bottom: 10px !important;
}
.projection-sec .text-center {
    padding: 20px 15px 30px !important;
    margin-top: 20px !important;
    height: 430px !important;
}

.benton-head h3 {
    font-size: 28px !important;
    margin-bottom: 18px !important;
}
    .menu-button .theme-btn-1 {
        padding: 10px 14px !important;
        border-radius: 50px !important;
        font-size: 11px !important;
    }
.menu-button {

    gap: 10px !important;
}
.acount-icon i {
    width: 40px !important;
    height: 40px !important;
 
    font-size: 15px !important;
    
}
.header-logo a img {
    width: 160px !important;
    height: 45px !important;
   
}
.menusec-icon a img {
    width: 25px !important;
    height: 25px !important;
  
}
.footer-main-row {
    padding: 30px 0 30px !important;
}
.smarter-investments-sec {
    padding: 0px 0 40px !important;
}
.analysis-table-content table.table td {
    font-size: 14px !important;
    
}
html .bold-text {
    font-size: 15px !important;
    color: #000 !important;
}
    
    .analysis-tab-box ul.tbing li {
    width: 48% !important;
}
    
    .zipcode-analysis h2 {
    margin-bottom: 10px !important;
}



    .housing-characteristics-select {

        top: 15px;
        width: 100%;
        left: 20px;
    }


    .housing-characteristics-select select {
        width: 100%;
        height: 40px;

        font-size: 12px;
    }

    .housing-characteristics-graf {
        margin-left: 10px;
        border: 1px solid #e7e7e7;
        padding: 70px 20px 20px;
    }

    .smarter-investments-race-row p {

        font-size: 14px;

    }

    .smarter-investments-sec .row.back {

        height: 250px;
        background-size: cover;
        text-align: center;
        padding-top: 40px;
        border-radius: 20px;
        margin-left: 0;
    }

    .smarter-investments-heading p {

        width: 100%;

    }

    .smarter-investments-heading h2 {
        line-height: 40px;

        font-size: 40px;

    }

    .smarter-investments-zip-code-row p {

        font-size: 14px;
    }

    .smarter-investments-zip-code-row select {

        height: 40px;

        font-size: 14px;
    }

    .smarter-investments-asian-row p {

        font-size: 14px;
    }

    .smarter-investments-race-text p {

        font-size: 14px;
    }

    .housing-characteristics-sec {
        padding: 50px 0;
    }

    .smarter-investments-form {
        padding: 20px 20px;
        margin-top: -60px;
    }

    .smarter-investments-asian-row {

        margin-bottom: 10px;
    }

    .most-populated-state ul li h2 {
        font-size: 20px;

    }

    .most-populated-state ul li span {

        width: 55px;
        height: 55px;
        border-radius: 50%;
    }

    .most-populated-state ul li a {

        font-size: 23px;

    }

    .most-populated-state-select {

        top: 15px;
        left: 15px;
    }

    .theme-btn-2 {
        padding: 15px 18px;
        font-size: 11px;
    }

    .banner_text p {
        width: 78%;
        margin: 0 auto;
        color: #a4b6c9;
        line-height: 20px;
    }

    .most-populated-state h2 {
        font-size: 20px;
    }

    .banner_text form input {
        width: 100%;
        height: 60px;

    }

    .banner_text-form-btn button {
        width: 180px;
        height: 50px;

    }

    .banner_text form {
        width: 80%;
        margin: 0 auto;
        margin-top: 10px;

    }

    h1 {

        font-size: 45px;
        line-height: 45px;

    }

    .theme-btn-1 {

        padding: 17px 30px;
        border-radius: 50px;
        font-size: 12px;

    }

    .population-characteristics-sec {
        padding: 50px 0;
    }

    .most-populated-state p {

        margin-bottom: 25px;
    }


    .footer-main-row h2 {
        font-size: 20px;

    }

    h2 {

        font-size: 35px;
        line-height: 35px;

    }

    p {

        font-size: 12px;
        line-height: 20px;

    }

    .footer-top-row {
        text-align: center;
        padding: 20px 0 20px;

    }

    .ftr-follow-us ul li a {

        font-size: 14px;
    }

    .ftr-contact-info {
        margin-left: 50px;
    }

    .ftr-qucik-links ul li a {

        font-size: 14px;
    }

    .ftr-contact-info ul li a {

        font-size: 14px;
    }

    .side-menu-overlay {

        width: 100%;

    }


}

@media only screen and (min-width: 520px) and (max-width: 767px) {
    
    
    
      .analysis-table-content table.table td {
    font-size: 12px !important;
 
}
.analysis-tab-box h3 {
    font-size: 14px !important;
    padding: 5px !important;
   
}

    .bentont-text h2 {
        font-size: 30px !important;
        line-height: 30px !important;
    }
.analysis-table-content table.table th {

    font-size: 15px !important;
   
}
    .bentont-text h4 {
        font-size: 16px !important;
        text-align: center !important;
        line-height: 14px !important;
        margin: 14px 0 0 !important;
    }
    .bentont-text h5 {
        font-size: 15px !important;
        margin-top: 10px !important;
        margin-bottom: 0px !important;
    }
.year-change-content p {
    font-size: 14px !important;
  
}
.year-change-content p span {
    font-size: 14px !important;
}
.bentont-text {

    padding: 20px !important;
    width: 100% !important;
    margin-top: 10px !important;
}


.zipcode-overview-sec {
    padding: 0px 0 40px !important;
}
.analysis-tab-box ul.tbing li {
    width: 100%  !important;
}
.bold-text {
    font-size: 15px !important;
   
}
.zipcode-analysis h2 {
    margin-bottom: 5px;
}
    .smarter-investments-sec {
    padding: 20px 0 30px !important;
}
    .analysis-table-content table.table {
        width: 900px;
    }
    
    section.zipcode-overview-sec .benton-head {
   
    margin-bottom: 10px;
}   

    
    p {
        font-size: 12px;
        line-height: 20px;
    }

    .side-menu-overlay {

        width: 100%;

    }

    .ftr-contact-info {
        margin-top: 15px;
    }

    .ftr-contact-info ul {
        line-height: 25px;
    }

    .ftr-follow-us {
        margin-top: 10px;
    }

    .ftr-contact-info ul li a {

        font-size: 12px;
    }

    .ftr-qucik-links ul {
        line-height: 25px;
    }

    .footer-main-row h2 {
        font-size: 18px;
        margin-bottom: 0;
    }

    .footer-main-row {
        padding: 20px 0 20px;
    }

    .ftr-follow-us ul li a {
        font-size: 12px;
    }

    .housing-characteristics-sec {
        padding: 50px 0;
    }

    .ftr-qucik-links ul li a {
        font-size: 12px;
    }

    .footer-main-logo a img {
        width: 171px;
        height: 42px;
        margin-bottom: 5px;
    }

    .footer-main-copy-right-row {

        padding: 10px 0;
    }

    .ftr-follow-us {
        float: left;
    }

    .ftr-contact-info {
        margin-left: 0;
    }

    .footer-top-row {

        padding: 15px 0 15px;

    }

    .housing-characteristics-graf {
        margin-left: 0;
        border: 1px solid #e7e7e7;
        padding: 130px 10px 10px;
        border-radius: 20px;
        position: relative;
        margin-top: 30px;
    }

    .most-populated-state h2 {
        font-size: 25px;
        text-align: center;
    }

    .population-characteristics-row {
        margin-top: 25px;
    }

    .most-populated-state p {
        margin-top: 10px;
        margin-bottom: 25px;
        text-align: center;
    }

    .smarter-investments-asian-row {
        border: 1px solid #efeeee;
        padding: 8px 0px;
        border-radius: 5px;
        margin-bottom: 10px;
    }

    .smarter-investments-asian-row p {
        margin-bottom: 0;
        font-size: 10px;
    }

    .smarter-investments-race-text p {
        font-size: 10px;
    }

    .smarter-investments-heading p {
        color: #becbd8;
        width: 100%;
        margin: 0 auto;
        font-size: 10px;
        line-height: 18px;
    }
    .inner-banner-heading {
    margin-top: 40px;
}
    .inner-banner-sec {
   
    height: 250px;
  
}
.banner_text {
  
    margin-top: 50px;
}
      .main-banner-img {
        height: 340px;
    }
    .most-populated-state-select {

        top: 15px;
        left: 15px;
    }

    .most-populated-state-images {
        width: 100%;
        padding: 50px 10px 30px;
        margin-top: 30px;
    }

     .banner_text form input {
        width: 100%;
        height: 45px;
        padding: 0px 15px;
        font-size: 12px;
    }

    .banner_text form {
        width: 100%;
        margin: 0 auto;
        margin-top: 8px;

    }

    .banner_text-form-btn button {
        width: 100px;
        height: 35px;
        font-size: 10px;
        border-radius: 50px !important;
        background-size: cover;
    }

    .banner_text p {
        width: 100%;
        line-height: 18px;
    }

    .header-logo a img {
        width: 151px;
        height: 35px;
        object-fit: contain;
    }
.acount-icon i {
    width: 30px !important;
    height: 30px !important;
    font-size: 12px !important;
 
}
      .menusec-icon a img {
        width: 20px;
        height: 20px;
        object-fit: contain;
    }

    .theme-btn-1 {
        padding: 10px 8px;
        border-radius: 50px;
        font-size: 8px;
    }

    .banner_text h1 span {
        display: contents;
    }

       h1 {
        font-size: 30px;
        line-height: 30px;
    }


    .smarter-investments-race-row {
        padding: 10px 0;
    }

    .smarter-investments-heading h2 {
        line-height: 30px;
        color: #ffff;
        font-size: 25px;
        margin-bottom: 5px;
    }

    .smarter-investments-zip-code-row select {

        height: 35px;

        font-size: 12px;
    }

    .smarter-investments-zip-code-row p {

        font-size: 12px;
    }


    .smarter-investments-race-row p {

        font-size: 8px;

    }

    .smarter-investments-form {
        padding: 10px 10px;
        margin-top: 0;
    }

    .smarter-investments-graf-box {

        margin-top: 20px;
    }


    .most-populated-state a {
        margin: 0 auto;
    }

    .smarter-investments-sec .row.back {
        height: 126px;
        background-size: cover;
        text-align: center;
        padding-top: 10px;
        border-radius: 20px;
        margin-left: 0px;
    }

    .most-populated-state {
        text-align: center;
    }

    .most-populated-state ul li span {

        width: 55px;
        height: 55px;
        border-radius: 50%;
    }

    .most-populated-state ul li span img {
        width: 22px;
        height: 29px;
        object-fit: contain;

    }

    .most-populated-state ul li h2 {
        font-size: 20px;
        margin-bottom: -5px;
        text-align: left;
    }

    .population-characteristics-sec {
        padding: 40px 0;
    }

    .population-characteristics-heading p {
        width: 100%;
        margin: 0 auto;
    }

       h2 {
        font-size: 25px;
        line-height: 30px;
        margin: 0 0 5px;
    }

    .theme-btn-2 {
        padding: 12px 18px;
        border-radius: 50px;
        font-size: 12px;
    }

    .housing-characteristics-select {
        position: absolute;
        top: 5px;
        width: 100%;
        left: 0px;
    }

    .housing-characteristics-select select {

        margin-top: 10px;
    }

    .housing-characteristics-text {
        text-align: center;
    }

    .most-populated-state ul li a {

        font-size: 25px;

    }

    .most-populated-state ul {

        gap: 12px;
        margin-top: 20px;
        justify-content: center;
    }


    #chartdivtwo {
        height: 300px !important;
        width: 350px !important;
        object-fit: contain !important;
    }
    .projection-sec {
  
  
    padding: 50px 0 !important;
}
.benton-head h4 {
    font-size: 25px !important;
   
}
.projection-sec .text-center h4 {
    font-size: 25px !important;
    margin: 12px 0 !important;
   
}
.anly-icon {
    margin: 0 auto 12px !important;

}
    section.projection-sec h3 {
        font-size: 22px !important;
        line-height: 30px !important;
        margin-bottom: 0 !important;
    }
    .projection-sec .benton-head h2 {
        line-height: 35px !important;
        margin-bottom: 5px !important;
    }
    .anly-icon {
    width: 70px !important;
    height: 70px !important;
}
.anly-icon img {
    width: 30px !important;
}
.projection-sec .text-center {
    padding: 15px 20px 20px  !important;
    margin-top: 10px  !important;
}



    .benton-head h3 {
        font-size: 22px;
        margin-bottom: 5px;
    }
    .about-methodolgy-sec {
        padding: 50px 0 !important;
        text-align: center !important;
    }
    .inner-contact-us-sec {
    padding: 50px 0 !important;
}
.get-in-touch-form {
    margin-left: 0;
    padding: 15px 15px;

}
    .get-in-touch-box h2 {
        font-size: 35px;
        margin-bottom: 18px;
        text-align: center;
    }
.get-in-touch-form button {
        width: 100%;
        height: 40px;
        font-size: 14px;
        margin: 0 auto;
    }
    .get-in-touch-box ul li a {

    font-size: 14px;
}
.inner-account-form ul li a {
    font-size: 14px;
}
.inner-account-btn button {
        height: 40px;
        width: 40%;
        font-size: 12px;
    }
.inner-account-form ul {

    margin-top: 15px;
    margin-bottom: 15px;
}
.inner-account-form input, .inner-account-form select {
    width: 100%;
    height: 45px;
    margin-top: 5px;
    padding: 0 15px;
    font-size: 14px;
}
.inner-account-form label {

    margin-top: 8px;
    font-size: 14px;
}
    .inner-account-form {
        margin-top: 10px;
        padding: 20px 25px;
    }
.inner-account-sec {
    padding: 50px 0;
}
    .inner-subscription-btn {
        margin-top: 25px;
    }
    .inner-subscription-btn a {
        padding: 12px 20px;
        font-size: 12px;
    }
.inner-subscription-text p {
    margin-bottom: 5px;
}
.inner-subscription-text ul {
    line-height: 25px !important;
}
.inner-subscription-text.wow.fadeInRight ul {
   
    margin-left: 15px !important;
}
.inner-subscription-text h2 {
    font-size: 30px;
    margin-bottom: 10px;
}
.inner-subscription-text ul li {
    font-size: 14px;
}
.inner-subscription-text h2 span {
    font-size: 35px;
}
.inner-subscription-sec {
    padding: 80px 0;
}
.get-in-touch-box ul li h2 {
        font-size: 18px;
        margin-bottom: -5px;
        text-align: left;
    }

.get-in-touch-form h2 {
    text-align: center;
}
.get-in-touch-box ul {
 
    gap: 12px;
    margin-bottom: 20px;
    margin-top: 15px;
    justify-content: center;
}

.get-in-touch-form form {
    margin-top: 10px;
}
.g-recaptcha {
    margin-bottom: 10px !important;
}
.get-in-touch-form textarea {
        width: 100%;
        height: 110px;
        padding: 15px 15px;
        border-radius: 10px;
        background: #ffffff;
        border: none;
        font-weight: 600;
        resize: none;
        margin-bottom: 10px;
        color: #7c7c7c;
        font-size: 13px;
    }
.get-in-touch-form input {

    height: 50px;
    margin-bottom: 10px;
    color: #7c7c7c;
    padding: 0 15px;

    font-size: 13px;
}

    .about-methodolgy-text ul li span {
        width: 25px;
        height: 25px;
        font-size: 16px;
    }
.method-title {
    font-size: 18px !important;
    font-weight: 700;
    margin-bottom: 8px !important;
    line-height: 25px !important;
}
.about-methodolgy-row-text {
    margin-top: 0 !important;
}
     .about-methodolgy-text ul {
        padding: 5px 0px !important;
        width: 45% !important;
        gap: 12px !important;
        font-size: 14px !important;
        justify-content: center !important;
        margin: 0 auto !important;
        margin-bottom: 20px !important;
    }
    .header-logo {
    text-align: left;
}
.year-change-content {

    justify-content: center !important;
    gap: 60px !important;
}
    header {

    padding: 5px 0;
}
    .menusec-icon {
    margin-bottom: 20px;
}
    .footer-bottom-right ul li a {
    font-size: 12px;

}
   .footer-bottom-left {
    text-align: center;
}
.footer-bottom-right ul {
   
    justify-content: center;
   
}

.about-methodolgy-sec.privacy h4 {
    font-size: 25px !important;
    margin-bottom: 5px !important;
    margin-top: 10px !important;
}



.about-methodolgy-sec.privacy ul li {
  
    font-size: 14px;
    line-height: 25px;

    padding-left: 15px;
 
    text-align: left;
}

.about-methodolgy-sec.privacy h2 {
    font-size: 35px !important;
    margin-bottom: 5px !important;
}
.about-methodolgy-sec.privacy h5 {
   
    font-size: 25px !important;
    
}
.about-methodolgy-sec.privacy ul li {
    font-size: 12px !important;
    line-height: 20px !important;
    padding-left: 18px !important;
 
}








}

@media only screen and (min-width: 300px) and (max-width: 519px) {
    
    

    
    
    
    
    
    .analysis-table-content table.table td {
    font-size: 12px !important;
 
}

.about-methodolgy-sec.privacy h5 {
 
    font-size: 25px !important;
   
}
.about-methodolgy-sec.privacy h2 {
    font-size: 30px !important;
    margin-bottom: 10px !important;
}

.about-methodolgy-sec.privacy ul {
    margin-bottom: 15px;
}

    .about-methodolgy-sec.privacy h4 {
        font-size: 25px !important;
        margin-top: 10px !important;
        margin-bottom: 5px !important;
    }
       .about-methodolgy-sec.privacy ul li {
        font-size: 12px !important;
        line-height: 20px !important;
        padding-left: 18px !important;
        text-align: left !important;
        margin-bottom: 3px !important;
    }
    .footer-bottom-right ul {
        gap: 8px;
        justify-content: center;
    }

.footer-bottom-left {
    text-align: center;
}
.footer-bottom-right ul li a {
    font-size: 11px;
    color: #a9a9a9;
}
.header-logo {
    text-align: left;
}
.menusec-icon {
    margin-bottom: 20px;
}
header {

    padding: 5px 0;
}


.analysis-tab-box h3 {
    font-size: 14px !important;
    padding: 5px !important;
   
}

    .bentont-text h2 {
        font-size: 30px !important;
        line-height: 30px !important;
    }
.analysis-table-content table.table th {

    font-size: 15px !important;
   
}
    .bentont-text h4 {
        font-size: 16px !important;
        text-align: center !important;
        line-height: 14px !important;
        margin: 14px 0 0 !important;
    }
    .bentont-text h5 {
        font-size: 15px !important;
        margin-top: 10px !important;
        margin-bottom: 0px !important;
    }
.year-change-content p {
    font-size: 14px !important;
  
}
.year-change-content p span {
    font-size: 14px !important;
}
.bentont-text {

    padding: 20px !important;
    width: 100% !important;
    margin-top: 10px !important;
}


.zipcode-overview-sec {
    padding: 0px 0 40px !important;
}
.analysis-tab-box ul.tbing li {
    width: 100%  !important;
}
.bold-text {
    font-size: 15px !important;
   
}
.zipcode-analysis h2 {
    margin-bottom: 5px;
}
    .smarter-investments-sec {
    padding: 20px 0 30px !important;
}
    .analysis-table-content table.table {
        width: 900px;
    }
    
    section.zipcode-overview-sec .benton-head {
   
    margin-bottom: 10px;
}   

    
    p {
        font-size: 12px;
        line-height: 20px;
    }

    .side-menu-overlay {

        width: 100%;

    }

    .ftr-contact-info {
        margin-top: 15px;
    }

    .ftr-contact-info ul {
        line-height: 25px;
    }

    .ftr-follow-us {
        margin-top: 10px;
    }

    .ftr-contact-info ul li a {

        font-size: 12px;
    }

    .ftr-qucik-links ul {
        line-height: 25px;
    }

    .footer-main-row h2 {
        font-size: 18px;
        margin-bottom: 0;
    }

    .footer-main-row {
        padding: 20px 0 20px;
    }

    .ftr-follow-us ul li a {
        font-size: 12px;
    }

    .housing-characteristics-sec {
        padding: 50px 0;
    }

    .ftr-qucik-links ul li a {
        font-size: 12px;
    }

    .footer-main-logo a img {
        width: 171px;
        height: 42px;
        margin-bottom: 5px;
    }

    .footer-main-copy-right-row {

        padding: 10px 0;
    }

    .ftr-follow-us {
        float: left;
    }

    .ftr-contact-info {
        margin-left: 0;
    }

    .footer-top-row {

        padding: 15px 0 15px;

    }

    .housing-characteristics-graf {
        margin-left: 0;
        border: 1px solid #e7e7e7;
        padding: 130px 10px 10px;
        border-radius: 20px;
        position: relative;
        margin-top: 30px;
    }

    .most-populated-state h2 {
        font-size: 25px;
        text-align: center;
    }

    .population-characteristics-row {
        margin-top: 25px;
    }

    .most-populated-state p {
        margin-top: 10px;
        margin-bottom: 25px;
        text-align: center;
    }

    .smarter-investments-asian-row {
        border: 1px solid #efeeee;
        padding: 8px 0px;
        border-radius: 5px;
        margin-bottom: 10px;
    }

    .smarter-investments-asian-row p {
        margin-bottom: 0;
        font-size: 10px;
    }

    .smarter-investments-race-text p {
        font-size: 10px;
    }

    .smarter-investments-heading p {
        color: #becbd8;
        width: 100%;
        margin: 0 auto;
        font-size: 10px;
        line-height: 18px;
    }
    .inner-banner-heading {
    margin-top: 40px;
}
    .inner-banner-sec {
   
    height: 250px;
  
}
.banner_text {
  
    margin-top: 50px;
}
      .main-banner-img {
        height: 340px;
    }
    .most-populated-state-select {

        top: 15px;
        left: 15px;
    }

    .most-populated-state-images {
        width: 100%;
        padding: 50px 10px 30px;
        margin-top: 30px;
    }

     .banner_text form input {
        width: 100%;
        height: 45px;
        padding: 0px 15px;
        font-size: 12px;
    }

    .banner_text form {
        width: 100%;
        margin: 0 auto;
        margin-top: 8px;

    }

    .banner_text-form-btn button {
        width: 100px;
        height: 35px;
        font-size: 10px;
        border-radius: 50px !important;
        background-size: cover;
    }

    .banner_text p {
        width: 100%;
        line-height: 18px;
    }

    .header-logo a img {
        width: 151px;
        height: 35px;
        object-fit: contain;
    }
.acount-icon i {
    width: 30px !important;
    height: 30px !important;
    font-size: 12px !important;
 
}
      .menusec-icon a img {
        width: 20px;
        height: 20px;
        object-fit: contain;
    }

    .theme-btn-1 {
        padding: 10px 8px;
        border-radius: 50px;
        font-size: 8px;
    }

    .banner_text h1 span {
        display: contents;
    }

       h1 {
        font-size: 30px;
        line-height: 30px;
    }


    .smarter-investments-race-row {
        padding: 10px 0;
    }

    .smarter-investments-heading h2 {
        line-height: 30px;
        color: #ffff;
        font-size: 25px;
        margin-bottom: 5px;
    }

    .smarter-investments-zip-code-row select {

        height: 35px;

        font-size: 12px;
    }

    .smarter-investments-zip-code-row p {

        font-size: 12px;
    }


    .smarter-investments-race-row p {

        font-size: 8px;

    }

    .smarter-investments-form {
        padding: 10px 10px;
        margin-top: 0;
    }

    .smarter-investments-graf-box {

        margin-top: 20px;
    }


    .most-populated-state a {
        margin: 0 auto;
    }

    .smarter-investments-sec .row.back {
        height: 126px;
        background-size: cover;
        text-align: center;
        padding-top: 10px;
        border-radius: 20px;
        margin-left: 0px;
    }

    .most-populated-state {
        text-align: center;
    }

    .most-populated-state ul li span {

        width: 55px;
        height: 55px;
        border-radius: 50%;
    }

    .most-populated-state ul li span img {
        width: 22px;
        height: 29px;
        object-fit: contain;

    }

    .most-populated-state ul li h2 {
        font-size: 20px;
        margin-bottom: -5px;
        text-align: left;
    }

    .population-characteristics-sec {
        padding: 40px 0;
    }

    .population-characteristics-heading p {
        width: 100%;
        margin: 0 auto;
    }

       h2 {
        font-size: 25px;
        line-height: 30px;
        margin: 0 0 5px;
    }

    .theme-btn-2 {
        padding: 12px 18px;
        border-radius: 50px;
        font-size: 12px;
    }

    .housing-characteristics-select {
        position: absolute;
        top: 5px;
        width: 100%;
        left: 0px;
    }

    .housing-characteristics-select select {

        margin-top: 10px;
    }

    .housing-characteristics-text {
        text-align: center;
    }

    .most-populated-state ul li a {

        font-size: 25px;

    }

    .most-populated-state ul {

        gap: 12px;
        margin-top: 20px;
        justify-content: center;
    }


    #chartdivtwo {
        height: 300px !important;
        width: 350px !important;
        object-fit: contain !important;
    }
    .projection-sec {
  
  
    padding: 50px 0 !important;
}
.benton-head h4 {
    font-size: 25px !important;
   
}
.projection-sec .text-center h4 {
    font-size: 25px !important;
    margin: 12px 0 !important;
   
}
.anly-icon {
    margin: 0 auto 12px !important;

}
    section.projection-sec h3 {
        font-size: 22px !important;
        line-height: 30px !important;
        margin-bottom: 0 !important;
    }
    .projection-sec .benton-head h2 {
        line-height: 35px !important;
        margin-bottom: 5px !important;
    }
    .anly-icon {
    width: 70px !important;
    height: 70px !important;
}
.anly-icon img {
    width: 30px !important;
}
.projection-sec .text-center {
    padding: 15px 20px 20px  !important;
    margin-top: 10px  !important;
}



    .benton-head h3 {
        font-size: 22px;
        margin-bottom: 5px;
    }
    .about-methodolgy-sec {
        padding: 50px 0 !important;
        text-align: center !important;
    }
    .inner-contact-us-sec {
    padding: 50px 0 !important;
}
.get-in-touch-form {
    margin-left: 0;
    padding: 15px 15px;

}
    .get-in-touch-box h2 {
        font-size: 35px;
        margin-bottom: 18px;
        text-align: center;
    }
.get-in-touch-form button {
        width: 100%;
        height: 40px;
        font-size: 14px;
        margin: 0 auto;
    }
    .get-in-touch-box ul li a {

    font-size: 14px;
}
.inner-account-form ul li a {
    font-size: 14px;
}
.inner-account-btn button {
        height: 40px;
        width: 40%;
        font-size: 12px;
    }
.inner-account-form ul {

    margin-top: 15px;
    margin-bottom: 15px;
}
.inner-account-form input, .inner-account-form select {
    width: 100%;
    height: 45px;
    margin-top: 5px;
    padding: 0 15px;
    font-size: 14px;
}
.inner-account-form label {

    margin-top: 8px;
    font-size: 14px;
}
    .inner-account-form {
        margin-top: 10px;
        padding: 20px 15px;
    }
.inner-account-sec {
    padding: 50px 0;
}
    .inner-subscription-btn {
        margin-top: 25px;
    }
    .inner-subscription-btn a {
        padding: 12px 20px;
        font-size: 12px;
    }
.inner-subscription-text p {
    margin-bottom: 5px;
}
.inner-subscription-text ul {
    line-height: 25px !important;
}
.inner-subscription-text.wow.fadeInRight ul {
   
    margin-left: 15px !important;
}
.inner-subscription-text h2 {
    font-size: 30px;
    margin-bottom: 10px;
}
.inner-subscription-text ul li {
    font-size: 14px;
}
.inner-subscription-text h2 span {
    font-size: 35px;
}
.inner-subscription-sec {
    padding: 80px 0;
}
.get-in-touch-box ul li h2 {
        font-size: 18px;
        margin-bottom: -5px;
        text-align: left;
    }

.get-in-touch-form h2 {
    text-align: center;
}
.get-in-touch-box ul {
 
    gap: 12px;
    margin-bottom: 20px;
    margin-top: 15px;
    justify-content: center;
}

.get-in-touch-form form {
    margin-top: 10px;
}
.g-recaptcha {
    margin-bottom: 10px !important;
}
.get-in-touch-form textarea {
        width: 100%;
        height: 110px;
        padding: 15px 15px;
        border-radius: 10px;
        background: #ffffff;
        border: none;
        font-weight: 600;
        resize: none;
        margin-bottom: 10px;
        color: #7c7c7c;
        font-size: 13px;
    }
.get-in-touch-form input {

    height: 50px;
    margin-bottom: 10px;
    color: #7c7c7c;
    padding: 0 15px;

    font-size: 13px;
}

    .about-methodolgy-text ul li span {
        width: 25px;
        height: 25px;
        font-size: 16px;
    }
.method-title {
    font-size: 18px !important;
    font-weight: 700;
    margin-bottom: 8px !important;
    line-height: 25px !important;
}
.about-methodolgy-row-text {
    margin-top: 0 !important;
}
     .about-methodolgy-text ul {
        padding: 5px 0px !important;
        width: 45% !important;
        gap: 12px !important;
        font-size: 14px !important;
        justify-content: center !important;
        margin: 0 auto !important;
        margin-bottom: 20px !important;
    }


}   


/*Media Query Ends*/
.years {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    display: flex;
    justify-content: space-evenly;
    width: 85%;
    margin: 20px auto 0;
    font-weight: 500;
}
/*Listing Start*/

.listing-img img {
    width: 100%;
    height: 504px;
    object-fit: cover;
    border-radius: 30px;
    transition: 0.5s;
}

.list-txt {
    background: #fff;
    position: absolute;
    bottom: -11px;
    right: 4%;
    width: 80%;
    padding: 20px;
    border-radius: 20px 0 20px 20px;
    box-shadow: 0px 10px 20px 0 #0000007d;
}

section.listing-sec .listing-main {
    position: relative;
    margin: 30px 0;
}

.invest-head-img {
    overflow: hidden;
}

.listing-img {
    overflow: hidden;
    border-radius: 30px;
}

.listing-main:hover .listing-img img {
    transform: scale(1.1);
    transition: 0.5s;
}

.list-txt h5 {
    font-size: 23px;
    font-weight: 700;
    font-family: 'Roboto';
    color: #000;
    margin: 0 0 10px;
    line-height: 30px;
}

.list-txt h6 {
    font-size: 25px;
    color: #000;
}

ul.room-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    border-bottom: 1px solid #c7c7c7;
}

ul.room-list li span {
    font-size: 17px;
    color: #989898;
    font-weight: 500;
}

ul.room-list li i {
    font-size: 15px;
    color: #989898;
    font-family: 'FontAwesome';
}

ul.room-list li p {
    font-size: 13px;
    color: #989898;
}

ul.profile-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

ul.profile-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
}

ul.profile-list li img {
    border-radius: 50%;
    width: 30%;
}

ul.profile-list li p {
    font-size: 15px;
    color: #000;
    font-family: 'Roboto';
    font-weight: 600;
    margin: 0;
}

ul.profile-list li i {
    font-size: 13px;
    border: 1px solid #989898;
    width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #989898;
}

section.listing-sec {
    padding: 80px 0 0;
    position: relative;
}



/*Listing End*/

   .other-chart #lineChart {
         height: 400px !important;
      }
      .checkbox {
    width: 20px;
    height: 20px;
    display: block;
    border-radius: 5px;
}
      .circleee {
    width: 20px;
    height: 20px;
    display: block;
    border-radius: 50px;
}
ul.map-list-1, ul.map-list-2 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

ul.map-list-1 li, ul.map-list-2 li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

ul.map-list-1 li p, ul.map-list-2 li p {
    font-size: 12px;
    margin: 0;
}

ul.map-list-1 {
    margin-bottom: 20px;
    gap: 35px;
}
ul.map-list-3 {
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 20px;
    margin-top: -25px;
}

ul.map-list-3 li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

ul.map-list-3 li p {
    font-size: 12px;
    margin: 0;
}

.map-list-box {
    padding: 0px 20px;
}
section.listing-sec .smarter-investments-form.wow.fadeInRight {
    margin: 50px 0 0;
}

section.listing-sec.inner-listing-sec .banner_text form {
    width: 60%;
    background: #1b4a78;
    padding: 5px;
    border-radius: 70px;
    /*margin: 0 0 0 0 !important;*/
    display: flex;
    justify-content: flex-end;
      margin-left: 250px !important;
}


.input-wrapper {
  position: relative;
}


.toggle-password {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #555;
}

/* Benton Content  */
.benton-head {
    text-align: center;
    margin-bottom: 30px;
}

.benton-head h4 {
    font-size: 30px;
    text-transform: capitalize;
    color: #000;
}



.bentont-text p {
    font-size: 15px;
    color: #000;
    margin: 10px 0;
    line-height: 24px;
}

.year-change-content p span {
    color: #198754;
    display: block;
    font-size: 16px;
}
/* Benton Content  */
/* Analysis Content */
.analysis-tab-box .mytabs.current {
    -webkit-animation: 0.8s ease-out slide-right;
    -moz-animation: 0.8s ease-out slide-right;
    height: auto;
    opacity: 1;
    transform: unset;
    transition: 0.8s;
}

.analysis-tab-box .mytabs {
    padding: 0px 0 0;
    height: 0;
    opacity: 0;
    transform: translateX(15px);
    transition: 0.5s;
    overflow: hidden;
}

.analysis-tab-box ul.tbing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.smarter-investments-sec {
    padding: 50px 0 100px;
}
.zipcode-analysis {
}
.analysis-tab-box {
}
.zipcode-analysis h2 {
    margin-bottom: 30px;
}

.zipcode-analysis h3 {
    margin: 30px 0 10px 0;
}

.analysis-tab-box h3 {
    font-size: 15px;
    margin: 0 0 0;
    font-weight: 400;
    text-transform: capitalize;
    padding: 8px;
    border: 1px solid #1b4a78;
    text-align: center;
    cursor: pointer;
    transition: .2s all;
    color: #1b4a78;
    font-weight: 500;
}

.analysis-tab-box ul.tbing li {
    width: 24%;
}

.analysis-tab-box ul.tbing li.current h3, .analysis-tab-box ul.tbing li:hover h3 {
    background-image: -webkit-linear-gradient(90deg, rgb(99, 146, 192) 0%, rgb(27, 73, 119) 100%);
    color: #fff;
}

.analysis-head {
    text-align: center;
}

.analysis-table-content table.table th {
    text-align: center;
    border: 0;
    font-size: 18px;
    text-transform: capitalize;
    padding: 12px;
}

.analysis-table-content table.table thead tr + tr th:first-child {
    text-align: left;
}

.analysis-table-content table.table td {
    font-size: 16px;
    font-weight: 600;
    color: #7c7c7c;
    text-align: center;
    border: 0;
    padding: 0 12px;
}
.bold-text {
    font-size: 18px !important;
    color: #000 !important;
}
.analysis-table-content table.table td:first-child {
    text-align: left;
}
.tds {
    padding: 10px !important;
}
.analysis-table-content table.table {
    border: 1px solid #000;
}

.analysis-table-content table.table thead tr:first-child {
    border-bottom: 1px solid #000;
}
/* Analysis Content */


/* Projection center  */
.projection-sec {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.projection-sec .benton-head h2 {
    line-height: 50px;
    margin-bottom: 50px;
}

.projection-sec .text-center {
    box-shadow: 0 0 2px 1px #989898;
    padding: 50px 16px 30px;
    border-radius: 10px;
}

.anly-icon {
    width: 150px;
    height: 150px;
    display: grid;
    place-content: center;
    margin: 0 auto 25px;
    border: 2px solid #245280;
    border-radius: 200px;
    transition: .5s all;
}

.anly-icon img {
    width: 100px;
}

.projection-sec .text-center:hover .anly-icon {
    background: #2f5b86;
}

.projection-sec .text-center:hover .anly-icon img {
    filter: invert(1);
}
.projection-sec .text-center h4 {
    font-size: 40px;
    margin: 20px 0;
    font-weight: 600;
    color: #2c557d;
}
.projection-sec .benton-head {
    margin-bottom: 0;
}
/* Projection center  */

/* Zipcode Overview Section */
.bentont-text {
    position: relative;
    z-index: 1;
    padding: 50px;
    width: 75%;
    margin-top: 20px !important;
}

.bentont-text:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    box-shadow: 0 0 5px 1px #98989873;
    border-radius: 10px;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    z-index: -2;
}

.bentont-text:after {
    position: absolute;
    content: '';
    width: 92%;
    height: 90%;
    border: 2px solid #000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
}

.bentont-text h2 {
    font-size: 50px;
    text-align: center;
    line-height: 60px;
}

.bentont-text h4 {
    font-size: 24px;
    text-align: center;
    line-height: 34px;
    margin: 14px 0;
    text-transform: capitalize;
    color: #7c7c7c;
}

.bentont-text h5 {
    font-size: 24px;
    text-align: center;
    margin-top: 50px;
}

.year-change-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.year-change-content p {
    font-size: 18px;
    color: #000;
    font-weight: 600;
}

.zipcode-overview-sec {
    padding: 50px 0 80px;
}

.zipcode-overview-sec .row .col-lg-6:first-child .bentont-text {
    margin: 0 0 0 auto;
}

.zipcode-overview-sec .row .col-lg-6:nth-child(2) .bentont-text {
    margin: 0 auto 0 0;
}

.zipcode-overview-sec .row .col-lg-6:nth-child(3) .bentont-text {
    margin: 0 0 0 auto;
}

.zipcode-overview-sec .row .col-lg-6:nth-child(4) .bentont-text {
    margin: 0 auto 0 0;
}

.analysis-table-content table.table tr:hover {
    background: #e4eff9;
}
.about-methodolgy-sec.privacy h2 {
    font-size: 60px;
    margin-bottom: 5px;
}
.about-methodolgy-sec.privacy h4 {
    font-family: "Rajdhani", sans-serif;
    color: #000000;
    font-weight: 600;
    font-size: 30px;
    margin-bottom: 10px;
    margin-top: 20px;
}
.about-methodolgy-sec.privacy p strong {
    font-weight: 800;
}
.method-title {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: "Rajdhani", sans-serif;
}
.about-methodolgy-sec.privacy a {
    color: #214878;
    font-weight: 800;
    margin-left: 3px;
}

.about-methodolgy-sec.privacy ul li {
    color: #7c7c7c;
    font-size: 14px;
    line-height: 25px;
    font-weight: 600;
    padding-left: 18px;
    position: relative;
}
.about-methodolgy-sec.privacy ul li:before {
    content: "";
    position: absolute;
    background: #7c7c7c;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    top: 9px;
    left: 0;
}
.about-methodolgy-sec.privacy ul {
    margin-bottom: 8px;
}
.about-methodolgy-sec.privacy p {
    margin-bottom: 10px;
}
.about-methodolgy-sec.privacy h5 {
    font-family: "Rajdhani", sans-serif;
    color: #000000;
    font-weight: 600;
    font-size: 30px;
    margin-bottom: 10px;
    margin-top: 20px;
}
/* Zipcode Overview Section */

/*Blog detail*/

.inner-blogdetail-sec {
    padding: 100px 0;
    width: 65%;
    margin: 0 auto 0;
}

.blog-detail-txt h2 {
    font-size: 45px;
}

.blog-detail-txt p a {
    font-size: 16px;
    text-decoration: underline;
    color: #1b4a78;
}

.blog-detail-txt p a b {
    font-weight: 600;
}

.blog-detail-txt h3 {
    font-size: 34px;
    font-family: 'Rajdhani';
    line-height: 44px;
    margin: 0 0 10px;
}

.blog-detail-txt ul li {
    list-style: disc;
}

.blog-detail-txt ul {
    padding-left: 20px;
}

.blog-detail-txt ul li p b {
    font-weight: 700;
}

.blog-detail-txt p b {
    font-weight: 700;
}

.blog-detail-txt h4 {
    font-size: 24px;
    color: #000;
    font-family: 'Rajdhani';
    font-weight: 600;
    line-height: 32px;
}

.blog-bottom-btn a {
    border: 1px solid #165bd5;
    padding: 18px 40px;
    text-transform: uppercase;
    border-radius: 50px;
    color: #165bd5;
    font-weight: 600;
    transition: .5s all;
}

.blog-bottom-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
}

.blog-bottom-btn a:hover {
    background: #165bdd;
    color: #ffff;
}

/*Blog detail*/

