@font-face {
    font-family: 'KlavikaBold';
    src: url('/static/fonts/klavika-bold-webfont.eot');
    src: url('/static/fonts/klavika-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('/static/fonts/klavika-bold-webfont.woff') format('woff'),
         url('/static/fonts/klavika-bold-webfont.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}
@font-face {
    font-family: 'KlavikaMedium';
    src: url('/static/fonts/klavika-medium-webfont.eot');
    src: url('/static/fonts/klavika-medium-webfont.eot?#iefix') format('embedded-opentype'),
         url('/static/fonts/klavika-medium-webfont.woff') format('woff'),
         url('/static/fonts/klavika-medium-webfont.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'KlavikaRegular';
    src: url('/static/fonts/klavika-regular-webfont.eot');
    src: url('/static/fonts/klavika-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('/static/fonts/klavika-regular-webfont.woff') format('woff'),
         url('/static/fonts/klavika-regular-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'KlavikaLight';
    src: url('/static/fonts/klavika-light-webfont.eot');
    src: url('/static/fonts/klavika-light-webfont.eot?#iefix') format('embedded-opentype'),
         url('/static/fonts/klavika-light-webfont.woff') format('woff'),
         url('/static/fonts/klavika-light-webfont.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

/* colors */


.pink {
    color:#ff6868;
}

.border-pink {
    border:1px solid #ff6868;
}

.bg-pink {background-color:#ff6868;}
.bg-grey {background-color:#f7f7f7;}
.bg-grey2 {background-color:#bbbcbb;}
.bg-green {background-color:#00dd42;}
.bg-blue {background-color:#102433;}

.uppercase {
    text-transform: uppercase;
}

.margin-10 {
    margin-top:10px;
    margin-bottom:10px;
}

.margin-4020 {
    margin-top:40px;
    margin-bottom:20px;
}

.padding-20 {
    padding-left: 20px;
    padding-right:20px;
}

/* defaults */

* { -webkit-font-smoothing: antialiased; }

html,
body {
    height: 100%;
    font-family:"KlavikaLight",sans-serif;
}

body {
    background-color:#112532;
}

body.home {
    background:#fff;
}

a {
    color:#ff6868;
    font-family:"KlavikaMedium";
}

a:hover {
    color:#ff6868;
}

#mobile-indicator {display:none;}
@media (max-width:767px) {
    #mobile-indicator {display:block;}
}

/* default forms */



/* buttons */

button, .btn {
    background: #f65e64; /* Old browsers */
    background-image: -moz-linear-gradient(top, #f65e64 0%, #ce4249 100%); /* FF3.6+ */
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f65e64), color-stop(100%,#ce4249)); /* Chrome,Safari4+ */
    background-image: -webkit-linear-gradient(top, #f65e64 0%,#ce4249 100%); /* Chrome10+,Safari5.1+ */
    background-image: -o-linear-gradient(top, #f65e64 0%,#ce4249 100%); /* Opera 11.10+ */
    background-image: -ms-linear-gradient(top, #f65e64 0%,#ce4249 100%); /* IE10+ */
    background-image: linear-gradient(to bottom, #f65e64 0%,#ce4249 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f65e64', endColorstr='#ce4249',GradientType=0 ); /* IE6-9 */
    color:#fff;
    border:1px solid #b4142b;
    font-family:"KlavikaRegular";
    font-size:18px;
    padding:8px 20px;
}

button.white, .btn.white {
    background: #fff; /* Old browsers */
    border:1px solid #8b8b8d;
    font-family:"KlavikaRegular";
    color: #8b8b8d;
}

button.hollow, .btn.hollow {
    background:none;
    border:1px solid #fff;
    color:#fff;
}

.btn-group .btn:first-child {
    -webkit-border-radius: 3px 0 0 3px;
    -moz-border-radius: 3px 0 0 3px;
    border-radius: 3px 0 0 3px;
}

.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
    border-radius: 0 3px 3px 0;
}

.btn-group>.btn:last-of-type,.btn-group>.btn.grp-last {
    -webkit-border-radius: 0 3px 3px 0;
    -moz-border-radius: 0 3px 3px 0;
    border-radius: 0 3px 3px 0;
}

.btn-lg {
    font-size:24px;
    padding: 10px 40px;
}

button:hover, .btn:hover {
    background: #ce4249;
    color:#fff;
}

.btn.white:hover {
    background: #e8f5fd;
    color: #8b8b8d;
}

.btn.hollow:hover {
    background:#fff;
    color:#13232e;
}

.btn.select-api {
    text-transform: capitalize
}


button:active, .btn:active {
    background: #b3132a; /* Old browsers */
    outline:none;
}

button:focus, .btn:focus {
    outline:none;
    color: #fff;
}


/* nav */

.navbar {
    margin:0;

}

.navbar-nav {
    float:right;
}

.navbar-nav a {
    color:#fff;
    font-family: "KlavikaRegular";
}

.navbar-nav a.btn-signup {
    vertical-align: inherit;
    border:1px solid #ce4249;
}

ul.nav.company li#company a,
ul.nav.benefits li#benefits a,
ul.nav.pricing li#pricing a,
ul.nav.products li#products a {font-family: "KlavikaMedium";}

ul.nav>li>a:focus {
    background-color: transparent;
    outline: none;
}

.navbar-toggle {
    border-color:#384854;
    float:none;
}

.navbar-toggle .icon-bar {
    background-color:#fff;
}

nav.navigation hr {
    border-top:1px solid #384854;
    margin-top:0;
}

nav.navigation {
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:1001;
    border-bottom:none;
    padding:0;
}

nav.navigation .logo a {
    display:block;
    width:165px;
    height:80px;
    background-image:url('/static/img/logo.png');
    background-repeat:no-repeat;
    transition: background 500ms;
}

@media all and (-webkit-min-device-pixel-ratio: 1.5) {
    nav.navigation .logo a {
    background-image:url('/static/img/logo@2x.png');
    background-size: 165px auto;
  }
}

.col-navigation-links {
    line-height:80px;
}

.col-navigation-links .navbar-right {
    margin-right: 0px;
}

ul.navbar-nav {
    margin-bottom:0;
}

ul.navbar-nav li a {
    color:#fff;
    padding:10px;
    display:inline-block;
}

ul.navbar-nav li a:hover,
ul.navbar-nav li a:active {
    color:#fff;
    text-decoration: underline;
    background:none;
}

.navbar-nav li {
    line-height:80px;
    margin-right:20px;
    font-size:16px;
}


.navbar-collapse {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

ul.navbar-nav li:last-child {
    margin-right:0;
}

ul.navbar-nav li a.login {
    border:1px solid #fff;
    padding:10px 15px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

ul.navbar-nav li a.login:hover {
    background-color:#fff;
    color:#13232e;
    text-decoration: none;
}

@media (max-width:992px) {

    .navbar-nav li {
        margin-right:5px;
    }
}

@media (max-width:767px) {

    nav.navigation {
        background-color: #13232e;
    }

    .navbar-nav {
        padding-bottom:20px;
        float: none;
    }

    .navbar-collapse .navbar-nav li {
        line-height:20px;
        text-align: right;
        margin-left: 15px;
        margin-right:0;
    }

    .navbar-toggle {
        margin-top:15px;
    }

    ul.navbar-nav {float:right;}


    ul.navbar-nav li a {
        display: block;
        padding:10px 0;
    }
    ul.navbar-nav li a.login {
        padding:10px 0;
        border:none;
    }
    ul.navbar-nav li a.login:hover {
        background:inherit;
        color:#fff;
        text-decoration: underline;
    }

}

nav.navigation.shrunk {
    position:fixed;
    background-color:#112532;
}

nav.navigation.shrunk .logo a {
    background-position:-103px;
    transition: background 500ms;
}

.navigation.shrunk .shrunk-hide {
    display:none;
}


/* hero */


.carousel {
    height: 75%;
}

.carousel-caption {
    text-align:left;
    top:0;
}

.item,
.active,
.carousel-inner {
    height: 100%;
}


.background-fill {
    background: #13232e; /* Old browsers */
    background: -moz-linear-gradient(-70deg, #13232e 0%, #2c2c43 50%, #a4d0df 100%); /* FF3.6+ */
    background:  -webkit-gradient(linear, left top, right bottom, color-stop(0%,#13232e), color-stop(50%,#2c2c43), color-stop(100%,#a4d0df)); /* Chrome,Safari4+ */
    background:  -webkit-linear-gradient(-70deg, #13232e 0%,#2c2c43 50%,#a4d0df 100%); /* Chrome10+,Safari5.1+ */
    background:  -o-linear-gradient(-70deg, #13232e 0%,#2c2c43 50%,#a4d0df 100%); /* Opera 11.10+ */
    background:  -ms-linear-gradient(-70deg, #13232e 0%,#2c2c43 50%,#a4d0df 100%); /* IE10+ */
    background:  linear-gradient(160deg, #13232e 0%,#2c2c43 50%,#a4d0df 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#13232e', endColorstr='#a4d0df',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

.background-fill.regular {
    background: #13232e; /* Old browsers */
    background: -moz-linear-gradient(180deg, #13232e 0%, #2c2c43 50%, #a4d0df 100%); /* FF3.6+ */
    background:  -webkit-gradient(linear, left top, right bottom, color-stop(0%,#13232e), color-stop(50%,#2c2c43), color-stop(100%,#a4d0df)); /* Chrome,Safari4+ */
    background:  -webkit-linear-gradient(180deg, #13232e 0%,#2c2c43 50%,#a4d0df 100%); /* Chrome10+,Safari5.1+ */
    background:  -o-linear-gradient(180deg, #13232e 0%,#2c2c43 50%,#a4d0df 100%); /* Opera 11.10+ */
    background:  -ms-linear-gradient(180deg, #13232e 0%,#2c2c43 50%,#a4d0df 100%); /* IE10+ */
    background:  linear-gradient(180deg, #13232e 0%,#2c2c43 50%,#a4d0df 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#13232e', endColorstr='#a4d0df',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

.background--absolute {
    position: absolute;
    width: 100%;
    z-index: -2;
}

#mainContent {
    margin-top: 110px;
}
.hero .container {
    padding-top:120px;
}

.hero {
    color:#fff;
    /*transition:opacity 100ms;*/
    opacity:0.0;
}

.hero.showhero {
    opacity:1.0;
    /*transition:opacity 200ms;*/
}


.home header.background-fill {
    height: auto;
}

.hero .hero-text {
    padding-right:0;
    padding-top:40px;
    padding-bottom:10px;
}

.home .hero {
    padding-top: 120px;
}

/* hero popups */

.flag, .flagleft {
    display:none;
    position: absolute;
    background: #fff;
    border: 1px solid #ccc;
    color:#000;
    width:150px;
    text-align:center;
    opacity:0.90;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    transition: background 500ms;
    -webkit-box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.2);
    box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.2);
    -webkit-filter: drop-shadow(1px 1px 4px rgba(0,0,0,0.3));
}

.flag:after, .flag:before {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.flag:after {
    border-color: rgba(255, 255, 255, 0);
    border-top-color: #fff;
    border-width: 30px;
    margin-left: -30px;
}

.flag:before {
    border-color: rgba(204, 204, 204, 0);
    border-top-color: #ccc;
    border-width: 31px;
    margin-left: -31px;
}

.flagleft:after, .flagleft:before {
    right: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.flagleft:after {
    border-color: rgba(255, 255, 255, 0);
    border-right-color: #fff;
    border-width: 20px;
    margin-top: -20px;
}

.flagleft:before {
    border-color: rgba(204, 204, 204, 0);
    border-right-color: #ccc;
    border-width: 21px;
    margin-top: -21px;
}

.flag .value, .flagleft .value {
    font-weight:bold;
}

.flag .value img, .flagleft .value img {
    max-height:65px;
}

.flag.on, .flagleft.on {
    display:block;
}


/* HERO 1: PRODUCT */;

.hero-image {position:relative;}

/* medium media queries */


/* small media queries */
@media (min-width: 768px) {
    .header .hero-text {
        min-height: 500px;
    }

    #herowrapper1 .hero-image {
        position: absolute;
        right: 0;
    }

    #herowrapper3 .hero-image {
        padding-top: 50px;
    }

    .header .hero-text {padding-bottom: 90px;} /* GLOBAL */
    #productHero.hero .hero-text {
        min-height:400px;
        padding-bottom:40px;
    }
    #productHero .hero-image {
        position:absolute;
        right:0;
        bottom:0;
    }
}

@media (max-width: 991px) {
    .flag, .flagleft {
        opacity:0.0;
    }
}

@media (min-width: 992px) {
      #herowrapper1 .hero .hero-image {bottom:50px;}
    .flag {padding:10px 5px;}
    .flagleft {padding: 15px 5px;}
    #herowrapper1 .flag1 {bottom:230px;right:375px;} /*title*/
    #herowrapper1 .flag2 {bottom:270px;right:265px;}
    #herowrapper1 .flag3 {bottom:250px;right:235px;}
    #herowrapper1 .flag4 {bottom:260px;right:155px;}
    #herowrapper1 .flag5 {bottom:165px;right:285px;} /*isbn*/
    #herowrapper1 .flag6 {bottom:170px;right:225px;}
    #herowrapper1 .flag7 {bottom:210px;right:360px;} /*image*/
    #herowrapper1 .flag8 {bottom:220px;right:305px;}
    #herowrapper1 .flag9 {bottom:160px;right:185px;}
    #herowrapper1 .flag10 {bottom:170px;right:145px;} /*currency*/
    #herowrapper1 .flag11 {bottom:130px;right:206px;} /* languge */
    #herowrapper1 .flag12 {bottom:150px;right:155px;} /*weight*/

    #herowrapper2 .hero-image {
        position:absolute;
        right:0;
        bottom:10px;
        padding-left:0;
    }

    #herowrapper2 .flag1 {top:60px; left:180px;}
    #herowrapper2 .flag2 {top:120px; left:270px;}
    #herowrapper2 .flag3 {top:140px; left:150px;}
    #herowrapper2 .flag4 {top:180px; left:280px;}
    #herowrapper2 .flag5 {top:230px; left:170px;}
    #herowrapper2 .flag6 {top:255px; left:195px;}
    #herowrapper2 .flag7 {top:280px; left:220px;}
    #herowrapper2 .flag8 {top:305px; left:245px;}
    #herowrapper2 .flag9 {top:325px; left:165px;}

    #herowrapper3 .hero-image {padding-top:20px;}
    #herowrapper3 .flag1 {top:-20px;left:130px;} /*reddit*/
    #herowrapper3 .flag2 {top:24px;left:215px;} /*hn */
    #herowrapper3 .flag3 {top:57px;left:235px;} /* disqus */
    #herowrapper3 .flag4 {top:85px;left:145px;} /*livefyre*/
    #herowrapper3 .flag5 {top:115px;left:235px;} /*isbn*/
    #herowrapper3 .flag6 {top:125px;left:195px;}
    #herowrapper3 .flag7 {top:150px;left:240px;} /*image*/
    #herowrapper3 .flag8 {top:179px;left:165px;}
    #herowrapper3 .flag9 {top:215px;left:135px;}
    #herowrapper3 .flag10 {top:210px;left:255px;} /*currency*/
    #herowrapper3 .flag11 {top:240px;left:195px;} /* languge */
    #herowrapper3 .flag12 {top:250px;left:220px;} /*weight*/

    #herowrapper4 .flag1 {top:0;left:100px;} /*title*/
    #herowrapper4 .flag2 {top:20px;left:260px;} /*site */
    #herowrapper4 .flag3 {top:196px;left:190px;} /* date */

    #productHero.hero .hero-text {
        padding-bottom:90px;
    }



}

/* large media queries */

@media (min-width: 1200px) {
     #herowrapper1 .hero-image {bottom:30px;}
    .flag, .flagleft {padding:20px 10px;} /* global */
    #herowrapper1 .flag1 {bottom:310px;right:455px;}
    #herowrapper1 .flag2 {bottom:330px;right:335px;}
    #herowrapper1 .flag3 {bottom:330px;right:235px;}
    #herowrapper1 .flag4 {bottom:350px;right:255px;}
    #herowrapper1 .flag5 {bottom:200px;right:355px;}
    #herowrapper1 .flag6 {bottom:230px;right:295px;}
    #herowrapper1 .flag7 {bottom:270px;right:480px;} /*image*/
    #herowrapper1 .flag8 {bottom:280px;right:385px;}
    #herowrapper1 .flag9 {bottom:220px;right:365px;}
    #herowrapper1 .flag10 {bottom:200px;right:325px;}
    #herowrapper1 .flag11 {bottom:170px;right:346px;}
    #herowrapper1 .flag12 {bottom:190px;right:255px;}

    #herowrapper2 .hero-image {padding-left:50px;}
    #herowrapper2 .flag1 {top:60px; left:220px;}
    #herowrapper2 .flag2 {top:120px; left:300px;}
    #herowrapper2 .flag3 {top:140px; left:190px;}
    #herowrapper2 .flag4 {top:180px; left:320px;}
    #herowrapper2 .flag5 {top:230px; left:210px;}
    #herowrapper2 .flag6 {top:255px; left:235px;}
    #herowrapper2 .flag7 {top:280px; left:260px;}
    #herowrapper2 .flag8 {top:305px; left:285px;}
    #herowrapper2 .flag9 {top:365px; left:205px;}

    #herowrapper3 .hero-image {padding-top:0;}
    #herowrapper3 .flag1 {top:-30px;left:150px;} /*reddit*/
    #herowrapper3 .flag2 {top:24px;left:245px;} /*hn */
    #herowrapper3 .flag3 {top:47px;left:235px;} /* disqus */
    #herowrapper3 .flag4 {top:65px;left:175px;} /*livefyre*/
    #herowrapper3 .flag5 {top:95px;left:275px;} /*isbn*/
    #herowrapper3 .flag6 {top:110px;left:215px;}
    #herowrapper3 .flag7 {top:140px;left:260px;} /*image*/
    #herowrapper3 .flag8 {top:179px;left:205px;}
    #herowrapper3 .flag9 {top:195px;left:185px;}
    #herowrapper3 .flag10 {top:200px;left:275px;} /*currency*/
    #herowrapper3 .flag11 {top:250px;left:245px;} /* languge */
    #herowrapper3 .flag12 {top:290px;left:250px;} /*weight*/

    #herowrapper4 .hero-image {bottom:40px;}
    #herowrapper4 .flag1 {top:40px;left:130px;} /*title*/
    #herowrapper4 .flag2 {top:60px;left:345px;} /*site */
    #herowrapper4 .flag3 {top:293px;left:240px;} /* date */

    #productHero.hero .hero-text {min-height:450px;}
}

.header .hero-image img {
    display: inline-block;
}

.header h2 {
    margin-bottom: 0;
    margin-top: 0;
    font-size: 34px;
    line-height: 1.3;
}

.header h2.subhead {
    position: relative;
    display: inline;
    padding-bottom: 4px;
}

.header h2.subhead span {
    border-bottom: 1px solid #fff;
}

.header h2.subhead span:hover {
    border-bottom: none;
}

.header .hero-arrow {
    margin-left: 10px;
    border: 1px solid #fff;
    padding: 5px 3px;
    display: inline;
    top: 0;
}

.header .fadein {
    cursor: pointer;
    opacity: 1;
    -webkit-transition: opacity 4s linear;
       -moz-transition: opacity 4s linear;
        -ms-transition: opacity 4s linear;
         -o-transition: opacity 4s linear;
            transition: opacity 4s linear;
}

.header .fadein.faded {
    opacity: 1;
}

/* hero dropdown */
.header .dropdown {
    display: none;
    position: absolute;
    color: #000;
    z-index: 200;
    font-size: 15px;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0,0,0,0.2);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 10px rgba(0,0,0,0.6);
    -moz-box-shadow: 0 5px 10px rgba(0,0,0,0.6);
    box-shadow: 0 5px 10px rgba(0,0,0,0.6);
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
}

#dropdown-content {
    display: none;
}

.header .dropdown ul {
    padding: 0;
    margin: 0;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

.header .dropdown li {
    font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif;
    padding: 15px;
}

.header .dropdown li.divider {
    height: 1px;
    margin: 0;
    overflow: hidden;
    background-color: #e5e5e5;
    padding: 0;
}

.header .dropdown li:hover {
    background-color: #d9d9d9;
    cursor: pointer;
}

.header .dropdown li.active:hover {
    background-color: #fff;
    cursor: default;
}

.header .dropdown li span.glyphicon {
    display: none;
    margin-right: 10px;
}

.header .dropdown li.active span.glyphicon {
    display: inline-block;
}

.header .dropdown li:first-child {
    -webkit-border-radius: 6px 6px 0 0;
    -moz-border-radius: 6px 6px 0 0;
    border-radius: 6px 6px 0 0;
}

.header .dropdown li:last-child {
    -webkit-border-radius: 0 0 6px 6px;
    -moz-border-radius: 0 0 6px 6px;
    border-radius: 0 0 6px 6px;
}

.header h3 {
    font-size: 20px;
    line-height: 1.4;
}

.header .action-row * {
    margin-top: 10px;
    margin-right: 15px;
}


/* various section defaults */

footer {
    margin: 0 0 0 0;
    padding: 80px 0;
    background-color:#112532;
    color:#fff;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size:16px;
}

footer img.balloon {
    position:absolute;
    bottom:-40px;
    left:50px;
}

footer li {
    float:right;
    margin-left:30px;
    color:#fff;
}

footer a {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

footer a:hover {
    color:#ff6868;
}

footer li a, footer li a:hover {
    color:#fff;
}


footer .badge {
    background: #ff6868;
    border-radius: 3px;
    padding: 3px 5px;
    margin-left: 4px
}

.home section {
    padding:40px 0 60px 0;
    border-bottom:1px solid #d7d7d7;
}

.home section.last {
    border:none;
}


section h1{
    font-family: "KlavikaRegular";
    font-size:32px;
}

section h1.after-image {
    margin-top:10px;
}

section h2 {
    font-size:20px;
    margin-top:10px;
}

section h3 {
    font-family: "KlavikaMedium";
    font-size:22px;
}

section p {

    font-size:18px;
}

section p strong {
    font-family:"KlavikaMedium";
}

.section-heading  {
    margin-bottom:30px;
}

section hr {
    border-top:1px solid #d2d2d2;
}

/* customers */

section#customers {
    padding-bottom:40px;
}

section#customers p {
    margin:0;
    line-height: 1.3;
}

section#customers p:first-child {
    margin-top:12px;
}

.customer-logo {display:none;}

section#customers .customer-logo:focus , section#customers .customer-logo a:focus {
    outline:none;
}

section#customers .customer-logo img {
    margin-left:auto;
    margin-right:auto;
}

section#customers .slickNext, section#customers .slickPrev{
    position: absolute;
    color: #d2d2d2;
    top: 50%;
    display: block;
    font-size:25px;
    margin-top: -22px;
    padding: 10px;
    cursor: pointer;
    outline: none;
    background: transparent;
}

section#customers .slickNext{right: -40px;}
section#customers .slickPrev{right: -25px;}



@media (min-width: 1200px) {
section#customers .customer-logo img {
    max-width:90%;
}
}

/* products */

.product {
    padding-left:25px;
    padding-right:25px;
}

.row-extramargin {
    margin-top:30px;
}

.image-circle {
    border-radius:50%;
    display:inline-block;
    padding:22px;
}

hr.tall {
    margin-top:67px;
}

.api-icon {
    display:block;
    font-size:20px;
}


#automaticapis {
    -webkit-box-shadow: 0px 3px 7px 0px rgba(0,0,0,0.28);
    -moz-box-shadow: 0px 3px 7px 0px rgba(0,0,0,0.28);
    box-shadow: 0px 3px 7px 0px rgba(0,0,0,0.28);
}


#automaticapis .automatic-api {
    background-color: #fff;
    border:1px solid #d2d2d2;
    border-right:none;
    padding:0;
}

#automaticapis .automatic-api a {
    display: block;
    width:100%;
    height:100%;
    padding:35px 0;
}

#automaticapis .automatic-api img {
    height:64px;
    width:64px;
}

#automaticapis .automatic-api.last {
    border-right:1px solid #d2d2d2;
}

#automaticapis .automatic-api a:hover,#automaticapis .automatic-api a.active {
    background-color:#e8f5fd;
    text-decoration: none;
}

#automaticapis .automatic-api a p {
    color:rgb(51, 51, 51);
}

/* apis dropdown */

.dropdown-menu.dropdown-apis {
  padding:0;
  top:80%;
}

.dropdown-menu.dropdown-apis li {
  border-bottom:1px solid #ccc;
  margin:0;
  line-height:40px;
}

.dropdown-menu.dropdown-apis li a {
  font-size:15px;
  padding:0 40px 0 15px;
  line-height:40px;
  color:#4d4d4d;
  display:block;
  cursor:pointer;
  border-bottom:none;
}

.dropdown-menu.dropdown-apis li a span {
  margin-top:2px;
}

.dropdown-menu.dropdown-apis li a:hover {
  background-color:#ccc;
}

.dropdown-menu.dropdown-apis li:nth-child(1) a{
  -webkit-border-radius: 4px 4px 0px 0px;
  -moz-border-radius: 4px 4px 0px 0px;
  border-radius: 4px 4px 0px 0px;
}

.dropdown-menu.dropdown-apis li:last-child {
  margin-bottom:0;
  border-bottom:none;
}

.dropdown-menu.dropdown-apis li:last-child a {
  -webkit-border-radius: 0px 0px 4px 4px;
  -moz-border-radius: 0px 0px 4px 4px;
  border-radius: 0px 0px 4px 4px;
}

.dropdown-menu.dropdown-apis .dropdown-icon {
    font-size: 18px;
    display: inline-block;
    vertical-align: middle;
    color: #4d4d4d;
    margin-top: 3px;
    margin-right: 6px;
}


/*press */

.press-logo {
    min-height:100px;
}

.press-logo img {
    max-width:65%;
    margin-left:auto;
    margin-right:auto;
}


/* five-column support for Automatic APIs*/


.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
}

.col-xs-5ths {
    width: 20%;
    float: left;
}

@media (min-width: 768px) {
    .col-sm-5ths {
        width: 20%;
        float: left;
    }
}

@media (min-width: 992px) {
    .col-md-5ths {
        width: 20%;
        float: left;
    }
}

@media (min-width: 1200px) {
    .col-lg-5ths {
        width: 20%;
        float: left;
    }
}





/* Slick slider */

/* Slider */
.slick-slider
{
    position: relative;

    display: block;

    -moz-box-sizing: border-box;
         box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}



.slick-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
}

.slickPrev.slick-arrow {
    left: 0;
}

.slickNext.slick-arrow {
/*position: absolute;*/
    right: 0;
}

/* Dots */
.herowrappers.slick-slider {
    margin-bottom: 30px;
}

.slick-slide:focus {
    outline: none;
}

.slick-dots {
    position: absolute;
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 12px;
    height: 12px;
    padding: 0;
    cursor: pointer;
    opacity: .5;
    color: #FFF;
    border: 2px solid;
    border-radius: 50px;
    outline: none;
    background: transparent;
}

.slick-dots li button:hover,.slick-dots li button:focus {
    outline: none;
}

.slick-dots li.slick-active button,.slick-dots li button:hover {
    opacity: 1;
    background: #fff;
    transition: all .5s ease-in-out;
}

/* Test Drive */

a.testdrive {cursor: pointer;}

#overlay {
    display:none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
    filter: alpha(opacity=50);
}

#testDrive {
    z-index:1001;
    top:100%;
    display:none;
    background-color: #fff;
    position:fixed;
    bottom:0;
    left:0;
    right:0;
}

#testDrive.displayed {
    display:block;
}

#testDrive h2, #testDrive .testdrive-input {
    margin-bottom:30px;
}

#testDrive h2 {
    margin-top:40px;
    font-family:KlavikaRegular;
}

#testDrive span#api-name {
    text-transform:capitalize;
    border-bottom:1px solid #ff6868;
}

#testDrive span.api-name {
    text-transform:capitalize;
}


#testDrive .dropdown {cursor: pointer;}

#testDrive .dropdown li a {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

#testDrive .arrow {
    margin-left:5px;
    border:1px solid #ff6868;
    color:#ff6868;
    padding:2px 1px;
    display:inline;
    top:0;
    font-size:18px;
}

#testDrive input, #t-testdrive input {
    border:none;
    border-bottom:2px solid #ccc;
    font-size:20px;
    line-height:20px;
    padding:5px 10px 10px 5px;
    font-family:KlavikaRegular;
    width:90%;
}

#testDrive input:focus, #t-testdrive input:focus {
    outline:none;
}

#testdrive-error {display:none;}

@media (max-width:767px) {
    #testDrive h2 {font-size:20px;}
    #testDrive .arrow {font-size:12px;}
    #testDrive input {font-size:14px;}
    #testDrive a.clear {margin-top:10px;}
}


/* internal pages */

#main #mainContent {
    background-color: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    min-height:500px;
    padding-bottom:10px;
    padding-top:50px;
    padding-left:20px;
    padding-right:20px;
}

#mainContent hr {
    clear:both;
    width:75%;
}

