
/* CSS3 Animations */
@import url(animate.css);

/* CSS Reset */

html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}nav ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}ins{background-color:#ff9;color:#000;text-decoration:none}mark{background-color:#ff9;color:#000;font-style:italic;font-weight:bold}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}
*,*:after,*:before {box-sizing: border-box;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;-ms-box-sizing: border-box;-o-box-sizing: border-box;}

/* Default Style Here */

body{
   font-family: 'museo_sans300';
   font-size: 18px;
   line-height: 30px;
   color: #474747;
}
img {
    display: block;
    max-width: 100%;
    height: auto;
}
a{
    text-decoration: none;
    transition:all 0.5s ease;
}


.h1,
h1{
    font-family: 'museo_sans700';
    font-size: 51.7778px;
    line-height: 62px;
    text-transform: uppercase;
    color: #fff;
}
.h1{
    display: block;
}
h2{
    font-family: 'museo_sans700';
    font-size: 30px;
    line-height: 36px;
    color: #4A4A4A;
}
h3{
    font-family: 'museo_sans700';
    font-size: 41.6612px;
    line-height: 50px;
    color: #fff;
}
h4{
    font-family: 'museo_sans700';
    font-size: 20px;
    line-height: 24px;
    color: #00BDFF;
}
h4 a{
    color: #00BDFF;
}
h5{
    font-family: 'museo_sans700';
    font-size: 35px;
    line-height: 42px;
    color: #000;
    margin-bottom: 25px;
}
.btn{
    font-family: 'Roboto', sans-ser;
    font-weight: 700;
    letter-spacing: 0.085em;
    transition:all 0.5s ease;
}
.btn-primary{
    background-color: #0BC0FF;
    border-color: #0BC0FF;
}

.btn-warning{
    background-color: #FAAD14;
    border-color: #FAAD14;
    color: #000;
}
.btn-warning:hover{
    background-color: #ffc107;
    border-color: #ffc107;
}
.clearfix{

}
.text-right{
    text-align: right;
}
.float-right{
    float: right;
}
.clear-both{
    clear: both;
    overflow: hidden;
}

.btn-outline1{
    font-size: 13px;
    line-height: 15px;
    color: #000;
    font-family: 'Roboto', sans-ser;
    font-weight: 700;
    letter-spacing: 0.085em;
    text-transform: uppercase;
    padding: 10px 25px;
    margin: 0;
    text-align: center;
    border: 1px solid #0BC0FF;
    margin: 10px 10px 0 0;
    border-radius: 5px;
}
.btn-outline1:hover{
    background: #0BC0FF;
    color: #fff;
}


/* Fonts Styles */

@font-face {
    font-family: 'museo_sans100';
    src: url('../webfonts/exljbris_-_museosans-100-webfont.woff2') format('woff2'),
         url('../webfonts/exljbris_-_museosans-100-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'museo_sans300';
    src: url('../webfonts/exljbris_-_museosans-300-webfont.woff2') format('woff2'),
         url('../webfonts/exljbris_-_museosans-300-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'museo_sans500';
    src: url('../webfonts/exljbris_-_museosans-500-webfont.woff2') format('woff2'),
         url('../webfonts/exljbris_-_museosans-500-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'museo_sans700';
    src: url('../webfonts/exljbris_-_museosans-700-webfont.woff2') format('woff2'),
         url('../webfonts/exljbris_-_museosans-700-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'museo_sans900';
    src: url('../webfonts/exljbris_-_museosans-900-webfont.woff2') format('woff2'),
         url('../webfonts/exljbris_-_museosans-900-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* Header Styles Start Here */

#header{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding: 50px 0;
    z-index: 9999;
}
#header.fixed-header{
    position: fixed;
    width: 100%;
    animation: smoothScroll 1s forwards;
    transition: 0.4s;
    background: #131927;
    border-bottom: 1px solid #212d4a;
}
@keyframes smoothScroll {
  0% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0px);
  }
}
#header .mainNav .btn{
    font-size: 13px;
    line-height: 15px;
    color: #fff;
    font-family: 'Roboto', sans-ser;
    font-weight: 700;
    letter-spacing: 0.085em;
    text-transform: uppercase;
    padding: 8px 0;
    margin: 0;
    text-align: center;
    width: 127px;
}
#header .mainNav .btn-primary{
    color: #000;
    margin-left: 20px;
}
#header .mainNav .btn-primary:hover{
    color: #fff;
}
#header .mainNav .btn-outline-primary{
    border-color: #0BC0FF;
    margin-left: 8px;
}
#header .mainNav .btn-outline-primary:hover{
    background-color: #0BC0FF;
    color: #000;
}

