@import url(icons.css);

/* line 4, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/bourbon-neat/app/assets/stylesheets/grid/_box-sizing.scss */
html {
    box-sizing: border-box;
}

/* line 11, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/bourbon-neat/app/assets/stylesheets/grid/_box-sizing.scss */
*,
*::after,
*::before {
    box-sizing: inherit;
}

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT
Copyright (c) 2015 Daniel Eden
*/
/* line 8, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/helpers/_base.scss */
body {
    -webkit-backface-visibility: hidden;
}

/* line 12, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/helpers/_base.scss */
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

/* line 16, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/helpers/_base.scss */
.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

/* line 20, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/helpers/_base.scss */
.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

/* line 25, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/helpers/_base.scss */
.animated.bounceIn,
.animated.bounceOut {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
}

/* line 30, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/helpers/_base.scss */
.animated.flipOutX,
.animated.flipOutY {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
}

@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-30px);
    }
    60% {
        -webkit-transform: translateY(-15px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

/* line 26, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/attention-seekers/_bounce.scss */
.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
}

@-webkit-keyframes flash {
    0%, 50%, 100% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0;
    }
}

@keyframes flash {
    0%, 50%, 100% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0;
    }
}

/* line 8, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/attention-seekers/_flash.scss */
.flash {
    -webkit-animation-name: flash;
    animation-name: flash;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* line 29, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/attention-seekers/_pulse.scss */
.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

@-webkit-keyframes shake {
    0%, 100% {
        -webkit-transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translateX(-10px);
    }
    20%, 40%, 60%, 80% {
        -webkit-transform: translateX(10px);
    }
}

@keyframes shake {
    0%, 100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }
    20%, 40%, 60%, 80% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
}

/* line 27, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/attention-seekers/_shake.scss */
.shake {
    -webkit-animation-name: shake;
    animation-name: shake;
}

@-webkit-keyframes swing {
    20%, 40%, 60%, 80%, 100% {
        -webkit-transform-origin: top center;
    }
    20% {
        -webkit-transform: rotate(15deg);
    }
    40% {
        -webkit-transform: rotate(-10deg);
    }
    60% {
        -webkit-transform: rotate(5deg);
    }
    80% {
        -webkit-transform: rotate(-5deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg);
    }
    40% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }
    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
    }
    80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

/* line 36, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/attention-seekers/_swing.scss */
.swing {
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing;
}

@-webkit-keyframes wiggle {
    0% {
        -webkit-transform: skewX(9deg);
    }
    10% {
        -webkit-transform: skewX(-8deg);
    }
    20% {
        -webkit-transform: skewX(7deg);
    }
    30% {
        -webkit-transform: skewX(-6deg);
    }
    40% {
        -webkit-transform: skewX(5deg);
    }
    50% {
        -webkit-transform: skewX(-4deg);
    }
    60% {
        -webkit-transform: skewX(3deg);
    }
    70% {
        -webkit-transform: skewX(-2deg);
    }
    80% {
        -webkit-transform: skewX(1deg);
    }
    90% {
        -webkit-transform: skewX(0deg);
    }
    100% {
        -webkit-transform: skewX(0deg);
    }
}

@keyframes wiggle {
    0% {
        -webkit-transform: skewX(9deg);
        transform: skewX(9deg);
    }
    10% {
        -webkit-transform: skewX(-8deg);
        transform: skewX(-8deg);
    }
    20% {
        -webkit-transform: skewX(7deg);
        transform: skewX(7deg);
    }
    30% {
        -webkit-transform: skewX(-6deg);
        transform: skewX(-6deg);
    }
    40% {
        -webkit-transform: skewX(5deg);
        transform: skewX(5deg);
    }
    50% {
        -webkit-transform: skewX(-4deg);
        transform: skewX(-4deg);
    }
    60% {
        -webkit-transform: skewX(3deg);
        transform: skewX(3deg);
    }
    70% {
        -webkit-transform: skewX(-2deg);
        transform: skewX(-2deg);
    }
    80% {
        -webkit-transform: skewX(1deg);
        transform: skewX(1deg);
    }
    90% {
        -webkit-transform: skewX(0deg);
        transform: skewX(0deg);
    }
    100% {
        -webkit-transform: skewX(0deg);
        transform: skewX(0deg);
    }
}

/* line 59, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/attention-seekers/_wiggle.scss */
.wiggle {
    -webkit-animation-name: wiggle;
    animation-name: wiggle;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}

@-webkit-keyframes wobble {
    0% {
        -webkit-transform: translateX(0%);
    }
    15% {
        -webkit-transform: translateX(-25%) rotate(-5deg);
    }
    30% {
        -webkit-transform: translateX(20%) rotate(3deg);
    }
    45% {
        -webkit-transform: translateX(-15%) rotate(-3deg);
    }
    60% {
        -webkit-transform: translateX(10%) rotate(2deg);
    }
    75% {
        -webkit-transform: translateX(-5%) rotate(-1deg);
    }
    100% {
        -webkit-transform: translateX(0%);
    }
}

@keyframes wobble {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
    15% {
        -webkit-transform: translateX(-25%) rotate(-5deg);
        transform: translateX(-25%) rotate(-5deg);
    }
    30% {
        -webkit-transform: translateX(20%) rotate(3deg);
        transform: translateX(20%) rotate(3deg);
    }
    45% {
        -webkit-transform: translateX(-15%) rotate(-3deg);
        transform: translateX(-15%) rotate(-3deg);
    }
    60% {
        -webkit-transform: translateX(10%) rotate(2deg);
        transform: translateX(10%) rotate(2deg);
    }
    75% {
        -webkit-transform: translateX(-5%) rotate(-1deg);
        transform: translateX(-5%) rotate(-1deg);
    }
    100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
}

/* line 45, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/attention-seekers/_wobble.scss */
.wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble;
}

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scale(1);
    }
    10%, 20% {
        -webkit-transform: scale(0.9) rotate(-3deg);
    }
    30%, 50%, 70%, 90% {
        -webkit-transform: scale(1.1) rotate(3deg);
    }
    40%, 60%, 80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
    }
    100% {
        -webkit-transform: scale(1) rotate(0);
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    10%, 20% {
        -webkit-transform: scale(0.9) rotate(-3deg);
        transform: scale(0.9) rotate(-3deg);
    }
    30%, 50%, 70%, 90% {
        -webkit-transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg);
    }
    40%, 60%, 80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg);
    }
    100% {
        -webkit-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0);
    }
}

/* line 35, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/attention-seekers/_tada.scss */
.tada {
    -webkit-animation-name: tada;
    animation-name: tada;
}

@-webkit-keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.3);
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
    }
    70% {
        -webkit-transform: scale(0.9);
    }
    100% {
        -webkit-transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.3);
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
    70% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* line 83, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/bounce-enter/_bounceIn.scss */
.bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
    }
    80% {
        -webkit-transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(0);
    }
}

@keyframes bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
    80% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

/* line 82, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/bounce-enter/_bounceInDown.scss */
.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateX(30px);
    }
    80% {
        -webkit-transform: translateX(-10px);
    }
    100% {
        -webkit-transform: translateX(0);
    }
}

@keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    80% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

/* line 83, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/bounce-enter/_bounceInLeft.scss */
.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateX(-30px);
    }
    80% {
        -webkit-transform: translateX(10px);
    }
    100% {
        -webkit-transform: translateX(0);
    }
}

@keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px);
    }
    80% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

/* line 83, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/bounce-enter/_bounceInRight.scss */
.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(-30px);
    }
    80% {
        -webkit-transform: translateY(10px);
    }
    100% {
        -webkit-transform: translateY(0);
    }
}

@keyframes bounceInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    80% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

/* line 82, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/bounce-enter/_bounceInUp.scss */
.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
    0% {
        -webkit-transform: scale(1);
    }
    25% {
        -webkit-transform: scale(0.95);
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1.1);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(0.3);
    }
}

@keyframes bounceOut {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    25% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(0.3);
        transform: scale(0.3);
    }
}

/* line 83, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/bounce-exit/_bounceOut.scss */
.bounceOut {
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
    0% {
        -webkit-transform: translateY(0);
    }
    20% {
        opacity: 1;
        -webkit-transform: translateY(-20px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
    }
}

@keyframes bounceOutDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    20% {
        opacity: 1;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}

/* line 67, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/bounce-exit/_bounceOutDown.scss */
.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
    0% {
        -webkit-transform: translateX(0);
    }
    20% {
        opacity: 1;
        -webkit-transform: translateX(20px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
    }
}

@keyframes bounceOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    20% {
        opacity: 1;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

/* line 67, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/bounce-exit/_bounceOutLeft.scss */
.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
    0% {
        -webkit-transform: translateX(0);
    }
    20% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
    }
}

@keyframes bounceOutRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    20% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

/* line 67, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/bounce-exit/_bounceOutRight.scss */
.bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
    0% {
        -webkit-transform: translateY(0);
    }
    20% {
        opacity: 1;
        -webkit-transform: translateY(20px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
    }
}

@keyframes bounceOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    20% {
        opacity: 1;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

/* line 67, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/bounce-exit/_bounceOutUp.scss */
.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* line 8, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/fade-enter/_fadeIn.scss */
.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

/* line 51, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/fade-enter/_fadeInDown.scss */
.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

/* line 51, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/fade-enter/_fadeInDownBig.scss */
.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

/* line 51, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/fade-enter/_fadeInLeft.scss */
.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

/* line 51, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/fade-enter/_fadeInLeftBig.scss */
.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

/* line 51, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/fade-enter/_fadeInRight.scss */
.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

/* line 51, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/fade-enter/_fadeInRightBig.scss */
.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

/* line 51, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/fade-enter/_fadeInUp.scss */
.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

/* line 51, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/fade-enter/_fadeInUpBig.scss */
.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* line 8, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/fade-exit/_fadeOut.scss */
.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
}

/* line 51, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/fade-exit/_fadeOutDown.scss */
.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
    }
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}

/* line 51, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/fade-exit/_fadeOutDownBig.scss */
.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }
}

/* line 51, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/fade-exit/_fadeOutLeft.scss */
.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
    }
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

/* line 51, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/fade-exit/_fadeOutLeftBig.scss */
.fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(20px);
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }
}

/* line 51, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/fade-exit/_fadeOutRight.scss */
.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
    }
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

/* line 51, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/fade-exit/_fadeOutRightBig.scss */
.fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

/* line 51, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/fade-exit/_fadeOutUp.scss */
.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
    }
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

/* line 51, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/fade-exit/_fadeOutUpBig.scss */
.fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotateY(0);
        -webkit-animation-timing-function: ease-out;
    }
    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);
        -webkit-animation-timing-function: ease-out;
    }
    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -webkit-animation-timing-function: ease-in;
    }
    80% {
        -webkit-transform: perspective(400px) rotateY(360deg) scale(0.95);
        -webkit-animation-timing-function: ease-in;
    }
    100% {
        -webkit-transform: perspective(400px) scale(1);
        -webkit-animation-timing-function: ease-in;
    }
}

@keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotateY(0);
        transform: perspective(400px) rotateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);
        transform: perspective(400px) translateZ(150px) rotateY(170deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    80% {
        -webkit-transform: perspective(400px) rotateY(360deg) scale(0.95);
        transform: perspective(400px) rotateY(360deg) scale(0.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    100% {
        -webkit-transform: perspective(400px) scale(1);
        transform: perspective(400px) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

/* line 95, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/flippers/_flip.scss */
.flip {
    -webkit-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-backface-visibility: visible !important;
    -o-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flip;
    animation-name: flip;
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
    }
    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
    }
    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
        transform: perspective(400px) rotateX(-10deg);
    }
    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg);
    }
    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

/* line 80, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/flippers/_flipInX.scss */
.flipInX {
    -webkit-backface-visibility: visible !important;
    -o-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
}

@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
    }
    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
    }
    100% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}

@keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
        transform: perspective(400px) rotateY(-10deg);
    }
    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg);
    }
    100% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}

/* line 83, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/flippers/_flipInY.scss */
.flipInY {
    -webkit-backface-visibility: visible !important;
    -o-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

@keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

/* line 47, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/flippers/_flipOutX.scss */
.flipOutX {
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    -o-backface-visibility: visible !important;
    backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}

@keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}

/* line 47, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/flippers/_flipOutY.scss */
.flipOutY {
    -webkit-backface-visibility: visible !important;
    -o-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
    0% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
    60% {
        -webkit-transform: translateX(-20%) skewX(30deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: translateX(0%) skewX(-15deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
}

@keyframes lightSpeedIn {
    0% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
    60% {
        -webkit-transform: translateX(-20%) skewX(30deg);
        transform: translateX(-20%) skewX(30deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: translateX(0%) skewX(-15deg);
        transform: translateX(0%) skewX(-15deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
}

/* line 31, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/lightspeed/_lightSpeedIn.scss */
.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
    0% {
        -webkit-transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
}

@keyframes lightSpeedOut {
    0% {
        -webkit-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
}

/* line 23, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/lightspeed/_lightSpeedOut.scss */
.lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
    0% {
        -webkit-transform-origin: center center;
        -webkit-transform: rotate(-200deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: center center;
        -webkit-transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateIn {
    0% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

/* line 56, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/rotate-enter/_rotateIn.scss */
.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

/* line 59, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/rotate-enter/_rotateInDownLeft.scss */
.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

/* line 59, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/rotate-enter/_rotateInDownRight.scss */
.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

/* line 59, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/rotate-enter/_rotateInUpLeft.scss */
.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

/* line 59, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/rotate-enter/_rotateInUpRight.scss */
.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
    0% {
        -webkit-transform-origin: center center;
        -webkit-transform: rotate(0);
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: center center;
        -webkit-transform: rotate(200deg);
        opacity: 0;
    }
}

@keyframes rotateOut {
    0% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0;
    }
}

/* line 59, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/rotate-exit/_rotateOut.scss */
.rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(0);
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
}

/* line 59, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/rotate-exit/_rotateOutDownLeft.scss */
.rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(0);
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
}

/* line 59, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/rotate-exit/_rotateOutDownRight.scss */
.rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(0);
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
    100% {
        -transform-origin: left bottom;
        -transform: rotate(-90deg);
        opacity: 0;
    }
}

/* line 59, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/rotate-exit/_rotateOutUpLeft.scss */
.rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(0);
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
}

/* line 58, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/rotate-exit/_rotateOutUpRight.scss */
.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight;
}

@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

/* line 25, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/slide-enter/_slideInDown.scss */
.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

/* line 25, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/slide-enter/_slideInLeft.scss */
.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

/* line 25, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/slide-enter/_slideInRight.scss */
.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInUp {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

/* line 25, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/slide-enter/_slideInUp.scss */
.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(0, 100%, 0);
    }
}

@keyframes slideOutDown {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

/* line 25, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/slide-exit/_slideOutDown.scss */
.slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(-100%, 0, 0);
    }
}

@keyframes slideOutLeft {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

/* line 25, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/slide-exit/_slideOutLeft.scss */
.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(100%, 0, 0);
    }
}

@keyframes slideOutRight {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

/* line 25, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/slide-exit/_slideOutRight.scss */
.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(0, -100%, 0);
    }
}

@keyframes slideOutUp {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

/* line 25, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/slide-exit/_slideOutUp.scss */
.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp;
}

@-webkit-keyframes hinge {
    0% {
        -webkit-transform: rotate(0);
        -webkit-transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
    }
    20%, 60% {
        -webkit-transform: rotate(80deg);
        -webkit-transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
    }
    40% {
        -webkit-transform: rotate(60deg);
        -webkit-transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
    }
    80% {
        -webkit-transform: rotate(60deg) translateY(0);
        opacity: 1;
        -webkit-transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
    }
    100% {
        -webkit-transform: translateY(700px);
        opacity: 0;
    }
}

@keyframes hinge {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    20%, 60% {
        -webkit-transform: rotate(80deg);
        transform: rotate(80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    40% {
        -webkit-transform: rotate(60deg);
        transform: rotate(60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    80% {
        -webkit-transform: rotate(60deg) translateY(0);
        transform: rotate(60deg) translateY(0);
        opacity: 1;
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    100% {
        -webkit-transform: translateY(700px);
        transform: translateY(700px);
        opacity: 0;
    }
}

/* line 35, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/special/_hinge.scss */
.hinge {
    -webkit-animation-name: hinge;
    animation-name: hinge;
}

@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%) rotate(-120deg);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
    }
}

@keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%) rotate(-120deg);
        transform: translateX(-100%) rotate(-120deg);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg);
    }
}

/* line 25, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/special/_rollIn.scss */
.rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn;
}

@-webkit-keyframes rollOut {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(100%) rotate(120deg);
    }
}

@keyframes rollOut {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(100%) rotate(120deg);
        transform: translateX(100%) rotate(120deg);
    }
}

/* line 53, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/special/_rollOut.scss */
.rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
    }
}

/* line 30, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/zoom-enter/_zoomIn.scss */
.zoomIn {
    -webkit-animation-name: "zoomIn";
    animation-name: "zoomIn";
}

@-webkit-keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

/* line 33, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/zoom-enter/_zoomInDown.scss */
.zoomInDown {
    -webkit-animation-name: "zoomInDown";
    animation-name: "zoomInDown";
}

@-webkit-keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

/* line 33, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/zoom-enter/_zoomInLeft.scss */
.zoomInLeft {
    -webkit-animation-name: "zoomInLeft";
    animation-name: "zoomInLeft";
}

@-webkit-keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

/* line 33, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/zoom-enter/_zoomInRight.scss */
.zoomInRight {
    -webkit-animation-name: "zoomInRight";
    animation-name: "zoomInRight";
}

@-webkit-keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

/* line 33, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/zoom-enter/_zoomInUp.scss */
.zoomInUp {
    -webkit-animation-name: "zoomInUp";
    animation-name: "zoomInUp";
}

@-webkit-keyframes zoomOut {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
    }
    100% {
        opacity: 0;
    }
}

@keyframes zoomOut {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    100% {
        opacity: 0;
    }
}

/* line 34, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/zoom-exit/_zoomOut.scss */
.zoomOut {
    -webkit-animation-name: "zoomOut";
    animation-name: "zoomOut";
}