#mainContent hr.full {
    width:100%;
}

@media (max-width:767px) {
    #main #mainContent {
        padding: 50px 0;
    }

    #main .product {
        padding: 0;
    }
}

.primary-text h1, .section h1 {
    font-family: "KlavikaRegular";
    margin-bottom:20px;
}

.primary-text h2, .section h2 {
    font-family: "KlavikaRegular";
    font-size: 32px;
    margin-bottom:20px;
}

.primary-text p,.primary-text ul li, .section p, .section ul li {
    font-size:20px;
}

.primary-text strong, .section strong {
    font-family: "KlavikaRegular";
}

.primary-text p, .section p {
    margin-bottom:20px;
}

.section .callout p {
    margin-bottom: 0;
}

.primary-text a, .section a {
    border-bottom:1px solid;
}

.primary-text a.noline, .section a:noline {
    border:none;
}

.primary-text a.btn, .section a.btn {
    border:none;
}

.primary-text a:hover, .section a:hover {
    border:none;
    text-decoration: none;
}

.primary-text ul li, .section ul li {
    line-height:1.9;
}
.primary-text ul.prose li, .section ul.prose li {
    line-height:1.4;
}

.primary-text input, .section input {
    font-size:18px;
    padding: 8px 20px;
    vertical-align: middle;
    margin-right:5px;
}

