@font-face {
    font-family: FontAwesome;
    src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/fonts/fontawesome-webfont.ttf) format('truetype');
    font-weight: 100;
    font-style: normal;
}

* {
    font-family: 'Open Sans', sans-serif;
    color: #454545;
}

.btn.btn-primary {
    display: block;
    border-radius: 1px;
    border: none;

    color: #071026;
    background-color: #1de9b6;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    position: relative;
    min-height: 100vh;

    background: url(../img/hero_bg.png) center center no-repeat;
    background-size: cover;
}

.header {
    width: 100%;
    padding: 54px 0;

    position: absolute;
    top: 0;
}

.header .container {
    display: flex;
    align-items: center;
}

.header .logo {
    display: block;
    width: 235px;
    height: 36px;

    background: url(../img/dy-logo.png) center center no-repeat;
    background-size: contain;
}

.header nav {
    margin-left: auto;
}

.header nav ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.header nav > ul {
    display: flex;
    align-items: center;
}

.header nav ul li {
    position: relative;
    display: inline-block;
    margin-right: 32px;
}

.header nav ul li:last-of-type {
    margin-right: 0;
}

.header nav ul li a {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.header nav .share-buttons {
    position: absolute;
    left: -68px;
    top: -6px;
    white-space: nowrap;

    transition: 0.2s all;
}

.header nav .share-toggle:hover > a,
.header nav .share-buttons {
    visibility: hidden;
    opacity: 0;
}

.header nav .share-toggle:hover .share-buttons {
    visibility: visible;
    opacity: 1;
}

.header nav .share-buttons li {
    margin-right: 3px;
    transition: 0.2s all;
}

.header nav .share-toggle:hover .share-buttons li {
    transform: translate(0);
}

.header nav .share-buttons .linkedin {
    transform: translate(0,0);
}

.header nav .share-buttons .twitter {
    transform: translate(20px,0);
}

.header nav .share-buttons .facebook {
    transform: translate(60px,0);
}

.header nav .share-buttons li svg {
    width: 32px;
    height: 32px;
}

.header nav .share-buttons li:hover {
    opacity: 0.7;
}

.btn.btn-primary.btn-sm {
    padding: 6px 15px;
}

.hero .content {
    max-width: 55%;
    margin: auto;

    padding-bottom: 5%;

    text-align: center;
    color: #fff;
}

.hero h1 {
    margin: 0 0 20px 0;

    font-size: 48px;
    font-weight: 700;

    line-height: 1.3;
}

.hero span {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;

    color: #fff;
}

.hero .scroller {
    display: flex;
    justify-content: center;

    width: 20px;
    height: 35px;

    position: absolute;
    left: 50%;
    bottom: 22%;

    transform: translate(-50%);

    border: 2px solid #fff;
    border-radius: 12px;

    opacity: 0.7;
    transition: 0.2s all;
    cursor: pointer;
}

.hero .scroller:hover {
    opacity: 1;
}

.hero .scroller:after {
    content: '';

    display: block;
    margin-top: 5px;

    width: 2px;
    height: 2px;

    border-radius: 50%;
    background: #fff;
}

.hero .scroller:hover:after {
    animation: scroller 1.5s infinite;
}

@keyframes scroller {
    0% { opacity: 1 }

    100% {
        opacity: 0;

        -webkit-transform: translateY(20px);
        -moz-transform: translateY(20px);
        -ms-transform: translateY(20px);
        -o-transform: translateY(20px);
        transform: translateY(20px)
    }
}

.intro {
    padding: 180px 0;
}

.intro p {
    display: block;
    margin: auto;
    max-width: 62%;

    font-size: 18px;
    text-align: center;
    line-height: 1.7;
}

.intro p:first-of-type {
    margin-bottom: 24px;
}

.how-we-evaluated {
    margin-bottom: 45px;
}

.gradient-box-wrapper {
    max-width: 90%;
    margin: auto;

    background: -moz-linear-gradient( 90deg, rgba(229,33,73,0.39) 0%, rgba(82,104,193,0.45) 50%, rgba(29,233,182,0.45) 100%), #0a193a;
    background: -webkit-linear-gradient(90deg, rgba(229,33,73,0.39) 0%, rgba(82,104,193,0.39) 40%, rgba(29,233,182,0.39) 100%), #0a193a;
    background: -ms-linear-gradient( 90deg, rgba(229,33,73) 0%, rgba(82,104,193,0.45) 50%, rgba(29,233,182,0.45) 100%), #0a193a;

    box-shadow: 5.248px 6.038px 106.47px 10.53px rgba(10, 25, 58, 0.19);
}

.gradient-box {
    padding: 80px 90px;

    background-image: -moz-linear-gradient(180deg, #0a193a 0%, #0a193a 30%, transparent 100%);
    background-image: -webkit-linear-gradient(180deg, #0a193a 0%, #0a193a 30%, transparent 100%);
    background-image: -ms-linear-gradient(180deg, #0a193a 0%, #0a193a 30%, transparent 100%);
}

.gradient-box h2 {
    margin: 0 0 32px 0;

    font-size: 28px;
    font-weight: 600;
    color: #fff;
}

.gradient-box p {
    margin: 0;

    font-size: 18px;
    line-height: 1.8;

    color: #fff;
}

.gradient-box p:first-of-type {
    margin-bottom: 24px;
}

.how-we-evaluated .gradient-box p {
    max-width: 92%;
}

.the-lowdown {
    padding: 108px 0 0 0;
}

.the-lowdown .content {
    width: 75%;
    margin: auto;
}

.the-lowdown h2 {
    margin-bottom: 90px;

    font-size: 42px;
    font-weight: 700;
    color: #454545;

    text-align: center;
}

.the-lowdown .the-chart {
    position: relative;
    padding: 20px 0;
}

.the-lowdown .legend {
    padding: 0;
    margin-bottom: 26px;

    text-align: center;
}

.the-lowdown .legend li {
    position: relative;
    padding: 0 30px 0 0;
    margin-right: 30px;

    font-size: 16px;
    font-weight: 600;
    color: #282828;

    cursor: pointer;
}

.the-lowdown .legend li:last-of-type {
    margin-right: 0;
}

.the-lowdown .legend li:after {
    content: '';

    display: block;
    width: 18px;
    height: 18px;

    position: absolute;
    right: 0;
    top: 2px;

    border-radius: 50%;
}

.the-lowdown .the-chart .chart-parts > .absent,
.the-lowdown .legend li.absent:after {
    background-color: #e52149;
}

.the-lowdown .the-chart .chart-parts > .basic,
.the-lowdown .legend li.basic:after {
    background-color: #5268c1;
}

.the-lowdown .the-chart .chart-parts > .advanced,
.the-lowdown .legend li.advanced:after {
    background-color: #0091ea;
}

.the-lowdown .the-chart .chart-parts > .pioneer,
.the-lowdown .legend li.pioneer:after {
    background-color: #1de9b6;
}

.the-lowdown .the-chart .chart-line {
    position: relative;

    padding-left: 18%;
    margin-bottom: 26px;

    height: 30px;
}

.the-lowdown .the-chart .chart-line.data {
    margin-bottom: 0;
}

.the-lowdown .the-chart .chart-parts span {
    display: none;
}

.the-lowdown .the-chart .chart-line .tooltip-label {
    position: absolute;
    right: calc(82% + 24px);
    top: 4px;

    font-size: 16px;
    font-weight: 600;
    color: #282828;

    text-align: right;
    cursor: pointer;
}

.the-lowdown .legend li .the-tooltip,
.the-lowdown .chart-line .tooltip-label .the-tooltip {
    position: absolute;
    left: -8px;
    top: 32px;

    display: block;
    padding: 14px 12px;

    width: 280px;

    font-size: 12px;
    font-weight: 400;
    color: #fff;

    text-align: left;
    line-height: 1.6;

    background: rgba(10, 25, 58, 0.9);
    z-index: 999;

    visibility: hidden;
    opacity: 0;

    transition: 0.2s all;
    white-space: normal;
}

.the-lowdown .legend li .the-tooltip strong,
.the-lowdown .chart-line .tooltip-label .the-tooltip strong {
    color: #fff;
}

.the-lowdown .legend li .the-tooltip:after,
.the-lowdown .chart-line .tooltip-label .the-tooltip:after {
    content: '';

    position: absolute;
    bottom: 100%;
    left: 10px;

    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent rgba(10, 25, 58, 0.9) transparent;
}

.the-lowdown .legend li:hover .the-tooltip,
.the-lowdown .chart-line .tooltip-label:hover .the-tooltip {
    opacity: 1;
    visibility: visible;
}

.the-lowdown .the-chart .chart-parts > div {
    height: 30px;
    display: inline-block;

    background: #000;
}

.the-lowdown .the-chart .chart-parts > div:not(:first-of-type) {
    margin-left: -4px;
}

.the-lowdown .the-chart .horizontal-lines,
.the-lowdown .the-chart .horizontal-lines:before,
.the-lowdown .the-chart .horizontal-lines:after {
    content: '';

    position: absolute;
    top: 0; bottom: 0;

    width: 1px;
    background-color: #d7d7d7;

    z-index: -1;
}

.the-lowdown .the-chart .horizontal-lines {
    left: 58.5%;
}

.the-lowdown .the-chart .horizontal-lines:before {
    left: 220px;
}

.the-lowdown .the-chart .horizontal-lines:after {
    right: 220px;
}

.the-lowdown .region-filter {
    padding: 42px 0;
    text-align: center;
}

.the-lowdown .region-filter,
.the-lowdown .region-filter .btn {
    font-size: 16px;
    font-weight: 600;
}

.the-lowdown .region-filter > span {
    margin-right: 20px;
}

.the-lowdown .region-filter .btn {
    padding: 4px 20px;
    border: 1px solid #dadada;

    transition: 0.2s all;
}

.the-lowdown .region-filter .btn:not(.current) {
    color: #858585;
}

.the-lowdown .region-filter .btn:hover,
.the-lowdown .region-filter .btn:focus,
.the-lowdown .region-filter .btn.current {
    background-color: #ebebeb;

    outline: none !important;
    box-shadow: none;
}

section.circles {
     height: 300vh;
}

section.circles .circles-inner {
    position: relative;
    height: 100vh;
    min-height: 610px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    background-image: -moz-radial-gradient(center, circle cover, #f4f4f4 305px, transparent 305px);
    background-image: -webkit-radial-gradient(center, circle cover, #f4f4f4 305px, transparent 305px);
    background-image: radial-gradient(center, circle cover, #f4f4f4 305px, transparent 305px);
}

section.circles .circle-block {
    opacity: 0;
}

section.circles .circle-block .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

section.circles .circle-block .content {
    position: relative;
    max-width: 82%;

    display: flex;
    justify-content: center;
    flex-direction: column;
}

section.circles .circle-block .content .text-container {
    width: 56%;
}

section.circles .circle-block .content h3 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.4;

    margin-bottom: 18px;
}

section.circles .circle-block .content p {
    font-size: 16px;
    line-height: 1.8;
}

section.circles .circle-block .content .svg-container {
    position: absolute;
    right: 0;
}

section.circles .circle-block .content svg {
    width: 320px;
    height: 368px;
}

.full-report {
    margin-top: 60px;
}

.full-report .gradient-box {
    padding: 60px 70px;

    background: url(../img/pdf-report.png) center right 50px no-repeat, -moz-linear-gradient(180deg, rgba(10, 25, 58, 0.4) 0%, #0a193a 100%);
    background: url(../img/pdf-report.png) center right 50px no-repeat, -webkit-linear-gradient(180deg, rgba(10, 25, 58, 0.4) 0%, #0a193a 100%);
    background: url(../img/pdf-report.png) center right 50px no-repeat, -ms-linear-gradient(180deg, rgba(10, 25, 58, 0.4) 0%, #0a193a 100%);

    background-size: 342px, cover;
}

.full-report .gradient-box p {
    max-width: 84%;
}

.full-report .gradient-box p:last-of-type {
    margin-bottom: 82px;
}

.full-report .gradient-box .btn,
.begin-assessment .gradient-box .btn {
    display: inline-block;
    padding: 10px 24px;

    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.who-participated {
    padding: 172px 0;
}

.who-participated h2 {
    font-size: 28px;
    font-weight: 600;
    text-align: center;

    margin-bottom: 64px;
}

.who-participated .the-charts .the-chart {
    text-align: center;
}

.who-participated .the-charts .the-chart:first-of-type,
.who-participated .the-charts .the-chart:nth-of-type(2) {
    margin-bottom: 50px;
}

.who-participated .the-chart h3 {
    font-size: 22px;
    font-weight: 600;

    margin-bottom: 24px;
}

.who-participated .the-chart.geo-chart .ct-series path {
    transition: 0.2s all;
}

.who-participated .the-chart.geo-chart .ct-series.ct-series-a .ct-slice-donut-solid,
.who-participated .the-chart.ind-chart .ct-series.ct-series-e .ct-slice-donut-solid,
.who-participated .the-chart.revenue-chart .ct-series.ct-series-c .ct-slice-donut-solid,
.who-participated .the-chart.co_size-chart .ct-series.ct-series-e .ct-slice-donut-solid {
    fill: #1de9b6;
}

.who-participated .the-chart.geo-chart .ct-series.ct-series-b .ct-slice-donut-solid,
.who-participated .the-chart.ind-chart .ct-series.ct-series-d .ct-slice-donut-solid,
.who-participated .the-chart.revenue-chart .ct-series.ct-series-d .ct-slice-donut-solid,
.who-participated .the-chart.co_size-chart .ct-series.ct-series-d .ct-slice-donut-solid {
    fill: #0091ea;
}

.who-participated .the-chart.geo-chart .ct-series.ct-series-c .ct-slice-donut-solid,
.who-participated .the-chart.ind-chart .ct-series.ct-series-c .ct-slice-donut-solid,
.who-participated .the-chart.revenue-chart .ct-series.ct-series-e .ct-slice-donut-solid,
.who-participated .the-chart.co_size-chart .ct-series.ct-series-c .ct-slice-donut-solid {
    fill: #5268c1;
}

.who-participated .the-chart.ind-chart .ct-series.ct-series-f .ct-slice-donut-solid{
    fill: #0a193a;
}

.who-participated .the-chart.ind-chart .ct-series.ct-series-a .ct-slice-donut-solid,
.who-participated .the-chart.revenue-chart .ct-series.ct-series-a .ct-slice-donut-solid,
.who-participated .the-chart.co_size-chart .ct-series.ct-series-a .ct-slice-donut-solid {
    fill: #e52149;
}

.who-participated .the-chart.ind-chart .ct-series.ct-series-b .ct-slice-donut-solid,
.who-participated .the-chart.revenue-chart .ct-series.ct-series-b .ct-slice-donut-solid,
.who-participated .the-chart.co_size-chart .ct-series.ct-series-b .ct-slice-donut-solid {
    fill: #fcb612;
}

.begin-assessment {
    margin-bottom: 150px;
}

.begin-assessment .gradient-box {
    background:  url(../img/self-assessment.png) center right 50px no-repeat, -moz-linear-gradient(180deg, #0a193a 0%, rgba(10, 25, 58, 0.12) 30%, #0a193a 100%);
    background:  url(../img/self-assessment.png) center right 50px no-repeat, -webkit-linear-gradient(180deg, #0a193a 0%, rgba(10, 25, 58, 0.12) 30%, #0a193a 100%);
    background:  url(../img/self-assessment.png) center right 50px no-repeat, -ms-linear-gradient(180deg, #0a193a 0%, rgba(10, 25, 58, 0.12) 30%, #0a193a 100%);

    background-size: 224px, cover;
}

.begin-assessment .gradient-box h2,
.begin-assessment .gradient-box p {
    max-width: 60%;
}

.begin-assessment .gradient-box h2 {
    margin-bottom: 16px;
    line-height: 1.5;
}

.begin-assessment .gradient-box p {
    margin-bottom: 42px;
}

.press {
    padding: 40px 0;
    background-color: #f3f3f3;
}

.press .row > div {
    line-height: 1.6;
}

.press figure {
    display: block;
    margin: 0 auto 14px auto;

    height: 30px;
}

.press .press-kit figure {
    width: 35px;

    background: url(../img/press-kit.png) center center no-repeat;
    background-size: contain;
}

.press .contact figure {
    width: 45px;

    background: url(../img/press-contact.png) center center no-repeat;
    background-size: contain;
}

.press strong,
.press span {
    display: block;
    text-align: center;

    color: #071026;
}

.press span {
    max-width: 45%;
    margin: auto;
}

.press a,
.press strong {
    font-weight: 600;
}

.press a {
    color: #5268c1;
}

.press .press-kit a {
    font-weight: 400;
    color: inherit;
}

.footer {
    padding: 74px 0;

    background: url(../img/footer-bg.png) center center no-repeat;
    background-size: cover;

    text-align: center;
}

.footer .logo {
    display: block;
    margin: 0 auto 50px auto;

    width: 185px;
    height: 25px;

    background: url(../img/dy-footer-logo.png) center center no-repeat;
    background-size: contain;
}

.footer h2,
.footer span {
    display: block;
    margin: auto;
    max-width: 75%;

    text-align: center;
    color: #fff;
}

.footer h2 {
    margin-bottom: 10px;

    font-size: 36px;
    font-weight: 700;
    line-height: 1.35;
}

.footer span {
    margin-bottom: 32px;

    font-size: 18px;
    line-height: 1.5;
}

.footer .btn {
    display: inline-block;
    padding: 8px 36px;
    margin-bottom: 48px;

    font-weight: 700;
    text-transform: uppercase;
}

.footer .footer-logos {
    display: block;
    margin: auto;

    width: 900px;
    height: 240px;

    background: url(https://www.dynamicyield.com/wp-content/uploads/2015/12/footer_logos@x2.png) center center no-repeat;
    background-size: contain;
}

footer {
    padding: 24px 0;
    background-color: #1c1b26;
}

footer span {
    font-size: 13px;
    color: #666;
}

footer ul {
    padding: 0;
    margin: 0;

    list-style-type: none;
}

footer ul li {
    display: inline-block;
    margin-right: 10px;
}

footer ul li:last-of-type {
    margin-right: 0;
}

footer ul li a:before {
    font-family: 'FontAwesome';
    font-size: 16px;
    color: #666;

    transition: 0.2s all;
}

footer ul li.linkedin a:before {
    content: '\f0e1';
}

footer ul li.youtube a:before {
    content: '\f16a';
}

footer ul li.facebook a:before {
    content: '\f09a';
}

footer ul li.twitter a:before {
    content: '\f099';
}

footer ul li.googleplus a:before {
    content: '\f0d5';
}

footer ul li a:hover {
    text-decoration: none;
}

footer ul li a:hover:before {
    color: #5268c1;
}