.mainNav nav{
    float: right;
}
.mainNav ul{
    float: left;
    list-style: none;
    padding: 4px 0 0 0;
}
.mainNav ul li {
    float: left;
    margin: 0 0 0 50px;
    position: relative;
}
.mainNav ul li a{
    margin-left: 0;
}
.mainNav ul li a{
    float: left;
    color: #fff;
    font-family: 'museo_sans700';
    font-size: 18px;
    line-height: 22px;
    position: relative;
    z-index: 222;
}
.mainNav ul li.active a,
.mainNav ul li:hover a,
.mainNav ul li a:hover{
    color: #FAAD14;
}
.mainNav ul li a i{
    display: inline-block;
    font-size: 16px;
    margin: 0 0 0 10px;
}
.mainNav ul .dropdown{
    position: absolute;
    left: 0;
    top: 0;
    width: 500px;
    z-index: 22;
    border: 0;
    padding: 35px 0 0 0;
    transition:all 0.5s ease;
}
.mainNav ul li .dropdown ul{
    padding: 0;
    width: 100%;
    border-top: 7px solid #0BC0FF;
    border-radius: 4px;
    background-color: #fff;
    position: relative;
    z-index: 2;
}
.mainNav ul li .dropdown li {
    margin:  0;
    float: left;
    width: 50%;
}
.mainNav ul li .dropdown li a {
    display: block;
    padding: 20px;
    font-family: 'museo_sans700';
    color: #000;
    font-size: 18px;
    line-height: 22px;
    float: none;
    border-radius: 4px;
}
.mainNav ul li .dropdown li a:hover{
    background-color: #0BC0FF;
    color: #fff;
}
.mainNav ul li .dropdown li a i{
    display: inline-block;
    width: 22px;
    height: 22px;
    background: url(../images/icon-newAgent.png);
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    top: 3px;
}
.mainNav ul li .dropdown li a:hover i{
    background: url(../images/icon-newAgent-hover.png);
}
.mainNav ul li .dropdown li a i.icon-local{
    background: url(../images/icon-local.png);
}
.mainNav ul li .dropdown li a:hover i.icon-local{
    background: url(../images/icon-local-hover.png);
}
.mainNav ul li .dropdown li a i.icon-regional{
    background: url(../images/icon-regional.png);
}
.mainNav ul li .dropdown li a:hover i.icon-regional{
    background: url(../images/icon-regional-hover.png);
}
.mainNav ul li .dropdown li a i.icon-national{
    background: url(../images/icon-national.png);
}
.mainNav ul li .dropdown li a:hover i.icon-national{
    background: url(../images/icon-national-hover.png);
}
.mainNav ul li .dropdown li a span{
    display: inline-block;
    margin-left: 5px;
}
.mainNav ul li .dropdown{
    display: none;
}
.mainNav ul li:hover .dropdown{
    display: block;
}

/* Footer Styles Start Here  */

#footer {
    background: #162B4A url(../images/footer-bg.jpg) no-repeat center bottom;
    background-size: cover;
    padding:  100px 0;
    color: #fff;
}
#footer h1,
#footer .h1{
    font-size: 44.9157px;
}
#footer h4{
    color: #fff;
    font-size: 22px;
    line-height: 37px;
    color: #fff;
    margin: 0 0 30px 0;
    font-family: 'museo_sans300';
}
#footer .btn-primary{
    padding: 0 25px;
    margin: 0;
    height: 70px;
    line-height: 70px;
    font-size: 25px;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Roboto', sans-ser;
    font-weight: 700;
    letter-spacing: 0.085em;
}
#footer .locationMap{
    position: relative;
    top: -12px;
    float: right;
}
#footer .footer-logo{
    display: block;
    border-bottom: 1px solid #0BC0FF;
    padding: 0 0 25px 0;
}
#footer .footer-bottom{
    margin-top: 30px;
}
#footer .location-info{
    font-size: 25px;
    line-height: 40px;
    color: #fff;
    display: block;
}
#footer .socail-links{
    display: block;
    padding: 90px 0 0 0;
}
#footer .socail-links a{
    color: #fff;
    margin: 0 10px 0 0;
    font-size: 18px;
}
#footer .socail-links a:hover{
    color: #FAAD14;
}
#footer ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
#footer nav ul li{
    margin-bottom: 8px;
}
#footer nav ul li a{
    font-size: 22px;
    line-height: 40px;
    color: #fff;
    text-decoration: none;
    font-family: 'museo_sans700';
}
#footer nav ul li a:hover{
    text-decoration: none;
    color: #FAAD14;
}