header.background-fill {
    height:60%;
}

ul.two-column {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
}


/* full-width sectional */
.section {
    margin-bottom:40px;
}
.section.wide {padding: 0 25px;}
.section.center {text-align:center;}
.section.left {text-align:left;}

.btn-spaced {
    margin: 5px 0;
}


/* subnav page template */
.subnavtag {
    background: #FAFAFA;
}

.subnavtag nav.navigation {
    background-color: #13232e;
    position: relative;
}

.subnavtag ul.navbar-nav li {
    line-height: 60px;
}

.subnavtag ul.navbar-nav li a.login {
    border-width: 2px;
}

.subnavtag ul.navbar-nav li a.signup{
    border: 2px solid #ff6868;
    /*background: #ff6868;*/
/*    border-color: #ff6868;
    border-width: 2px;*/
    border-radius: 3px;
    color: #ff6868;
    font-family: "KlavikaMedium";
}
.subnavtag ul.navbar-nav li a.signup:hover {
    color: #FFF;
    border-color: #ff6868;
    background: #ff6868;
}

.subnavtag ul.navbar-nav li a.btn-signup{
    background: #ff6868;
    border-color: #ff6868;
}
.subnavtag ul.navbar-nav li a.btn-signup:hover {
    color: #FFF;
    border-color: #ce4249;
}
.subnavtag ul.navbar-nav li a:hover,ul.navbar-nav li a:active {
    color: #ff6868;
    transition: all .5s ease-in-out;
    text-decoration: none;
}