@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

/* line 34, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/zoom-exit/_zoomOutDown.scss */
.zoomOutDown {
    -webkit-animation-name: "zoomOutDown";
    animation-name: "zoomOutDown";
}

@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale3d(0.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
    }
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale3d(0.1) translate3d(-2000px, 0, 0);
        transform: scale3d(0.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}

/* line 32, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/zoom-exit/_zoomOutLeft.scss */
.zoomOutLeft {
    -webkit-animation-name: "zoomOutLeft";
    animation-name: "zoomOutLeft";
}

@-webkit-keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale3d(0.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
    }
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale3d(0.1) translate3d(2000px, 0, 0);
        transform: scale3d(0.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center;
    }
}

/* line 32, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/zoom-exit/_zoomOutRight.scss */
.zoomOutRight {
    -webkit-animation-name: "zoomOutRight";
    animation-name: "zoomOutRight";
}

@-webkit-keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

/* line 34, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/bower_components/animate-sass/animations/zoom-exit/_zoomOutUp.scss */
.zoomOutUp {
    -webkit-animation-name: "zoomOutUp";
    animation-name: "zoomOutUp";
}

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
/* line 18, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/utils/_reset.scss */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, 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;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
/* line 28, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/utils/_reset.scss */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

/* line 31, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/utils/_reset.scss */
body {
    line-height: 1;
}

/* line 34, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/utils/_reset.scss */
ol, ul {
    list-style: none;
}

/* line 37, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/utils/_reset.scss */
blockquote, q {
    quotes: none;
}

/* line 41, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/utils/_reset.scss */
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

/* line 45, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/utils/_reset.scss */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* line 51, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/utils/_reset.scss */
.clearfix:before,
.clearfix:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */
}

/* line 56, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/utils/_reset.scss */
.clearfix:after {
    clear: both;
}

/* Slider */
/* line 3, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/utils/_slick.scss */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

/* line 18, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/utils/_slick.scss */
.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
}

/* line 25, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/utils/_slick.scss */
.slick-list:focus {
    outline: none;
}

/* line 29, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/utils/_slick.scss */
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

/* line 35, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/utils/_slick.scss */
.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* line 43, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/utils/_slick.scss */
.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
}

/* line 50, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/utils/_slick.scss */
.slick-track:before,
.slick-track:after {
    content: "";
    display: table;
}

/* line 55, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/utils/_slick.scss */
.slick-track:after {
    clear: both;
}

/* line 59, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/utils/_slick.scss */
.slick-loading .slick-track {
    visibility: hidden;
}

/* line 63, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/utils/_slick.scss */
.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none;
}

/* line 67, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/utils/_slick.scss */
[dir="rtl"] .slick-slide {
    float: right;
}

/* line 70, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/utils/_slick.scss */
.slick-slide img {
    display: block;
}

/* line 73, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/utils/_slick.scss */
.slick-slide.slick-loading img {
    display: none;
}

/* line 79, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/utils/_slick.scss */
.slick-slide.dragging img {
    pointer-events: none;
}

/* line 83, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/utils/_slick.scss */
.slick-initialized .slick-slide {
    display: block;
}

/* line 87, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/utils/_slick.scss */
.slick-loading .slick-slide {
    visibility: hidden;
}

/* line 91, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/utils/_slick.scss */
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

/* Arrows */
/* line 101, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/utils/_slick.scss */
.slick-prev,
.slick-next {
    position: absolute;
    display: block;
    height: 46px;
    width: 46px;
    line-height: 0px;
    font-size: 0px;
    cursor: pointer;
    background: transparent;
    color: transparent;
    top: 50%;
    border-radius: 50%;
    margin-top: -23px;
    padding: 0;
    border: none;
    outline: none;
}

/* line 119, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/utils/_slick.scss */
.slick-prev {
    left: 5%;
    background-image: url("../images/arrow-prev.png");
    background-color: white;
    background-size: contain;
    transition: -webkit-transform 0.1s ease-out, background-image 0.1s ease-in-out;
    transition: transform 0.1s ease-out, background-image 0.1s ease-in-out;
}

@media screen and (min-width: 1025px) {
    /* line 127, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/utils/_slick.scss */
    .slick-prev:hover {
        -webkit-transform: translateX(-4px);
        transform: translateX(-4px);
        background-image: url("../images/arrow-prev-black.png");
    }
}

/* line 134, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/utils/_slick.scss */
.slick-next {
    right: 5%;
    background-image: url("../images/arrow-next.png");
    background-color: white;
    background-size: contain;
    transition: -webkit-transform 0.1s ease-out, background-image 0.1s ease-in-out;
    transition: transform 0.1s ease-out, background-image 0.1s ease-in-out;
}

@media screen and (min-width: 1025px) {
    /* line 142, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/utils/_slick.scss */
    .slick-next:hover {
        -webkit-transform: translateX(4px);
        transform: translateX(4px);
        background-image: url("../images/arrow-next-black.png");
    }
}

/* Dots */
/* line 151, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/utils/_slick.scss */
.slick-dots {
    position: absolute;
    bottom: 20%;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    width: 100%;
}

/* line 159, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/utils/_slick.scss */
.slick-dots li {
    position: relative;
    display: inline-block;
    height: 9px;
    width: 9px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

/* line 167, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/utils/_slick.scss */
.slick-dots li button {
    display: block;
    height: 9px;
    width: 9px;
    border: none;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.15);
    outline: none;
    line-height: 0px;
    font-size: 0px;
    padding: 5px;
    cursor: pointer;
}

/* line 180, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/utils/_slick.scss */
.slick-dots li.slick-active button {
    background-color: #03f2bd;
}

/* line 1, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/_base.scss */
html {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    height: auto;
}

/* line 6, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/_base.scss */
body {
    font-family: "Calibre", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #202020;
}

/* line 10, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/_base.scss */
body.contact-open {
    overflow: hidden;
}

/* line 15, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/_base.scss */
.row {
    display: block;
}

/* line 20, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/node-bourbon/node_modules/bourbon/app/assets/stylesheets/addons/_clearfix.scss */
.row::after {
    clear: both;
    content: "";
    display: table;
}

/* line 19, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/_base.scss */
.container {
    max-width: 73.75%;
    margin-left: auto;
    margin-right: auto;
}

/* line 20, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/node-bourbon/node_modules/bourbon/app/assets/stylesheets/addons/_clearfix.scss */
.container::after {
    clear: both;
    content: "";
    display: table;
}