/* Bnner Styles Start Here */

#banner{
   background-image: url(../images/banner-bg.png), linear-gradient(90deg, #01054A -13.24%, #01054A 100%);
   background-repeat: no-repeat;
   background-size: cover;
   background-position: center center;
   padding: 250px 0;
}
#banner h4{
    margin: 22px 0 40px 0;
    font-family: 'museo_sans300';
    line-height: 36px;
}
#banner .btn-warning{
    border-radius: 60.6383px;
    border: 0;
    height: 57px;
    font-size: 19px;
    line-height: 57px;
    padding: 0 38px;
    text-transform: uppercase;
}

/* Main Content Start Here */

#mainContent {
}

/* tools to put growth Styles Here */

.tools-wigets {
    padding: 65px 0 45px 0;
}
.section-header{
}
.tools-wigets .card{
    background-color: #FFFFFF;
    box-shadow:  0px 0px 2px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    margin-top: 20px;
    padding: 65px 30px;
    transition:all 0.5s ease;
}
.tools-wigets .card p{
    padding: 0;
    margin: 0;
    color: #686868;
    font-size: 15px;
    line-height: 18px;
    width: 80%;
}
.tools-wigets .card h4{
    margin: 3px 0 6px 0;
}
.tools-wigets .card figure{
    display: block;
    height: 130px;
}
.tools-wigets .card:hover{
    background-color: #FAFAFA;
    box-shadow: 0px 0px 15px rgb(231 249 255 / 70%);
    border-color: #E6E6E6;
}

/* "Introducing Scout A.I" Styles Here */


.introduce-intro{
    background-color: #0BC0FF;
    padding: 25px 0;
}
.overflow-hidden,
.introduce-intro .row{
    overflow: hidden;
}
.introduce-intro h3{
    font-size: 46.2302px;
    line-height: 55px;
}
.introduce-intro h3 span{
    font-size: 21.9643px;
    line-height: 26px;
    color: #474747;
    display: block;
    font-family: 'museo_sans700';
}
.introduce-intro .introText{
    font-size: 18px;
    line-height: 22px;
    font-family: 'museo_sans500';
    color: #fff;
    padding-top: 15px;
}
.introduce-intro .introText p{
    padding: 0;
    margin: 0;
}
.introduce-intro .btn-warning {
    border-radius: 60.6383px;
    border: 0;
    height: 57px;
    font-size: 19px;
    line-height: 57px;
    text-transform: uppercase;
    padding: 0 40px;
    margin: 4px 0 0 0;
}

/* "COMPLETELY CONFIGURABLE" Styles Here */

.content-wrap1{
    position: relative;
    padding: 255px 0 0 0;
    height: 900px;
}
.content-wrap1:before{
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    background: #F4F4F4;
    height: 100%;
    width: 50%;
    z-index: 2;
}
.content-wrap1:after{
    position: absolute;
    right: 50px;
    top: -40px;
    content: "";
    z-index: 1;
    height: 100%;
    width: 50%;
    background: url(../images/bg-1.png) no-repeat left top;
}
.content-wrap1 .container{
    z-index: 2;
    position: relative;
}
.content-wrap1 .h1{
    color: #4A4A4A;
}
.content-wrap1 p{
    color: #4A4A4A;
}

/* "JOIN THE PARTY GET IN ON THE ACTION" Styles Here */

.join-party{
    background-color: #162B4A;
    padding: 100px 0;
}
.join-party h1{}
.join-party h4{
    font-family: 'museo_sans500';
    color: #A0A0A0;
    margin: 0 0 10px 0;
}
.joinParty-widgets{
    margin: 90px 0 10px 0;
}
.joinParty-widgets figure{
    display: flex;
    align-items: flex-start;
}
.joinParty-widgets figure div{
    width:  50px;
}
.joinParty-widgets figure figcaption{
    font-size: 15px;
    line-height: 16px;
    color: #0BC0FF;
    padding: 0 0 0 25px;
}
.joinParty-widgets h2{
    color: #fff;
    text-transform: capitalize;
}
.joinParty-widgets figcaption span{
    margin-top: 2px;
}