.subnavtag nav.navigation .logo a {
    display: block;
    width: 165px;
    height: 60px;
    background-image: url(/static/img/logo.png);
    background-repeat: no-repeat;
    transition: background 500ms;
    background-size: auto 60px;
}

.subnavtag .col-navigation-links {
    line-height: 40px;
}

@media (-webkit-min-device-pixel-ratio: 1.5) {
    .subnavtag nav.navigation .logo a {
        background-image: url(/static/img/logo@2x.png);
        background-size: auto 60px;
    }
}

.subnavtag nav.navigation.shrunk .logo a {
    background-position: -80px;
}

.subnavtag ul.nav.company li#company a,
.subnavtag ul.nav.benefits li#benefits a,
.subnavtag ul.nav.pricing li#pricing a,
.subnavtag ul.nav.products li#products a {
    color: #ff6868;
    font-family: "KlavikaMedium";
    transition: all .5s ease-in-out;
}

.subnavtag header {
    background: #13232e;
    background: -moz-linear-gradient(180deg,#13232e 0%,#2c2c43 50%,#a4d0df 100%);
    background: -webkit-gradient(linear,left top,right bottom,color-stop(0%,#13232e),color-stop(50%,#2c2c43),color-stop(100%,#a4d0df));
    background: -webkit-linear-gradient(180deg,#13232e 0%,#2c2c43 50%,#a4d0df 100%);
    background: -o-linear-gradient(180deg,#13232e 0%,#2c2c43 50%,#a4d0df 100%);
    background: -ms-linear-gradient(180deg,#13232e 0%,#2c2c43 50%,#a4d0df 100%);
    background: linear-gradient(180deg,#13232e 0%,#2c2c43 50%,#a4d0df 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#13232e',endColorstr='#a4d0df',GradientType=1);
    padding: 40px 0;
    color: #FFF;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0,0,0,0.41);
}

.subnavtag.news header {
    padding: 100px 0;
}

/*.subnavtag.news header {
    background-color: #159957;
    background-image: linear-gradient(120deg, #155799, #159957);
    background-image: linear-gradient(120deg, #4e2d6a, #f71f22);
    background-image: linear-gradient(120deg, #553d50, #34b7e4);

    background-image: radial-gradient(
        circle farthest-corner at 80% 120%,
        yellow -20%,
        #f06d06 80%
    );

    background-image: radial-gradient(
        circle farthest-corner at 80% 120%,
        #159957 20%,
        #155799 100%
    );

    padding: 140px 0 80px;

}*/
.subnavtag.news nav.navigation {
    background-color: transparent;
    position: absolute;
}

.subnavtag header p {
    font-size: 20px;
    text-shadow: 0 1px 1px rgba(0,0,0,0.41);
}

.subnavtag .subnav {
    background: #FFF;
}

.subnavtag .subnav.affix {
    top: 0;
    width: 100%;
}

.subnavtag .subnav.navbar-default .navbar-brand {
    color: #13232e;
    text-transform: capitalize;
}

.subnavtag #main.is-affixed {
    padding-top: 76px;
}

.subnavtag #main {
    padding-top: 25px;
    padding-bottom: 100px;
}

.subnavtag h1 {
    font-family: "KlavikaRegular";
    margin-bottom: 20px;
}

.subnavtag h2,.subnavtag h4 {
    font-family: "KlavikaMedium";
}

.subnavtag .btn-hollow {
    background: none;
    border: 2px solid #ff6868;
    color: #ff6868;
    text-transform: uppercase;
    font-family: "KlavikaMedium";
    padding: 6px 12px;
    font-size: 14px;
}

.subnavtag .btn-hollow:hover {
    color: #FFF ;
    background: #ff6868;
}

.subnavtag .btn-hollow:focus {
    outline: none;
}

.subnavtag .card-heading .btn-hollow {
    padding: 3px 6px;
    margin-top: 4px;
}

.subnavtag .card {
    color: #2e3b4e;
    background: #FFF;
    padding: 5px 12px;
    border: 1px solid rgba(0,0,0,0.12);
    transition: all .5s ease-in-out;
    margin-bottom: 30px;
    display: block;
}

.subnavtag .card.card-article {
    padding-top: 12px;
}

.subnavtag .card:hover {
    border-color: #F7A7A7;
    box-shadow: 0 0 8px rgba(255,104,104,0.8);
    transition: all .5s ease-in-out;
}

.subnavtag .card-heading h4 {
    color: #2e3b4e;
}

.subnavtag li .card {
    margin-bottom: 10px;
}

.subnavtag .card h4 {
    display: inline-block;
}

.subnavtag .card h4 small {
    line-height: 19.8px;
    color: #7f8c8d;
}

.subnavtag .card p {
    font-family: "KlavikaLight",sans-serif;
    font-size: 16px;
}

.subnavtag .card .sub-info {
    font-family: "KlavikaMedium";
}

.subnavtag .card .learn {
    color: #ff6868;
    font-family: "KlavikaMedium";
    transition: all .5s ease-in-out;
    float: right;
}

.subnavtag .card:hover .learn {
    color: #2AACDC;
}

.subnavtag .job-link:focus {
    text-decoration: none;
}

.subnavtag .job-link:hover,.subnavtag .article-link:hover {
    text-decoration: none;
}

.subnavtag .card .sub-info {
    border-top: 1px solid rgba(0,0,0,0.12);
    margin: 0 -12px;
    padding: 4px 12px 0;
    color: #7f8c8d;
}

.h_iframe {
    margin: -12px;
    min-height: 200px;
/*padding-bottom: 20px;*/
}

.subnavtag .card .top {
    margin: -12px;
    padding-bottom: 10px;
    min-height: 200px;
}

.subnavtag .card .top img {
    max-height: 200px;
    width: 100%;
}

.subnavtag .card video {
    object-fit: cover;
}

@media (max-width: 767px) {
    .col-sm-6 {
        width: 100%;
    }
}

.subnavtag .articles .article-flex {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.subnavtag .articles .media {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.subnavtag .articles .media {
    margin-top: 20px;
}

.subnavtag .articles .media span {
    font-family: 'KlavikaRegular';
}

.subnavtag .articles h4 {
    margin-top: 5px;
    margin-bottom: 0;
}

.subnavtag .articles h5 {
    text-transform: uppercase;
    font-family: "KlavikaMedium";
    margin-bottom: 0;
}

.subnavtag .articles .media img {
    max-width: 60px;
}

.subnavtag .subnav .navbar-nav {
    float: left;
}

.subnavtag .subnav .navbar-nav li {
    line-height: 1.42857143;
}

.subnavtag .subnav .navbar-nav .btn {
    padding: 6px 12px;
    font-size: 14px;
    margin: 7px;
}

.subnavtag .navbar-default .navbar-nav>li>a:focus,
.subnavtag .navbar-default .navbar-nav>li>a:hover {
    color: #ff6868;
    text-decoration: none;
}

.subnavtag .navbar-default .navbar-right>li:hover {
    box-shadow: none;
}

.subnavtag .navbar-default .navbar-nav>.active>a,
.subnavtag .navbar-default .navbar-nav>.active>a:focus,
.subnavtag .navbar-default .navbar-nav>.active>a:hover {
    background-color: inherit;
/*font-weight: ;*/
    font-family: "KlavikaMedium";
    color: #ff6868;
}

.subnavtag .navbar-default .navbar-brand:focus,
.subnavtag .navbar-default .navbar-brand:hover {
    color: #ff6868;
    background-color: transparent;
}

.subnavtag .subnav .btn-hollow {
    background: none;
    border: 2px solid #ff6868;
    color: #ff6868;
    text-transform: uppercase;
    font-family: "KlavikaMedium";
}

.subnavtag .subnav .btn-hollow:hover, .subnavtag .subnav.affix .btn-hollow, .subnavtag .subnav.affix .navbar-nav>li>a.btn-hollow:hover {
    color: #FFF !important;
    background: #ff6868;
}

.subnavtag .subnav.affix .btn-hollow:hover {
    color: #fff;
    background: #D35050;
    border-color: #D35050;
}

.subnavtag .subnav.affix .btn-hollow:focus {
    outline: none;
}

.subnavtag a,.subnavtag .btn {
    transition: all .5s ease-in-out;
}

.subnavtag .subnav .navbar-header button {
    color: #777;
}

.subnavtag .subnav .navbar-header .navbar-toggle {
    border-color: transparent;
    padding: 6px 12px;
    margin: 7px 15px 7px 0;
}

@media (min-width: 768px) {
    .subnavtag .subnav .navbar-nav>li>a {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .subnavtag .subnav .navbar-collapse {
        float: left;
    }
}

@media (max-width: 768px) {
    .subnavtag .subnav .navbar-nav.navbar-right {
        padding-bottom: 0;
        margin: 0 -15px;
    }

    .subnavtag .subnav .navbar-right {
        position: absolute;
        right: 23px;
        top: 0;
    }

    .subnavtag .subnav .navbar-collapse .navbar-nav {
        float: none;
    }

    .subnavtag .subnav .navbar-collapse li {
        width: 100%;
    }

    .subnavtag .subnav .navbar-collapse li a {
        display: block;
    }
}

.subnavtag nav.navigation.shrunk .logo a {
  background-position: 0;
}

.post .cats:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  font-size: 14px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  left: 0;
  top: 0;
  width: 1.28571429em;
  text-align: center;
  height: 22px;
  width: 22px;
  border-radius: 3px;
  line-height: 22px;
  color: #fff;
}
.post-video .cats:before {
  content: "\f03d";
  background: #ff5252;
}

.post-pdf .cats:before {
  content: "\f1c1";
  background: #D8A252;
}

.post-tutorial .cats:before {
  content: "\f19d";
  background: #00B0FF;
}

.post-news .cats:before {
  content: "\f1ea";
  background: #3CA773;
}

.post-doc .cats:before {
  content: "\f15c";
  background: #6B3DE4;
}

.post-tool .cats:before {
  content: "\f0ad";
  background: #007AC2;
}

/*  .card.card-media {
    position: relative;
}*/

.cats {
  font-family: "KlavikaRegular";
  font-size: 12px;
  margin-left: 0;
  position: relative;
  margin-bottom: 0;
  padding-left: 1.7em;
  padding-left: 30px;
  color: #7A8694;
  line-height: 22px;
  padding-top: 5px;
}

.meta-info {
  padding: 5px 12px;
  border-top: 1px solid rgba(0,0,0,0.12);
}

.card-media:focus {
  text-decoration: none;
}

.subnavtag .card h4 {
  height: 38px;
}

.subnavtag .card .description p {
  height: 110px;
}
@media (min-width: 992px) {
  .subnavtag .card .description p {
    height: 130px;
  }
  .subnavtag .card h4 {
      height: 58px;
  }
}

/*  .subnavtag.resources #main {
    padding-top: 0px;
}*/

.home section.signupCta, section.signupCta {
  background: #1ec185;
  color: #fff;
  padding: 104px 0 102px;
  border: none !important;
}

.signupCta .btn-default {
  background: none;
  color: #FFF;
  border: 2px solid #75eabf;
  text-transform: none;
  margin: auto;
  margin-top: 20px;
  display: block;
  max-width: 300px;
}

.signupCta .btn i {
    font-size: 13px;
    top: -1px;
}

.signupCta .btn-default:hover {
  border-color: #fff;
}

.signupCta .btn-default:active {
  border-color: #fff;
  background: #fff;
  color: #1ec185;
}

.btn-signup {
  margin-top: 12px;
}

ul.navbar-nav li a.btn-signup:hover {
  background: #ce4249;
  text-decoration: none;
}

ul.navbar-nav li a.btn-signup:focus,ul.navbar-nav li a.btn-signup:active {
  color: #FFF;
}

.signupCta h2 {
  text-align: center;
  font-family: 'KlavikaMedium';
  font-weight: 700;
  color: #FFF;
  font-size: 30px;
  margin-bottom: 0px;
}

.signupCta p {
  text-align: center;

}

.signupCta .lead {
    font-size: 17px;
}

@media (min-width: 768px) {
 /* .btn-signup {
    margin-top: 0;
    display: none !important;
  }*/

  .signupCta h2, .signupCta p {
    text-align: left;
  }
  .signupCta .lead {
    font-size: 21px;
}

  .signupCta .btn-default {
    margin-left: 0;
    display: block;
    max-width: 300px;
    margin: 20px auto;
  }
}

@media (min-width: 992px) {
  .btn-signup {
    display: inline-block !important;
  }
  .signupCta .btn-default {
    margin-top: 15px;
    display: inline-block;
    max-width: auto;
    margin: auto;
    margin-left: 20px;
  }
}
.page-lead h2 {
    margin-bottom: 60px;
}

.boxed {
    border: 1px solid #D3D9DE;
    padding: 15px;
    margin-bottom: 30px;
    transition: all .2s ease-in-out;

}

.useCases #main a {
    color: #333;
    font-family: 'KlavikaLight'

}
.useCases #main a:hover,
.useCases #main a:focus {
    text-decoration: none;
}
.boxed:hover {
    background: #FAFAFA;
    -webkit-box-shadow: inset 0px 0px 0px 5px rgba(211,217,222,1);
    -moz-box-shadow: inset 0px 0px 0px 5px rgba(211,217,222,1);
    box-shadow: inset 0px 0px 0px 5px rgba(211,217,222,1);
}
.boxed h2 {
    font-family: 'KlavikaRegular';
    font-size: 26px;
}
.boxed p {
    font-size: 18px;
}

.boxed img {
    margin-right: 10px;
}

/**** /signup-confirmation/ Page styles ****/

body.thanks {
    padding-top: 50px;
    font-size: 16px;
    font-family: 'KlavikaRegular', helvetica;
    height: 100%;
    margin: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background: #112532;
}

.thanks a {
    font-family: "KlavikaRegular";
}
.thanks a:focus {
    color: #ff6868;
}


.thanks .bg-white {
    background: white;
    padding: 0px;
    border: 1px solid #D3D9DE;
    max-width: 450px;
    margin: 0 auto;
    margin-bottom: 50px;

}

.thanks h1 {
    max-width: 300px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.thanks i{
    font-size: 50px;
    color: #D3D9DE;
}

.thanks h4 {
    margin-top: 0px;
    margin-bottom: 5px;
    font-weight: normal;
    font-family: 'KlavikaRegular';
    font-size: 22px;
}

.thanks .media {
    padding: 20px;
    margin: 0;
    border-bottom: 1px solid #D3D9DE;
}

.thanks .media:last-child {
    border: none;
}


/**** /company/ map styles ****/
.map {
    height: 300px;
    /*margin-bottom: 20px;*/
}

.company-description strong {
    text-transform: uppercase;
    /*font-size: 18px;*/
}

.mapcontainer {
    position: relative;
}

.company-description {
    position: absolute;
    left: 35px;
    top: 20px;
    background: #FFF;
    background-color: rgba(255,255,255,1);
    z-index: 3;
    padding: 20px;
    font-size: 18px;
}

.company-description address {
    margin-bottom: 0;
}

.gm-style-cc{
    display: none;
}

.contact-emails {
    margin-right: 30px;
}

@media (max-width: 767px) {
    .company-description {
        padding: 12px;
        font-size: 16px;
        top: 10px;
        left: 25px;
    }
}
#mce-EMAIL {
    margin-bottom: 15px;
}
@media (min-width: 768px){
    #mce-EMAIL{
        margin-bottom: 0;
    }
}


.subnavtag #main {
  font-size: 18px;
  }

.page-lead h2 {
  margin-bottom: 10px;
}
.cta-box {
  /*text-align: center;*/
  background: #F7FAFF;
  border: 1px solid #D3D9DE;
  padding: 30px 20px;
  margin-top: 20px;
}
.cta-box h3 {
  text-align: center;
  margin-top: 0;
}

.cta-box input {
  width: 300px;
  font-size: 20px;
  padding: 8px 12px;
}

.cta-box .form-inline .form-control {
  width: 300px;
   height: 43px;
}

.cta-box .form-inline {
  /*margin-bottom: 20px;*/
}

.cta-box .btn {
  padding: 8px 16px;
}


@media (max-width: 767px) {
    .cta-box .form-inline .form-control {
        width: 100%;
    }

     .cta-box .form-inline button {
        width: 100%;
     }
}
.card:hover {
    text-decoration: none;
}

.card.card-media {
    padding: 0;
}
.card-media .description {
    padding: 8px 12px;
}

.card-media .description p {
    margin-bottom: 0;
}

/****************
FOOTER

***************/

 footer {
  padding: 30px 0 0;
  color: #fff;
  background: #112233;
  background: #112532;
  font-size: 12px;
}

.footer-wrapper {
  padding-bottom: 30px;
}

footer .text-logo {
  font-family: 'Klavika','Helvetica Neue',Helvetica,Arial,sans-serif;
  font-weight: bold;
  font-size: 1.8em;
  color: white;
  background: url("/static/img/logo_diffbot@2x.png");
  background-size: 100px auto;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  width: 100px;
  height: 33px;
  display: block;
}

footer p {
  color: #cecece;
  color: #cfd2d6;
}

footer h5 {
  font-size: 1.1em;
  text-transform: uppercase;
}

footer li h5 a {
    color: #FFF;
    line-height: 1.1;
}

footer li h5 a:hover {
    color: #ff6868;
}

footer ul li {
  float: none;
  margin: 0;
}

footer li a{
  color: #ff6868;
  color: #98A1AB;
  line-height: 1.8;
}
footer li a:hover, footer a:hover {
  color: #1da3cd;
  color: #ff6868;
  text-decoration: none;
}

footer li a:focus, footer a:focus {
  color: #ff6868;
  outline: none;
}

footer a.mail-link {
  color: #ff6868;
  border-bottom: 1px solid transparent;

}
footer a.mail-link:hover {
  border-bottom-color: #ff6868;
  transition: all 500ms ease-in-out;
}

footer li a {
  /* font-size: .9em; */
}

footer .input-group {
  max-width: 320px;
  margin-bottom: 10px;
}

footer input.form-control {
  background: none;
  background: rgba(0, 0, 0, 0.4);
  background: #0b1621;
  border: none;
  color: white;
  transition: all 500ms;
}

footer input.form-control:hover {
  background: rgba(0, 0, 0, 0.3);
  background: #283847;
}
footer input.form-control:focus {
  background: #FFF;
  color: #333;
  box-shadow: none;
}

footer section {
  background: rgba(0, 0, 0, 0.4);
}
.list-inline>li {
  padding-left: 2px;
  padding-right: 2px;
}

footer img {
  position: absolute;
  left: 0px;
  top: -80px;
}

footer .btn {
  color: #ff6868;
  background: #0b1621;
  border: 1px solid transparent;
  padding: 6px 12px;
  font-size: 14px;
}
footer .input-group-btn {
  vertical-align: top;

}
footer .btn:hover {
  background: #ff6868;
  color: #FFF;
}

footer .btn:active, footer .btn:focus {
  background: #ff6868;
  color: #FFF;
}

footer #mce-EMAIL {
    margin-bottom: 0;
}
.p-l-100 {
  padding-left: 100px;
}

.p-b-20 {
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .p-l-100.p-sm-l-15 {
    padding-left: 15px;
  }
}
.footer-btm {
/*  background: rgba(255, 255, 255, 0.04);
  background: #1c2d3d;*/
  padding: 5px 0;
  font-size: .8em;
}

.footer-btm ul.list-inline {
  margin-bottom: 0px;
  margin-left: 0;
}

.press-logo svg {
        max-width: 65%;
    margin-left: auto;
    margin-right: auto;
}


.plogo {
    display: none
}

.plogo:target {
    display: block;
}


/******************

BRAND

*******************/




.brand.subnavtag #main {
    padding-top: 60px;
}


.brand header {
    min-height: 200px;
}
.brand .boxed {
    margin-bottom: 10px;
}

.brand .boxed a:focus {
    outline: none;

}
.brand .boxed img {
    margin: 0 auto;
}
.brand .boxed.dark {
    background: #00305C;
}

.brand #main .list-inline {
    margin-bottom: 25px;
    margin-left: 0;
}

