/*------------------------------------------------------

    Name: ReviewBuzz Partner Page
    Author: ReviewBuzz
    Author URI: https://www.reviewbuzz.com

/*------------------------------------------------------


/*--------------------------------------------------------
    RESETS
--------------------------------------------------------*/

html, body, div, span, applet, object, iframe, h1, h4, h3, h2, h4, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul, li,fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
}


/*--------------------------------------------------------
    TYPE
--------------------------------------------------------*/

@font-face {
	font-family: 'Gotham Light';
	src: url('type/gotham-light.woff2') format('woff2'),
		 url('type/gotham-light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'Gotham Medium';
	src: url('type/gotham-medium.woff2') format('woff2'),
		 url('type/gotham-medium.woff') format('woff');
	font-weight: 600;
	font-style: normal;
}

body, button, input, select, optgroup, textarea {
	font-family: 'Gotham Light', 'Avenir Next', Avenir, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 300;
	font-size: 1em;
	line-height: 1.6;
    color: #4e4540;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Gotham Medium', 'Avenir Next', Avenir, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 600; 
    margin-top: 0;
	clear: both;
}

h1 { 
    font-size: 2em;
    margin-bottom: .6em;
    line-height: 1.4;
    color: #4e4540;
}

h2 {
    font-size: 1.2em;
    margin-bottom: 1em;
    line-height: 1.4;
    text-transform: uppercase;
    color: #938884;
}

h3 {
    font-size: 1.5em;
    margin-bottom: 1em;
    line-height: 1.4;
    color: #4e4540;
}

h4 {
    font-size: 1.8em;
    margin-bottom: .7em;
    line-height: 1.4;
    color: #4e4540;
}

h5 {
    font-size: 1.3em;
    margin-bottom: .6em;
    margin-top: 2em;
    line-height: 1.4;
    color: #4e4540;
}

h6 {
    font-size: 1.1em;
    margin-bottom: .5em;
    line-height: 1.4;
}

p {
    font-family: 'Gotham Light', 'Avenir Next', Avenir, 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: 300;
    font-size: 1em;
    margin-bottom: 1em;
    line-height: 1.6;
    widows: 3;
    orphans: 3;
}

strong, b {
    font-family: 'Gotham Medium', 'Avenir Next', Avenir, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 600; 
}

dfn, cite, em, i {
	font-style: italic;
}

small {
	font-size: 85%;
}

sub, sup {
	font-size: 50%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.7em;
}

@media screen and (max-width: 800px) {

    h1 { 
        font-size: 1.6em;
    }

    h2 {
        font-size: 1.1em;
    }

    h3 {
        font-size: 1.3em;
    }

    h4 {
        font-size: 1.4em;
    }

    h5 {
        font-size: 1.2em;
    }
    
}


/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/

html {
	box-sizing: border-box;
}

*, *:before, *:after {
	box-sizing: inherit;
}

body {
	background: #fff;
}

hr {
    display: block;
    margin: 2em auto;
    height: 1px;
	border: 0;
	background-color: #e3e1db;
}

ul {
	margin: 0 3em 1em;
    padding: 0;
    list-style: disc;
}

ol {
    margin: 0 0 1em;
    padding: 0;
    counter-reset: item;
}
 
ol > li {
    margin: 0;
    padding: 0 0 0 2em;
    text-indent: 0;
    list-style-type: none;
    counter-increment: item;
}
 
ol > li:before, ol > li > ol > li:before {
    display: inline-block;
    font-family: 'Gotham Medium', 'Avenir Next', Avenir, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 600;
    text-align: left;
}

ol > li:before {
    width: 2em;
    margin-left: -2em;
    content: counter(item) ".";
}

ol > li > ol {
    counter-reset: subsection;
    list-style-type: none;
}

ol > li > ol > li {
    counter-increment: subsection;
    margin-top: .5em;
    padding: 0 0 0 3em;
}

ol > li > ol > li:before {
    width: 3em;
    margin-left: -3em;
    content: counter(item) "." counter(subsection) " ";
}

ol > li > ul, ol > li > p {
    text-indent: 0;
}

ul > li > ul > li, ol > li > ul > li {
    margin-top: .5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
	max-height: 100%;
}

figure {
	margin: 1em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

blockquote {
    display: block;
    position: relative;
	margin: 3em auto 3.5em auto;
    padding: 0 40px 0 60px;
    border-right: 4px solid #5091cd;
}

blockquote::before {
    display: inline-block;
    position: absolute;
    margin-left: -60px;
    margin-top: -7px;
    padding: 0;
    width: 40px;
    height: 100%;
    content: '';
    background-image: url(images/quotes-blue.svg);
    background-size: 40px;
    background-repeat: no-repeat;
}

blockquote p {
    font-size: 1.2em;
    color: #5091cd;
}


/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/

a, a:visited {
	color: #5091cd;
}

a:hover, a:focus, a:active {
	color: #326a91;
    text-decoration: underline;
}

.btn {
    display: inline-block;
    padding: .6em 1em;
    border-radius: 6px;
    white-space: nowrap;
}

.btn.big {
    padding: .8em 1.4em;
    font-size: 1.1em;
}

a.btn, a.btn:visited, a.btn:hover, a.btn:focus, a.btn:active {
    font-family: 'Gotham Medium', 'Avenir Next', Avenir, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}

a.bg-orange:hover, a.bg-orange:focus, a.bg-orange:active {
    background: #f57321;
}

a.bg-none, a.bg-none:visited {
	color: #4e4540;
}

a.bg-none:hover, a.bg-none:focus, a.bg-none:active {
    color: #5091cd;
}

a.outlined-gray {
    line-height: 42px;
    border: solid 1px #938884;
}

a.outlined-gray:hover, a.outlined-gray:focus, a.outlined-gray:active {
    background: #F8F7F7;
}

a.outlined-blue {
    line-height: 42px;
    color: #5091cd;
    border: solid 1px #73b4e2;
}

a.outlined-blue:hover, a.outlined-blue:focus, a.outlined-blue:active {
    color: #fff;
    border: solid 1px #5091cd;
    background: #5091cd;
}

a.outlined-white {
    line-height: 42px;
    color: #fff;
    border: solid 1px #fff;
}

a.outlined-white:hover, a.outlined-white:focus, a.outlined-white:active {
    color: #5091cd;
    background: #fff;
}


/*--------------------------------------------------------
    HEADER 
--------------------------------------------------------*/

.site-header {
    display: block;
    position: fixed;
    top: 0;
    width: 100%;
    height: 90px;
    margin: 0 auto;
    padding: 0 2em;
    background: #fff;
    box-shadow: 0 1px 0 #e3e1db;
    box-sizing: border-box;
    z-index: 999;
}

.site-branding-outer {
    display: inline-block;
}

.site-branding {
    display: flex;
    height: 90px;
    justify-content: flex-start;
    align-items: center;
}

.site-branding-outer a {
    text-decoration: none;
}

.rb-logo {
    width: 220px;
    margin-top: 7px;
}

.partner-logo {
    width: 237px;
    margin-top: -3px;
}

.plus {
    margin: 0 .7em;
    font-size: 1.5em;
    color: #938884;
}

.main-nav-outer {
    display: inline-block;
    float: right;
}

.main-nav, .main-nav-small {
    display: flex;
    height: 90px;
    justify-content: flex-start;
    align-items: center;
}

.main-nav-small {
    display: none;
}

.mobile-nav {
    display: none;
}


@media screen and (max-width: 700px) {
    
    .site-header {
    }
    
    .rb-logo {
        width: 180px;
    }

    .partner-logo {
        width: 120px;
    }

    .plus {
        margin: 0 .5em;
        font-size: 1.2em;
    }

}

@media screen and (max-width: 600px) {
    
    .main-nav {
        display: none;
    }
    
    .main-nav-small {
        display: flex;
    }
}

@media screen and (max-width: 500px) {
    
    .site-branding-outer {
        display: flex;
        justify-content: center;
    }
    
    .rb-logo {
        width: 42vw;
    }

    .partner-logo {
        width: 28vw;
    }
    
    .main-nav-outer {
        display: none;        
    }
    
}



/*--------------------------------------------------------
    CONTAINERS 
--------------------------------------------------------*/

/*-- GENERAL --*/

.wrapper {
    display: block;
    width: 100%;
    overflow: hidden;
}

.wrapper-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2em;
}

.flex {
    display: flex;
}

.block {
    display: block;
}

.narrow {
    max-width: 800px;
}

#content {
    margin-top: 90px;
    margin-bottom: 0;
}