@media screen and (max-width: 1440px) {
    /* line 19, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/_base.scss */
    .container {
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    /* line 20, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/node-bourbon/node_modules/bourbon/app/assets/stylesheets/addons/_clearfix.scss */
    .container::after {
        clear: both;
        content: "";
        display: table;
    }
}

@media screen and (max-width: 768px) {
    /* line 19, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/_base.scss */
    .container {
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    /* line 20, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/node-bourbon/node_modules/bourbon/app/assets/stylesheets/addons/_clearfix.scss */
    .container::after {
        clear: both;
        content: "";
        display: table;
    }
}

/* line 31, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/_base.scss */
.hero-container {
    max-width: 61.25%;
    margin-left: auto;
    margin-right: auto;
}

/* line 20, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/node-bourbon/node_modules/bourbon/app/assets/stylesheets/addons/_clearfix.scss */
.hero-container::after {
    clear: both;
    content: "";
    display: table;
}

@media screen and (max-width: 1280px) {
    /* line 31, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/_base.scss */
    .hero-container {
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    /* line 20, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/node-bourbon/node_modules/bourbon/app/assets/stylesheets/addons/_clearfix.scss */
    .hero-container::after {
        clear: both;
        content: "";
        display: table;
    }
}

@media screen and (max-width: 768px) {
    /* line 31, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/_base.scss */
    .hero-container {
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    /* line 20, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/node-bourbon/node_modules/bourbon/app/assets/stylesheets/addons/_clearfix.scss */
    .hero-container::after {
        clear: both;
        content: "";
        display: table;
    }
}

/* line 43, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/_base.scss */
.full-container {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* line 20, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/node-bourbon/node_modules/bourbon/app/assets/stylesheets/addons/_clearfix.scss */
.full-container::after {
    clear: both;
    content: "";
    display: table;
}

@font-face {
    font-family: 'Calibre';
    font-weight: 300;
    src: url("../fonts/Calibre-Light.eot");
    /* IE9 Compat Modes */
    src: url("../fonts/Calibre-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Calibre-Light.woff") format("woff");
    /* Pretty Modern Browsers */
}

@font-face {
    font-family: 'Calibre';
    font-weight: 400;
    src: url("../fonts/Calibre-Regular.eot");
    /* IE9 Compat Modes */
    src: url("../fonts/Calibre-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Calibre-Regular.woff") format("woff");
    /* Pretty Modern Browsers */
}

@font-face {
    font-family: 'Calibre';
    font-weight: 500;
    src: url("../fonts/Calibre-Medium.eot");
    /* IE9 Compat Modes */
    src: url("../fonts/Calibre-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Calibre-Medium.woff") format("woff");
    /* Pretty Modern Browsers */
}

@font-face {
    font-family: 'Calibre';
    font-weight: 600;
    src: url("../fonts/Calibre-Semibold.eot");
    /* IE9 Compat Modes */
    src: url("../fonts/Calibre-Semibold.eot?#iefix") format("embedded-opentype"), url("../fonts/Calibre-Semibold.woff") format("woff");
    /* Pretty Modern Browsers */
}

@font-face {
    font-family: 'Calibre';
    font-weight: 700;
    src: url("../fonts/Calibre-Bold.eot");
    /* IE9 Compat Modes */
    src: url("../fonts/Calibre-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Calibre-Bold.woff") format("woff");
    /* Pretty Modern Browsers */
}

/* line 1, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_nav.scss */
header.global {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: block;
    background-color: transparent;
    z-index: 9;
}

/* line 20, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/node-bourbon/node_modules/bourbon/app/assets/stylesheets/addons/_clearfix.scss */
header.global::after {
    clear: both;
    content: "";
    display: table;
}

/* line 12, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_nav.scss */
header.global .container {
    max-width: 82.125%;
    margin-left: auto;
    margin-right: auto;
}

/* line 20, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/node-bourbon/node_modules/bourbon/app/assets/stylesheets/addons/_clearfix.scss */
header.global .container::after {
    clear: both;
    content: "";
    display: table;
}

@media screen and (max-width: 850px) {
    /* line 12, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_nav.scss */
    header.global .container {
        max-width: 92.1875%;
        margin-left: auto;
        margin-right: auto;
    }

    /* line 20, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/node-bourbon/node_modules/bourbon/app/assets/stylesheets/addons/_clearfix.scss */
    header.global .container::after {
        clear: both;
        content: "";
        display: table;
    }
}

/* line 20, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_nav.scss */
header.global .navigation {
    height: 200px;
    padding: 50px 0;
    z-index: 9;
    transition: all 0.25s ease-in-out;
}

@media screen and (max-width: 767px) {
    /* line 20, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_nav.scss */
    header.global .navigation {
        position: fixed;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        width: 100%;
        top: 0;
        left: 0;
        height: 50px;
        background-color: rgba(0, 0, 0, 0.9);
        z-index: 1000;
        padding: 12px 8%;
    }
}

/* line 38, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_nav.scss */
header.global .navigation .logo {
    display: block;
    float: left;
    width: 148px;
    height: 104px;
    background-image: url("../images/logo.png");
    background-image: url("../images/logo.svg");
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center left;
    background-size: contain;
    text-indent: -9999px;
}

@media screen and (max-width: 1024px) {
    /* line 38, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_nav.scss */
    header.global .navigation .logo {
        width: 115px;
        height: 80px;
    }
}

@media screen and (max-width: 767px) {
    /* line 38, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_nav.scss */
    header.global .navigation .logo {
        background-image: url("../images/logo-footer.png");
        background-image: url("../images/logo-footer.svg");
        width: 47px;
        height: 27px;
    }
}

/* line 64, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_nav.scss */
header.global .navigation .hotdog {
    padding: 7px 0;
    float: right;
    cursor: pointer;
    display: none;
}

@media screen and (max-width: 767px) {
    /* line 64, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_nav.scss */
    header.global .navigation .hotdog {
        display: block;
    }
}

/* line 74, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_nav.scss */
header.global .navigation .hotdog .line-wrapper {
    transition: -webkit-transform 300ms;
    transition: transform 300ms;
}

/* line 79, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_nav.scss */
header.global .navigation .hotdog .line1,
header.global .navigation .hotdog .line2 {
    width: 30px;
    height: 3px;
    margin: 0 0 5px 0;
    display: block;
    border-bottom: 2px solid white;
    transition: -webkit-transform 300ms;
    transition: transform 300ms;
}

/* line 89, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_nav.scss */
header.global .navigation .hotdog.is-open .line-wrapper {
    -webkit-transform: rotate(45deg) translateY(3px);
    transform: rotate(45deg) translateY(3px);
    -ms-transform: translateY(3px) rotate(45deg);
}

/* line 94, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_nav.scss */
header.global .navigation .hotdog.is-open .line2 {
    -webkit-transform: translateY(-7px) rotate(90deg);
    transform: translateY(-7px) rotate(90deg);
    -ms-transform: translateY(-7px) rotate(90deg);
}

/* line 101, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_nav.scss */
header.global .navigation .nav-items {
    font-family: "Calibre", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    text-align: right;
    padding: 40px 55px 40px 0;
    transition: all 0.25s ease-in-out;
}

@media screen and (max-width: 1024px) {
    /* line 101, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_nav.scss */
    header.global .navigation .nav-items {
        padding: 30px 55px 30px 0;
    }
}

@media screen and (max-width: 1024px) {
    /* line 101, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_nav.scss */
    header.global .navigation .nav-items {
        padding-right: 0;
    }
}

@media screen and (max-width: 767px) {
    /* line 101, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_nav.scss */
    header.global .navigation .nav-items {
        position: absolute;
        left: 0;
        top: 50px;
        width: 100%;
        padding: 0;
        height: 0;
        overflow: hidden;
        transition: height 0.5s ease-in-out;
        background-color: rgba(0, 0, 0, 0.9);
    }

    /* line 127, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_nav.scss */
    header.global .navigation .nav-items.is-open {
        height: 190px;
    }
}

/* line 132, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_nav.scss */
header.global .navigation .nav-items a {
    display: inline;
    margin-right: 28px;
    color: white;
    letter-spacing: 1px;
    text-decoration: none;
    padding-bottom: 4px;
    position: relative;
    overflow: hidden;
}

/* line 142, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_nav.scss */
header.global .navigation .nav-items a:before {
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 0;
    background: white;
    height: 2px;
    transition-property: left, right;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
}

/* line 159, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_nav.scss */
header.global .navigation .nav-items a:hover:before,
header.global .navigation .nav-items a:focus:before,
header.global .navigation .nav-items a:active:before {
    left: 0;
    right: 0;
}

@media screen and (max-width: 767px) {
    /* line 132, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_nav.scss */
    header.global .navigation .nav-items a {
        display: block;
        margin: 0;
        text-align: center;
        line-height: 2;
    }
}

/* line 174, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_nav.scss */
header.global .navigation .nav-items .social-wrapper {
    display: inline;
}

@media screen and (max-width: 767px) {
    /* line 174, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_nav.scss */
    header.global .navigation .nav-items .social-wrapper {
        display: block;
        text-align: center;
    }
}

/* line 182, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_nav.scss */
header.global .navigation .nav-items .social-wrapper .social {
    margin-right: 15px;
}

/* line 185, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_nav.scss */
header.global .navigation .nav-items .social-wrapper .social:last-of-type {
    margin-right: 0;
}

/* line 189, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_nav.scss */
header.global .navigation .nav-items .social-wrapper .social svg {
    vertical-align: middle;
}

/* line 193, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_nav.scss */
header.global .navigation .nav-items .social-wrapper .social img {
    width: 15px;
    margin-bottom: -6px;
}

@media screen and (max-width: 767px) {
    /* line 182, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_nav.scss */
    header.global .navigation .nav-items .social-wrapper .social {
        display: inline;
    }

    /* line 201, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_nav.scss */
    header.global .navigation .nav-items .social-wrapper .social:last-of-type {
        margin: 0;
    }
}

/* line 210, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_nav.scss */
header.global.shorten {
    background-color: black;
    z-index: 99;
}

/* line 214, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_nav.scss */
header.global.shorten .navigation {
    height: 75px;
    padding: 18px 0;
}

/* line 218, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_nav.scss */
header.global.shorten .navigation .logo {
    width: 60px;
    height: 40px;
    background-image: url("../images/logo-short-nav.png");
    background-image: url("../images/logo-short-nav.svg");
}

/* line 225, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_nav.scss */
header.global.shorten .navigation .nav-items {
    padding: 10px 55px 10px 0;
}

@media screen and (max-width: 1024px) {
    /* line 225, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_nav.scss */
    header.global.shorten .navigation .nav-items {
        padding-right: 0;
    }
}

/* line 239, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_nav.scss */
header.global.privacy .navigation,
header.global.terms .navigation {
    position: fixed;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    width: 100%;
    top: 0;
    left: 0;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    padding: 12px 8%;
}

/* line 250, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_nav.scss */
header.global.privacy .navigation .logo,
header.global.terms .navigation .logo {
    background-image: url("../images/logo-footer.png");
    background-image: url("../images/logo-footer.svg");
    width: 47px;
    height: 27px;
}

/* line 257, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_nav.scss */
header.global.privacy .navigation .hotdog,
header.global.terms .navigation .hotdog {
    display: block;
}

/* line 261, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_nav.scss */
header.global.privacy .navigation .nav-items,
header.global.terms .navigation .nav-items {
    position: absolute;
    left: 0;
    top: 50px;
    width: 100%;
    padding: 0;
    height: 0;
    overflow: hidden;
    transition: height 0.5s ease-in-out;
    background-color: rgba(0, 0, 0, 0.9);
}

/* line 272, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_nav.scss */
header.global.privacy .navigation .nav-items.is-open,
header.global.terms .navigation .nav-items.is-open {
    height: 170px;
}

/* line 276, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_nav.scss */
header.global.privacy .navigation .nav-items a,
header.global.terms .navigation .nav-items a {
    display: block;
    margin: 0;
    text-align: center;
    line-height: 2;
}

/* line 283, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_nav.scss */
header.global.privacy .navigation .nav-items .social-wrapper,
header.global.terms .navigation .nav-items .social-wrapper {
    display: block;
    text-align: center;
}

/* line 287, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_nav.scss */
header.global.privacy .navigation .nav-items .social-wrapper .social,
header.global.terms .navigation .nav-items .social-wrapper .social {
    display: inline;
}

/* line 290, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_nav.scss */
header.global.privacy .navigation .nav-items .social-wrapper .social:last-of-type,
header.global.terms .navigation .nav-items .social-wrapper .social:last-of-type {
    margin: 0;
}

/* line 300, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_nav.scss */
.home .navigation {
    animation-name: fadeInDown;
    -webkit-animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

/* line 1, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_footer.scss */
footer.global {
    display: block;
    background-color: black;
    letter-spacing: 1px;
}

/* line 20, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/node-bourbon/node_modules/bourbon/app/assets/stylesheets/addons/_clearfix.scss */
footer.global::after {
    clear: both;
    content: "";
    display: table;
}

@media screen and (max-width: 600px) {
    /* line 1, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_footer.scss */
    footer.global {
        position: relative;
    }
}

/* line 10, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_footer.scss */
footer.global .main-footer {
    display: block;
    padding: 75px 0;
    font-family: "Calibre", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 700;
}

/* line 20, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/node-bourbon/node_modules/bourbon/app/assets/stylesheets/addons/_clearfix.scss */
footer.global .main-footer::after {
    clear: both;
    content: "";
    display: table;
}

/* line 15, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_footer.scss */
footer.global .main-footer .logo {
    display: inline-block;
    float: left;
    width: 60px;
    height: 40px;
    margin-right: 140px;
    background-image: url("../images/logo-footer.png");
    background-image: url("../images/logo-footer.svg");
    background-repeat: no-repeat;
    background-position: center left;
    background-size: contain;
}

@media screen and (max-width: 1213px) {
    /* line 15, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_footer.scss */
    footer.global .main-footer .logo {
        margin-right: 100px;
    }
}

@media screen and (max-width: 1163px) {
    /* line 15, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_footer.scss */
    footer.global .main-footer .logo {
        margin-right: 50px;
    }
}

/* line 37, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_footer.scss */
footer.global .main-footer .links {
    display: inline-block;
    float: left;
    padding: 11px 0;
}

@media screen and (max-width: 480px) {
    /* line 37, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_footer.scss */
    footer.global .main-footer .links {
        display: block;
        clear: both;
        margin-top: 30px;
    }
}

/* line 48, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_footer.scss */
footer.global .main-footer .links ul li {
    display: inline;
    margin-right: 27px;
}

/* line 52, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_footer.scss */
footer.global .main-footer .links ul li a {
    color: white;
    text-transform: uppercase;
    text-decoration: none;
    padding-bottom: 4px;
    position: relative;
    overflow: hidden;
}

/* line 60, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_footer.scss */
footer.global .main-footer .links ul li a:before {
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 0;
    background: white;
    height: 2px;
    transition-property: left, right;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
}

/* line 77, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_footer.scss */
footer.global .main-footer .links ul li a:hover:before,
footer.global .main-footer .links ul li a:focus:before,
footer.global .main-footer .links ul li a:active:before {
    left: 0;
    right: 0;
}

/* line 85, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_footer.scss */
footer.global .main-footer .links .social-wrapper {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 2px;
}

/* line 90, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_footer.scss */
footer.global .main-footer .links .social-wrapper .social {
    margin-right: 15px;
}

/* line 93, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_footer.scss */
footer.global .main-footer .links .social-wrapper .social:last-of-type {
    margin-right: 0;
}

/* line 97, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_footer.scss */
footer.global .main-footer .links .social-wrapper .social svg {
    vertical-align: middle;
}

/* line 101, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_footer.scss */
footer.global .main-footer .links .social-wrapper .social img {
    width: 15px;
    margin-bottom: -6px;
}

/* line 108, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_footer.scss */
footer.global .main-footer .links .links-mobile {
    display: inline-block;
}

@media screen and (max-width: 1101px) {
    /* line 108, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_footer.scss */
    footer.global .main-footer .links .links-mobile {
        display: block;
        margin-top: 25px;
    }
}

/* line 118, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_footer.scss */
footer.global .main-footer .newsletter {
    display: inline-block;
    float: right;
}

@media screen and (max-width: 845px) {
    /* line 118, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_footer.scss */
    footer.global .main-footer .newsletter {
        display: block;
        clear: both;
        float: left;
        margin-top: 30px;
    }
}

/* line 129, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_footer.scss */
footer.global .main-footer .newsletter .form-input {
    width: 230px;
    height: 42px;
    font-family: "Calibre", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    color: white;
    background-color: black;
    padding: 13px 17px;
    border: 1px solid white;
    vertical-align: middle;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
}

@media screen and (max-width: 373px) {
    /* line 129, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_footer.scss */
    footer.global .main-footer .newsletter .form-input {
        width: 185px;
    }
}

/* line 3, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/node-bourbon/node_modules/bourbon/app/assets/stylesheets/css3/_placeholder.scss */
footer.global .main-footer .newsletter .form-input::-webkit-input-placeholder {
    color: white;
}

/* line 3, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/node-bourbon/node_modules/bourbon/app/assets/stylesheets/css3/_placeholder.scss */
footer.global .main-footer .newsletter .form-input::-moz-placeholder {
    color: white;
}

/* line 3, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/node-bourbon/node_modules/bourbon/app/assets/stylesheets/css3/_placeholder.scss */
footer.global .main-footer .newsletter .form-input:-moz-placeholder {
    color: white;
}

/* line 3, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/node-bourbon/node_modules/bourbon/app/assets/stylesheets/css3/_placeholder.scss */
footer.global .main-footer .newsletter .form-input:-ms-input-placeholder {
    color: white;
}

/* line 151, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_footer.scss */
footer.global .main-footer .newsletter .btn-green {
    width: 102px;
    height: 42px;
    background-color: #03f2bd;
    color: black;
    font-family: "Calibre", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    border-radius: 0;
    border: 1px solid #03f2bd;
    padding: 13px 24px;
    vertical-align: middle;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    cursor: pointer;
    transition: background-color 0.2s linear;
}

/* line 168, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_footer.scss */
footer.global .main-footer .newsletter .btn-green:hover {
    background-color: #02e5b4;
}

@media screen and (max-width: 373px) {
    /* line 151, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_footer.scss */
    footer.global .main-footer .newsletter .btn-green {
        width: 98px;
    }
}

/* line 179, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_footer.scss */
footer.global .subfooter {
    display: block;
    padding: 20px 0;
    font-family: "Calibre", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 500;
    color: #4d4d4d;
    font-size: 14px;
    text-transform: uppercase;
}

/* line 20, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/node-bourbon/node_modules/bourbon/app/assets/stylesheets/addons/_clearfix.scss */
footer.global .subfooter::after {
    clear: both;
    content: "";
    display: table;
}

/* line 187, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_footer.scss */
footer.global .subfooter .subcopy {
    display: inline-block;
}

/* line 190, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_footer.scss */
footer.global .subfooter .subcopy li {
    list-style: none;
    display: inline-block;
}

/* line 194, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_footer.scss */
footer.global .subfooter .subcopy li a {
    color: #4d4d4d;
    text-decoration: none;
}

/* line 198, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_footer.scss */
footer.global .subfooter .subcopy li a:first-of-type {
    margin-right: 21px;
}

@media screen and (max-width: 340px) {
    /* line 190, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_footer.scss */
    footer.global .subfooter .subcopy li {
        margin-top: 10px;
    }
}

@media screen and (max-width: 1070px) {
    /* line 207, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_footer.scss */
    footer.global .subfooter .subcopy li.copyright {
        display: block;
        clear: both;
        margin-top: 10px;
    }
}

/* line 218, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_footer.scss */
footer.global .subfooter .logos {
    display: inline-block;
    float: right;
    margin-right: 0;
}

@media screen and (min-width: 1071px) and (max-width: 1250px) {
    /* line 218, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_footer.scss */
    footer.global .subfooter .logos {
        margin-right: 0;
    }
}

@media screen and (max-width: 1070px) {
    /* line 218, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_footer.scss */
    footer.global .subfooter .logos {
        margin-right: 142px;
    }
}

@media screen and (max-width: 845px) {
    /* line 218, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_footer.scss */
    footer.global .subfooter .logos {
        margin-right: 0;
    }
}

@media screen and (max-width: 600px) {
    /* line 218, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_footer.scss */
    footer.global .subfooter .logos {
        position: absolute;
        top: 70%;
        left: 5%;
    }
}

@media screen and (max-width: 600px) {
    /* line 218, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_footer.scss */
    footer.global .subfooter .logos {
        top: 74%;
    }
}

/* line 245, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_footer.scss */
footer.global .subfooter .logos img {
    vertical-align: top;
    max-width: 100%;
}

/* line 249, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_footer.scss */
footer.global .subfooter .logos img:first-of-type {
    margin-right: 21px;
}

/* line 2, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
header .contact,
footer .contact {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: black;
    z-index: 100;
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transition: -webkit-transform 0.4s ease-in-out, visibility 0s 0.4s;
    transition: transform 0.4s ease-in-out, visibility 0s 0.4s;
    overflow: auto;
    padding-bottom:50px;
}

/* line 15, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
header .contact.open,
footer .contact.open {
    visibility: visible;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    -ms-transform: translateY(0%);
    transition: -webkit-transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out;
}

/* line 22, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
header .contact-close,
footer .contact-close {
    position: absolute;
    right: 15%;
    top: 10%;
    padding-top: 10px;
    cursor: pointer;
    z-index: 500;
}

@media screen and (max-width: 767px) {
    /* line 22, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
    header .contact-close,
    footer .contact-close {
        top: 15%;
    }
}

@media screen and (max-width: 450px) {
    /* line 22, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
    header .contact-close,
    footer .contact-close {
        top: 4%;
        right: 8%;
    }
}

@media screen and (max-height: 600px) {
    /* line 22, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
    header .contact-close,
    footer .contact-close {
        top: 5%;
    }
}

/* line 44, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
header .contact-close .line-1,
header .contact-close .line-2,
footer .contact-close .line-1,
footer .contact-close .line-2 {
    width: 30px;
    height: 2px;
    margin: 0 0 5px 0;
    display: block;
    border-bottom: 1px solid white;
}

/* line 51, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
header .contact-close .line-1,
footer .contact-close .line-1 {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
}

/* line 56, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
header .contact-close .line-2,
footer .contact-close .line-2 {
    -webkit-transform: translateY(-6px) rotate(135deg);
    transform: translateY(-6px) rotate(135deg);
    -ms-transform: translateY(-6px) rotate(135deg);
}

/* line 62, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
header .contact-content,
footer .contact-content {
	margin:0 auto;
    z-index: 200;
    /* padding: 0 5% 0 20%; */
    max-width: 980px;
    width:100%;
    overflow: hidden;
    padding-bottom:50px;
    padding-left:30px;
    padding-right:30px;
    padding-top:8%;
}

@media screen and (max-width: 1280px) {
    /* line 62, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
    header .contact-content,
    footer .contact-content {

    }
}

@media screen and (max-width: 1024px) {
    /* line 62, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
    header .contact-content,
    footer .contact-content {

    }
}

@media screen and (max-width: 768px) {
    /* line 62, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
    header .contact-content,
    footer .contact-content {

    }
}

@media screen and (max-width: 418px) {
    /* line 62, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
    header .contact-content,
    footer .contact-content {

    }
}

@media screen and (max-height:850px) {
    header .contact-content,
    footer .contact-content {
		padding-top:5%;
    }	
}

@media screen and (max-height: 800px) {
    /* line 62, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
    header .contact-content,
    footer .contact-content {
		padding-top:2%
    }
}

@media screen and (max-height: 700px) {
    /* line 62, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
    header .contact-content,
    footer .contact-content {
		padding-top:5%;
    }
}

/* line 98, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
header .contact-content h2,
footer .contact-content h2 {
    font-family: "A2 60 Display Regular", 'Arial Black', Arial, Helvetica, Verdana, sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 60px;
    color: #03f2bd;
}

@media screen and (max-height: 730px) {
    /* line 98, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
    header .contact-content h2,
    footer .contact-content h2 {
        font-size: 55px;
    }
}

@media screen and (max-width: 1024px) {
    /* line 98, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
    header .contact-content h2,
    footer .contact-content h2 {
        font-size: 55px;
    }
}

@media screen and (max-width: 768px) {
    /* line 98, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
    header .contact-content h2,
    footer .contact-content h2 {
        font-size: 50px;
    }
}

@media screen and (max-width: 480px) {
    /* line 98, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
    header .contact-content h2,
    footer .contact-content h2 {
        font-size: 45px;
    }
}

@media screen and (max-width: 418px) {
    /* line 98, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
    header .contact-content h2,
    footer .contact-content h2 {
        font-size: 40px;
    }
}

@media screen and (max-width: 350px) {
    /* line 98, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
    header .contact-content h2,
    footer .contact-content h2 {
        font-size: 35px;
    }
}

@media screen and (max-height: 450px) {
    /* line 98, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
    header .contact-content h2,
    footer .contact-content h2 {
        font-size: 35px;
    }
}

/* line 132, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
header .contact-content p,
footer .contact-content p {
    font-size: 24px;
    color: white;
    margin: 30px 0;
}

@media screen and (max-height: 730px) {
    /* line 132, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
    header .contact-content p,
    footer .contact-content p {
        font-size: 21px;
        margin: 20px 0;
    }
}

@media screen and (max-width: 1024px) {
    /* line 132, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
    header .contact-content p,
    footer .contact-content p {
        padding-right: 12%;
        font-size: 22px;
        margin: 25px 0;
    }
}

@media screen and (max-width: 768px) {
    /* line 132, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
    header .contact-content p,
    footer .contact-content p {
        font-size: 20px;
    }
}

@media screen and (max-width: 736px) {
    /* line 132, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
    header .contact-content p,
    footer .contact-content p {
        margin: 15px 0;
    }
}

@media screen and (max-width: 480px) {
    /* line 132, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
    header .contact-content p,
    footer .contact-content p {
        font-size: 18px;
        padding-right: 5%;
    }
}

@media screen and (max-width: 350px) {
    /* line 132, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
    header .contact-content p,
    footer .contact-content p {
        padding-right: 0;
    }
}

@media screen and (max-height: 600px) {
    /* line 132, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
    header .contact-content p,
    footer .contact-content p {
        font-size: 16px;
    }
}

/* line 171, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
header .contact-content hr,
footer .contact-content hr {
    opacity: 0.15;
    margin: 0;
}

@media screen and (max-width: 1115px) {
    /* line 171, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
    header .contact-content hr,
    footer .contact-content hr {
        width: 90%;
    }
}

@media screen and (max-width: 480px) {
    /* line 171, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
    header .contact-content hr,
    footer .contact-content hr {
        width: 95%;
    }
}

/* line 185, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
header .contact-content li,
footer .contact-content li {
    list-style: none;
    font-family: "A2 60 Display Regular", 'Arial Black', Arial, Helvetica, Verdana, sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 18px;
    color: white;
    display: inline-block;
    margin-right:15px;
    padding-right:15px;
    border-right:1px solid #333;
}

header .contact-content ul.contact-info li:last-child,
footer .contact-content ul.contact-info li:last-child
 {
	border-right:0;
}

header .contact-content ul.contact-info, 
footer .contact-content ul.contact-info {
	float:left;
}

@media screen and (max-width:1000px) {
	header .contact-content ul.contact-info, 
	footer .contact-content ul.contact-info {
		float:none;
	}	
}

@media screen and (max-height: 730px) {
    /* line 185, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
    header .contact-content li,
    footer .contact-content li {

    }
}

@media screen and (max-width: 1024px) {
    /* line 185, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
    header .contact-content li,
    footer .contact-content li {

    }
}

@media screen and (max-width: 768px) {
    /* line 185, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
    header .contact-content li,
    footer .contact-content li {
		border-right:0;
		margin-bottom:5px;
    }
}

@media screen and (max-width: 736px) {
    /* line 185, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
    header .contact-content li,
    footer .contact-content li {

    }
}

@media screen and (max-height: 600px) {
    /* line 185, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
    header .contact-content li,
    footer .contact-content li {

    }
}

/* line 216, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
header .contact-content li a,
footer .contact-content li a {
    font-family: "Calibre", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 500;
    color: white;
    text-decoration: none;
}

@media screen and (max-height: 730px) {
    /* line 216, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
    header .contact-content li a,
    footer .contact-content li a {

    }
}

@media screen and (max-width: 1024px) {
    /* line 216, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
    header .contact-content li a,
    footer .contact-content li a {

    }
}

@media screen and (max-width: 768px) {
    /* line 216, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
    header .contact-content li a,
    footer .contact-content li a {

    }
}

@media screen and (max-width: 629px) {
    /* line 216, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
    header .contact-content li a,
    footer .contact-content li a {

    }
}

@media screen and (max-width: 480px) {
    /* line 216, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
    header .contact-content li a,
    footer .contact-content li a {

    }
}

@media screen and (max-height: 600px) {
    /* line 216, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
    header .contact-content li a,
    footer .contact-content li a {

    }
}

/* line 252, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
header .contact-content .social-wrapper,
footer .contact-content .social-wrapper {
    float:right;
    position:relative;
    top:-5px;
}

@media screen and (max-height: 600px) {
    /* line 252, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
    header .contact-content .social-wrapper,
    footer .contact-content .social-wrapper {
        margin-top: 20px;
    }
}
@media screen and (max-width:1000px) {
    header .contact-content .social-wrapper,
    footer .contact-content .social-wrapper {
        float:none;
        margin-top:30px;
        text-align: center;
    }	
}

/* line 259, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/global/_contact.scss */
header .contact-content .social-wrapper a,
footer .contact-content .social-wrapper a {
    margin-right: 15px;
}

/* line 1, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
.home .hero {
    background-image: url("../images/dcg-bgv1.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding-top: 204px;
    color: white;
    overflow: hidden;
    height: 100vh;
    position: relative;
}

@media screen and (max-width: 767px) {
    /* line 1, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
    .home .hero {
        height: 500px;
        top: 0;
        padding-top: 40px;
    }
}

@media screen and (max-width: 600px) {
    /* line 1, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
    .home .hero {
        padding: 90px 0;
        height: 350px;
    }
}

/* line 23, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
.home .hero #hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}

/* line 29, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
.home .hero .hero-container {
    position: absolute;
    top: 42%;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
}

/* line 20, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/node-bourbon/node_modules/bourbon/app/assets/stylesheets/addons/_clearfix.scss */
.home .hero .hero-container::after {
    clear: both;
    content: "";
    display: table;
}

@media screen and (max-width: 2000px) {
    /* line 29, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
    .home .hero .hero-container {
        max-width: 61.25%;
        margin-left: auto;
        margin-right: auto;
    }

    /* line 20, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/node-bourbon/node_modules/bourbon/app/assets/stylesheets/addons/_clearfix.scss */
    .home .hero .hero-container::after {
        clear: both;
        content: "";
        display: table;
    }
}

@media screen and (max-width: 1560px) {
    /* line 29, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
    .home .hero .hero-container {
        max-width: 70%;
        margin-left: auto;
        margin-right: auto;
    }

    /* line 20, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/node-bourbon/node_modules/bourbon/app/assets/stylesheets/addons/_clearfix.scss */
    .home .hero .hero-container::after {
        clear: both;
        content: "";
        display: table;
    }
}

@media screen and (max-width: 1350px) {
    /* line 29, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
    .home .hero .hero-container {
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    /* line 20, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/node-bourbon/node_modules/bourbon/app/assets/stylesheets/addons/_clearfix.scss */
    .home .hero .hero-container::after {
        clear: both;
        content: "";
        display: table;
    }
}

@media screen and (max-width: 1175px) {
    /* line 29, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
    .home .hero .hero-container {
        max-width: 85%;
        margin-left: auto;
        margin-right: auto;
    }

    /* line 20, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/node-bourbon/node_modules/bourbon/app/assets/stylesheets/addons/_clearfix.scss */
    .home .hero .hero-container::after {
        clear: both;
        content: "";
        display: table;
    }
}

@media screen and (max-width: 1100px) {
    /* line 29, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
    .home .hero .hero-container {
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    /* line 20, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/node-bourbon/node_modules/bourbon/app/assets/stylesheets/addons/_clearfix.scss */
    .home .hero .hero-container::after {
        clear: both;
        content: "";
        display: table;
    }
}

@media screen and (max-width: 1024px) {
    /* line 29, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
    .home .hero .hero-container {
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
    }

    /* line 20, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/node-bourbon/node_modules/bourbon/app/assets/stylesheets/addons/_clearfix.scss */
    .home .hero .hero-container::after {
        clear: both;
        content: "";
        display: table;
    }
}

@media screen and (max-width: 768px) {
    /* line 29, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
    .home .hero .hero-container {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    /* line 20, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/node-bourbon/node_modules/bourbon/app/assets/stylesheets/addons/_clearfix.scss */
    .home .hero .hero-container::after {
        clear: both;
        content: "";
        display: table;
    }
}

@media screen and (max-width: 600px) {
    /* line 29, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
    .home .hero .hero-container {
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    /* line 20, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/node-bourbon/node_modules/bourbon/app/assets/stylesheets/addons/_clearfix.scss */
    .home .hero .hero-container::after {
        clear: both;
        content: "";
        display: table;
    }
}

@media screen and (max-height: 700px) {
    /* line 29, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
    .home .hero .hero-container {
        top: 42%;
    }
}

/* line 76, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
.home .hero .header {
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
}

@media screen and (max-width: 600px) {
    /* line 76, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
    .home .hero .header {
    }
}

@media screen and (max-height: 700px) {
    /* line 76, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
    .home .hero .header {
        width: 80%;
        margin: 0 auto;
    }
}

/* line 87, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
.home .hero .header .header-one {
    position: relative;
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%;
    height: auto;
}

/* line 89, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/bourbon-neat/app/assets/stylesheets/grid/_span-columns.scss */
.home .hero .header .header-one:last-child {
    margin-right: 0;
}

/* line 92, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
.home .hero .header .header-one .copy-one {
    width: 502px;
    margin-left: 16%;
    height: 100px;
    background-image: url("../images/home-hero-NEW_1.png");
    background-image: url("../images/home-hero-NEW_1.svg");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    z-index: 5;
    position: relative;
}

@media screen and (max-width: 992px) {
    /* line 92, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
    .home .hero .header .header-one .copy-one {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 52.65959%;
    }

    /* line 89, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/bourbon-neat/app/assets/stylesheets/grid/_span-columns.scss */
    .home .hero .header .header-one .copy-one:last-child {
        margin-right: 0;
    }
}

@media screen and (max-width: 1280px) {
    /* line 92, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
    .home .hero .header .header-one .copy-one {
        height: 89px;
    }
}

@media screen and (max-width: 768px) {
    /* line 92, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
    .home .hero .header .header-one .copy-one {
        height: 76px;
    }
}

@media screen and (max-width: 700px) {
    /* line 92, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
    .home .hero .header .header-one .copy-one {
        height: 69px;
    }
}

@media screen and (max-height: 700px) {
    /* line 92, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
    .home .hero .header .header-one .copy-one {
        height: 68px;
        width: 435px;
    }
}

/* line 125, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
.home .hero .header .green-box1 {
    position: absolute;
    z-index: 4;
    top: -20px;
    right: 6%;
    width: 52px;
    height: 49px;
    background-color: rgba(3, 242, 189, 0.2);
    background-image: linear-gradient(135deg, rgba(3, 242, 189, 0.2) 0%, #03f2bd 100%);
}

@media screen and (max-width: 1024px) {
    /* line 125, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
    .home .hero .header .header-one .green-box1 {
        right: 28%;
    }
}

@media screen and (max-width: 992px) {
    /* line 125, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
    .home .hero .header .header-one .green-box1 {
        right: 26%;
    }
}

@media screen and (max-width: 700px) {
    /* line 125, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
    .home .hero .header .header-one .green-box1 {
        width: 68px;
        height: 71px;
    }
}

@media screen and (max-height: 700px) {
    /* line 125, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
    .home .hero .header .header-one .green-box1 {
        right: 26%;
    }
}

/* line 154, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
.home .hero .header .header-two {
    position: relative;
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%;
    height: auto;
}

/* line 89, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/bourbon-neat/app/assets/stylesheets/grid/_span-columns.scss */
.home .hero .header .header-two:last-child {
    margin-right: 0;
}

/* line 159, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
.home .hero .header .header-two .copy-two {
    width: 925px;
    height: 89px;
    margin-top: 10px;
    margin-bottom: -5px;
    margin-left: 2%;
    background-image: url("../images/home-hero-NEW_2.png");
    background-image: url("../images/home-hero-NEW_2.svg");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    z-index: 5;
    position: relative;
}

@media screen and (max-width: 992px) {
    /* line 159, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
    .home .hero .header .header-two .copy-two {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 91.4702%;
        margin-top: 0;
        margin-bottom: -15px;
    }

    /* line 89, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/bourbon-neat/app/assets/stylesheets/grid/_span-columns.scss */
    .home .hero .header .header-two .copy-two:last-child {
        margin-right: 0;
    }
}

@media screen and (min-width: 600px) and (max-width: 700px) {
    /* line 159, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
    .home .hero .header .header-two .copy-two {
        margin-top: -10px;
        margin-bottom: -25px;
    }
}

@media screen and (max-height: 700px) {
    /* line 159, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
    .home .hero .header .header-two .copy-two {
        width: 745px;
    }
}

/* line 189, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
.home .hero .header .header-three {
    position: relative;
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%;
    height: auto;
}

/* line 89, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/bourbon-neat/app/assets/stylesheets/grid/_span-columns.scss */
.home .hero .header .header-three:last-child {
    margin-right: 0;
}

/* line 194, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
.home .hero .header .header-three .copy-three {
    width: 500px;
    margin-left: 33%;
    position: relative;
    z-index: 5;
    height: 74px;
    background-image: url("../images/home-hero-NEW_3.png");
    background-image: url("../images/home-hero-NEW_3.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

@media screen and (max-width: 992px) {
    /* line 194, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
    .home .hero .header .header-three .copy-three {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 48.82117%;
    }

    /* line 89, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/bourbon-neat/app/assets/stylesheets/grid/_span-columns.scss */
    .home .hero .header .header-three .copy-three:last-child {
        margin-right: 0;
    }
}

@media screen and (max-height: 700px) {
    /* line 194, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
    .home .hero .header .header-three .copy-three {
        height: 55px;
    }
}

/* line 216, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
.home .hero .header .green-box2 {
    position: absolute;
    top: -30px;
    left: 2%;
    width: 73px;
    height: 76px;
    opacity: 1;
    background-color: rgba(3, 242, 189, 0.45);
    background-color: rgba(3, 242, 189, 0.2);
    background-image: linear-gradient(135deg, rgba(3, 242, 189, 0.2) 0%, #03f2bd 100%);
    z-index: 4;
}

/* line 230, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
.home .hero .header .green-box3 {
    position: absolute;
    bottom: -107px;
    right: 21%;
    width: 137px;
    height: 140px;
    opacity: 1;
    background-color: rgba(3, 242, 189, 0.2);
    background-image: linear-gradient(135deg, rgba(3, 242, 189, 0.2) 0%, #03f2bd 100%);
    z-index: 4;
}

@media screen and (max-width: 992px) {
    /* line 230, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
    .home .hero .header .header-three .green-box3 {
        width: 127px;
        height: 130px;
        bottom: -99px;
    }
}

@media screen and (max-width: 700px) {
    /* line 230, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
    .home .hero .header .header-three .green-box3 {
        width: 117px;
        height: 120px;
        bottom: -89px;
        right: 10%;
    }
}

@media screen and (max-height: 700px) {
    /* line 230, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
    .home .hero .header .header-three .green-box3 {
        right: -1%;
    }
}

/* line 260, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
.home .hero .arrow {
    position: absolute;
    bottom: 5%;
    left: 50%;
    margin-left: -23px;
}

@media screen and (max-width: 600px) {
    /* line 260, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
    .home .hero .arrow {
        display: none;
    }
}

@media screen and (max-height: 700px) {
    /* line 260, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
    .home .hero .arrow {
        display: none;
    }
}

/* line 282, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
.home .hero .arrow:hover img {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
}

/* line 288, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
.home .hero .header-mobile {
    display: none;
}

@media screen and (max-width: 600px) {
    /* line 288, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
    .home .hero .header-mobile {
        display: block;
    }
}

/* line 295, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
.home .hero .header-mobile h1 {
    position: relative;
    font-family: "A2 60 Display Regular", 'Arial Black', Arial, Helvetica, Verdana, sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 40px;
    line-height: 1.1;
}

/* line 301, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
.home .hero .header-mobile h1:first-of-type {
    width: 240px;
}

/* line 304, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
.home .hero .header-mobile h1:first-of-type:after {
    content: '';
    position: absolute;
    top: -7px;
    right: -27px;
    width: 33px;
    height: 33px;
    background-color: rgba(3, 242, 189, 0.45);
    background-color: rgba(3, 242, 189, 0.25);
    background-image: linear-gradient(45deg, rgba(3, 242, 189, 0.25) 0%, #03f2bd 100%,,,,,,,,);
    z-index: -1;
}

@media screen and (min-width: 535px) and (max-width: 599px) {
    /* line 301, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
    .home .hero .header-mobile h1:first-of-type {
        margin-left: 33px;
    }

    /* line 319, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
    .home .hero .header-mobile h1:first-of-type:after {
        width: 15px;
        height: 15px;
        top: -6px;
        right: -10px;
        background-color: rgba(3, 242, 189, 0.25);
        background-image: linear-gradient(295deg, rgba(3, 242, 189, 0.25) 0%, #03f2bd 100%,,,,,,,,);
    }
}

/* line 329, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
.home .hero .header-mobile h1:last-of-type {
    width: 218px;
}

/* line 332, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
.home .hero .header-mobile h1:last-of-type:before {
    content: '';
    position: absolute;
    top: 1px;
    left: -10px;
    width: 15px;
    height: 15px;
    background-color: rgba(3, 242, 189, 0.45);
    background-color: rgba(3, 242, 189, 0.25);
    background-image: linear-gradient(295deg, rgba(3, 242, 189, 0.25) 0%, #03f2bd 100%,,,,,,,,);
    z-index: -1;
}

/* line 343, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
.home .hero .header-mobile h1:last-of-type:after {
    content: '';
    position: absolute;
    bottom: -24px;
    right: -28px;
    width: 40px;
    height: 40px;
    background-color: rgba(3, 242, 189, 0.45);
    background-color: rgba(3, 242, 189, 0.3);
    background-image: linear-gradient(135deg, rgba(3, 242, 189, 0.3) 0%, #03f2bd 100%,,,,,,,,);
    z-index: -1;
}

@media screen and (min-width: 535px) and (max-width: 599px) {
    /* line 329, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
    .home .hero .header-mobile h1:last-of-type {
        margin-left: 135px;
    }

    /* line 358, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_hero.scss */
    .home .hero .header-mobile h1:last-of-type:before {
        width: 29px;
        height: 29px;
        top: -17px;
        left: -60px;
        background-color: rgba(3, 242, 189, 0.25);
        background-image: linear-gradient(45deg, rgba(3, 242, 189, 0.25) 0%, #03f2bd 100%,,,,,,,,);
    }
}

@-webkit-keyframes fromLeftOne {
    from {
        opacity: 0;
        margin-left: 15%;
    }
    to {
        opacity: 1;
        margin-left: 16%;
    }
}

@keyframes fromLeftOne {
    from {
        opacity: 0;
        margin-left: 15%;
    }
    to {
        opacity: 1;
        margin-left: 16%;
    }
}

@-webkit-keyframes fromRight {
    from {
        opacity: 0;
        margin-left: 3%;
    }
    to {
        opacity: 1;
        margin-left: 2;
    }
}

@keyframes fromRight {
    from {
        opacity: 0;
        margin-left: 3%;
    }
    to {
        opacity: 1;
        margin-left: 2;
    }
}

@-webkit-keyframes fromLeftTwo {
    from {
        opacity: 0;
        margin-left: 32%;
    }
    to {
        opacity: 1;
        margin-left: 33%;
    }
}

@keyframes fromLeftTwo {
    from {
        opacity: 0;
        margin-left: 32%;
    }
    to {
        opacity: 1;
        margin-left: 33%;
    }
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes arrowFadeIn {
    from {
        opacity: 0;
        -webkit-transform: scale(0.75);
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
    }
}

@keyframes arrowFadeIn {
    from {
        opacity: 0;
        -webkit-transform: scale(0.75);
        transform: scale(0.75);
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* line 1, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_intro.scss */
.home .intro {
    padding: 110px 0;
    background: #000;
}

@media screen and (max-width: 1280px) {
    /* line 1, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_intro.scss */
    .home .intro {
        padding: 80px 0;
    }
}

@media screen and (max-width: 768px) {
    /* line 1, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_intro.scss */
    .home .intro {
        padding: 40px 0;
    }
}

@media screen and (max-width: 480px) {
    /* line 1, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_intro.scss */
    .home .intro {
        padding: 40px 0;
    }
}

/* line 22, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_intro.scss */
.home .intro .inner {
    position: relative;
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 48.82117%;
    margin-left: 25.58941%;
}

/* line 89, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/bourbon-neat/app/assets/stylesheets/grid/_span-columns.scss */
.home .intro .inner:last-child {
    margin-right: 0;
}

@media screen and (max-width: 1280px) {
    /* line 22, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_intro.scss */
    .home .intro .inner {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 53.08608%;
        margin-left: 23.45696%;
    }

    /* line 89, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/bourbon-neat/app/assets/stylesheets/grid/_span-columns.scss */
    .home .intro .inner:last-child {
        margin-right: 0;
    }
}

@media screen and (max-width: 1024px) {
    /* line 22, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_intro.scss */
    .home .intro .inner {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 57.35098%;
        margin-left: 21.32451%;
    }

    /* line 89, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/bourbon-neat/app/assets/stylesheets/grid/_span-columns.scss */
    .home .intro .inner:last-child {
        margin-right: 0;
    }
}

@media screen and (max-width: 768px) {
    /* line 22, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_intro.scss */
    .home .intro .inner {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 65.88078%;
        margin-left: 17.05961%;
    }

    /* line 89, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/bourbon-neat/app/assets/stylesheets/grid/_span-columns.scss */
    .home .intro .inner:last-child {
        margin-right: 0;
    }
}

@media screen and (max-width: 480px) {
    /* line 22, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_intro.scss */
    .home .intro .inner {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 82.94039%;
        margin-left: 8.5298%;
    }

    /* line 89, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/bourbon-neat/app/assets/stylesheets/grid/_span-columns.scss */
    .home .intro .inner:last-child {
        margin-right: 0;
    }
}

/* line 47, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_intro.scss */
.home .intro .inner .green-box {
    position: absolute;
    top: 13px;
    left: -38px;
    width: 18px;
    height: 18px;
    background-color: #03f2bd;
    margin-right: 20px;
    -webkit-animation: cursor 1s 10;
    animation: cursor 1s 10;
}

@media screen and (max-width: 480px) {
    /* line 47, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_intro.scss */
    .home .intro .inner .green-box {
        display: none;
    }
}

/* line 61, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_intro.scss */
.home .intro .inner p {
    font-family: "Calibre", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.6;
    color: #fff;
    font-size: 28px;
}

@media screen and (max-width: 768px) {
    /* line 61, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_intro.scss */
    .home .intro .inner p {
        font-size: 21px;
    }
}

@-webkit-keyframes cursor {
    0% {
        opacity: 0;
    }
    40% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes cursor {
    0% {
        opacity: 0;
    }
    40% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* line 1, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_base.scss */
.no-flexbox .support {
    display: block;
}

/* line 5, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_base.scss */
.hidden {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
}

/* line 13, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_base.scss */
.container > section {
    padding: 5em 0;
    font-size: 1.25em;
    min-height: 100%;
}

/* line 19, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_base.scss */
.tabs {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
    font-weight: 300;
    font-size: 1.25em;
}

/* Nav */
/* line 29, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_base.scss */
.tabs nav {
    text-align: center;
}

/* line 33, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_base.scss */
.tabs nav ul {
    position: relative;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    margin: 0 auto;
    padding: 0;
    max-width: 1200px;
    list-style: none;
    -ms-box-orient: horizontal;
    -ms-box-pack: center;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/* line 56, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_base.scss */
.tabs nav ul li {
    position: relative;
    z-index: 1;
    display: block;
    margin: 0;
    text-align: center;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

/* line 68, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_base.scss */
.tabs nav a {
    position: relative;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 2.5;
}

/* line 77, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_base.scss */
.tabs nav a span {
    vertical-align: middle;
    font-size: 1em;
}

/* line 82, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_base.scss */
.tabs nav li.tab-current a {
    color: #74777b;
}

/* line 86, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_base.scss */
.tabs nav a:focus {
    outline: none;
}

/* Content */
/* line 92, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_base.scss */
.content-wrap {
    position: relative;
}

/* line 96, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_base.scss */
.content-wrap section {
    display: none !important;
    margin: 0 auto;
    padding: 1em;
    max-width: 1200px;
    text-align: center;
}

/* line 104, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_base.scss */
.content-wrap section.content-current {
    display: block !important;
}

/* line 108, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_base.scss */
.content-wrap section p {
    margin: 0;
    padding: 1em 0;
    color: rgba(0, 0, 0, 0.6);
    font-size: 1.2em;
    line-height: 1;
}

/* Fallback */
/* line 117, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_base.scss */
.no-js .content-wrap section {
    display: block;
    padding-bottom: 1em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

/* line 123, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_base.scss */
.no-flexbox nav ul {
    display: block;
}

/* line 127, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_base.scss */
.no-flexbox nav ul li {
    min-width: 15%;
    display: inline-block;
}

@media screen and (max-width: 58em) {
    /* line 133, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_base.scss */
    .tabs nav a.icon span {
        display: none;
    }

    /* line 136, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_base.scss */
    .tabs nav a:before {
        margin-right: 0;
    }
}

/* line 141, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_base.scss */
.tabs-style-line nav ul {
    padding: 0 2em;
    max-width: none;
    box-shadow: inset 0 -2px #d1d3d2;
}

/* line 147, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_base.scss */
.tabs-style-line nav a {
    padding: 0.7em 0.4em;
    box-shadow: inset 0 -2px #d1d3d2;
    color: #000;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "Calibre", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    transition: color 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

/* line 165, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_base.scss */
.tabs-style-line nav a:hover,
.tabs-style-line nav a:focus {
    box-shadow: inset 0 -2px #74777b;
}

/* line 169, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_base.scss */
.tabs-style-line nav li.tab-current a, .tabs-style-line nav li.active a {
    box-shadow: inset 0 -2px #03f2bd;
    color: #03f2bd;
}

@media screen and (max-width: 58em) {
    /* line 175, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_base.scss */
    .tabs-style-line nav ul {
        display: block;
        box-shadow: none;
    }

    /* line 179, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_base.scss */
    .tabs-style-line nav ul li {
        display: block;
        -webkit-flex: none;
        -ms-flex: none;
        flex: none;
    }
}

/* line 187, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_base.scss */
.tabs-content {
    background: #fff;
}

/* line 194, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_base.scss */
.tab-header {
    font-family: Calibre, Helvetica, Arial, sans-serif;
    font-size: 52px;
    font-weight: bold;
    color: #3b3d40;
    padding-top: 25px;
    padding-bottom: 25px;
}

/* line 203, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_base.scss */
.tab-subheader {
    font-family: Calibre, Helvetica, Arial, sans-serif !important;
    font-size: 1.2em;
    color: #656b6f !important;
    font-weight: normal !important;
    padding-bottom: 45px !important;
}

/* line 3, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_build.scss */
#section-build .network-card {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 50px;
    box-shadow: 1px 2px 20px rgba(0, 0, 0, 0.15);
}

/* line 8, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_build.scss */
#section-build .network-card .card-logo {
    width: 100%;
    position: relative;
    min-height: 200px;
    background-size: cover;
}

/* line 13, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_build.scss */
#section-build .network-card .card-logo img {
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;

}

/* line 23, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_build.scss */
#section-build .network-card .card-description {
    padding: 0 20px;
}

/* line 25, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_build.scss */
#section-build .network-card .card-description .card-detail {
    color: #737373;
    font-size: 18px;
    line-height: 21px;
}

/* line 30, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_build.scss */
#section-build .network-card .card-description .card-cta {
    text-indent: -9999px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 20px;
    height: 30px;
    width: 30px;
    background-image: url("../images/arrow-link.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: auto;
}

#section-build .network-card .card-description .card-cta:hover {
    background-image: url("../images/arrow-link-green.png");
}

@media screen and (min-width: 1024px) {
    /* line 57, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_build.scss */
    #section-build .network-card {
        display: block;
        float: left;
        width: 100%;
        height: 400px;
        max-width: 30%;
        margin: 0 2%;
        padding-bottom: 25px;
        border-radius: 5px;
        position: relative;
    }

    /* line 75, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_build.scss */
    #section-build .network-card:last-of-type {
        margin-right: 0;
    }
}

@media screen and (min-width: 1280px) {
    /* line 84, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_build.scss */
    #section-build .network-card {
        height: 370px;
    }
}

/* line 4, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_network.scss */
#section-network .our-network-list .our-network {
    margin: 0 auto 40px auto;
}

/* line 7, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_network.scss */
#section-network .our-network-list .our-network .network-title {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 17px;
    padding: 0;
    margin: 20px 0 20px 0;
}

/* line 14, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_network.scss */
#section-network .our-network-list .our-network .network-description {
    padding: 0;
    margin: 0;
    font-size: 18px;
}

@media screen and (min-width: 1024px) {
    /* line 28, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_network.scss */
    .our-network-list {
        text-align: center;
        padding-bottom: 30px;
    }

    /* line 31, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_network.scss */
    .our-network-list .our-network {
        display: block;
        width: 33%;
        margin-right: 3%;
        padding: 0 4%;
        float: left;
        position: relative;
        padding-top: 130px;
    }

    /* line 39, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_network.scss */
    .our-network-list .our-network .network-icon {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        margin: auto;
    }

    /* line 46, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_network.scss */
    .our-network-list .our-network .network-title {
        font-weight: 600;
        text-transform: uppercase;
        font-size: 17px;
        padding: 0;
        margin: 20px 0 20px 0;
    }

    /* line 53, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_network.scss */
    .our-network-list .our-network .network-description {
        padding: 0;
        margin: 0;
        font-size: 18px;
    }
}

/* line 3, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_capital.scss */
#section-capital .capital-title {
    padding-top: 10px;
}

/* line 9, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/tabs/_capital.scss */
#section-capital .capital-cta {
    padding: 35px 0;
}

/* line 64, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
.home .global-reach .map {
    position: relative;
    text-align: center;
}

/* line 68, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
.home .global-reach .map img {
    max-width: 100%;
}

@media screen and (max-width: 1024px) {
    /* line 68, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
    .home .global-reach .map img {
        max-width: 80%;
    }
}

/* line 76, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
.home .global-reach .map .btn-green {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    padding: 30px 65px;
    background-color: #03f2bd;
    color: #202020;
    font-family: "Calibre", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    text-decoration: none;
    transition: background-color 0.2s linear;
}

/* line 90, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
.home .global-reach .map .btn-green:hover {
    background-color: #02e5b4;
}

@media screen and (max-width: 600px) {
    /* line 76, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
    .home .global-reach .map .btn-green {
        top: auto;
        bottom: -165px;
        width: 215px;
        padding: 30px 5px;
    }
}

/* line 104, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
.home .global-reach .stats {
    display: block;
    margin-top: 30px;
    padding: 50px 12%;
    background-color: #fff;
}

/* line 20, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/node-bourbon/node_modules/bourbon/app/assets/stylesheets/addons/_clearfix.scss */
.home .global-reach .stats::after {
    clear: both;
    content: "";
    display: table;
}

@media screen and (max-width: 1600px) {
    /* line 104, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
    .home .global-reach .stats {
        padding: 50px 9%;
    }
}

@media screen and (max-width: 1440px) {
    /* line 104, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
    .home .global-reach .stats {
        padding: 50px 5%;
    }
}

@media screen and (max-width: 1280px) {
    /* line 104, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
    .home .global-reach .stats {
        padding: 50px 2%;
    }
}

@media screen and (max-width: 1024px) {
    /* line 104, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
    .home .global-reach .stats {
        padding: 35px 5%;
    }
}

@media screen and (max-width: 600px) {
    /* line 104, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
    .home .global-reach .stats {
        padding-bottom: 15px;
        margin-top: 185px;
    }
}

/* line 131, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
.home .global-reach .stats-detail {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 31.76157%;
    text-align: center;
}

/* line 89, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/bourbon-neat/app/assets/stylesheets/grid/_span-columns.scss */
.home .global-reach .stats-detail:last-child {
    margin-right: 0;
}

@media screen and (max-width: 600px) {
    /* line 131, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
    .home .global-reach .stats-detail {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }

    /* line 89, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/bourbon-neat/app/assets/stylesheets/grid/_span-columns.scss */
    .home .global-reach .stats-detail:last-child {
        margin-right: 0;
    }
}

/* line 141, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
.home .global-reach .stats-detail .number {
    font-family: "Calibre", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 60px;
    color: #03f2bd;
}

@media screen and (max-width: 1440px) {
    /* line 141, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
    .home .global-reach .stats-detail .number {
        font-size: 55px;
    }
}

@media screen and (max-width: 1280px) {
    /* line 141, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
    .home .global-reach .stats-detail .number {
        font-size: 50px;
    }
}

@media screen and (min-width: 1025px) and (max-width: 1040px) {
    /* line 141, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
    .home .global-reach .stats-detail .number {
        font-size: 44px;
    }
}

@media screen and (max-width: 600px) {
    /* line 141, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
    .home .global-reach .stats-detail .number {
        font-size: 44px;
    }
}

/* line 163, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
.home .global-reach .stats-detail .text {
    padding: 0 10%;
    font-family: "Calibre", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
}

@media screen and (max-width: 1280px) {
    /* line 163, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
    .home .global-reach .stats-detail .text {
        font-size: 16px;
    }
}

@media screen and (max-width: 600px) {
    /* line 163, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
    .home .global-reach .stats-detail .text {
        font-size: 14px;
        padding: 0 10%;
    }
}

/* line 180, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
.home .global-reach .right-info {
    height: 135px;
    background: #fff;
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 65.88078%;
}

/* line 89, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/bourbon-neat/app/assets/stylesheets/grid/_span-columns.scss */
.home .global-reach .right-info:last-child {
    margin-right: 0;
}

@media screen and (max-width: 600px) {
    /* line 180, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
    .home .global-reach .right-info {
        width: 100%;
        margin-bottom: 65px;
    }
}

@media screen and (max-width: 768px) {
    /* line 180, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
    .home .global-reach .right-info {
        width: 100%;
    }
}

@media screen and (max-width: 1024px) {
    /* line 180, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
    .home .global-reach .right-info {
        width: 100%;
    }
}

/* line 195, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
.home .global-reach .right-info p {
    padding: 2%;
    font-size: 1em;
}

@media screen and (max-width: 1280px) {
    /* line 195, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
    .home .global-reach .right-info p {
        position: relative;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

@media screen and (max-width: 1440px) {
    /* line 195, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
    .home .global-reach .right-info p {
        position: relative;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

@media screen and (max-width: 600px) {
    /* line 195, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
    .home .global-reach .right-info p {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    /* line 195, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
    .home .global-reach .right-info p {
        width: 100%;
    }
}

@media screen and (max-width: 1024px) {
    /* line 195, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
    .home .global-reach .right-info p {
        width: 100%;
    }
}

/* line 220, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
.home .global-reach .network-detail {
    clear: both;
}

/* line 227, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
.home .global-reach .left-info {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 31.76157%;
    display: block;
    text-align: center;
    margin-bottom: 40px;
    color: white;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 135px;
    position: relative;
}

/* line 89, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/bourbon-neat/app/assets/stylesheets/grid/_span-columns.scss */
.home .global-reach .left-info:last-child {
    margin-right: 0;
}

/* line 239, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
.home .global-reach .left-info img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}

@media screen and (max-width: 1024px) {
    /* line 227, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
    .home .global-reach .left-info {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 100%;
        margin-left: 0%;
        margin-bottom: 0;
    }

    /* line 89, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/bourbon-neat/app/assets/stylesheets/grid/_span-columns.scss */
    .home .global-reach .left-info:last-child {
        margin-right: 0;
    }
}

@media screen and (max-width: 600px) {
    /* line 227, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
    .home .global-reach .left-info {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 100%;
        margin-bottom: 0;
    }

    /* line 89, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/bourbon-neat/app/assets/stylesheets/grid/_span-columns.scss */
    .home .global-reach .left-info:last-child {
        margin-right: 0;
    }
}

/* line 259, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
.home .global-reach .left-info .network-detail {
    clear: both;
}

@media screen and (max-width: 1024px) {
    /* line 259, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
    .home .global-reach .left-info .network-detail {
        float: left;
        display: block;
        width: 51.17883%;
        height: 370px;
    }

    /* line 81, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/bourbon-neat/app/assets/stylesheets/grid/_span-columns.scss */
    .home .global-reach .left-info .network-detail:last-child {
        width: 48.82117%;
    }
}

@media screen and (max-width: 768px) {
    /* line 259, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
    .home .global-reach .left-info .network-detail {
        height: 325px;
    }
}

@media screen and (max-width: 600px) {
    /* line 259, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
    .home .global-reach .left-info .network-detail {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 100%;
    }

    /* line 89, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/bourbon-neat/app/assets/stylesheets/grid/_span-columns.scss */
    .home .global-reach .left-info .network-detail:last-child {
        margin-right: 0;
    }
}

@media screen and (max-width: 600px) {
    /* line 288, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
    .home .global-reach .left-info .network-detail:last-child {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 100%;
    }

    /* line 89, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/bourbon-neat/app/assets/stylesheets/grid/_span-columns.scss */
    .home .global-reach .left-info .network-detail:last-child:last-child {
        margin-right: 0;
    }
}

/* line 294, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
.home .global-reach .left-info .network-detail img {
    max-width: 100%;
}

@media screen and (max-width: 1280px) {
    /* line 294, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
    .home .global-reach .left-info .network-detail img {
        width: 180px;
    }
}

@media screen and (max-width: 768px) {
    /* line 294, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
    .home .global-reach .left-info .network-detail img {
        width: 165px;
    }
}

@media screen and (max-width: 767px) {
    /* line 294, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
    .home .global-reach .left-info .network-detail img {
        width: 140px;
    }
}

@media screen and (max-width: 600px) {
    /* line 294, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
    .home .global-reach .left-info .network-detail img {
        width: 160px;
    }
}

/* line 314, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
.home .global-reach .left-info .network-detail p {
    font-family: "Calibre", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 300;
    margin-top: 30px;
    font-size: 23px;
}

@media screen and (max-width: 1440px) {
    /* line 314, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
    .home .global-reach .left-info .network-detail p {
        font-size: 21px;
        margin-top: 20px;
    }
}

@media screen and (min-width: 1025px) and (max-width: 1150px) {
    /* line 314, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
    .home .global-reach .left-info .network-detail p {
        font-size: 19px;
    }
}

@media screen and (max-width: 767px) {
    /* line 314, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
    .home .global-reach .left-info .network-detail p {
        margin-top: 10px;
    }
}

/* line 333, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
.home .global-reach .left-info .network-detail hr {
    width: 20px;
    opacity: 0.8;
    margin-top: 15px;
    margin-bottom: 15px;
}

/* line 340, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
.home .global-reach .left-info .network-detail a {
    font-size: 23px;
    opacity: 0.8;
    color: white;
    text-decoration: none;
    padding-bottom: 4px;
    position: relative;
    overflow: hidden;
}

/* line 349, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
.home .global-reach .left-info .network-detail a:before {
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 0;
    background: white;
    height: 2px;
    transition-property: left, right;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
}

/* line 366, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
.home .global-reach .left-info .network-detail a:hover:before,
.home .global-reach .left-info .network-detail a:focus:before,
.home .global-reach .left-info .network-detail a:active:before {
    left: 0;
    right: 0;
}

@media screen and (max-width: 1440px) {
    /* line 340, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
    .home .global-reach .left-info .network-detail a {
        font-size: 21px;
    }
}

@media screen and (max-width: 1150px) {
    /* line 340, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
    .home .global-reach .left-info .network-detail a {
        font-size: 19px;
    }
}

@media screen and (max-width: 767px) {
    /* line 340, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
    .home .global-reach .left-info .network-detail a {
        font-size: 19px;
    }
}

@media screen and (max-width: 600px) {
    /* line 340, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_global-reach.scss */
    .home .global-reach .left-info .network-detail a {
        font-size: 21px;
    }
}

/* line 1, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_featured-companies.scss */
.home .featured-companies {
    border-top: 1px solid #d1d3d2;
    margin-top: 60px;
    padding-top: 30px;
    padding-bottom: 30px;
}

/* line 7, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_featured-companies.scss */
.home .featured-companies .fc-header {
    font-family: "Calibre", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 52px;
    font-weight: bold;
    color: #3b3d40;
    padding-top: 25px;
    padding-bottom: 25px;
    text-align: center;
}

/* line 16, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_featured-companies.scss */
.home .featured-companies .fc-sub-header {
    font-family: "Calibre", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 400;
    color: #656b6f !important;
    font-weight: normal !important;
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* line 24, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_featured-companies.scss */
.home .featured-companies .featured-company {
    cursor: pointer;
    position: relative;
    height: 200px;
    margin: auto 1.5%;
}

@media screen and (min-width: 890px) {
    /* line 24, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_featured-companies.scss */
    .home .featured-companies .featured-company {
        float: left;
        display: block;
        width: 17.05961%;
    }

    /* line 81, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/bourbon-neat/app/assets/stylesheets/grid/_span-columns.scss */
    .home .featured-companies .featured-company:last-child {
        width: 14.70196%;
    }
}

@media screen and (max-width: 890px) {
    /* line 24, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_featured-companies.scss */
    .home .featured-companies .featured-company {
        float: left;
        display: block;
        width: 102.35765%;
    }

    /* line 81, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/bourbon-neat/app/assets/stylesheets/grid/_span-columns.scss */
    .home .featured-companies .featured-company:last-child {
        width: 100%;
    }
}

/* line 35, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_featured-companies.scss */
.home .featured-companies .featured-company figure {
    position: relative;
    width: 100%;
    height: 100%;
}

/* line 39, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_featured-companies.scss */
.home .featured-companies .featured-company figure img {
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

@media screen and (min-width: 890px) {
    /* line 39, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_featured-companies.scss */
    .home .featured-companies .featured-company figure img {
        width: 80%;
        height: auto;
    }
}

@media screen and (max-width: 890px) {
    /* line 39, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_featured-companies.scss */
    .home .featured-companies .featured-company figure img {
        height: 30%;
        width: auto;
    }
}

/* line 56, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_featured-companies.scss */
.home .featured-companies .featured-company figure figcaption {
    display: none;
    background-color: rgba(3, 242, 189, 0.95);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    padding: 6%;
}

/* line 66, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_featured-companies.scss */
.home .featured-companies .featured-company figure figcaption h3 {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    padding-bottom: 6%;
}

/* line 72, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_featured-companies.scss */
.home .featured-companies .featured-company figure figcaption p {
    font-size: 12px;
}

/* line 75, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_featured-companies.scss */
.home .featured-companies .featured-company figure figcaption a {
    text-indent: -9999px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 20px;
    height: 30px;
    width: 30px;
    background-image: url("../images/arrow-link-white.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: auto;
}

/* line 94, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_featured-companies.scss */
.home .featured-companies .featured-company figure:hover figcaption {
    display: block;
}

/* line 103, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_featured-companies.scss */
.fc-header {
    font-family: "Calibre", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 52px;
    font-weight: bold;
    color: #3b3d40;
    padding-top: 25px;
    padding-bottom: 25px;
    text-align: center;
}

/* line 1, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_who-we-are.scss */
.home .home-who-we-are {
    background-image: url("../images/bg-home-who-we-are.jpg");
    padding: 120px 0 100px;
}

@media screen and (max-width: 480px) {
    /* line 1, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_who-we-are.scss */
    .home .home-who-we-are {
        padding: 50px 0;
    }
}

/* line 9, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_who-we-are.scss */
.home .home-who-we-are .container {
    background-color: #fff;
    padding: 100px 160px;
}

@media screen and (max-width: 1600px) {
    /* line 9, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_who-we-are.scss */
    .home .home-who-we-are .container {
        padding: 90px 130px;
    }
}

@media screen and (max-width: 1280px) {
    /* line 9, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_who-we-are.scss */
    .home .home-who-we-are .container {
        padding: 90px 110px;
    }
}

@media screen and (max-width: 1024px) {
    /* line 9, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_who-we-are.scss */
    .home .home-who-we-are .container {
        padding: 90px 100px;
    }
}

@media screen and (max-width: 767px) {
    /* line 9, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_who-we-are.scss */
    .home .home-who-we-are .container {
        padding: 65px 75px;
    }
}

@media screen and (max-width: 600px) {
    /* line 9, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_who-we-are.scss */
    .home .home-who-we-are .container {
        padding: 50px 35px;
    }
}

/* line 33, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_who-we-are.scss */
.home .home-who-we-are .container p {
    font-family: "Calibre", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 25px;
    line-height: 1.2;
    margin-bottom: 35px;
}

@media screen and (max-width: 1280px) {
    /* line 33, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_who-we-are.scss */
    .home .home-who-we-are .container p {
        font-size: 23px;
    }
}

@media screen and (max-width: 1024px) {
    /* line 33, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_who-we-are.scss */
    .home .home-who-we-are .container p {
        font-size: 21px;
    }
}

@media screen and (max-width: 600px) {
    /* line 33, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_who-we-are.scss */
    .home .home-who-we-are .container p {
        font-size: 16px;
    }
}

/* line 51, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_who-we-are.scss */
.home .home-who-we-are .container p span {
    color: #03f2bd;
    font-family: "Calibre", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 600;
}

/* line 57, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_who-we-are.scss */
.home .home-who-we-are .container .who-link {
    margin-top: 40px;
    text-align: center;
}

/* line 60, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_who-we-are.scss */
.home .home-who-we-are .container .who-link a {
    font-family: "Calibre", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 21px;
    color: #999;
    transition: color 0.2s ease-in-out;
}

/* line 66, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_who-we-are.scss */
.home .home-who-we-are .container .who-link a:hover {
    color: black;
}

/* line 69, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_who-we-are.scss */
.home .home-who-we-are .container .who-link a:hover .who-link-arrow {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
    background-image: url("../images/arrow-link-black.png");
}

/* line 75, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_who-we-are.scss */
.home .home-who-we-are .container .who-link a .who-link-arrow {
    display: inline-block;
    vertical-align: middle;
    margin-left: 15px;
    height: 46px;
    width: 46px;
    background-image: url("../images/arrow-link.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition: background-image 0.2s ease-in-out, -webkit-transform 0.3s ease-out;
    transition: background-image 0.2s ease-in-out, transform 0.3s ease-out;
}

/* line 91, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_who-we-are.scss */
.home .home-who-we-are .container .timeline-carousel div img {
    width: 100%;
    height: auto;
}

/* line 95, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_who-we-are.scss */
.home .home-who-we-are .container .timeline-carousel div p {
    transition: .3s;
}

/* line 98, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_who-we-are.scss */
.home .home-who-we-are .container .timeline-carousel div .faded {
    opacity: 0;
}

@media screen and (max-width: 600px) {
    /* line 102, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_who-we-are.scss */
    .home .home-who-we-are .container .timeline-carousel .slick-prev, .home .home-who-we-are .container .timeline-carousel .slick-next {
        display: none !important;
    }
}

/* line 107, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_who-we-are.scss */
.home .home-who-we-are .container .timeline-carousel .slick-prev {
    left: -55px;
}

/* line 110, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/home/_who-we-are.scss */
.home .home-who-we-are .container .timeline-carousel .slick-next {
    right: -55px;
}

/* line 1, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_hero.scss */
.network .hero {
    background-image: url(../images/bg-who-investors2.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding-top: 204px;
    padding-bottom: 60px;
    color: white;
    text-align: center;
}

@media screen and (max-width: 767px) {
    /* line 1, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_hero.scss */
    .network .hero {
        margin-top: 0;
        padding-top: 175px;
    }
}

@media screen and (max-width: 600px) {
    /* line 1, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_hero.scss */
    .network .hero {
        padding-top: 110px;
    }
}

/* line 20, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_hero.scss */
.network .hero h1 {
    font-family: "A2 60 Display Regular", 'Arial Black', Arial, Helvetica, Verdana, sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 80px;
    margin-bottom: 60px;
}

@media screen and (max-width: 600px) {
    /* line 20, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_hero.scss */
    .network .hero h1 {
        font-size: 46px;
        margin-bottom: 45px;
    }
}

/* line 31, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_hero.scss */
.network .hero .news-carousel {
    background-color: #fff;
    max-height: 345px;
}

/* line 35, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_hero.scss */
.network .hero .news-carousel .inner {
    padding: 70px 215px 80px;
}

@media screen and (max-width: 1400px) {
    /* line 35, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_hero.scss */
    .network .hero .news-carousel .inner {
        padding: 75px 150px;
    }
}

@media screen and (max-width: 1024px) {
    /* line 35, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_hero.scss */
    .network .hero .news-carousel .inner {
        padding: 75px 125px;
    }
}

@media screen and (max-width: 750px) {
    /* line 35, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_hero.scss */
    .network .hero .news-carousel .inner {
        padding: 75px 100px;
    }
}

@media screen and (max-width: 600px) {
    /* line 35, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_hero.scss */
    .network .hero .news-carousel .inner {
        padding: 50px 35px;
    }
}

@media screen and (max-width: 480px) {
    /* line 35, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_hero.scss */
    .network .hero .news-carousel .inner {
        padding: 50px 20px;
    }
}

/* line 58, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_hero.scss */
.network .hero .news-carousel .inner .title h3 {
    font-family: "A2 60 Display Regular", 'Arial Black', Arial, Helvetica, Verdana, sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 30px;
    color: #202020;
    margin-bottom: 20px;
}

/* line 65, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_hero.scss */
.network .hero .news-carousel .inner .content p {
    font-family: "Calibre", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 23px;
    line-height: 1.2;
    color: #1c1c1c;
    margin-bottom: 10px;
}

@media screen and (max-width: 600px) {
    /* line 65, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_hero.scss */
    .network .hero .news-carousel .inner .content p {
        margin-bottom: 50px;
        font-size: 20px;
    }
}

/* line 79, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_hero.scss */
.network .hero .news-carousel .slick-dots {
    bottom: 50px;
}

@media screen and (max-width: 600px) {
    /* line 79, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_hero.scss */
    .network .hero .news-carousel .slick-dots {
        bottom: 35px;
        width: auto;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

/* line 5, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies.short-view .toggle-nav.is_stuck {
    box-shadow: none;
}

/* line 10, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies .toggle-nav {
    position: relative;
    z-index: 1;
    background-color: #242424;
}

@media screen and (max-width: 767px) {
    /* line 10, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
    .network .companies .toggle-nav {
        box-shadow: none;
    }
}

/* line 19, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies .toggle-nav.is_stuck {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    z-index: 2;
    box-shadow: 0px 2px 10px 0px rgba(50, 50, 50, 0.1);
}

@media screen and (max-width: 767px) {
    /* line 19, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
    .network .companies .toggle-nav.is_stuck {
        top: 50px;
    }
}

@media screen and (max-width: 675px) {
    /* line 29, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
    .network .companies .toggle-nav .container {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    /* line 20, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/node-bourbon/node_modules/bourbon/app/assets/stylesheets/addons/_clearfix.scss */
    .network .companies .toggle-nav .container::after {
        clear: both;
        content: "";
        display: table;
    }
}

/* line 36, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies .toggle-nav li {
    display: inline-block;
    height: 60px;
    width: 200px;
    text-align: center;
    list-style: none;
    font-family: "Calibre", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1px;
    padding-top: 20px;
    color: white;
    cursor: pointer;
}

@media screen and (max-width: 767px) {
    /* line 36, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
    .network .companies .toggle-nav li {
        height: 44px;
        font-size: 13px;
        padding-top: 16px;
    }
}

@media screen and (max-width: 675px) {
    /* line 36, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
    .network .companies .toggle-nav li {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 31.76157%;
    }

    /* line 89, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/bourbon-neat/app/assets/stylesheets/grid/_span-columns.scss */
    .network .companies .toggle-nav li:last-child {
        margin-right: 0;
    }
}

/* line 59, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies .toggle-nav li.active {
    background-color: #fff;
    color: #03f2bd;
}

/* line 66, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies .jumpnavbar-wrapper {
    padding: 10px 12%;
    background-color: #fff;
    box-shadow: 0px 2px 10px 0px rgba(50, 50, 50, 0.1);
    overflow: scroll;
}

@media screen and (max-width: 1440px) {
    /* line 66, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
    .network .companies .jumpnavbar-wrapper {
        padding: 10px 9%;
    }
}

@media screen and (max-width: 768px) {
    /* line 66, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
    .network .companies .jumpnavbar-wrapper {
        padding: 10px 4%;
    }
}

@media screen and (max-width: 675px) {
    /* line 66, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
    .network .companies .jumpnavbar-wrapper {
        padding: 10px 2%;
    }
}

/* line 84, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies .jumpnavbar-wrapper.is_stuck {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    z-index: 1;
}

/* line 89, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies .jumpnavbar-wrapper.add-overflow-scroll {
    -webkit-overflow-scrolling: touch;
}

/* line 93, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies .jumpnavbar-wrapper .jumpnavbar {
    width: 1244px;
    margin-left: 2%;
}

@media screen and (max-width: 767px) {
    /* line 93, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
    .network .companies .jumpnavbar-wrapper .jumpnavbar {
        width: 980px;
    }
}

/* line 102, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies .jumpnavbar-wrapper a {
    font-family: "Calibre", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    text-decoration: none;
    color: #c7c7c7;
    margin-right: 34px;
    line-height: 1.4;
}

@media screen and (max-width: 767px) {
    /* line 102, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
    .network .companies .jumpnavbar-wrapper a {
        margin-right: 20px;
    }
}

/* line 114, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies .jumpnavbar-wrapper a.active {
    color: #202020;
}

/* line 122, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies .all,
.network .companies .sector,
.network .companies .location {
    position: relative;
    padding-bottom: 90px;
}

/* line 128, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies .all .content .left,
.network .companies .sector .content .left,
.network .companies .location .content .left {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 74.41059%;
}

/* line 89, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/bourbon-neat/app/assets/stylesheets/grid/_span-columns.scss */
.network .companies .all .content .left:last-child,
.network .companies .sector .content .left:last-child,
.network .companies .location .content .left:last-child {
    margin-right: 0;
}

@media screen and (max-width: 767px) {
    /* line 128, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
    .network .companies .all .content .left,
    .network .companies .sector .content .left,
    .network .companies .location .content .left {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 100%;
    }

    /* line 89, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/bourbon-neat/app/assets/stylesheets/grid/_span-columns.scss */
    .network .companies .all .content .left:last-child,
    .network .companies .sector .content .left:last-child,
    .network .companies .location .content .left:last-child {
        margin-right: 0;
    }
}

/* line 135, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies .all .content .left .header,
.network .companies .sector .content .left .header,
.network .companies .location .content .left .header {
    font-family: "A2 60 Display Regular", 'Arial Black', Arial, Helvetica, Verdana, sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 40px;
    text-decoration: underline;
    margin: 40px 0 25px;
}

/* line 141, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies .all .content .left .header.inactive,
.network .companies .sector .content .left .header.inactive,
.network .companies .location .content .left .header.inactive {
    color: #c7c7c7;
}

@media screen and (max-width: 600px) {
    /* line 135, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
    .network .companies .all .content .left .header,
    .network .companies .sector .content .left .header,
    .network .companies .location .content .left .header {
        font-size: 36px;
        margin: 25px 0;
    }
}

/* line 151, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies .all .content .left .company-info,
.network .companies .sector .content .left .company-info,
.network .companies .location .content .left .company-info {
    font-size: 20px;
    cursor: pointer;
    margin-top: 25px;
}

/* line 156, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies .all .content .left .company-info:first-child,
.network .companies .sector .content .left .company-info:first-child,
.network .companies .location .content .left .company-info:first-child {
    margin-top: 0;
}

/* line 160, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies .all .content .left .company-info .name,
.network .companies .sector .content .left .company-info .name,
.network .companies .location .content .left .company-info .name {
    font-family: "Calibre", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

@media screen and (max-width: 600px) {
    /* line 160, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
    .network .companies .all .content .left .company-info .name,
    .network .companies .sector .content .left .company-info .name,
    .network .companies .location .content .left .company-info .name {
        font-size: 18px;
    }
}

/* line 171, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies .all .content .left .company-info .details,
.network .companies .sector .content .left .company-info .details,
.network .companies .location .content .left .company-info .details {
    font-family: "Calibre", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 5px;
}

@media screen and (max-width: 600px) {
    /* line 171, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
    .network .companies .all .content .left .company-info .details,
    .network .companies .sector .content .left .company-info .details,
    .network .companies .location .content .left .company-info .details {
        font-size: 18px;
    }
}

/* line 180, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies .all .content .left .company-info .details span,
.network .companies .sector .content .left .company-info .details span,
.network .companies .location .content .left .company-info .details span {
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
}

@media screen and (max-width: 600px) {
    /* line 180, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
    .network .companies .all .content .left .company-info .details span,
    .network .companies .sector .content .left .company-info .details span,
    .network .companies .location .content .left .company-info .details span {
        font-size: 14px;
    }
}

/* line 190, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies .all .content .left .company-info-expanded,
.network .companies .sector .content .left .company-info-expanded,
.network .companies .location .content .left .company-info-expanded {
    position: relative;
    display: block;
    width: 80%;
    background-color: #f7f7f7;
    border: 1px solid #e0e0e0;
    padding: 35px 40px;
}

/* line 20, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/node-bourbon/node_modules/bourbon/app/assets/stylesheets/addons/_clearfix.scss */
.network .companies .all .content .left .company-info-expanded::after,
.network .companies .sector .content .left .company-info-expanded::after,
.network .companies .location .content .left .company-info-expanded::after {
    clear: both;
    content: "";
    display: table;
}

@media screen and (max-width: 1440px) {
    /* line 190, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
    .network .companies .all .content .left .company-info-expanded,
    .network .companies .sector .content .left .company-info-expanded,
    .network .companies .location .content .left .company-info-expanded {
        width: 90%;
    }
}

@media screen and (max-width: 1024px) {
    /* line 190, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
    .network .companies .all .content .left .company-info-expanded,
    .network .companies .sector .content .left .company-info-expanded,
    .network .companies .location .content .left .company-info-expanded {
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    /* line 190, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
    .network .companies .all .content .left .company-info-expanded,
    .network .companies .sector .content .left .company-info-expanded,
    .network .companies .location .content .left .company-info-expanded {
        padding: 25px 20px;
    }
}

/* line 210, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies .all .content .left .company-info-expanded .close,
.network .companies .sector .content .left .company-info-expanded .close,
.network .companies .location .content .left .company-info-expanded .close {
    position: absolute;
    top: 8px;
    right: 8px;
}

/* line 216, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies .all .content .left .company-info-expanded .close .line1,
.network .companies .all .content .left .company-info-expanded .close .line2,
.network .companies .sector .content .left .company-info-expanded .close .line1,
.network .companies .sector .content .left .company-info-expanded .close .line2,
.network .companies .location .content .left .company-info-expanded .close .line1,
.network .companies .location .content .left .company-info-expanded .close .line2 {
    width: 15px;
    height: 3px;
    margin: 0 0 5px 0;
    display: block;
    border-bottom: 1px solid #999;
}

/* line 224, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies .all .content .left .company-info-expanded .close .line1,
.network .companies .sector .content .left .company-info-expanded .close .line1,
.network .companies .location .content .left .company-info-expanded .close .line1 {
    -webkit-transform: translateY(7px) rotate(45deg);
    transform: translateY(7px) rotate(45deg);
    -ms-transform: translateY(7px) rotate(45deg);
}

/* line 229, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies .all .content .left .company-info-expanded .close .line2,
.network .companies .sector .content .left .company-info-expanded .close .line2,
.network .companies .location .content .left .company-info-expanded .close .line2 {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    -ms-transform: rotate(135deg);
}

/* line 235, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies .all .content .left .company-info-expanded .logo,
.network .companies .sector .content .left .company-info-expanded .logo,
.network .companies .location .content .left .company-info-expanded .logo {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 31.76157%;
    padding-right: 3%;
}

/* line 89, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/bourbon-neat/app/assets/stylesheets/grid/_span-columns.scss */
.network .companies .all .content .left .company-info-expanded .logo:last-child,
.network .companies .sector .content .left .company-info-expanded .logo:last-child,
.network .companies .location .content .left .company-info-expanded .logo:last-child {
    margin-right: 0;
}

@media screen and (max-width: 768px) {
    /* line 235, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
    .network .companies .all .content .left .company-info-expanded .logo,
    .network .companies .sector .content .left .company-info-expanded .logo,
    .network .companies .location .content .left .company-info-expanded .logo {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 100%;
        margin-bottom: 15px;
    }

    /* line 89, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/bourbon-neat/app/assets/stylesheets/grid/_span-columns.scss */
    .network .companies .all .content .left .company-info-expanded .logo:last-child,
    .network .companies .sector .content .left .company-info-expanded .logo:last-child,
    .network .companies .location .content .left .company-info-expanded .logo:last-child {
        margin-right: 0;
    }
}

/* line 244, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies .all .content .left .company-info-expanded .logo img,
.network .companies .sector .content .left .company-info-expanded .logo img,
.network .companies .location .content .left .company-info-expanded .logo img {
    max-width: 100%;
}

/* line 249, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies .all .content .left .company-info-expanded .description,
.network .companies .sector .content .left .company-info-expanded .description,
.network .companies .location .content .left .company-info-expanded .description {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 65.88078%;
    font-size: 18px;
}

/* line 89, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/bourbon-neat/app/assets/stylesheets/grid/_span-columns.scss */
.network .companies .all .content .left .company-info-expanded .description:last-child,
.network .companies .sector .content .left .company-info-expanded .description:last-child,
.network .companies .location .content .left .company-info-expanded .description:last-child {
    margin-right: 0;
}

@media screen and (max-width: 768px) {
    /* line 249, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
    .network .companies .all .content .left .company-info-expanded .description,
    .network .companies .sector .content .left .company-info-expanded .description,
    .network .companies .location .content .left .company-info-expanded .description {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 100%;
    }

    /* line 89, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/bourbon-neat/app/assets/stylesheets/grid/_span-columns.scss */
    .network .companies .all .content .left .company-info-expanded .description:last-child,
    .network .companies .sector .content .left .company-info-expanded .description:last-child,
    .network .companies .location .content .left .company-info-expanded .description:last-child {
        margin-right: 0;
    }
}

/* line 257, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies .all .content .left .company-info-expanded .description p,
.network .companies .sector .content .left .company-info-expanded .description p,
.network .companies .location .content .left .company-info-expanded .description p {
    color: #333;
    margin-bottom: 20px;
}

/* line 262, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies .all .content .left .company-info-expanded .description a,
.network .companies .sector .content .left .company-info-expanded .description a,
.network .companies .location .content .left .company-info-expanded .description a {
    font-family: "Calibre", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 600;
    color: #999;
}

@media screen and (max-width: 400px) {
    /* line 262, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
    .network .companies .all .content .left .company-info-expanded .description a,
    .network .companies .sector .content .left .company-info-expanded .description a,
    .network .companies .location .content .left .company-info-expanded .description a {
        font-size: 14px;
        word-wrap: break-word;
    }
}

/* line 271, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies .all .content .left .company-info-expanded .description a img,
.network .companies .sector .content .left .company-info-expanded .description a img,
.network .companies .location .content .left .company-info-expanded .description a img {
    vertical-align: middle;
    margin-left: 5px;
    width: 29px;
    height: 29px;
}

/* line 283, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies .all .content .right,
.network .companies .sector .content .right,
.network .companies .location .content .right {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 23.23176%;
}

/* line 89, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/bourbon-neat/app/assets/stylesheets/grid/_span-columns.scss */
.network .companies .all .content .right:last-child,
.network .companies .sector .content .right:last-child,
.network .companies .location .content .right:last-child {
    margin-right: 0;
}

/* line 286, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies .all .content .right .jumpnav,
.network .companies .sector .content .right .jumpnav,
.network .companies .location .content .right .jumpnav {
    margin-top: 112px;
    list-style: none;
    padding: 20px 15px;
    background-color: #f7f7f7;
    border: 1px solid #e0e0e0;
    text-align: center;
}

/* line 294, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies .all .content .right .jumpnav.is_stuck,
.network .companies .sector .content .right .jumpnav.is_stuck,
.network .companies .location .content .right .jumpnav.is_stuck {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* line 298, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies .all .content .right .jumpnav li,
.network .companies .sector .content .right .jumpnav li,
.network .companies .location .content .right .jumpnav li {
    margin-bottom: 10px;
}

/* line 301, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies .all .content .right .jumpnav li:last-of-type,
.network .companies .sector .content .right .jumpnav li:last-of-type,
.network .companies .location .content .right .jumpnav li:last-of-type {
    margin-bottom: 0;
}

/* line 305, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies .all .content .right .jumpnav li a,
.network .companies .sector .content .right .jumpnav li a,
.network .companies .location .content .right .jumpnav li a {
    color: #c7c7c7;
    text-decoration: none;
}

/* line 312, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies .all .content .right .jumpnav li.active a,
.network .companies .sector .content .right .jumpnav li.active a,
.network .companies .location .content .right .jumpnav li.active a {
    color: #202020;
}

/* line 324, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies .sector .jumpnavbar {
    width: 1272px;
}

@media screen and (max-width: 767px) {
    /* line 328, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
    .network .companies .sector .jumpnavbar a {
        font-size: 16px;
        padding: 1px 0;
    }
}

/* line 336, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies .sector .jumpnav {
    width: 180px;
    text-align: left !important;
}

/* line 340, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies .sector .jumpnav li.active {
    font-size: 24px;
}

/* line 348, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies .location .jumpnavbar {
    width: 698px;
}

@media screen and (max-width: 767px) {
    /* line 352, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
    .network .companies .location .jumpnavbar a {
        font-size: 16px;
        padding: 1px 0;
    }
}

/* line 359, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies .location .jumpnav {
    width: 180px;
    text-align: left !important;
}

/* line 363, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies .location .jumpnav li.active {
    font-size: 24px;
}

/* line 371, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies .all .jumpnav {
    display: block;
    width: 180px;
}

/* line 20, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/node-bourbon/node_modules/bourbon/app/assets/stylesheets/addons/_clearfix.scss */
.network .companies .all .jumpnav::after {
    clear: both;
    content: "";
    display: table;
}

/* line 375, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies .all .jumpnav li {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 23.23176%;
}

/* line 89, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/bourbon-neat/app/assets/stylesheets/grid/_span-columns.scss */
.network .companies .all .jumpnav li:last-child {
    margin-right: 0;
}

/* line 378, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies .all .jumpnav li:nth-child(4n) {
    margin-right: 0;
}

/* line 382, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/network/_companies.scss */
.network .companies .all .jumpnav li.active {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
}

/* line 1, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_hero.scss */
.who-we-are .hero {
    background-color: #000;
    padding-top: 204px;
    color: white;
}

@media screen and (max-width: 768px) {
    /* line 1, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_hero.scss */
    .who-we-are .hero {
        background-image: none;
        background-color: #000;
    }
}

@media screen and (max-width: 767px) {
    /* line 1, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_hero.scss */
    .who-we-are .hero {
        margin-top: 0;
        padding-top: 140px;
    }
}

/* line 16, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_hero.scss */
.who-we-are .hero h1 {
    font-family: "A2 60 Display Regular", 'Arial Black', Arial, Helvetica, Verdana, sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 80px;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 70px;
}

@media screen and (max-width: 1024px) {
    /* line 16, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_hero.scss */
    .who-we-are .hero h1 {
        font-size: 76px;
    }
}

@media screen and (max-width: 768px) {
    /* line 16, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_hero.scss */
    .who-we-are .hero h1 {
        font-size: 72px;
    }
}

@media screen and (max-width: 600px) {
    /* line 16, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_hero.scss */
    .who-we-are .hero h1 {
        font-size: 50px;
        margin-bottom: 65px;
    }
}

@media screen and (max-width: 480px) {
    /* line 16, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_hero.scss */
    .who-we-are .hero h1 {
        font-size: 38px;
        margin-bottom: 60px;
    }
}

/* line 41, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_hero.scss */
.who-we-are .hero h2 {
    position: relative;
    font-family: "A2 60 Display Regular", 'Arial Black', Arial, Helvetica, Verdana, sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 40px;
    margin-bottom: 5px;
}

@media screen and (max-width: 600px) {
    /* line 41, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_hero.scss */
    .who-we-are .hero h2 {
        font-size: 35px;
    }
}

@media screen and (max-width: 514px) {
    /* line 41, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_hero.scss */
    .who-we-are .hero h2 {
        padding-left: 0;
    }
}

@media screen and (max-width: 480px) {
    /* line 41, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_hero.scss */
    .who-we-are .hero h2 {
        font-size: 30px;
    }
}

/* line 60, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_hero.scss */
.who-we-are .hero h2:before {
}

@media screen and (max-width: 514px) {
    /* line 60, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_hero.scss */
    .who-we-are .hero h2:before {
        left: 230px;
    }
}

@media screen and (max-width: 480px) {
    /* line 60, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_hero.scss */
    .who-we-are .hero h2:before {
        left: 195px;
    }
}

/* line 79, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_hero.scss */
.who-we-are .hero h4 {
    font-family: "Calibre", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
}

.who-we-are .hero h4:after {
    content: "";
    background: #3BF2C6;
    width: 50px;
    height: 5px;
    position: absolute;
    bottom: -15px;
    left: 0;
}

@media screen and (max-width: 514px) {
    /* line 79, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_hero.scss */
    .who-we-are .hero h4 {
        padding-left: 0;
    }
}

/* line 90, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_hero.scss */
.who-we-are .hero p {
    font-family: "Calibre", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 23px;
    line-height: 1.2;
    margin-bottom: 185px;
    padding-right: 36%;
}

@media screen and (max-width: 1024px) {
    /* line 90, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_hero.scss */
    .who-we-are .hero p {
        padding-right: 15%;
        margin-bottom: 145px;
    }
}

@media screen and (max-width: 768px) {
    /* line 90, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_hero.scss */
    .who-we-are .hero p {
        padding-right: 6%;
        margin-bottom: 115px;
    }
}

@media screen and (max-width: 600px) {
    /* line 90, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_hero.scss */
    .who-we-are .hero p {
        font-size: 22px;
        margin-bottom: 75px;
    }
}

@media screen and (max-width: 514px) {
    /* line 90, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_hero.scss */
    .who-we-are .hero p {
        padding-left: 0;
    }
}

@media screen and (max-width: 480px) {
    /* line 90, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_hero.scss */
    .who-we-are .hero p {
        margin-bottom: 55px;
    }
}

/* line 1, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_board.scss */
.who-we-are .board {
    padding: 125px 0 50px;
}

@media screen and (max-width: 1024px) {
    /* line 1, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_board.scss */
    .who-we-are .board {
        padding: 100px 0 20px;
    }
}

@media screen and (max-width: 767px) {
    /* line 1, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_board.scss */
    .who-we-are .board {
        padding: 75px 0 20px;
    }
}

@media screen and (max-width: 600px) {
    /* line 1, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_board.scss */
    .who-we-are .board {
        padding: 60px 0 20px;
    }
}

@media screen and (max-width: 480px) {
    /* line 1, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_board.scss */
    .who-we-are .board {
        padding: 40px 0 20px;
    }
}

@media screen and (max-width: 1024px) {
    /* line 21, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_board.scss */
    .who-we-are .board .container {
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    /* line 20, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/node-bourbon/node_modules/bourbon/app/assets/stylesheets/addons/_clearfix.scss */
    .who-we-are .board .container::after {
        clear: both;
        content: "";
        display: table;
    }
}

/* line 27, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_board.scss */
.who-we-are .board h1 {
    font-family: "A2 60 Display Regular", 'Arial Black', Arial, Helvetica, Verdana, sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 50px;
    margin-bottom: 55px;
}

@media screen and (max-width: 767px) {
    /* line 27, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_board.scss */
    .who-we-are .board h1 {
        font-size: 45px;
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 600px) {
    /* line 27, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_board.scss */
    .who-we-are .board h1 {
        font-size: 30px;
        margin-bottom: 30px;
    }
}

/* line 43, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_board.scss */
.who-we-are .board .board-box {
    position: relative;
    display: inline-block;
    margin-right: 2.35765%;
    width: 33.33%;
    padding: 0;
    margin-bottom: 130px;
    box-sizing: border-box;
    text-align: left;
}

/* line 89, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/bourbon-neat/app/assets/stylesheets/grid/_span-columns.scss */
.who-we-are .board .board-box:last-child {
    margin-right: 0;
}

/* line 50, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_board.scss */
.who-we-are .board .board-box:nth-child(3n) {
    margin-right: 0;
}

@media screen and (max-width: 1024px) {
    /* line 43, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_board.scss */
    .who-we-are .board .board-box {
    }
}

@media screen and (max-width: 900px) {
    /* line 43, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_board.scss */
    .who-we-are .board .board-box {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 48.82117%;
        margin-bottom: 100px;
        padding: 50px 23px;
    }

    /* line 89, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/bourbon-neat/app/assets/stylesheets/grid/_span-columns.scss */
    .who-we-are .board .board-box:last-child {
        margin-right: 0;
    }

    /* line 63, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_board.scss */
    .who-we-are .board .board-box:nth-child(even) {
        margin-right: 0;
    }

    /* line 67, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_board.scss */
    .who-we-are .board .board-box:nth-child(odd) {
        margin-right: 2.35765%;
    }
}

@media screen and (max-width: 600px) {
    /* line 43, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_board.scss */
    .who-we-are .board .board-box {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 100%;
        margin-left: 0%;
        margin-right: 0;
        padding: 50px 30px;
    }

    /* line 89, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/bourbon-neat/app/assets/stylesheets/grid/_span-columns.scss */
    .who-we-are .board .board-box:last-child {
        margin-right: 0;
    }

    /* line 79, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_board.scss */
    .who-we-are .board .board-box:nth-child(3) {
        margin-right: 0;
        margin-left: 0%;
    }

    /* line 84, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_board.scss */
    .who-we-are .board .board-box:nth-last-child(1) {
        margin-left: 0%;
    }
}

/* line 89, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_board.scss */
.who-we-are .board .board-box h2 {
    font-family: "A2 60 Display Regular", 'Arial Black', Arial, Helvetica, Verdana, sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 26px;
    margin-bottom: 15px;
}

@media screen and (max-width: 480px) {
    /* line 89, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_board.scss */
    .who-we-are .board .board-box h2 {
        font-size: 24px;
    }
}

/* line 99, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_board.scss */
.who-we-are .board .board-box h5 {
    font-family: "Calibre", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    color: #1c1c1c;
    text-transform: uppercase;
}

@media screen and (max-width: 480px) {
    /* line 99, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_board.scss */
    .who-we-are .board .board-box h5 {
        font-size: 15px;
    }
}

/* line 110, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_board.scss */
.who-we-are .board .board-box h6 {
    font-family: "Calibre", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    color: #1c1c1c;
    text-transform: uppercase;
}

@media screen and (max-width: 600px) {
    /* line 110, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_board.scss */
    .who-we-are .board .board-box h6 {
        padding-top: 5px;
    }
}

/* line 121, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_board.scss */
.who-we-are .board .board-box hr {
    width: 15px;
    color: #1c1c1c;
}

/* line 126, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_board.scss */
.who-we-are .board .board-box p {
    font-family: "Calibre", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.2;
    color: #1c1c1c;
}

/* line 134, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_board.scss */
.who-we-are .board .board-box img {
    width: 100%;
    height: auto;
}

@media screen and (max-width: 768px) {
    /* line 148, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_board.scss */
    .who-we-are .board .odd .board-box:nth-last-child(1) {
        margin-left: 25.58941%;
    }
}

@media screen and (max-width: 600px) {
    /* line 153, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_board.scss */
    .who-we-are .board .odd .board-box:nth-last-child(1) {
        margin-left: 0%;
    }
}

/* line 162, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_board.scss */
.who-we-are .board .extra-one .board-box:nth-last-child(1) {
}

@media screen and (max-width: 768px) {
    /* line 167, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_board.scss */
    .who-we-are .board .extra-one .board-box:nth-child(even) {
        margin-right: 0;
    }

    /* line 170, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_board.scss */
    .who-we-are .board .extra-one .board-box:nth-last-child(2) {
        margin-left: 0%;
    }

    /* line 173, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_board.scss */
    .who-we-are .board .extra-one .board-box:nth-last-child(1) {
        margin-left: 0%;
        margin-right: 0;
    }
}

@media screen and (max-width: 600px) {
    /* line 180, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_board.scss */
    .who-we-are .board .extra-one .board-box:nth-last-child(1) {
        margin-left: 0%;
    }
}

@media screen and (max-width: 768px) {
    /* line 189, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_board.scss */
    .who-we-are .board .extra-one.odd .board-box:nth-last-child(1) {
        margin-left: 25.58941%;
    }
}

@media screen and (max-width: 600px) {
    /* line 194, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_board.scss */
    .who-we-are .board .extra-one.odd .board-box:nth-last-child(1) {
        margin-left: 0%;
    }
}

/* line 204, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_board.scss */
.who-we-are .board .extra-two .board-box:nth-last-child(2) {
}

@media screen and (max-width: 768px) {
    /* line 209, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_board.scss */
    .who-we-are .board .extra-two .board-box:nth-child(3n) {
        margin-left: 0%;
    }

    /* line 213, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_board.scss */
    .who-we-are .board .extra-two .board-box:nth-last-child(3) {
        margin-left: 0%;
    }

    /* line 216, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_board.scss */
    .who-we-are .board .extra-two .board-box:nth-last-child(2) {
        margin-left: 0%;
    }

    /* line 219, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_board.scss */
    .who-we-are .board .extra-two .board-box:nth-last-child(1) {
        margin-left: 0%;
    }
}

@media screen and (max-width: 768px) {
    /* line 228, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_board.scss */
    .who-we-are .board .extra-two.odd .board-box:nth-last-child(1) {
        margin-left: 25.58941%;
    }
}

@media screen and (max-width: 600px) {
    /* line 233, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_board.scss */
    .who-we-are .board .extra-two.odd .board-box:nth-last-child(1) {
        margin-left: 0%;
    }
}

/* line 1, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_investment-committee.scss */
.who-we-are .investment-committee {
    background-image: url(../images/bg-who-investors2.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: transparent;
    color: white;
    padding: 125px 0;
}

@media screen and (max-width: 1024px) {
    /* line 1, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_investment-committee.scss */
    .who-we-are .investment-committee {
        padding: 100px 0;
    }
}

@media screen and (max-width: 600px) {
    /* line 1, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_investment-committee.scss */
    .who-we-are .investment-committee {
        padding: 70px 0;
    }
}

/* line 18, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_investment-committee.scss */
.who-we-are .investment-committee h1 {
    font-family: "A2 60 Display Regular", 'Arial Black', Arial, Helvetica, Verdana, sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 50px;
    text-align: center;
    margin-bottom: 80px;
}

@media screen and (max-width: 1024px) {
    /* line 18, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_investment-committee.scss */
    .who-we-are .investment-committee h1 {
        margin-bottom: 60px;
    }
}

@media screen and (max-width: 768px) {
    /* line 18, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_investment-committee.scss */
    .who-we-are .investment-committee h1 {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 600px) {
    /* line 18, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_investment-committee.scss */
    .who-we-are .investment-committee h1 {
        font-size: 40px;
    }
}

/* line 37, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_investment-committee.scss */
.who-we-are .investment-committee hr {
    margin: 0 auto;
    opacity: 0.15;
    width: 73.75%;
}

@media screen and (max-width: 1440px) {
    /* line 37, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_investment-committee.scss */
    .who-we-are .investment-committee hr {
        width: 80%;
    }
}

@media screen and (max-width: 768px) {
    /* line 37, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_investment-committee.scss */
    .who-we-are .investment-committee hr {
        width: 90%;
    }
}

/* line 51, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_investment-committee.scss */
.who-we-are .investment-committee .investor-detail {
    position: relative;
    background-color: transparent;
    padding: 45px 13.125%;
    transition: background-color 0.5s ease-in-out;
}

@media screen and (max-width: 1440px) {
    /* line 51, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_investment-committee.scss */
    .who-we-are .investment-committee .investor-detail {
        padding: 45px 10%;
    }
}

@media screen and (max-width: 768px) {
    /* line 51, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_investment-committee.scss */
    .who-we-are .investment-committee .investor-detail {
        padding: 45px 5%;
    }
}

@media screen and (max-width: 600px) {
    /* line 51, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_investment-committee.scss */
    .who-we-are .investment-committee .investor-detail {
        padding: 30px 5%;
    }
}

/* line 69, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_investment-committee.scss */
.who-we-are .investment-committee .investor-detail li {
    width: 19%;
    list-style: none;
    display: inline-block;
    font-family: "Calibre", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
}

@media screen and (max-width: 768px) {
    /* line 69, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_investment-committee.scss */
    .who-we-are .investment-committee .investor-detail li {
        display: block;
        width: 100%;
        font-size: 16px;
        line-height: 1.2;
    }
}

/* line 84, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_investment-committee.scss */
.who-we-are .investment-committee .investor-detail li:first-of-type {
    width: 42%;
    font-family: "A2 60 Display Regular", 'Arial Black', Arial, Helvetica, Verdana, sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 27px;
    text-transform: none;
}

@media screen and (max-width: 768px) {
    /* line 84, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_investment-committee.scss */
    .who-we-are .investment-committee .investor-detail li:first-of-type {
        font-size: 22px;
        width: 100%;
    }
}

/* line 96, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_investment-committee.scss */
.who-we-are .investment-committee .investor-detail li:nth-of-type(2) {
    width: 30%;
}

@media screen and (max-width: 768px) {
    /* line 96, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_investment-committee.scss */
    .who-we-are .investment-committee .investor-detail li:nth-of-type(2) {
        width: 100%;
    }
}

/* line 104, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_investment-committee.scss */
.who-we-are .investment-committee .investor-detail li:last-of-type {
    margin-right: 46px;
}

/* line 109, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_investment-committee.scss */
.who-we-are .investment-committee .investor-detail .open {
    position: absolute;
    top: 35px;
    right: 13.125%;
    width: 46px;
    height: 46px;
    border: 2px solid #03f2bd;
    border-radius: 50%;
    margin: 0;
    font-family: "Calibre", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 43px;
    line-height: 39px;
    color: #03f2bd;
    text-align: center;
    cursor: pointer;
    transition: -webkit-transform 0.35s ease-in-out;
    transition: transform 0.35s ease-in-out;
}

@media screen and (max-width: 1440px) {
    /* line 109, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_investment-committee.scss */
    .who-we-are .investment-committee .investor-detail .open {
        right: 10%;
    }
}

@media screen and (max-width: 768px) {
    /* line 109, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_investment-committee.scss */
    .who-we-are .investment-committee .investor-detail .open {
        right: 5%;
    }
}

@media screen and (max-width: 768px) {
    /* line 109, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_investment-committee.scss */
    .who-we-are .investment-committee .investor-detail .open {
        width: 40px;
        height: 40px;
        top: 40px;
        font-size: 40px;
        line-height: 34px;
    }
}

/* line 143, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_investment-committee.scss */
.who-we-are .investment-committee .investor-detail.expanded {
    background-color: black;
}

/* line 146, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_investment-committee.scss */
.who-we-are .investment-committee .investor-detail.expanded .open {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
}

/* line 154, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_investment-committee.scss */
.who-we-are .investment-committee .investor-detail-bio p {
    font-family: "Calibre", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 21px;
    line-height: 1.2;
    padding: 45px 130px 0;
}

@media screen and (max-width: 1024px) {
    /* line 154, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_investment-committee.scss */
    .who-we-are .investment-committee .investor-detail-bio p {
        padding: 45px 100px 0;
    }
}

@media screen and (max-width: 768px) {
    /* line 154, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_investment-committee.scss */
    .who-we-are .investment-committee .investor-detail-bio p {
        padding: 35px 50px 0;
    }
}

@media screen and (max-width: 600px) {
    /* line 154, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_investment-committee.scss */
    .who-we-are .investment-committee .investor-detail-bio p {
        padding: 20px 25px 10px;
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {
    /* line 154, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_investment-committee.scss */
    .who-we-are .investment-committee .investor-detail-bio p {
        padding: 20px 20px 10px;
        font-size: 18px;
    }
}

@media screen and (max-width: 350px) {
    /* line 154, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_investment-committee.scss */
    .who-we-are .investment-committee .investor-detail-bio p {
        padding: 20px 0 10px;
    }
}

/* line 1, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_team.scss */
.who-we-are .team {
    padding: 125px 0;
}

@media screen and (max-width: 1024px) {
    /* line 1, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_team.scss */
    .who-we-are .team {
        padding: 100px 0;
    }
}

@media screen and (max-width: 767px) {
    /* line 1, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_team.scss */
    .who-we-are .team {
        padding: 75px 0;
    }
}

@media screen and (max-width: 600px) {
    /* line 1, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_team.scss */
    .who-we-are .team {
        padding: 60px 0;
    }
}

/* line 16, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_team.scss */
.who-we-are .team h1 {
    font-family: "A2 60 Display Regular", 'Arial Black', Arial, Helvetica, Verdana, sans-serif;
    font-weight: normal;
    font-style: normal;
    text-align: center;
    font-size: 50px;
    margin-bottom: 5px;
}

@media screen and (max-width: 767px) {
    /* line 16, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_team.scss */
    .who-we-are .team h1 {
        font-size: 45px;
    }
}

@media screen and (max-width: 600px) {
    /* line 16, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_team.scss */
    .who-we-are .team h1 {
        font-size: 40px;
    }
}

/* line 31, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_team.scss */
.who-we-are .team .team-box {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 48.82117%;
    margin-top: 55px;
}

/* line 89, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/bourbon-neat/app/assets/stylesheets/grid/_span-columns.scss */
.who-we-are .team .team-box:last-child {
    margin-right: 0;
}

@media screen and (max-width: 768px) {
    /* line 31, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_team.scss */
    .who-we-are .team .team-box {
        margin-top: 40px;
    }
}

@media screen and (max-width: 600px) {
    /* line 31, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_team.scss */
    .who-we-are .team .team-box {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 100%;
        margin-right: 0;
    }

    /* line 89, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/node_modules/node-neat/node_modules/bourbon-neat/app/assets/stylesheets/grid/_span-columns.scss */
    .who-we-are .team .team-box:last-child {
        margin-right: 0;
    }
}

/* line 44, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_team.scss */
.who-we-are .team .team-box:nth-child(2n) {
    margin-right: 0;
}

/* line 48, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_team.scss */
.who-we-are .team .team-box img {
    max-width: 100%;
}

/* line 52, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_team.scss */
.who-we-are .team .team-box h2 {
    font-family: "A2 60 Display Regular", 'Arial Black', Arial, Helvetica, Verdana, sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 27px;
    margin-top: 18px;
}

/* line 58, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_team.scss */
.who-we-are .team .team-box h5 {
    font-family: "Calibre", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
    margin: 6px 0 7px;
}

/* line 68, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_team.scss */
.who-we-are .team .extra-one .team-box:nth-last-child(1) {
    margin-left: 25.58941%;
}

@media screen and (max-width: 600px) {
    /* line 73, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/who-we-are/_team.scss */
    .who-we-are .team .extra-one .team-box:nth-last-child(1) {
        margin-left: 0%;
    }
}

/* line 2, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/privacy-terms/_privacy-terms.scss */
.app-wrapper .privacy,
.app-wrapper .terms {
    padding: 100px 0 55px;
}

/* line 5, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/privacy-terms/_privacy-terms.scss */
.app-wrapper .privacy h1,
.app-wrapper .terms h1 {
    font-family: "Calibre", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

/* line 12, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/privacy-terms/_privacy-terms.scss */
.app-wrapper .privacy strong,
.app-wrapper .terms strong {
    font-family: "Calibre", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
}

/* line 17, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/privacy-terms/_privacy-terms.scss */
.app-wrapper .privacy p,
.app-wrapper .terms p {
    font-family: "Calibre", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    margin-top: 15px;
    margin-bottom: 15px;
}

/* line 25, /Users/Chris/Development/dcg/htdocs/content/themes/dcg/src/sass/includes/sections/privacy-terms/_privacy-terms.scss */
.app-wrapper .privacy a,
.app-wrapper .terms a {
    text-decoration: none;
    color: #202020;
}

.who-we-are .board .team-info {
    -moz-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
	text-align: left;
    padding: 30px 30px 55px 30px;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #101820;
    color: #fff;
    position: relative;
    min-height: 250px;

    overflow-y: auto;

}

.who-we-are .board .team-info p {
    color: #fff;
    text-align: left;
}

.who-we-are .board .team-info p.teaser {
    display: none;
}

.who-we-are .board .board-box {
    overflow: hidden;

}

.who-we-are .board .board-box h2 {
    -moz-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.who-we-are .board .board-box {

}

.who-we-are .board .team-info h5 {
    margin-bottom: 15px;
    color: #888;
}

p.teaser {
    overflow: hidden;
    text-overflow: ellipsis;
}

.who-we-are .board .board-box:hover p.teaser {
    display: block;
}

.who-we-are .board .board-box:hover p.intro-bio {
    display: none;
}

.who-we-are .board .board-box:hover h2 {
    color: #03f2bd;
}

.who-we-are .board.expanded-bio .board-box:hover .team-info {

}

.who-we-are .board .board-box {
    box-sizing: border-box;
    padding: 0 15px;
    margin-right: 0;
}

.who-we-are .board .board-box .board-inner {
    background: #101820;
    position: relative;
    height: 611px;
}

.who-we-are .board .board-box:hover .board-inner {
    background: #03f2bd;
    overflow: hidden;
}

.who-we-are .board .board-box img {
    transition: opacity 1s ease-in;
    opacity: 1;
    display: block;
}

.who-we-are .board .board-box:hover img {
    transition: opacity .5s ease-in;
    opacity: .1;
}

.who-we-are .board .social {
    position: absolute;
    right: 15px;
    top: 35px;
    z-index: 9;
    opacity: 0;
}

.who-we-are .board .board-box:hover .social {
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    top: 20px;
    opacity: 1;
}

.who-we-are .board .social a {
    color: rgba(0, 0, 0, .3);
    text-decoration: none;
    font-size: 25px;
    display: inline-block;
    margin-right: 15px;
}

.who-we-are .board .social a:hover {
    text-decoration: none;
    color: #fff;
}

.expand-box {
    float: right;
}

.expand-box .line1, .expand-box .line2 {
    width: 20px;
    height: 3px;
    margin: 0 0 5px 0;
    display: block;
    border-bottom: 2px solid #ccc;
    transition: -webkit-transform 300ms;
    transition: transform 300ms;
}

.company-info {
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    width: 80%;
    padding: 15px;
    box-shadow: 0 0 5px rgba(0, 0, 0, .1);
    border: 1px solid #ddd;

}

.company-info:hover .expand-box .line1, .company-info:hover .expand-box .line2 {
    border-color: #101820;
}

.company-info.active {

}

.company-info .company-info-expanded {
    width: auto !important;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: -15px;
    margin-top: 15px;
    border-left: 0 !important;
    border-bottom: 0 !important;;
    border-right: 0 !important;;
    background: #f4f4f4 !important;
}

.active .line-wrapper {
    -webkit-transform: rotate(45deg) translateY(3px);
    transform: rotate(45deg) translateY(3px);
    transition: -webkit-transform 300ms;
    transition: transform 300ms;
}

.active .expand-box .line2 {
    -webkit-transform: translateY(-7px) rotate(90deg);
    transform: translateY(-7px) rotate(90deg);
}

.active .expand-box .line1, .active .expand-box .line2 {
    border-color: #101820;
}

.board .container {
    max-width: 1170px;
}

.board .row {
    margin-left: -15px;
    margin-right: -15px;
    text-align: center;
    font-size:0;
}

.board .row.true-grid {
	text-align: left;
}

#home-hero h1 {
    font-size: 80px;
    text-align: center;
    font-family: "A2 60 Display Regular", 'Arial Black', Arial, Helvetica, Verdana, sans-serif;
    line-height: 1.1;
    position: relative;
    z-index: 9;

}

.wpcf7-form .row {
	margin-left:-15px;
	margin-right:-15px;
}
.wpcf7-form .col-md-6 {
	width:50%;
	padding-left:15px;
	padding-right:15px;
	float:left;
	box-sizing: border-box;
}
.wpcf7-form label {
	font-size:18px;
	color:#fff;
}
.wpcf7-form input[type="text"], 
.wpcf7-form input[type="email"], 
.wpcf7-form input[type="textarea"] {
	width:100%;
	padding:5px;
}
.wpcf7-form input[type="submit"] {
	padding:10px 5px;
	background:#03f2bd;
	border:1px solid #03f2bd;
	color:#fff;
	font-size:16px;
	border-radius:4px;
	display:block;
	width:100%;
	color:rgba(0,0,0,.4);
}

.form-control {
	height:34px;
	line-height: 1;
	font-size:16px;
	padding:5px 10px;
}
select.form-control {
	width:150px;
}
textarea.form-control {
	height:100px;
}

.webform {
	width:100%;
}

.wpcf7cf_group label {
	color:#fff;
}

.row {
	margin-left:-15px;
	margin-right:-15px;
	overflow: hidden;
}
.row .col-md-6 {
	padding-left:15px;
	padding-right:15px;
	width:50%;
	float:left;
}

.row br {
	display: none;
}
footer .webform p {
	padding-right:0;
}
.webform textarea {
	width:100%;
}

#group-800 {
	margin-top:30px;
}

div.wpcf7 input[type="file"] {
	color:#fff;
	font-size:16px;
}
div.wpcf7-mail-sent-ok {
	padding:10px;
	color:#fff;
	border:0;
	font-size:18px;
}

.wpcf7-form-control-wrap {
	display: block;
	margin-top:10px;
}

@media screen and (max-width: 1024px) {
    .who-we-are .board .board-box {
        width: 50%;
    }

    .who-we-are .board .board-box .board-inner {
        height: 692px;
    }
}

@media screen and (max-width: 700px) {
    .who-we-are .board .board-box {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .who-we-are .board .container {
        max-width: 100%;
    }

    h1 {
        text-align: center;
    }

    .who-we-are .board .board-box .board-inner {
        height: auto !important;
    }

    .who-we-are .board .team-info {
        position: static;
        bottom: auto !important;
    }

    .board .row {
        margin-left: 0;
        margin-right: 0;
    }

    #home-hero h1 {
        font-size: 25px;
    }

    .green-box3, .green-box2, .green-box1 {
        display: none;
    }

    .company-info {
        width: 100%;
    }
    .network .hero .news-carousel .inner .title h3 {
	    font-size:22px;
    }
    .network .hero .news-carousel .inner .content p {
	    font-size:17px;
    }
}