/******************

Customers

*******************/


.customers .customers-link {
  display: inline-block;
/*  height: 140px;
  width: 140px;*/

/*  height: 140px;
  width: 140px;*/
  background: #FFF;
  border: 1px solid #D3D9DE;
  margin-bottom: 15px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease;
  padding-left: 10px;
  padding-right: 10px;
}

.customers .customers-link:hover {
  background: #D3D9DE;
}

.customers #main .logo {
/*  height: 140px;
  width: 140px;*/
  display: inline-block;
}



.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
    border-color: transparent;
    background-color: transparent;
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    /*border: 1px solid #b4142b;*/
    font-family: "KlavikaRegular";
    font-size: 18px;
    padding: 8px 20px;
    color: #ff6868;
}
.modal-title {
    font-family: "KlavikaRegular", sans-serif;
}

.modal-body input.form-control {
    font-size: 16px;
    height: 40px;
}
.modal p {
    font-size: 15px;
}


.modal-backdrop.in {
    opacity: 0.75;
}
.diffbotLogo {
    fill: #FFF;
    /*width: 100%;*/
    margin-top: 25px;
      transition: all 500ms ease-in-out;

}
/*
.diffbotLogo:hover {
    fill:#ff6868;
}*/
.navbar-brand {
    padding: 0;
    width: 165px;
    height: 80px;
}