/* Client Says */

.testmonials{
    padding: 0 0;
    background: #fff;
}
.testmonials-inner{
    float: left;
    width: 100%;
    background: #224373;
    border-radius: 53px;
    padding: 60px 0 38px 0;

    position: relative;
    top: -60px;
    z-index: 22;
}
.testmonials-inner .carousel-control-prev,
.testmonials-inner .carousel-control-next {
    position: absolute;
    right: 50px;
    top: inherit;
    bottom: 0;
    font-size: 0;
    border: none;
    outline: none;
    height: 45px;
    width: 45px;
    background: #282828;
    border-radius: 100%;
    z-index: 2;
}
.testmonials-inner .carousel-control-prev{
    right: 100px;
    left: inherit;
}

.testmonials-inner .carousel-control-next:after,
.testmonials-inner .carousel-control-prev:after {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    content: "";
    background: url(../images/right-arw.svg) no-repeat;
    height: 20px;
    width: 20px;
    background-size: cover;
    background-size: contain;
    background-position: center;
    top: 12px;
    
    transition:all 0.5s ease;
}
.testmonials-inner .carousel-control-prev:after{
    background: url(../images/left-arw.svg) no-repeat;
    background-size: contain;
    background-position: center;
}
.testmonials-inner .carousel-control-next:hover,
.testmonials-inner .carousel-control-prev:hover{
    background: #fff;
}
.testmonials .testmonials-logo{
    margin: 0 0 0 45px;
    background: #fff;
    height: 100%;
    border-radius: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.testmonials .testmonials-logo img{
    border-radius: 38px;
}
.testmonial-content{
    padding: 0 0 0 15px;
    font-size: 20px;
    line-height: 30px;
    color: #A7A7A7;
}
.testmonial-content p {
    margin: 0;
    padding: 0;
    font-size: 20px;
    line-height: 30px;
    color: #A7A7A7;
}
.testmonial-content h3{
    margin: 0 0 4px 0;
    color: #0BC0FF;
}
.testmonial-content h2{
    color: #fff;
    text-transform: uppercase;
}
.testmonial-content .designation {
    font-size: 15px;
    line-height: 16px;
    color: #FAAD14;
}
.authorInfo {
    padding: 45px 0 0 0;
}

.reporting-analytics{
    padding: 65px 0;
}
.reporting-analytics figure{
    display: flex;
    align-items: flex-start;
}
.reporting-analytics figure figcaption {
    padding: 0 0 0 23px;
    font-size: 18px;
    line-height: 24px;
    color: #474747;
}

/* "MEASURABLE ROI" Styles Here */

.contentBlock{
    padding: 80px 0;
    font-size: 18px;
    line-height: 28px;
    color: #fff;
    background-color: #162B4A;
}
.contentBlock h1,
.contentBlock .h1{
    margin-bottom: 13px;
}
.contentBlock p {
    margin-bottom: 15px;
}
.measurable-count{
    background: url(../images/measurable-content.gif) no-repeat left top;
    background-size: contain;
    max-width: 332px;
    height: 332px;
    text-align: center;
    margin-top: 8px;
}
.measurable-count .count{
    font-size: 50.8333px;
    line-height: 61px;
    text-transform: uppercase;
    font-family: 'museo_sans700';
    color: #4A4A4A;
    padding: 115px 0 10px 0;
    display: block;
}
.measurable-count .count strong{
    font-family: 'museo_sans500';
    font-size: 30px;
    line-height: 36px;
}
.measurable-count h2{
    font-size: 19px;
    line-height: 23px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.measurable-content {
    font-size: 25px;
    line-height: 35px;
    padding: 82px 0 0 0;
}
.measurable-content .btn{
    padding: 14px 25px;
    font-size: 17.4016px;
    line-height: 20px;
    letter-spacing: 0.085em;
    text-transform: uppercase;
    margin: 0 15px 0 0;
    display: inline-block;
}
.measurable-content .btn.btn-primary{
    color: #000;
}
.measurable-content .btn.btn-primary:hover{
    color: #fff;
}

/* client logos Slider */

.client-logos {
    padding-bottom: 30px;
}
.clientLogo{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 60px 0;
}

#clientLogos-slider {
    display: none;
}
.rc-rcbrand-container {
    position:relative;
    max-width:100%;
    clear: both;
    overflow: hidden;
}
.rc-rcbrand-container:before,
.rc-rcbrand-container:after{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    width: 300px;
    height: 100%;
    z-index: 2;
    background-image:-webkit-gradient(linear,left top,right top,from(#fff), to(rgba(255,255,255,0)));
    background-image:-o-linear-gradient(left,#fff,rgba(255,255,255,0));
    background-image:linear-gradient(to right,#fff,rgba(255,255,255,0));
    left:0;
}
.rc-rcbrand-container:after{
    background-image:-webkit-gradient(linear,right top,left top,from(#fff),to(rgba(255,255,255,0)));
    background-image:-o-linear-gradient(right,#fff,rgba(255,255,255,0));
    background-image:linear-gradient(to left,#fff,rgba(255,255,255,0));
    left: auto;
    right:0
}
.rc-rcbrand-ul {
    position:relative;
    width:99999px;
    margin:0px;
    padding:0px;
    list-style-type:none;   
    text-align:center;  
    overflow: auto;
    list-style: none;
    display: flex;
    z-index: 1;
}
.rc-rcbrand-ul li{
    flex: 0 0 auto;
}
.rc-rcbrand-ul li figure{
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.rc-rcbrand-inner {
    position: relative;
    overflow: hidden;
    float:left;
    width:100%;
    background: #ffffff;; 
}
.rc-rcbrand-item {
    float:left;
    margin:0px;
    padding:0px;
    position:relative;
    line-height:0px;
}
.rc-rcbrand-item img {
    position: relative;
}
.rc-rcbrand-nav-left,
.rc-rcbrand-nav-right {
    display: none;
}
.clientLogos-outer {
    clear: both;
    overflow: hidden;
}

/* TOTAL BRAND PROTECTION */

.brandProtection{
    clear: both;
    overflow: hidden;
    padding: 80px 0;
}

.brandProtection .h1,
.brandProtection h1{
    color: #4A4A4A;
}
.protection-widgets {
    float: left;
    width: 100%;
    padding: 35px 0;
}
.protection-widgets .widget{
    width: 324px;
    height: 324px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #EAEDEF;
    background: #EAEDEF;
    border-radius: 160px;
    position: relative;
    float: left;
    z-index: 1;
    padding: 0 70px;
    text-align: center;
}
.protection-widgets .widget h4{
    color: #000;
    font-family: 'museo_sans700';
    line-height: 30px;
}
.protection-widgets .widget span{
    position: absolute;
    right: 25px;
    top: 25px;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 33px;
    background: #EAEDEF;
    border:  9px solid #fff;
    border-radius: 50%;
}
.protection-widgets .widget span:before{
    content: '';
    display: inline-block;
    transform: rotate(40deg);
    height: 15px;
    width: 7px;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    position: relative;
    left: 2px;
}
.protection-widgets .widgetTwo{
    background: none;
    border-color: #000;
    z-index: 2;
    left: -38px;
}
.protection-widgets .widgetThree{
    background: #0BC0FF;
    border-color: #0BC0FF;
    z-index: 3;
    left: -76px;
}
.protection-widgets .widgetfour h4,
.protection-widgets .widgetThree h4{
    color: #fff;
}
.protection-widgets .widgetTwo span,
.protection-widgets .widgetThree span{
    background: #0BC0FF;
}
.protection-widgets .widgetfour{
    background: #494949;
    border-color: #494949;
    z-index: 4;
    left: -114px;
}
.protection-widgets .widgetfour span{
    background: #494949;
}
.protection-widgets .widgetfour span:before{
    border-color: #C2C2C2;
}


/*INNER PAGES STYLES HERE */

/* Sales Page Styles Here */

.bannerInner{
    background: #131927 url(../images/bannerInner-bg.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center top;
    padding: 250px 0 150px 0;
}
.bannerInner h4{
    margin: 22px 0 40px 0;
    font-family: 'museo_sans300';
    line-height: 36px;
}
.banner-buttons{

}
.banner-buttons .btn{
    font-size: 13px;
    line-height: 15px;
    color: #fff;
    font-family: 'Roboto', sans-ser;
    font-weight: 700;
    letter-spacing: 0.085em;
    text-transform: uppercase;
    padding: 10px 22px;
    margin: 0;
    text-align: center;
    min-width: 148px;
}
.banner-buttons .btn-primary{
    color: #000;
    margin-left: 20px;
}
.banner-buttons .btn-primary:hover{
    color: #fff;
}
.banner-buttons .btn-outline-primary{
    border-color: #0BC0FF;
    margin-left: 8px;
}
.banner-buttons .btn-outline-primary:hover{
    background-color: #0BC0FF;
    color: #000;
}
.banner-buttons .btn:hover{
    background: #FAAD14 !important;
    border-color: #FAAD14 !important;
    color: #000 !important;
}
.intro-image{
    padding: 175px 0 110px 0;
    clear: both;
    overflow: hidden;
}
.intro-image img{
    margin: 0 auto;
}
.bannerTitle-header{
    clear: both;
    overflow: hidden;
    font-size: 18px;
    line-height: 35px;
    color: #fff;
}
.bannerTitle-header{
}
.bannerTitle-header h4{
    text-transform: uppercase;
    padding: 0;
    margin: 0;
    color: #fff;
    font-family: 'museo_sans700';
}
.bannerTitle-header .h1,
.bannerTitle-header h1{
    margin-bottom: 10px;
}
.banner-content{
    clear: both;
    overflow: hidden;
    text-align: left;
    color: #fff;
    padding: 115px 0 0 0;
}
.banner-content .h1,
.banner-content h1{
    padding-bottom: 25px;
}
.banner-content p {
    margin: 25px 0;
}
.banner-content figure{
    padding: 90px 0 0 0;
}
.content-block1{
    padding: 60px 0;
    font-family: 'museo_sans300';
    color: #000;
}
.content-block1 .h1,
.content-block1 h1{
    color: #000;
    margin: 0 0 24px 0;
    font-family: 'museo_sans900';
}
.content-block1 p{
    margin-bottom: 20px;
}
.content-block1 ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.content-block1 ul li{
    background: url(../images/icon-list.png) no-repeat left 5px;
    padding: 0 0 0 40px;
    font-size: 25px;
    line-height: 35px;
    color: #000;
    margin: 10px 0 30px 0;
    font-family: 'museo_sans500';
}
.contentbottom-text{
    clear: both;
    text-align: center;
    padding: 70px 0 20px 0;
    font-family: 'museo_sans500';
}
.contentbottom-text p{
    margin: 0;
    padding: 0;
    font-size: 25px;
    line-height: 35px;
}
.contentbottom-text strong{
    color: #0071ED;
    font-weight: normal;
}
.contentbottom-text a:hover{
    text-decoration: underline;
}

.content-block2{
    clear: both;
    overflow: hidden;
    background: #162B4A;
    padding: 140px 0;
    font-size: 25px;
    line-height: 38px;
    color: #fff;
}
.content-block2 h4{
    color: #fff;
}
.content-block2 .h1,
.content-block2 h1{
    padding: 10px 0;
}
.content-block2 p{
    margin: 10px 0 15px 0;
}
.block-header{
    text-align: center;
    clear: both;
    overflow: hidden;
    padding: 0 0 20px 0;
}
.content-wrap{
    clear: both;
    display: table;
    width: 100%;
    padding: 50px 0;
    position: relative;
    z-index: 33;
}
.powerful-integrations{
    clear: both;
    overflow: hidden;
    padding: 0 0 100px 0;
}
.powerful-integrations .block-header{
    text-align: left;
    font-size: 22px;
    line-height: 30px;
    color: #000;
    font-family: 'museo_sans500';
    padding: 0 0 70px 0;
}
.powerful-integrations .block-header h2{
    font-size: 35px;
    line-height: 42px;
    color: #000;
    font-family: 'museo_sans900';
    padding: 10px 0 0 0;
}
.powerful-integrations .card {
    background: #FFFFFF;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding: 50px 30px 30px 30px;
    font-size: 15px;
    line-height: 25px;
    color: #686868;
    margin-bottom: 15px;
}
.powerful-integrations .card h4{
    color: #000;
    margin: 15px 0 10px 0;
}
.powerful-integrations .card figure{
    width: 112px;
    height: 112px;
    background: #F9F9FA;
    text-align: center;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.powerful-integrations .card>* {
    width: 80%;
}
.content-block1 h4{
    color: #474747;
}
.get-action{
    clear: both;
    overflow: hidden;
    background: #224373;
    border-radius: 53px;
    padding: 45px;
    text-align: center;
    position: relative;
    bottom: -90px;
}
.get-action h2{
    color: #fff;
    font-size: 25px;
    line-height: 38px;
    font-family: 'museo_sans500';
    margin: 25px 0;
}
.content-wrap .content-block1{
    padding-bottom: 40px;
}
.list-content{
    padding: 35px 0 0 0;
    clear: both;
    overflow: hidden;
}
.list-content .itemContent{
    background: url(../images/icon-list2.png) no-repeat left 5px;
    font-size: 22px;
    line-height: 25px;
    padding: 0 0 0 55px;
    font-family: 'museo_sans500'
}
.contentbottom-text2{
    clear: both;
    text-align: center;
    padding: 0;
    font-family: 'museo_sans500';
}
.contentbottom-text2 p{
    margin: 0;
    padding: 0;
    font-size: 25px;
    line-height: 35px;
}
.contentbottom-text2 strong{
    color: #0071ED;
    font-weight: normal;
}
.contentbottom-text2 a:hover{
    text-decoration: underline;
}
.contentbottom-text .h1,
.contentbottom-text h1{
    color: #4A4A4A;
    font-family: 'museo_sans900';
    margin: 0 0 15px 0;
}
.contentbottom-text h4{
    color: #9B9B9B;
    font-family: 'museo_sans500';
}
.contentRow{
    padding: 50px 0 100px 0;
}

/* Scout A.I  */

.scout-ai-banner{
    background: #131927 url(../images/banner-scout-ai.png) no-repeat center top;
}
.scout-ai-banner h5{
    color: #fff;
    text-transform: uppercase;
    font-size: 26.7064px;
    line-height: 32px;
    font-family: 'museo_sans700';
}
.scout-ai-banner .h1
.scout-ai-banner h1{
    font-size: 103.556px;
    line-height: 124px;
    font-family: 'museo_sans900';
}
.scout-ai-banner .banner-content h1{
    font-size: 39.5809px;
    line-height: 47px;
}
.padding-bottom-0{
    padding-bottom: 0;
}
.padding-top-0{
    padding-top: 0;
}

/* Contact Page Styles */

.banner-contact{
    background: #131927 url(../images/banner-contact.png) no-repeat center top;
}
.banner-contact .intro-image{
    padding: 0;
}
.contactWrap{
    clear: both;
    overflow: hidden;
    padding: 35px 0;
}
.contactInfo{
    margin: 35px 0;
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 20px;
    color: #474747;
    font-family: 'museo_sans500';
}
.contactInfo a{
    color: #474747;
}
.contactInfo a:hover{
    text-decoration: underline;
}
.contactInfo figure{
    width: 112px;
    height: 112px;
    background: #F9F9FA;
    text-align: center;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.contactInfo div{
    padding: 0 0 0 10px;
}
.contactInfo h2{
    font-size: 35px;
    line-height: 42px;
    font-family: 'museo_sans700';
}

/* Off-Market Prospecting */

.content-block3{
    clear: both;
    display: table;
    padding: 100px 0 0 0;
}
.content-block3 .block-header{
    text-align: left;
    font-size: 35px;
    line-height: 42px;
    color: #000;
    font-family: 'museo_sans500';
    padding: 0 0 50px 0;
}
.content-block3 .block-header h2{
    font-size: 35px;
    line-height: 42px;
    color: #000;
    font-family: 'museo_sans900';
    padding: 10px 0 0 0;
}
.marketData{
    margin: 0 0 15px 0;
    float: left;
    width: 100%;
}
.marketData .dataheader {
    width: 100%;
    padding: 28px;
    background: #FFFFFF;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    float: left;
    margin: 0 0 25px 0;
}
.marketData .dataheader h2{
    float: left;
    font-family: 'museo_sans500';
    font-size: 25px;
    line-height: 25px;
    color: #000;
}
.marketData .dataheader img{
    float: right;
}
.marketData ul{
    list-style: none;
    font-size: 20px;
    line-height: 25px;
    color: #686868;
    font-family: 'museo_sans500';
    float: left;
    width: 100%;
}
.marketData ul li{
    padding: 15px 0;
}
.content1{
    clear: both;
    overflow: hidden;
    background-color: #F6F6F6;
    padding: 80px 0;
}
.content1 .content-block1 .h1,
.content1 .content-block1 h1{
    color: #4A4A4A;
}
.content1 .content-block1{
    color: #000;
    font-size: 18px;
    line-height: 35px;
    padding: 0;
}
.content1 .content-block1 img{
    border-radius: 43px;
}

/* New Agent */
.headerMobile.headerMobile-inner,
#header.headerInner{
    position: relative;
    background:  #131927;
}
.bestAgents {}

.bestAgents .h1,
.bestAgents h1{
    color: #4A4A4A;
    font-family: 'museo_sans900';
}
.agentLogos{
    background-color: #F9F9FA;
    clear: both;
    overflow: hidden;
    margin: 30px 0;
    display: flex;
    align-items: flex-start;
}
.agentLogos li{
    padding: 0 2%;
    height:112px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 24.5%;
}
.howtouse-newagent{
    clear: both;
    overflow: hidden;
    padding: 50px 0;
}
.case-studies .h1,
.howtouse-newagent .h1,
.case-studies h1,
.howtouse-newagent h1{
    color: #4A4A4A;
    font-family: 'museo_sans900';
    margin-bottom: 20px;
}
.howtouse-newagent ul{
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    float: left;
}
.howtouse-newagent ul li{
    width: 100%;
    float: left;
    font-family: 'museo_sans500';
    color: #5F5F5F;
    padding: 20px 0;
    border-bottom: 1px solid #E6E6E6;
}
.howtouse-newagent ul li span{
    border: 1px solid #0BC0FF;
    filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.25));
    border-radius: 8.07692px;
    width: 42px;
    height: 42px;
    float: left;
    text-align: center;
    color: #0BC0FF;
    font-size: 16px;
    line-height: 42px;
}
.howtouse-newagent ul li div{
    float: left;
    width: 90%;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-size: 22px;
    line-height: 35px;
    color: #5F5F5F;
    padding: 0 0 0 20px;
}

.case-studies{
    clear: both;   
    display: table;
    width: 100%;
    padding: 50px 0 0 0;
}
.caseStudie1{
    clear: both;
    overflow: hidden;
    padding: 30px;
    background: #FFFFFF;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    margin-bottom: 15px;
}
.caseStudie1 h5{
    font-size: 25.8333px;
    line-height: 31px;
    font-family: 'museo_sans700';
    margin: 0;
    padding: 0;
    width: 70%;
    min-height: 62px;
}
.caseStudie1 ul {
    display: block;
    width: 100%;
    margin: 20px 0 0 0;
}
.caseStudie1 li{
    background: url(../images/icon-list3.png) no-repeat left top;
    padding: 0 0 0 40px;
    color: #4A4A4A;
    margin: 10px 0;
    font-family: 'museo_sans500';
    list-style: none;
    font-size: 16px;
}
.case-studies .contentbottom-text{
    padding: 60px 0 0 0;
    float: left;
    width: 100%;
}

/* Login Page */
html{
    height: 100%;
}
.loginPage{
    height: 100%;
    background: #131927 url(../images/bg-login.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
}
.loginPage .container-fluid{
    height: 100%;
}
.loginLeft{
    height:  100%;

    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.loginRight{
    height:  100%;
    background: #fff;


    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.loginPage-row{
    height: 100%;
}
.loginForm {
    width: 380px;
}
.loginForm h5{
    font-family: 'museo_sans900';
    margin: 0 0 25px 0;
}
.loginForm .btn-primary{
    width: 100%;
    font-size: 22px;
    line-height: 33px;
    font-family: 'museo_sans700';
    color: #fff;
    letter-spacing: 0;
    padding: 11px 15px;
}
.loginForm .btn-primary i{
    position: relative;
    top: 2px;
    display: inline-block;
    margin: 0 5px;
}
.remember-forgot{
    clear: both;
    display: table;
    width: 100%;
    padding: 10px 0 25px 0;
}
.remember-forgot .forgotPass{
    float: right;
    font-size: 16px;
    line-height: 19px;
}
.remember-forgot .forgotPass a{
    color: #007DFA;
    font-family: 'museo_sans500';
}
.remember-forgot .forgotPass a:hover{
    color: #FAAD14;
    text-decoration: underline;
}
.remember-forgot .rememberMe{
    float: left;
    font-size: 16px;
    line-height: 19px;
    color: #393D6E;
    font-family: 'museo_sans500';
}
.remember-forgot .form-check .form-check-input{
    top: -3px;
    position: relative;
}
.loginForm .form-control{
    font-family: 'museo_sans500';
    padding: 12px;
}