.entry-header {
    margin-top: 3em;
}

.copy-left, .copy-right {
    width: 50%;
    margin: 3em auto;
    padding: 0 2em;
    text-align: left;
}

.copy-left {
    order: 1;
}

.copy-right {
    order: 2;
}

.copy-center {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.image-left, .image-right {
    width: 50%;
    margin: 2em auto;
}

.image-left {
    order: 1;
}

.image-right {
    order: 2;
}

.image-center {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.image-left img, .image-right img, .image-center img {
    width: auto;
    max-height: 500px;
    margin: 0 auto;
}

.valign-top {
    align-self: flex-start;
}

.valign-center {
    align-self: center;
}

.valign-bottom {
    align-self: flex-end;
    margin-bottom: 0;
}

.section-header {
    display: block;
    width: 100%;
    margin: 4em auto 2em;
    text-align: center;
}

.anchor {
    display: block;
    height: 120px;
    margin-top: -120px;
    visibility: hidden;
}

@media screen and (max-width: 800px) {

    .copy-left, .copy-right, .copy-center {
        width: 100%;
        margin-bottom: .5em;
        padding: 0 1.2em;
        order: 1;
    }
    
    .copy-left:nth-child(2) {
        margin-top: 1em;
        margin-bottom: 1.5em;
    }

    .image-left, .image-right, .image-center {
        width: 100%;
        margin-top: 0;
        overflow: hidden;
        order: 2;
    }
    
}

@media screen and (max-width: 500px) {

    .wrapper-inner {
        padding: 0 5%;
    }
    
    .copy-center {
        padding: 0;
    }
    
}

/*-- HERO --*/

.hero {
    margin-top: 90px;
    padding: 2.5em 0 2em;
    color: #fff;
}

.hero h1 {
    margin-bottom: .5em;
}

.hero p {
    margin: 0 0 1em;
    font-size: 1.1em;
}

.hero .btn {
    margin-top: .5em;
    margin-bottom: 2em;
    box-shadow: 0 0 0 2px #fff;
}

.video {
    margin: 0 auto 1em;
    max-width: 724px;
}

.video-links {
    margin-bottom: 2em;
}

/*-- FEATURES --*/

.features-nav {
    display: block;
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 90px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    background: #fff;
    border-bottom: 1px solid #eBe8e5;
    z-index: 998;
}

.features-nav ul {
    display: flex;
    width: 100%;
    margin: 0 auto;
    padding: 12px 2em;
    justify-content: center;
    align-items: center;
}

.features-nav ul li {
    display: inline-block;
    text-align: center;
    margin: 0 1em;
    padding: 0;
}

.features-nav ul li a {
    display: flex;
    margin: 0 auto;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    font-family: 'Gotham Medium', 'Avenir Next', Avenir, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 600; 
    font-size: 1.1em;
    text-transform: uppercase;
    line-height: 1.2;
    text-decoration: none;
    border-radius: 6px;
}

#reviews, #employees, #marketing {
    margin-top: -130px;
    height: 130px;
}

.features-wrapper {
    margin: 100px auto 0 auto;
    text-align: center;
}

#reviews + .features-wrapper {
    border-top: 2px solid #13bf86;
}