.navbar-brand:hover .diffbotLogo {
    fill:#ff6868;
  transition: all 500ms ease-in-out;

}



@media (max-width: 767px){

    .diffbotLogo{
        /*margin-left: 15px;*/
        margin-top: 10px;
    }

    .navbar-brand {

        /*width: 135px;*/
        height: 50px;
        padding-left: 15px;
        padding-right: 15px;
    }
}


@media (min-width: 768px){
    .navbar-right {
        float: right!important;
         margin-right: 0px;
    }
    .navbar>.container .navbar-brand {
        margin-left: 0px;
    }

}


.navbar-toggle {
    float: right;
}
/*nav.navigation .logo a {
    background-image: url('/static/img/logo.svg');
    fill: red;
}*/


.subnav .navbar-brand {
    padding: 15px 15px;
    height: 50px;
}

.subnav .navbar-toggle {
    float: none;
}


.contact #main .form-control {
    font-size: 16px;
    height: 40px;
    border-radius: 0;
    box-shadow: none;
}
.contact #main textarea.form-control {
    height: auto;
}

.contact #main label {
    font-size: 15px;
}

.contact #main button {
    text-transform: capitalize;

}
.contact input:required {
    position: relative;
}
.contact label.required:after {

    width: 4px;
    height: 4px;
    background: #E94B35;
    border-radius: 20px;
    display: inline-block;
    content:" ";
    position: relative;
    left: 5px;
    top: -5px;
 /*     top: 2px;
      right: -6px;*/
}
/*.contact input:required::-webkit-input-placeholder:after {

      width: 4px;
      height: 4px;
      background: #E94B35;
      border-radius: 20px;
      content:" ";
      position: absolute;
      top: 2px;
      right: -6px;
}*/


.contact .nav-pills {
text-align: center;
margin-bottom: 30px;
}

.contact .nav-pills>li{
    /*float: none;*/
    width: 33.33333333%;
    border: 1px solid #D3D9DE;

}

.contact .nav-pills>li+li {
    margin-left: 0px;
    border-left: none;

}

.contact .nav-pills>li a {
    color: #363636;

    background: #FFF;
    padding: 15px;
    border-radius: 0;
}
.contact .nav-pills>li.active {
    border-color: #ff6868;
}
.contact .nav-pills>li.active>a,
.contact .nav-pills>li.active>a:focus,
.contact .nav-pills>li.active>a:hover {
    color: #FFF;
    background: #ff6868;
}

.contact .nav-pills>li>a:focus,
.contact .nav-pills>li>a:hover {
    background: #D3D9DE;
}
.contact .nav-pills h4 {
    margin-bottom: 0;
}
.contact .nav-pills p {
    font-family: 'KlavikaRegular';
    font-size: 14px;
}

.contact #main {
    min-height: 400px;
}


.contact .card {
    text-align: center;
    padding: 25px 20px;
}

.contact .card h4 {
    height: auto;
    display: block;
    margin-bottom: 5px;
    margin-top: 15px;
    transition: all .5s ease;

}

.contact .card p {
    margin-bottom: 0;
    transition: all .5s ease;

}