#marketing + .features-wrapper {
    border-top: 2px solid #f2bf49;
}

#employees + .features-wrapper {
    border-top: 2px solid #9c7acc;
}

#customers + .features-wrapper {
    border-top: 2px solid #39bfbf;
}

.features-wrapper > .wrapper-inner {
    overflow: visible;
}

.feature-title {
    display: block;
    position: relative;
    top: -30px;
    margin: 0 auto;
    padding: 0 1.4em;
    height: 60px;
    line-height: 60px;
    text-align: center;
    color: #fff;
    border-radius: 12px;
    z-index: 99;
}

.features h3 {
    margin-top: 1em;
    margin-bottom: 2em;
}

.features-wrapper p {
    color: #938884;
}

.features-wrapper hr {
    margin-bottom: 0;
}

@media screen and (max-width: 800px) {
    
    .features-nav {
        display: none;
    }

}


/* PRICING */

.pricing-wrapper-outer {
    display: flex;
    justify-content: center;
    align-items: stretch;
    align-content: flex-start;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2em;
}

.pricing-wrapper-inner {
    width: 45%;
    max-width: 600px;
    margin: 0 1em;
    background: #fff;
    border: 1px solid #73b4e2;
    border-bottom: none;
    border-radius: 12px 12px 0 0;
    box-shadow: 
        0 0 0 2px #b2d5ee,
        0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.pricing-wrapper-inner h3 {
    margin-top: 1em;
    text-align: center;
}

.pricing-wrapper-inner .wrapper-inner {
    margin-top: 2em;
}

.pricing-wrapper-inner ul {
    display: inline-block;
    margin-left: 0;
    margin-right: 0;
    line-height: 1.6;
    text-align: left;
}

.pricing-wrapper-inner ul li {
    list-style: none;
    margin-bottom: 1em;
    padding: 0 0 0 2em;
    background: url(images/icon-check-24px-green.svg) no-repeat left -1px;
}

@media screen and (max-width: 800px) {
    
    .pricing-wrapper-outer {
        flex-wrap: wrap;
        align-items: flex-start;
        padding-bottom: 2em;
    }
    
    .pricing-wrapper-inner {
        width: 100%;
        margin: 0 auto 2em;
        border-radius: 12px;
        border-bottom: 1px solid #73b4e2;
    }
}

@media screen and (max-width: 500px) {

    .pricing-wrapper-outer {
        padding: 0 5% 2em;
    }
    
    .pricing-wrapper-inner ul {
        padding-left: 1em;
        font-size: .9em;
    }
    
}


/*-- RESOURCES --*/

.resources-wrapper-outer {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 4em;
}

.resources-wrapper-outer > .wrapper-inner {
    padding: 2em;
    align-items: flex-start;
}

.resources-wrapper-outer h6 {
    margin-top: 2em;
}

.resources-wrapper-inner {
    margin: 0 2em 2em;
    flex-grow: 1;
}

.resources-wrapper-inner ul {
    display: block;
    margin: 1em 0;
    line-height: 1.6;
    text-align: left;
}

.resources-wrapper-inner ul li {
    display: block;
    padding: .6em 0 .6em 2em;
    list-style: none;
    border-top: 1px solid #EBE8E5;
}

.resources-wrapper-inner ul li:last-child {
    border-bottom: 1px solid #EBE8E5;
}

.trainings ul li {
    background: url(images/icon-calendar-24px.svg) no-repeat left .5em;
}

.guide ul li {
    background: url(images/icon-guide-24px.svg) no-repeat left .6em;
}

.downloads ul li {
    background: url(images/icon-download-file-24px-blue.svg) no-repeat left .6em;
}

.resources-wrapper-inner ul li a {
    display: block;
    margin-left: -2em;
    padding-left: 2em;
    text-decoration: none;
}

@media screen and (max-width: 700px) {
    
    .resources-wrapper-outer {
        padding: 0 5%;
    }
    
    .resources-wrapper-outer > .wrapper-inner {
        padding: 2em 5%;
    }
    
    .resources-wrapper-outer h6 {
        margin-top: 1em;
    }

    .resources-wrapper-inner {
        margin: 0 5% 1em;
    }
    
}


/*-- FREE TRIAL ROW --*/

.free-trial-row {
    display: block;
    padding-top: 2em;
    padding-bottom: 2em;
}

.free-trial-row h4, {
    margin-bottom: .2em;
}


/*--------------------------------------------------------
    FOOTER 
--------------------------------------------------------*/

.footer-wrapper {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 6em 0;
    text-align: center;
    background: #36302c;
    box-sizing: border-box;
    overflow: hidden;
}

.footer-wrapper .wrapper-inner {
    justify-content: space-around;
}

.footer-content {
    flex: 1 1 0;
}

.footer-wrapper p, .footer-wrapper a {
    color: #938884;
}

.footer-icon {
    display: inline-block;
    width: 70px;
    height: auto;
    margin-bottom: 2em;
    box-sizing: border-box;
}

@media screen and (max-width: 800px) {
    
    .footer-wrapper {
        padding: 4em 0;
    }

    .footer-icon {
        width: 50px;
        margin-bottom: 1em;
    }

}

@media screen and (max-width: 600px) {

    .footer-wrapper .wrapper-inner {
        flex-wrap: wrap;
    }
    
    .footer-content {
        width: 100%;
        flex-basis: auto;
    }
    
    .footer-content.link {
        width: 50%;
        margin-top: 2em;
        order: 2;
    }
    
}


/*--------------------------------------------------------------
# General Overides
--------------------------------------------------------------*/

.one-half {
    width: 50%;
}

.one-third {
    width: 34%;
}

.two-third {
    width: 66%;
}

.two-fifth {
    width: 40%;
}

.three-fifth {
    width: 60%;
}

.one-fourth {
    width: 25%;
}

.three-fourth {
    width: 75%;
}

.full-width {
    width: 100%;
}

.white {
    color: #fff;
}

.orange {
    color: #f58025;
}

.blue {
    color: #5091cd;
}

.gray {
    color: #938884;
}

.lt-gray {
    color: #f8f7f7;
}

.green {
    color: #13bf86;
}

.purple {
    color: #9c7acc;
}

.aqua {
    color: #39bfbf;
}

.yellow {
    color: #f2bf49;
}

.bg-white {
    background: #fff;
}

.bg-orange {
    background: #f58025;
}

.bg-blue {
    background: #5091cd;
}

.bg-gray {
    background: #938884;
}

.bg-lt-gray {
    background: #f8f7f7;
}

.bg-green {
    background: #13bf86;
}

.bg-purple {
    background: #9c7acc;
}

.bg-aqua {
    background: #39bfbf;
}

.bg-yellow {
    background: #f2bf49;
}

.bg-none {
    background: none;
}

.bdr-top {
    border-top: 1px solid #eBe8e5;
}

.bdr-bottom {
    border-bottom: 1px solid #eBe8e5;
}

.bdr-green {
    border: 1px solid #13bf86;
}

.bdr-none {
    border: none;
}

.bdr-white {
    border-color: #fff;
}

a.green, a.green:visited {
    color: #13bf86;
}

a.purple, a.purple:visited {
    color: #9c7acc;
}

a.aqua, a.aqua:visited {
    color: #39bfbf;
}

a.yellow, a.yellow:visited {
    color: #f2bf49;
}

a.gray, a.gray:visited {
    color: #938884;
}

a.green:hover, a.green:focus, a.green:active {
    color: #fff;
    background: #13bf86;
}

a.purple:hover, a.purple:focus, a.purple:active {
    color: #fff;
    background: #9c7acc;
}

a.aqua:hover, a.aqua:focus, a.aqua:active {
    color: #fff;
    background: #39bfbf;
}

a.yellow:hover, a.yellow:focus, a.yellow:active {
    color: #fff;
    background: #f2bf49;
}

a.gray:hover, a.gray:focus, a.gray:active {
    color: #fff;
}

@media screen and (max-width: 800px) {

    .one-half, .one-third, .two-third, .two-fifth, .three-fifth, .one-fourth, .three-fourth {
        width: 100%;
    }
    
}