.contact .card i {
    color: #b9bed1;
    transition: all .5s ease;

}




.contact .card:hover i,
.contact .card:hover h4 {
    color: #ff6868;

}

body.contact {
    background: #112532;
}

.contact #main {
    background: #FAFAFA;
}


/***************
*
*
*
*
*       ENTERPRISE
*
*
*
****************/

.enterprise.subnavtag {
    background: #112532;
}

.enterprise .section {
    background: #F2F5F8;
    border-top: 1px solid #D3D9DE;
    padding: 80px 0 120px;
}

     .enterprise .bodded {
        background: #FFF;
        border: 1px solid #D3D9DE;
        border-radius: 3px;
        text-align: center;
        padding-top: 25px;
        padding-bottom: 25px;
        padding: 25px 15px;
      }

     .enterprise .bodded .btn {
        margin-top: 20px;
      /*text-transform: uppercase;*/
      /*max-width: 80%;*/
      }

      .enterprise .bodded p {
        margin-bottom: 0;
        line-height: 1.3333333;
      }

     .enterprise .feature-wrapper .img-responsive {
        margin: 0 auto;
        max-height: 200px;
      }

     .enterprise.subnavtag #main {
        background: #FAFAFA;
      }

      .enterprise.subnavtag nav.navigation {
        background-color: transparent;
        position: absolute;
      }

      .enterprise.subnavtag .btn {
      /*transition-property: none;*/
        transition: none;
      }

     .enterprise h3 {
        font-family: 'KlavikaRegular';
        margin-bottom: 0;
      }
.enterprise #main {
  padding-bottom: 0;
}
      .enterprise #main .feature-wrapper .row {
        padding-top: 60px;
        padding-bottom: 60px;
      }

      .enterprise #main .feature-wrapper .row p {
        margin-bottom: 25px;
      }

      .enterprise .modal label {
        font-size: 14px;
      }

      .enterprise .modal .form-control {
        font-size: 15px;
        box-shadow: none;
      }

      .enterprise .modal .row .col-sm-6:first-child {
        padding-right: 8px;
      }

      .enterprise .modal .row .col-sm-6:last-child {
        padding-left: 7px;
      }

      .enterprise .modal-header {
        border-bottom: 1px solid #D3D9DE;
      }

      .enterprise .modal-body {
        background: #F7FAFF;
      }

      .enterprise .modal-footer {
        border-top: 1px solid #D3D9DE;
      }

      .enterprise .modal-header .close:hover {
        background: none;
      }

      .enterprise .modal p.lead {
        font-size: 21px;
      }

      .homepage-hero-module {
        border-right: none;
        border-left: none;
        max-height: 500px;
        height: 500px;
        position: relative;
      }

      .enterprise.no-video .video-container video,.enterprise.touch .video-container video {
        display: none;
      }

      .enterprise.no-video .video-container .poster,.enterprise.touch .video-container .poster {
        display: block !important;
      }

      .enterprise .video-container {
        position: relative;
        bottom: 0;
        left: 0;
        height: 100%;
        width: 100%;
        overflow: hidden;
        background: #000;
      }

      .enterprise .video-container .poster img {
        width: 100%;
        bottom: 0;
        position: absolute;
      }

      .enterprise .video-container .filter {
        z-index: 100;
        position: absolute;
        background: rgba(0,0,0,0.4);
        background: rgba(17,37,50,0.5);
        width: 100%;
        height: 100%;
      }

      .enterprise .video-container video {
        position: absolute;
        z-index: 0;
        bottom: 0;
      }

      .enterprise .video-container video.fillWidth {
        width: 100%;
      }

      .enterprise .vmiddle {
        position: relative;
        top: 0;
        -webkit-transform: translateY(-200%);
        -moz-transform: translateY(-200%);
        -o-transform: translateY(-200%);
        -ms-transform: translateY(-200%);
        transform: translateY(-200%);
        color: #FFF;
      }

      .enterprise .filter {
        color: #FFF;
        padding-top: 200px;
      }

      @media (max-width: 767px) {
        .enterprise .bodded .btn {
          font-size: 18px;
          display: inline-block;
        }

        .enterprise .modal .row .col-sm-6:first-child {
          padding-right: 15px;
        }

        .enterprise .modal .row .col-sm-6:last-child {
          padding-left: 15px;
        }
      }

      @media (min-width: 768px) {
        .enterprise .bodded .btn {
          padding: 10px 20px;
          margin-top: 0;
          margin-left: 10px;
        }
      }

      @media (min-width: 992px) {
        .enterprise .bodded .btn {
          margin-top: 0;
          margin-left: 15px;
        }
      }

      /*@media (max-width: 767px) {
          .col-sm-6 {
              width: 25%;
          }
          .col-xs-9 {
            width: 75%;
          }
      }*/


/*************
*
*  PRESS
*
***********/


.press-quote {
  background: #F2F5F8;
  border: 1px solid #D3D9DE;
  padding: 2em 1em;
}

.press-quote p {
  font-size: 16px;
}

.press-quote img {
  margin-bottom: 1em;
}
section.press {
  padding: 100px 0px;
  border-bottom: none;
}


.press-header {
  margin-bottom: 60px;
  /*position: relative;*/
  text-align: center;

}
.press h1 {
  margin-top: 0;
  display: inline-block;
  margin-bottom: 20px;
  position: relative;
}

.press-header img {
  position: absolute;
  top: -30px;
  left: -120px;

}

.press-footer {
  margin-top: 60px;
}

.press-footer i {
    font-size: 14px;
}

@media (max-width: 767px) {
  .press-quote {
    border-bottom: none;
  }
  .press-quote.last {
      border-bottom: 1px solid #D3D9DE;
  }

  .press-header img {
    top: -30px;
    left: -20px;
  }

  .press h1 {
    padding-left: 100px;
    text-align: left;
  }
}
