.mobileMenuToggle {
    height: 14px;
    width: 18px;
    position: relative;
    transition: 0.3s;
    cursor: pointer;
}

.mobileMenuToggle .bar {
    height: 2px;
    width: 18px;
    display: block;
    transition: 0.4s;
    position: absolute;
}

.mobileMenuToggle .bar:nth-of-type(1) {
    background-color: #fecf33;
    background-color: var(--yellow);
    top: 0px;
    transition: transform 0.20s ease-out 0.05s,
        background-color 0.05s ease 0.20s,
        top 0.15s ease 0.25s;
}

.mobileMenuToggle .bar:nth-of-type(2) {
    background-color: #f69833;
    background-color: var(--orange);
    top: 6px;
    transition: ease 0.15s 0.15s;
}

.mobileMenuToggle .bar:nth-of-type(3) {
    background-color: #ee6723;
    background-color: var(--peach);
    top: 12px;
    transition: top 0.15s ease 0.25s, 
        transform 0.15s ease-out 0.05s;
}

.mobileMenuToggle.mobileMenuOpen .bar:nth-of-type(1) {
    background-color: #ee6723;
    background-color: var(--peach);
    top: 6px;
    transform: rotate(45deg);
    transition: top 0.15s ease 0.05s,
        background-color 0.05s ease 0.2s,
        transform 0.20s ease-out 0.20s;
}

.mobileMenuToggle.mobileMenuOpen .bar:nth-of-type(2) {
    opacity: 0;
}

.mobileMenuToggle.mobileMenuOpen .bar:nth-of-type(3) {
    top: 6px;
    transform: rotate(-45deg);
    transition: top 0.15s ease 0.05s, 
        transform 0.20s ease-out 0.20s;
}
.mobileMenu {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;

    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    background-color: #fff;

    transition: transform 400ms ease-in-out, height 100ms ease-in-out;
    box-shadow: 0 2px 4px 0 rgba(193, 190, 193, 0.5);
}

body.fadeContent main,
body.fadeContent footer {
    opacity: 0;
}
 
.mobileMenu > div {
    margin-top: 84px;
    width: 100%;
    height: calc(100% - 84px);
    display: -webkit-flex;
    -webkit-flex-direction: column;

    display: flex;
    flex-direction: column;

    overflow: auto;
}

.mobileMenu > div > div:first-child {
    height: 24px;
    width: 100%;
    -webkit-flex-shrink: 1;
    flex-shrink: 1;
}

.mobileMenu > div nav {
    -webkit-flex: 1;
    flex: 1;
}

.mobileMenu a {
    line-height: 28px;
    font-size: 24px;
    font-weight: 300;
    color: #554d56;
    color: var(--teflon);
    width: 100%;
    padding: 24px 24px 24px 36px;
    display: block;
}

.mobileMenu a.current {
    font-weight: 500;
    color: #ee6723;
    color: var(--peach);
}

.mobileMenu > div > a:last-child {
    background-color: #419bf9;
    background-color: var(--cornflower-blue);
    color: #fff;
}

.mobileMenu.open {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.zeplinLogo {
    width: 60px;
    display: block;
}

@media screen and (max-width: 767px) {
    .zeplinLogo {
        width: 45px;
    }
}
header {
    display: -webkit-flex;
    -webkit-justify-content: space-between;
    -webkit-align-items: stretch;

    display: flex;
    justify-content: space-between;
    align-items: stretch;

    height: 96px;
    padding-left: 24px;
    position: fixed;
    width: 100vw;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 1000;
}

header.shadow {
    box-shadow: 0 2px 4px 0 rgba(151, 145, 151, 0.1);
}

header .mobileMenu {
    z-index: 1000;
}

header nav.left {
    display: -webkit-flex;
    -webkit-align-items: center;
    display: flex;
    align-items: center;
    z-index: 1000;
}

header nav.left > .mobileMenuToggle {
    display: none;
    margin-right: 6px;
    -webkit-align-self: center;
    align-self: center;
}

header nav.right {
    display: -webkit-flex;
    display: flex;
    z-index: 900;
}

header nav.right a {
    padding: 0 24px;
    display: -webkit-flex;
    -webkit-align-items: center;
    display: flex;
    align-items: center;
    line-height: 16px;
    opacity: 0.9;
    font-size: 14px;
    font-weight: 500;
    color: #979197;
    color: var(--gandalf);
}

header nav.right a:hover {
    background-color: #f7f7f7;
    background-color: var(--whitey);
}

header nav.right a:active {
    background-color: #edeced;
    background-color: var(--karl);
}

header nav.right a.current {
    -webkit-flex-direction: column;
    flex-direction: column;
    padding-top: 24px;
    color: #554d56;
    color: var(--teflon);
}

header nav.right a .navoji {
    line-height: 23px;
    font-size: 14px;
    margin-bottom: 3px;
    display: none;
}

header nav.right a.current .navoji {
    display: block;
}

header nav.right a.appLink {
    color: #419bf9;
    color: var(--cornflower-blue);
    opacity: 1;
}

header nav.right a.appLink.likeAButton {
    padding: 8px 16px;
    border-radius: 2px;
    background-color: #419bf9;
    background-color: var(--cornflower-blue);
    color: #ffffff;
    margin: 0 8px;
    -webkit-align-self: center;
    align-self: center;
}

header nav.right a.appLink:hover {
    background-color: #419bf9;
    background-color: var(--cornflower-blue);
    color: #fff;
}

header nav.right a.appLink:active {
    background-color: #4784c8;
    color: #fff;

}

@media screen and (min-width: 1280px) {
    header {
        padding-right: calc(50vw - 640px);
        padding-left: calc(50vw - 640px + 24px);
    }
}

@media screen and (max-width: 767px) {
    header {
        height: 84px;
        padding-left: 12px;
    }

    header nav.left .mobileMenuToggle {
        display: block;
    }

    header nav.right a {
        display: none;
    }

    header nav.right a.appLink {
        display: block;
        font-size: 14px;
        line-height: 16px;
        padding: 34px 24px;
    }

    header nav.right a.appLink.likeAButton {
        padding: 7px 14px;
        margin: 0 10px;
    }
}
nav.footerNavGroup {
    padding: 24px 36px 12px 12px;
}

nav.footerNavGroup > div {
    line-height: 16px;
    font-size: 14px;
    color: #554d56;
    color: var(--teflon);
}

@media screen and (max-width: 755px) {
    nav.footerNavGroup {
        padding-right: 0;
    }

    nav.footerNavGroup > div {
        line-height: 15px;
        font-size: 13px;
    }
}
footer {
    max-width: 1280px;
    display: -webkit-flex;
    -webkit-align-items: flex-start;
    display: flex;
    align-items: flex-start;
    padding: 0 24px 48px;
}

footer .zeplinLogoContainer {
    padding: 36px 72px 0 0;
}

footer span.soon {
    color: #554d56;
    color: var(--teflon);
}

footer nav.footerNavGroup a {
    margin-top: 12px;
    line-height: 16px;
    font-size: 14px;
    color: #979197;
    color: var(--gandalf);
    display: block;
}

@media screen and (min-width: 1280px) {
    footer {
        margin: 0 auto;
    }
}

@media screen and (max-width:911px) and (min-width: 864px) {
    footer .zeplinLogoContainer {
        padding-right: 24px;
    }
}

@media screen and (max-width: 863px) {
    footer {
        flex-wrap: wrap;
        padding: 0 24px 48px 36px;
    }

    footer .zeplinLogoContainer {
        width: 100%;

        display: -webkit-flex;
        -webkit-justify-content: center;
        -webkit-align-items: center;

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

        padding: 0 12px 24px 0;
    }
}

@media screen and (max-width: 755px) {
    footer {
        padding: 0 12px 24px;
    }

    footer .zeplinLogoContainer {
        padding: 0 0 12px 0;
    }

    footer span.community {
        display: none;
    }

    footer div.footerNavGroupContainer {
        display: -webkit-flex;
        display: flex;
    }

    footer > nav.footerNavGroup:first-of-type {
        margin-right: 12px;
    }

    footer nav.footerNavGroup a {
        font-size: 13px;
        line-height: 15px;
    }
}
.headline {
    padding: 0 24px;
    text-align: center;
}

.headline h1 {
    line-height: 28px;
    font-size: 24px;
    font-weight: 500;
    color: #554d56;
    color: var(--teflon);
}

.headline p {
    max-width: 840px;
    line-height: 26px;
    font-size: 18px;
    color: #979197;
    color: var(--gandalf);
    margin: 24px auto 0;
}

@media screen and (max-width: 767px) {
    .headline {
        padding: 0 12px;
    }

    .headline h1 {
        font-size: 18px;
        line-height: 21px;
    }

    .headline p {
        font-size: 16px;
        line-height: 22px;
        margin-top: 12px;
    }
}.tabView {
    display: -webkit-flex;
    -webkit-flex-direction: column;
    -webkit-align-items: center;

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

    position: relative;
}

.tabView .tabs {
    position: relative;
}

.tabView .tabs .tab {
    display: block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.tabView .tabs .tab input {
    display: none;
}

.tabView .tabIndicator {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    background-color: #419bf9;
    background-color: var(--cornflower-blue);
}

.tabView.changingTab .tabIndicator {
    transition: all 150ms ease-out;
}

.tabView hr {
    width: calc(100vw - 48px);
    max-width: 1024px;
    height: 1px;
    background-color: #edeced;
    background-color: var(--karl);
}

.tabView .tabContent {
    /* FIXME: Remove display after old tabContent is no more */
    display: initial;
    overflow: auto;
    -webkit-flex: 1;
    flex: 1;
}

@media screen and (max-width: 767px) {
    .tabView hr {
        max-width: calc(100vw - 24px);
    }
}
.featureContainer.horizontal > div:first-child {
    margin-right: 72px;
}

.featureContainer.horizontal .visual {
    width: 588px;
}

.featureContainer.horizontal .text {
    flex: 1;
    max-width: 572px;
}

.featureContainer.horizontal .text .headline {
    text-align: left;
}

.featureContainer.horizontal .text .learnMore {
    margin-top: 24px;
}

.featureContainer.horizontal .text .testimonial {
    margin-top: 60px;
}

.featureContainer.horizontal .text .testimonial blockquote {
    text-align: left;
}

@media screen and (max-width: 1279px) and (min-width: 1096px) {
    .featureContainer.horizontal > div:first-child {
        margin-right: 48px;
    }
}

@media screen and (max-width: 1095px) {
    .featureContainer.horizontal {
        display: -webkit-flex;
        -webkit-align-items: center;

        display: flex;
        align-items: center;
    }

    .featureContainer.horizontal.left {
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .featureContainer.horizontal.right {
        -webkit-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .featureContainer.horizontal.right > div:first-child {
        margin: 0;
    }

    .featureContainer.horizontal.left > div:first-child,
    .featureContainer.horizontal.right > div:last-child {
        margin: 0 0 60px;
    }
}

@media screen and (max-width: 767px) {
    .featureContainer.horizontal {
        padding: 0 12px;
        width: 100%;
    }

    .featureContainer.horizontal .visual {
        margin: 0 0 36px;
        width: 100%;
    }

    .featureContainer.horizontal .text {
        width: 100%;
    }

    .featureContainer.horizontal .text .learnMore {
        margin-top: 12px;
    }

    .featureContainer.horizontal .text .testimonial {
        margin-top: 120px;
    }
}.featureContainer.vertical {
    -webkit-flex-direction: column;
    -webkit-align-self: strecth;
    -webkit-align-items: center;
    flex-direction: column;
    align-self: stretch;
    align-items: center;
}

.featureContainer.vertical > .headline {
    margin-bottom: 60px;
}

.featureContainer.vertical > .visual {
    width: 100%;
}

.featureContainer.vertical .learnMore {
    margin-top: 24px;
    text-align: center;
}

.featureContainer.vertical .testimonial {
    display: -webkit-flex;
    display: flex;

    margin-top: 160px;

    padding: 0 24px;
}

@media screen and (max-width: 767px) {
    .featureContainer.vertical {
        padding: 0 12px;
    }

    .featureContainer.vertical .headline {
        text-align: left;
        padding: 0;
        margin-bottom: 36px;
    }

    .featureContainer.vertical .learnMore {
        margin: 12px 0 0 0;
        text-align: left;
    }

    .featureContainer.vertical .testimonial {
        align-items: flex-start;
        margin-top: 120px;
        padding: 0;
    }

    .featureContainer.vertical .testimonial blockquote {
        text-align: left;
    }
}.code code {
    font-size: 13px;
    line-height: 16px;
}

.code .lineWrapper {
    display: block;
    width: 100%;
}

.code .line {
    word-wrap: break-word;
    white-space: pre-wrap;
    word-break: normal;
    display: inline-block;
    width: 100%;
}

@media screen and (max-width: 464px) {
    .code code {
        font-size: 12px;
        line-height: 14px;
    }
}

@media screen and (max-width: 375px) {
    .code code {
        font-size: 10px;
        line-height: 12px;
    }
}.codePanel {
    padding: 36px 24px;
    border-radius: 2px;
    background-color: #474e5d;
}

.codePanel .langSelector {
    display: -webkit-flex;
    display: flex;
    margin-bottom: 24px;
}

.codePanel .langSelector label {
    margin-right: 24px;
    display: block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.codePanel .langSelector label input {
    display: none;
}

.codePanel .langSelector label span {
    line-height: 21px;
    opacity: 0.3;
    font-size: 18px;
    color: #f7f7f7;
    color: var(--whitey);
    pointer-events: none;
}

.codePanel .langSelector label input[value="xml"] + span {
    padding-right: 4px;
}

.codePanel .langSelector label:active span,
.codePanel .langSelector label input:checked + span {
    color: #edeced;
    color: var(--karl);
    opacity: 1;
}

@media screen and (max-width: 663px) {
    .codePanel {
        padding: 24px;

        display: -webkit-flex;
        -webkit-flex-direction: column;
        -webkit-align-items: center;

        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 464px) {
    .codePanel .langSelector label span {
        font-size: 15px;
        line-height: 18px;
    }
}.measurements {
    position: relative;
}

.measurements div {
    position: absolute;
}

.measurements .line {
    background-color: #fe6868;
}

.measurements .top,
.measurements .bottom {
    left: -4px;
    width: calc(100% + 8px);
    height: 1px;
}

.measurements .top {
    top: 0;
}

.measurements .bottom {
    bottom: 0;
}

.measurements .left,
.measurements .right {
    height: calc(100% + 8px);
    width: 1px;
    top: -4px;
}

.measurements .left {
    left: 0;
}

.measurements .right {
    right: 0;
}

.measurements .toDistance {
    width: 1px;
    left: calc(50%);
    top: calc(100%);
}

.measurements .atDistance {
    width: 13px;
    left: calc(50% - 6px);
    height: 1px;
}

.measurements .dimension {
    font-size: 14px;
    line-height: 16px;
    color: #fe6868;
}

.measurements .width {
    bottom: calc(100% + 4px);
    left: calc(50% - 2ch);
}

.measurements .height {
    left: calc(100% + 4px);
    top: calc(50% - 8px);
}

.measurements .distance {
    left: calc(100% + 4px);
    top: calc(50% - 8px);
}
.specs {
    padding-right: 20px;
}

.specs h1 {
    margin-bottom: 24px;
}

.specs .designButton {
    width: 142px;
    height: 40px;
    border-radius: 20px;
    background-color: #94f0ed;
    margin-bottom: 36px;
    display: -webkit-flex;
    -webkit-align-items: center;
    -webkit-justify-content: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.specs .designButton .measurements.web {
    font-size: 18px;
    line-height: 21px;
    color: #ffffff;
    flex: 1;
    height: 100%;
    -webkit-align-items: center;
    -webkit-justify-content: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.specs .designButton .measurements.ios,
.specs .designButton .measurements.android {
    font-size: 18px;
    line-height: 21px;
    color: #ffffff;
}

.specs .designButton .measurements.ios span,
.specs .designButton .measurements.android span {
    color: #554d56;
    color: var(--teflon);
}

.specs img {
    width: 160px;
    display: block;
}

@media screen and (max-width: 664px) {
    .specs img {
        width: 120px;
    }
}

@media screen and (max-width: 704px) and (min-width: 664px) {
    .specs {
        padding-right: 0;
    }
}

@media screen and (max-width: 664px) {
    .specs .designButton {
        width: 108px;
        height: 30px;
        border-radius: 17px;
    }

    .specs .designButton .measurements.web {
        font-size: 15px;
        line-height: 18px;
    }

    .specs .designButton .measurements.ios,
    .specs .designButton .measurements.android {
        font-size: 15px;
        line-height: 18px;
    }
}

@media screen and (max-width: 704px) and (min-width: 664px){
    .measurements.web .height {
        display: none;
    }
}
.assets h1 {
    margin-bottom: 24px;
}

.assets h3 {
    line-height: 19px;
    font-size: 16px;
    color: #979197;
    color: var(--gandalf);
    font-weight: normal;
    margin-bottom: 12px;
}

.assets img {
    display: block;
}

.assets img:first-of-type {
    margin-bottom: 31px;
}

.assets img:last-of-type {
    width: 53px;
}

@media screen and (max-width: 767px) and (min-width: 664px) {
    .assets img:last-of-type {
        width: 48px;
    }
}

@media screen and (max-width: 704px) and (min-width: 664px) {
    .assets img:first-of-type {
        margin-bottom: 43px;
    }
}

@media screen and (max-width: 663px) {
    .assets img:first-of-type {
        margin-bottom: 24px;
    }
}

@media screen and (max-width: 767px) and (min-width: 705px) {
    .assets img:first-of-type {
        width: 144px;
    }
}

@media screen and (max-width: 704px) {
    .assets h1 {
        margin-bottom: 19px;
    }

    .assets img:first-of-type {
        width: 108px;
    }

    .asset img:last-of-type {
        width: 45px;
    }
}

@media screen and (max-width: 663px) {
    .assets h3 {
        margin-bottom: 6px;
    }

    .assets img:last-of-type {
        width: 45px;
    }
}
.colorsAndTextStyles h1 {
    margin-bottom: 24px;
}

.colorsAndTextStyles .colors {
    display: -webkit-flex;
    display: flex;
    margin-bottom: 48px;
}

.colorsAndTextStyles .colors div {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: solid 2px rgba(85, 77, 86, 0.2);
}

.colorsAndTextStyles .colors div:nth-child(1) {
    background-color: #94f0ed;
}

.colorsAndTextStyles .colors div:nth-child(2) {
    background-color: #ffe9f8;
}

.colorsAndTextStyles .colors div:nth-child(3) {
    background-color: #ffd78d;
}

.colorsAndTextStyles .colors div:nth-child(4) {
    background-color: #554d56;
    background-color: var(--teflon);
}

.colorsAndTextStyles .colors div:nth-child(5) {
    background-color: #c1bec1;
    background-color: var(--clooney);
}

.colorsAndTextStyles .colors div:not(:first-child) {
    margin-left: 12px;
}

.colorsAndTextStyles h1.bigTextStyle {
    line-height: 33px;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 5px;
}

.colorsAndTextStyles h2.smallTextStyle {
    line-height: 24px;
    font-size: 20px;
    font-weight: bold;
    color: #554d56;
    color: var(--teflon);
}
.design {
    padding: 36px;
    border-radius: 2px;
    background-color: #fbfbfb;
    display: -webkit-flex;
    display: flex;
    height: 308px;
}

.design h1 {
    line-height: 21px;
    font-size: 18px;
    color: #554d56;
    color: var(--teflon);
    font-weight: normal;
}

.design .assets {
    margin-left: 72px;
}

.design .colorsAndTextStyles {
    margin-left: 73px;
}

@media screen and (max-width: 1191px) {
    .design {
        padding: 36px 24px;
    }

    .design .assets {
        margin-left: 36px;
    }

    .design .colorsAndTextStyles {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .design .assets {
        margin-left: 36px;
    }
}

@media screen and (max-width: 756px) {
    .design .assets {
        margin-left: 24px;
    }
}

@media screen and (max-width: 663px) {
    .design {
        padding: 12px;
        -webkit-justify-content: center;
        justify-content: center;
        height: 221px;
    }

    .design .assets {
        margin-left: 25px;
    }
}
.resources {
    display: -webkit-flex;
    display: flex;
    padding: 0 24px;
}

.resources .design {
    margin-right: 24px;
}

.resources .codePanel {
    width: 350px;
    height: 308px;
}

@media screen and (max-width: 1191px) {
    .resources .design {
        margin-right: 8px;
    }

    .resources .codePanel {
        width: 304px;
    }
}

@media screen and (max-width: 663px) {
    .resources {
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .resources .design {
        margin: 0 0 6px;
    }

    .resources .codePanel {
        width: 100%;
        height: 221px;
    }
}.developmentResourcesTabView > .tabs .tab:first-of-type,
.developmentResourcesTabView > .tabs .tab:last-of-type {
    position: absolute;
    top: 0;
}

.developmentResourcesTabView > .tabs .tab:first-of-type {
    right: calc(100% + 24px);
}

.developmentResourcesTabView > .tabs .tab:last-of-type {
    left: calc(100% + 24px);
}

.developmentResourcesTabView > .tabs .tab span {
    display: inline-block;
    padding: 7px 24px 5px;
    line-height: 32px;
    font-size: 24px;
    color: #554d56;
    color: var(--teflon);
}

.developmentResourcesTabView > .tabs .tab:active,
.developmentResourcesTabView > .tabs .tab input:checked + span {
    color: #419bf9;
    color: var(--cornflower-blue);
}

.developmentResourcesTabView > .tabContent {
    -webkit-align-self: stretch;
    align-self: stretch;

    display: -webkit-flex;
    -webkit-flex-direction: column;
    -webkit-align-items: center;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.developmentResourcesTabView > .tabIndicator {
    top: 0;
    opacity: 0.2;
    border-radius: 24px;
    background-color: #419bf9;
    background-color: var(--cornflower-blue);
}

.developmentResourcesTabView > .tabContent .resources {
    margin-top: 36px;
}

@media screen and (max-width: 767px) {
    .developmentResourcesTabView > .tabs {
        left: -10px;
    }
    .developmentResourcesTabView > .tabs .tab span {
        padding: 6px 16px;
        line-height: 24px;
        font-size: 18px;
    }

    .developmentResourcesTabView > .tabs .tab:first-of-type {
        right: calc(100% + 12px);
    }

    .developmentResourcesTabView > .tabs .tab:last-of-type {
        left: calc(100% + 12px);
    }

    .developmentResourcesTabView > .tabContent {
        -webkit-align-items: stretch;
        align-items: stretch;
    }

    .developmentResourcesTabView > .tabContent .resources {
        margin-top: 24px;
    }
}
.testimonial {
    display: -webkit-flex;
    -webkit-flex-direction: column;
    -webkit-align-items: center;

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

    padding: 0 24px;
}

.testimonial blockquote {
    max-width: 840px;
    line-height: 28px;
    font-size: 24px;
    font-style: italic;
    font-weight: 500;
    color: #554d56;
    color: var(--teflon);
    text-align: center;
    margin-bottom: 12px;
}

.testimonial .author {
    display: -webkit-flex;
    -webkit-align-items: center;

    display: flex;
    align-items: center;

    margin-left: 16px;
}

.testimonial .author img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.testimonial .author .authorInfo {
    margin-left: 6px;
}

.testimonial .author .authorName {
    line-height: 16px;
    font-size: 14px;
    color: #554d56;
    color: var(--teflon);
}

.testimonial .author .authorTitle {
    line-height: 14px;
    font-size: 12px;
    color: #979197;
    color: var(--gandalf);
}

a.pinterest {
    font-weight: 500;
    color: #bc081b;
    color: var(--pinterest);
}

a.intercom {
    font-weight: 500;
    color: #008ff4;
    color: var(--intercom);
}

a.slack {
    font-weight: 500;
    color: #e01a59;
    color: var(--slack);
}

a.twitter {
    font-weight: 500;
    color: #26aff4;
    color: var(--twitter);
}

a.khanacademy {
    font-weight: 500;
    color: #444444;
    color: var(--khan-academy);
}

a.prolificinteractive {
    font-weight: 500;
    color: #0f97ff;
    color: var(--prolific-interactive);
}

a.smithai {
    font-weight: 500;
    color: #e7470b;
    color: var(--smithai);
}

a.designpluscode {
    font-weight: 500;
}

a.designpluscode span:first-child {
    color: #5636f5;
}

a.designpluscode span:nth-child(2) {
    color: #408af8;
}

a.designpluscode span:last-child {
    color: #ace1c9;
}

a.starbucks {
    font-weight: 500;
    color: #006f42;
    color: var(--starbucks);
}

@media screen and (max-width: 600px) {
    .testimonial {
        padding: 0 12px;
    }

    .testimonial blockquote {
        line-height: 21px;
        font-size: 18px;
        font-style: normal;
    }
}
.featureContainer.vertical.developmentResources {
    -webkit-align-self: stretch;
    align-self: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
    padding: 0;
}

.featureContainer.vertical.developmentResources .headline,
.featureContainer.vertical.developmentResources .learnMore,
.featureContainer.vertical.developmentResources .tabView > .tabContent .resources {
    padding: 0 24px;
}

.featureContainer.vertical.developmentResources .testimonial {
    padding: 0 48px;
}

@media screen and (max-width: 767px) {
    .featureContainer.vertical.developmentResources {
        padding: 0;
    }

    .featureContainer.vertical.developmentResources .headline,
    .featureContainer.vertical.developmentResources .learnMore,
    .featureContainer.vertical.developmentResources .tabView > .tabContent .resources,
    .featureContainer.vertical.developmentResources .testimonial {
        padding: 0 12px;
    }
}.designSystem .visual {
    max-width: 1040px;
}

.designSystem .visual .animation {
    width: 100%;
    display: block;
    box-shadow: 0 0 8px 0 rgba(193, 190, 193, 0.52);
    border-radius: 6px;
}
.featureContainer {
    display: -webkit-flex;
    display: flex;
    margin-bottom: 200px;
    padding: 0 24px;
}

.featureContainer .headline {
    padding: 0;
}

.featureContainer .learnMore {
    line-height: 21px;
    font-size: 18px;
    color: #419bf9;
    color: var(--cornflower-blue);
    display: block;
}

.featureContainer .testimonial {
    display: block;
    padding: 0;
}

.featureContainer .testimonial blockquote {
    margin-bottom: 12px;
    line-height: 22px;
    font-size: 16px;
    font-weight: normal;
    color: #554d56;
    color: var(--teflon);
}

.featureContainer .testimonial .author {
    margin-left: 0;
}

.featureContainer .testimonial .author .authorInfo {
    margin-left: 12px;
}

.featureContainer .testimonial .author .authorName {
    line-height: 19px;
    font-size: 16px;
    margin-bottom: 1px;
}

.featureContainer .testimonial .author .authorTitle {
    line-height: 16px;
    font-size: 14px;
}


@media screen and (max-width: 767px) {
    .featureContainer {
        margin-bottom: 120px;
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .featureContainer .learnMore {
        font-size: 16px;
        line-height: 19px;
    }
}
.exportInOneClick .visual {
    position: relative;
}

.exportInOneClick .visual .background {
    background-color: #ffe9f8;
    position: absolute;
    width: 408px;
    height: 424px;
    left: 0;
    top: 0;
    z-index: -1;
}

.exportInOneClick .visual .screenshot {
    margin: 48px 0 0 24px;
    display: block;
    box-shadow: 0 0 6px 0 rgba(193, 190, 193, 0.5);
    box-shadow: 0 0 6px 0 var(--clooney-50pc);
}

.exportInOneClick.featureContainer.horizontal .headline,
.exportInOneClick.featureContainer.horizontal .designTools,
.exportInOneClick.featureContainer.horizontal .testimonial {
    margin-top: 48px;
}

.exportInOneClick.featureContainer.horizontal .designTools {
    display: block;
    max-width: 100%;
}

@media screen and (max-width: 1095px) {
    .exportInOneClick.featureContainer.horizontal .headline {
        margin-top: 0;
    }
}

@media screen and (max-width: 767px) {
    .exportInOneClick.featureContainer.horizontal > div:first-child {
        margin-bottom: 36px;
    }

    .exportInOneClick .visual .background {
        left: -12px;
        width: 67%;
        height: 89%;
    }

    .exportInOneClick .visual .screenshot {
        margin: 24px 0 0;
        width: 100%;
    }

    .exportInOneClick.featureContainer.horizontal .designTools {
        margin-top: 24px;
    }
    
    .exportInOneClick.featureContainer.horizontal .testimonial {
        margin-top: 120px;
    }
}
@media screen and (min-width: 1096px) {
    .generateResources .headline h1 {
        padding-left: 50px;
    }
}.everyoneOneSamePage .headline {
    margin-top: 96px;
}

.everyoneOneSamePage .visual {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.everyoneOneSamePage .slackLogo {
    width: 40px;
    margin: 5px 10px 0 0;
}

.everyoneOneSamePage .hearts {
    position: absolute;
    width: 36px;
    right: -36px;
    bottom: 17px;
}

@media screen and (max-width: 1279px) {
    .everyoneOneSamePage .hearts {
        display: none;
    }
}

@media screen and (max-width: 1095px) {
    .everyoneOneSamePage .headline {
        margin-top: 0;
    }
}

@media screen and (max-width: 767px) {
    .everyoneOneSamePage .visual {
        display: block;
    }

    .everyoneOneSamePage.featureContainer.horizontal > div:first-child {
        margin-bottom: 12px;
    }

    .everyoneOneSamePage .visual .screenshot {
        width: 100%;
    }

    .everyoneOneSamePage .visual .slackLogo {
        width: 24px;
        margin: 36px auto 12px;
        display: block;
        position: initial;
    }
}@media screen and (min-width: 1096px) {
    .curateYourDesignSystem .headline h1 {
        padding-left: 50px;
    }
}
.getStarted {
    margin: 0 24px;

    display: -webkit-flex;
    -webkit-flex-direction: column;
    -webkit-align-items: center;

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

    position: relative;
}

.getStarted .getStartedForFree {
    display: block;
    max-width: 350px;
    width: 350px;
    height: 60px;
    border-radius: 2px;
    background-color: #419bf9;
    background-color: var(--cornflower-blue);
    padding: 16px;
    line-height: 28px;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    color: #ffffff;
}

.getStarted .getStartedForFree:not(.withSpecDemo):hover {
    background-color: #4784c8;
}

.getStarted .specDemo {
    position: absolute;
    opacity: 0;
    will-change: opacity;
    transition: opacity 200ms ease-out;
    z-index: -1;
}

.getStarted .getStartedForFree:hover ~ .specDemo {
    opacity: 1;
}

.getStarted .specDemo.verticalDashes {
    top: -24px;
    left: 0;
    width: 352px;
    height: 108px;
    border-left: dashed 1px #ee6723;
    border-left: dashed 1px var(--peach);
    border-right: dashed 1px #ee6723;
    border-right: dashed 1px var(--peach);
}

.getStarted .specDemo.horizontalDashes {
    top: -1px;
    left: -47px;
    width: 444px;
    height: 62px;
    border-bottom: dashed 1px #ee6723;
    border-bottom: dashed 1px var(--peach);
    border-top: dashed 1px #ee6723;
    border-top: dashed 1px var(--peach);
}

.getStarted .specDemo.layerBox {
    top: -1px;
    left: 0;
    width: 352px;
    height: 62px;
    border: solid 1px #ee6723;
    border: solid 1px var(--peach);
    transition: opacity 100ms ease-out;
}

.getStarted .specDemo.dimension {
    height: 16px;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    color: #ee6723;
    color: var(--peach);
}

.getStarted .specDemo.width {
    left: 157px;
    top: -29px;
}

.getStarted .specDemo.height {
    left: 364px;
    top: 20px;
}

.getStarted .specDemo.littleDot {
    width: 5px;
    height: 5px;
    border: solid 1px #ee6723;
    border: solid 1px var(--peach);
    border-radius: 50%;
    background-color: #fff;
    z-index: initial;
}

.getStarted .specDemo.littleDot.top {
    top: -2px;
}

.getStarted .specDemo.littleDot.bottom {
    top: 57px;
}

.getStarted .specDemo.littleDot.right {
    left: 349px;
}

.getStarted .specDemo.littleDot.left {
    left: -2px;
}

.getStarted .specDemo.layerSpec {
    top: -51px;
    left: 424px;
    text-align: left;
    font-weight: normal;
    width: 139px;
}

.getStarted .specDemo.layerSpec .group:first-child {
    margin-bottom: 24px;
}

.getStarted .specDemo.layerSpec .group {
    line-height: 16px;
    font-size: 14px;
    color: #979197;
    color: var(--gandalf);
}

.getStarted .specDemo.layerSpec .group .name {
    color: #554d56;
    color: var(--teflon);
    margin-bottom: 12px;
}

.getStarted .specDemo.layerSpec .group .color {
    display: -webkit-flex;
    display: flex;
    margin-top: 6px;
}

.getStarted .specDemo.layerSpec .group .display {
    width: 22px;
    height: 22px;
    border-radius: 2px;
    border: solid 1px rgba(151, 145, 151, 0.3);
    margin-right: 6px;
}

.getStarted .specDemo.layerSpec .group:first-child .display {
    background-color: #419bf9;
    background-color: var(--cornflower-blue);
}

.getStarted .specDemo.layerSpec .group:last-child .display {
    background-color: #ffffff;
}

.getStarted .specDemo.layerSpec .group .value div:first-child {
    margin-bottom: 2px;
}

.getStarted .goToProjects {
    max-width: 352px;
    width: 352px;
    line-height: 21px;
    font-size: 18px;
    text-align: center;
    color: #419bf9;
    color: var(--cornflower-blue);
    visibility: hidden;
    margin-top: 24px;
    display: block;
}

.getStarted .goToProjects.visible {
    visibility: visible;
}

@media screen and (max-width: 767px) {
    .getStarted {
        overflow: hidden;
    }
    
    .getStarted .getStartedForFree {
        font-size: 18px;
        line-height: 21px;
        height: 49px;
        width: 100%;
        padding: 14px;
    }

    .getStarted .goToProjects {
        font-size: 12px;
        line-height: 14px;
        margin-top: 18px;
        width: 100%;
    }

    .getStarted .getStartedForFree:hover ~ .specDemo {
        opacity: 0;
    }
}
.areYouReady {
    -webkit-align-self: stretch;
    align-self: stretch;

    display: -webkit-flex;
    -webkit-flex-direction: column;
    -webkit-align-items: center;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.areYouReady h1 {
    line-height: 42px;
    font-size: 36px;
    font-weight: 300;
    color: #554d56;
    color: var(--teflon);
    margin-top: 36px;
    text-align: center;
    padding: 0 24px;
}

.areYouReady .getStarted {
    margin-top: 36px;
}

@media screen and (max-width: 767px) {
    .areYouReady h1 {
        line-height: 32px;
        font-size: 24px;
        font-weight: 300;
        padding: 0 12px;
        margin-top: 24px;
    }

    .areYouReady .getStarted {
        -webkit-align-self: stretch;
        align-self: stretch;
        margin-top: 24px;
    }
}
.readyToExport picture {
    width: 400px;
}

.readyToExport picture > img {
    display: block;
}

@media screen and (max-width: 767px) {
    .readyToExport picture {
        width: 195px;
    }

    .readyToExport h1 span {
        display: none;
    }
}
.reasonsForDesigners {
    display: -webkit-flex;
    -webkit-flex-direction: column;
    -webkit-align-items: center;

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

    padding-top: 72px;
}

.reasonsForDesigners .readyToExport {
    margin-bottom: 115px;
}

@media screen and (max-width: 767px) {
    .reasonsForDesigners {
        padding-top: 36px;
    }

    .reasonsForDesigners .generateResources {
        margin-bottom: 72px;
    }

    .reasonsForDesigners .readyToExport {
        margin-bottom: 76px;
    }
}
.alwaysUpToDate .visual {
    position: relative;
}

.alwaysUpToDate .visual .background {
    background-color: #ffd78d;
    position: absolute;
    width: 408px;
    height: 424px;
    left: 0;
    top: 0;
    z-index: -1;
}

.alwaysUpToDate .visual .screenshot {
    margin: 48px 0 0 24px;
    display: block;
    box-shadow: 0 0 6px 0 rgba(193, 190, 193, 0.5);
    box-shadow: 0 0 6px 0 var(--clooney-50pc);
}

.alwaysUpToDate .headline {
    margin-top: 48px;
}

@media screen and (max-width: 1095px) {
    .alwaysUpToDate .headline {
        margin-top: 0;
    }
}

@media screen and (max-width: 767px) {
    .alwaysUpToDate .headline {
        margin-top: 0;
    }

    .alwaysUpToDate.featureContainer.horizontal > div:first-child {
        margin-bottom: 36px;
    }

    .alwaysUpToDate .visual .background {
        left: -12px;
        width: 67%;
        height: 89%;
    }

    .alwaysUpToDate .visual .screenshot {
        margin: 24px 0 0;
        width: 100%;
    }
}.codeSnippetsThatMakesSense .visual {
    position: relative;
    width: 588px;
    height: 403px;
}

.codeSnippetsThatMakesSense .visual .background {
    background-color: #94f0ed;
    position: absolute;
    width: 285px;
    height: 307px;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.codeSnippetsThatMakesSense .visual .screenshot {
    margin: 0 18px 25px 0;
    display: block;
    box-shadow: 0 0 6px 0 rgba(193, 190, 193, 0.5);
    box-shadow: 0 0 6px 0 var(--clooney-50pc);
}

@media screen and (max-width: 1095px) and (min-width: 768px) {
    .codeSnippetsThatMakesSense.featureContainer.horizontal .text {
        margin-left: 12px;
    }
}

@media screen and (max-width: 767px) {
    .codeSnippetsThatMakesSense .visual {
        height: auto;
    }
     
    .codeSnippetsThatMakesSense .visual .background {
        right: -12px;
        width: 67%;
        height: 89%;
    }

    .codeSnippetsThatMakesSense .visual .screenshot {
        margin: 0 18px 25px 0;
        width: 100%;
    }
}
.popItOut .visual {
    max-width: 926px;
}

.popItOut .visual video {
    width: 100%;
}
.readyToExperienceTheGlory {
    margin-bottom: 115px;
}

.readyToExperienceTheGlory img {
    width: 400px;
}

@media screen and (max-width: 767px) {
    .readyToExperienceTheGlory {
        margin-bottom: 76px;
    }   

    .readyToExperienceTheGlory img {
        width: 195px;
    }
}.reasonsForDevelopers {
    display: -webkit-flex;
    -webkit-flex-direction: column;
    -webkit-align-items: center;

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

    padding-top: 120px;
}

.reasonsForDevelopers .readyToExperienceTheGlory {
    margin-bottom: 115px;
}

@media screen and (max-width: 1095px) {
    .reasonsForDevelopers {
        padding-top: 72px;
    }
}

@media screen and (max-width: 767px) {
    .reasonsForDevelopers {
        padding-top: 36px;
    }

    .reasonsForDevelopers .readyToExperienceTheGlory {
        margin-bottom: 76px;
    }
}
.everyoneOnTheSamePage .visual {
    max-width: 1118px;
}

.everyoneOnTheSamePage .visual .screenshot {
    width: 100%;
    box-shadow: 0 0 6px 0 rgba(193, 190, 193, 0.5);
    box-shadow: 0 0 6px 0 var(--clooney-50pc);
}
.illustrations {
    width: 546px;
    height: 400px;
    position: relative;
    margin-left: 42px;
}

.illustrations .bubble p {
    line-height: 16px;
    font-size: 14px;
    color: #554d56;
    color: var(--teflon);
    position: absolute;
}

.illustrations .bubble p span {
    background-color: rgba(254, 207, 51, 0.3);
}

.illustrations .bubble img {
    width: 100%;
    display: block;
}

.illustrations .jan {
    position: relative;
    width: 120px;
}

.illustrations .jan p {
    width: 286px;
    left: calc(100% + 12px);
    top: 24px;
}

.illustrations .zo {
    width: 120px;
    position: relative;
    left: 361px;
    top: -40px;
}

.illustrations .zo p {
    width: 139px;
    text-align: right;
    right: calc(100% + 12px);
    top: 44px;
    line-height: 18px;
}

.illustrations .zo p img {
    width: 22px;
    position: relative;
    top: -1px;
    vertical-align: middle;
    margin-left: 4px;
    display: initial;
}

.illustrations .bran {
    width: 200px;
    position: relative;
    top: -54px;
    left: 63px;
}

.illustrations .bran p {
    left: calc(100% + 12px);
    top: 44px;
    width: 206px;
}

.illustrations > img {
    position: absolute;
    top: 80px;
    left: 0;
    z-index: -2;
}

@media screen and (max-width: 767px) {
    .illustrations {
        width: 296px;
        height: 290px;
        margin-left: 0;
    }
    
    .illustrations .jan {
        width: 84px;
    }

    .illustrations .jan p {
        width: 200px;
        left: calc(100% + 12px);
        top: 18px;
    }

    .illustrations .zo {
        width: 74px;
        left: 0;
        top: 0;
        margin: 10px 0 10px 216px;
    }
    
    .illustrations .zo p {
        width: 180px;
        right: calc(100% + 12px);
        top: 20px;
    }

    .illustrations .bran {
        width: 96px;
        position: relative;
        top: 0;
        left: 0;
        margin-left: 25px;
    }
    
    .illustrations .bran p {
        left: calc(100% + 12px);
        top: 16px;
        width: 163px;
    }

    .illustrations > img {
        width: 295px;
        top: 65px;
    }
}
.collaborateRightOnTheDesigns .headline p {
    margin-top: 18px;
}

@media screen and (max-width: 767px) {
    .collaborateRightOnTheDesigns.featureContainer.horizontal .visual {
        width: auto;
    }
}
.trelloAndSlack .headline {
    margin-top: 44px;
}

.featureContainer.featureContainer.horizontal .text .trelloIntegration {
    margin-top: 12px;
}

@media screen and (max-width: 1095px) { 
    .trelloAndSlack .headline {
        margin-top: 0;
    }

    .trelloAndSlack .visual .screenshot {
        width: 100%;
    }
}.buildYourDesignRepository .headline h1 {
    padding-left: 50px;
}
.teamAreYouReadyToExport img {
    width: 292px;
}

.teamAreYouReadyToExport img {
    display: block;
}

@media screen and (max-width: 767px) {
    .teamAreYouReadyToExport img {
        width: 272px;
    }

    .teamAreYouReadyToExport h1 span {
        display: none;
    }
}
.reasonsForTeams {
    display: -webkit-flex;
    -webkit-flex-direction: column;
    -webkit-align-items: center;

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

    padding-top: 120px;
}

.reasonsForTeams .teamAreYouReadyToExport {
    margin-bottom: 115px;
}

@media screen and (max-width: 1095px) {
    .reasonsForTeams {
        padding-top: 72px;
    }
}

@media screen and (max-width: 767px) {
    .reasonsForTeams {
        padding-top: 36px;
    }

    .reasonsForTeams .teamAreYouReadyToExport {
        margin-bottom: 76px;
    }
}
.whyZeplin {
    padding-top: 96px;
}

.whyZeplin > .headline {
    margin-top: 160px;
}

.whyZeplin .audienceTabView {
    margin-top: 108px;
}

.whyZeplin .audienceTabView > .tabs .tab:first-of-type,
.whyZeplin .audienceTabView > .tabs .tab:last-of-type {
    position: absolute;
    top: 0;
}

.whyZeplin .audienceTabView > .tabs .tab:first-of-type {
    right: calc(100% + 24px);
}

.whyZeplin .audienceTabView > .tabs .tab:last-of-type {
    left: calc(100% + 24px);
}

.whyZeplin .audienceTabView > .tabs .tab span {
    line-height: 57px;
    font-size: 48px;
    font-weight: 300;
    color: #c1bec1;
    color: var(--clooney);
    padding: 12px 36px;
    display: inline-block;
}

.whyZeplin .audienceTabView > .tabs .tab:active,
.whyZeplin .audienceTabView > .tabs .tab input:checked + span {
    color: #419bf9;
    color: var(--cornflower-blue);
}

.whyZeplin .audienceTabView > .tabIndicator {
    height: 1px;
}

.whyZeplin .audienceTabView > .tabContent {
    -webkit-align-self: stretch;
    align-self: stretch;
}

.whyZeplin .screenshot {
    border-radius: 6px;
}

@media screen and (max-width: 914px) and (min-width: 768px) {
    .whyZeplin .audienceTabView > .tabs .tab span {
        line-height: 42px;
        font-size: 36px;
        padding: 12px 24px;
    }
}

@media screen and (max-width: 767px) {
    .whyZeplin {
        padding-top: 84px;
    }

    .whyZeplin > .headline {
        margin-top: 24px;
    }

    .whyZeplin .audienceTabView {
        margin-top: 28px;
    }

    .whyZeplin .audienceTabView > .tabs {
        left: 10px;
    }

    .whyZeplin .audienceTabView > .tabs .tab:first-of-type {
        right: calc(100% + 24px);
    }

    .whyZeplin .audienceTabView > .tabs .tab:last-of-type {
        left: calc(100% + 24px);
    }

    .whyZeplin .audienceTabView > .tabs .tab span {
        line-height: 36px;
        font-size: 28px;
        padding: 10px 18px;
    }
}

@media screen and (max-width: 630px) {
    .whyZeplin .audienceTabView > .tabs .tab:first-of-type {
        right: calc(100% + 12px);
    }

    .whyZeplin .audienceTabView > .tabs .tab:last-of-type {
        left: calc(100% + 12px);
    }

    .whyZeplin .audienceTabView > .tabs .tab span {
        line-height: 30px;
        font-size: 24px;
        padding: 10px 12px;
    }
}

@media screen and (max-width: 420px) {
    .whyZeplin .audienceTabView > .tabs .tab:first-of-type {
        right: calc(100%);
    }
    
    .whyZeplin .audienceTabView > .tabs .tab:last-of-type {
        left: calc(100%);
    }

    .whyZeplin .audienceTabView > .tabs .tab span {
        line-height: 24px;
        font-size: 20px;
        padding: 10px 6px;
    }
}
.connectedSpace {
    text-align: center;
    padding: 0 24px;
}

.connectedSpace h1 {
    line-height: 57px;
    font-size: 48px;
    font-weight: 300;
    color: #554d56;
    color: var(--teflon);
}

.connectedSpace h2 {
    margin-top: 24px;
    line-height: 48px;
    font-size: 36px;
    font-weight: 300;
    color: #979197;
    color: var(--gandalf);
}

@media screen and (min-width: 1019px) {
    .connectedSpace h2 {
        width: 971px;
    }
}

@media screen and (max-width: 1018px) {
    .connectedSpace h1,
    .connectedSpace h2 {
        width: 100%;
    }
}

@media screen and (max-width: 802px) and (min-width: 771px) {
    .connectedSpace h1 {
        font-size: 46px;
        line-height: 54px;
    }
}

@media screen and (max-width: 770px) and (min-width: 768px) {
    .connectedSpace h1 {
        font-size: 45px;
        line-height: 53px;
    }

    .connectedSpace h2 {
        line-height: 45px;
    }
}

@media screen and (max-width: 767px) {
    .connectedSpace {
        padding: 0 12px;
    }

    .connectedSpace h1 {
        font-size: 24px;
        line-height: 32px;
    }

    .connectedSpace h2 {
        font-size: 18px;
        line-height: 24px;
        margin-top: 12px;
    }
}
button {
    position: relative;
    width: 180px;
    height: 40px;
    background-image: none;
    box-shadow: 0 0 2px 0 #c1bec1;
    box-shadow: 0 0 2px 0 var(--clooney);
    text-align: center;
    font-size: 18px;
    cursor: pointer;
    transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

button:hover {
    box-shadow: 0 6px 10px 0 rgba(85, 77, 86, 0.2);
    box-shadow: 0 6px 10px 0 var(--teflon-20pc);
}

button:disabled:hover {
    cursor: initial;
    box-shadow: none;
}
.demo {
    margin: 0 24px;
}

.demo .demoContainer {
    max-width: 1024px;
    max-height: 605px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 8px 0 rgba(193, 190, 193, 0.52);
    border-radius: 6px;
    background-image: url(/static/demo/landingPoster.png);
    background-size: contain;
}

.demo .demoContainer .demoAnimation {
    width: 100%;
    display: block;
}

.demo .demoContainer.curtains,
.demo .demoContainer.videoOnTop {
    border-radius: 0;
}

.demo .demoContainer .youtubePlayer,
.demo .demoContainer .curtains {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.demo .demoContainer .youtubePlayer {
    z-index: -1;
    opacity: 0;
}

.demo .demoContainer.videoOnTop .youtubePlayer {
    z-index: 1;
    opacity: 1;
}

.demo .demoContainer.videoOnTop .demoAnimation {
    opacity: 0;
}

.demo .demoContainer .curtains {
    display: flex;
    z-index: 10;
}

.demo .demoContainer .curtains .slideRight {
    width: 50%;
    height: 100%;
    background-color: #FFD78D;
    animation-duration: 500ms;
    animation-timing-function: ease-in-out;
    animation-name: slide-right;
    -webkit-flex-shrink: 1;
    flex-shrink: 1;
}

@keyframes slide-right {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

.demo .demoContainer .curtains .slideLeft {
    width: 50%;
    height: 100%;
    background-color: #94F0ED;
    animation-duration: 500ms;
    animation-timing-function: ease-in-out;
    animation-name: slide-left;
    -webkit-flex-shrink: 1;
    flex-shrink: 1;
}

@keyframes slide-left {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.demo .demoContainer .curtains .growIntoBothSidesAndFadeOut {
    height: 100%;
    background-color: #FFAEB3;
    animation-duration: 1s;
    animation-delay: 500ms;
    animation-timing-function: ease-in-out;
    animation-name: grow-and-fade-out;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

@keyframes grow-and-fade-out {
    0% {
        width: 0%;
        opacity: 1;
    }
    50% {
        width: 100%;
        opacity: 1;
    }
    100% {
        width: 100%;
        opacity: 0;
    }
}

.demo .watchDemo {
    width: 314px;
    max-width: 314px;
    height: 60px;
    opacity: 0.9;
    border-radius: 2px;
    background-color: #ffffff;
    box-shadow: initial;

    display: -webkit-flex;
    -webkit-align-items: center;
    -webkit-justify-content: center;

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

    margin: 36px auto 0;
}

.demo .watchDemo:hover:not(:disabled) {
    cursor: pointer;
    opacity: 0.9;
    background-color: #f7f7f7;
    background-color: var(--whitey);
    box-shadow: initial;
}

.demo .watchDemo img {
    margin-right: 18px;
    width: 16px;
}

.demo .watchDemo span {
    display: inline-block;
    line-height: 28px;
    font-size: 24px;
    font-weight: 500;
    color: #419bf9;
    color: var(--cornflower-blue);
}

@media screen and (max-width: 767px) {
    .demo {
        margin: 0 12px;
    }

    .demo .watchDemo {
        width: 100%;
        height: 49px;
        margin-top: 12px;
    }

    .demo .watchDemo img {
        width: 12px;
    }

    .demo .watchDemo span {
        font-size: 18px;
        line-height: 21px;
    }
}
.experienceTheGlory img {
    width: 292px;
}

@media screen and (max-width: 767px) {
    .experienceTheGlory img {
        width: 272px;
    }
}
.teamsUsingZeplin {
    display: -webkit-flex;
    -webkit-align-items: center;
    -webkit-flex-direction: column;

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

    text-align: center;
    padding: 0 24px;
}

.teamsUsingZeplin h1 {
    line-height: 28px;
    font-size: 24px;
    font-weight: 500;
    color: #554d56;
    color: var(--teflon);
}

.teamsUsingZeplin h2 {
    width: 840px;
    line-height: 26px;
    font-size: 18px;
    font-weight: normal;
    color: #979197;
    color: var(--gandalf);
    margin: 24px 0 24px;
}

.teamsUsingZeplin h2 strong {
    color: #554d56;
    color: var(--teflon);
}

.teamsUsingZeplin .teamLogos {
    display: -webkit-flex;
    display: flex;
    margin-top: 36px;
}

.teamsUsingZeplin .teamLogos img {
    height: 38px;
    margin-right: 60px;
}

.teamsUsingZeplin .teamLogos img:last-child {
    margin-right: 0;
}

.teamsUsingZeplin .teamLogos.smallerLogos img {
    height: 32px;
}

.teamsUsingZeplin .teamLogos.mobile {
    display: none;
    margin: 12px 0 12px;
}

.teamsUsingZeplin .teamLogos.mobile img {
    height: 30px;
}

.teamsUsingZeplin .teamLogos.mobile.smallerLogos img {
    height: 24px;
}

.teamsUsingZeplin .teamLogos.mobile img:first-child:not(:last-child) {
    margin-right: 24px;
}

.teamsUsingZeplin .exploreWhy {
    margin-top: 60px;
    line-height: 21px;
    font-size: 18px;
    color: #419bf9;
    color: var(--cornflower-blue);
}

@media screen and (max-width: 887px) {
    .teamsUsingZeplin h1,
    .teamsUsingZeplin h2 {
        width: 100%;
    }
}

@media screen and (max-width: 799px) and (min-width: 764px) {
    .teamsUsingZeplin .teamLogos img {
        margin-right: 48px;
    }
    .teamsUsingZeplin .teamLogos.smallerLogos img {
        margin-right: 60px;
    }
}

@media screen and (max-width: 763px) and (min-width: 692px) {
    .teamsUsingZeplin .teamLogos img {
        margin-right: 24px;
    }
}

@media screen and (max-width: 691px) and (min-width: 564px) {
    .teamsUsingZeplin .teamLogos img {
        height: 30px;
    }

    .teamsUsingZeplin .teamLogos.smallerLogos img {
        height: 24px;
    }

    .teamsUsingZeplin .teamLogos img {
        margin-right: 19px;
    }
}

@media screen and (max-width: 563px) {
    .teamsUsingZeplin {
        padding: 0 12px;
    }

    .teamsUsingZeplin h1 {
        font-size: 18px;
        line-height: 21px;
    }

    .teamsUsingZeplin h2 {
        margin-top: 15px;
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 46px;
    }

    .teamsUsingZeplin .teamLogos.mobile {
        display: -webkit-flex;
        display: flex;
    }

    .teamsUsingZeplin .teamLogos.desktopAndTablet {
        display: none;
    }

    .teamsUsingZeplin .exploreWhy {
        margin-top: 24px;
        font-size: 16px;
        line-height: 19px;
    }
}
.landing {
    display: -webkit-flex;
    -webkit-flex-direction: column;
    -webkit-align-items: center;

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

    margin-top: 96px;
}

.landing .connectedSpace {
    margin-top: 160px;
}

.landing > .getStarted {
    margin-top: 84px;
}

.landing .demo {
    margin-top: 75px;
}

.landing .teamsUsingZeplin {
    margin-top: 144px;
}

.landing .testimonial {
    margin-top: 200px;
}

.landing .experienceTheGlory {
    margin: 200px 0 115px;
}

@media screen and (max-width: 767px) {
    .landing {
        -webkit-align-items: stretch;
        align-items: stretch;
        margin-top: 84px;
    }

    .landing .connectedSpace {
        margin-top: 24px;
    }

    .landing > .getStarted {
        margin-top: 48px;
    }

    .landing .demo {
        margin-top: 28px;
    }

    .landing .teamsUsingZeplin {
        margin-top: 94px;
    }

    .landing .testimonial {
        margin-top: 120px;
    }

    .landing .experienceTheGlory {
        margin: 120px 0 76px;
    }
}
.plan {
    display: -webkit-flex;
    -webkit-flex-direction: column;
    -webkit-align-items: center;

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

    padding: 24px;
}

.plan .planBody {
    display: -webkit-flex;
    -webkit-flex-direction: column;
    -webkit-align-items: center;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.plan .planBody img {
    width: 120px;
}

.plan .planBody .planInfo {
    text-align: center;
}

.plan .planBody .planInfo h2 {
    margin: 24px 0 16px;
    font-weight: bold;
    line-height: 21px;
    font-size: 18px;
    color: #554d56;
    color: var(--teflon);
}

.plan .planBody .planInfo .priceInfo {
    display: -webkit-flex;
    display: flex;

    -webkit-justify-content: center;
    justify-content: center;
}

.plan .planBody .planInfo .priceInfo .price {
    position: relative;
    color: #554d56;
    color: var(--teflon);
}

.plan .planBody .planInfo .priceInfo .price span {
    line-height: 60px;
    font-size: 60px;
    font-weight: 500;
    display: block;
}

.plan .planBody .planInfo .priceInfo .price::before {
    position: absolute;
    top: 9px;
    right: 100%;
    content: "$";
    line-height: 16px;
    font-size: 14px;
    font-weight: normal;
    margin-right: 4px;
}

.plan .planBody .planInfo .priceInfo .price::after {
    content: attr(data-fr);
    position: absolute;
    top: 2px;
    left: 100%;
    line-height: 35px;
    font-size: 30px;
    margin-left: 2px;
    font-weight: 500;
}

.plan .planBody .planInfo .priceInfo .priceRate {
    position: absolute;
    bottom: 0;
    left: 100%;
    text-align: left;
    margin-left: 2px;
    line-height: 16px;
    font-size: 14px;
    font-weight: normal;
    padding-bottom: 6px;
}

.plan .planBody .planInfo .planDetail {
    height: 66px;
    margin: 12px 0 12px;
}

.plan .planBody .planInfo .planDetail .projectCount {
    line-height: 19px;
    font-size: 16px;
    color: #554d56;
    color: var(--teflon);
}

.plan .planBody .planInfo .planDetail .perMemberDetail {
    line-height: 16px;
    font-size: 14px;
    color: #979197;
    color: var(--gandalf);
    margin-top: 12px;
}

.plan button {
    background-color: #fff;
    color: #ee6723;
    color: var(--peach);
    font-weight: 500;
    border-radius: 2px;
}

.recommended .plan button {
    width: 200px;
    background-color: #ee6723;
    background-color: var(--peach);
    color: #fff;
}

.plan button:active,
.recommended .plan button:active {
    color: #ee6723;
    color: var(--peach);
    background-color: #f7f7f7;
    background-color: var(--whitey);
}

.planContainer .caption {
    display: none;
    text-align: center;
    line-height: 19px;
    font-size: 16px;
    color: #554d56;
    color: var(--teflon);
    margin-top: 12px;
}

.planContainer .caption p {
    font-weight: 500;
}

.planContainer .caption ul {
    display: table;
    margin: 24px auto;
}

.planContainer .caption li {
    display: -webkit-flex;
    display: flex;

    text-align: left;
    list-style: none;
    margin-bottom: 12px;
}

.planContainer .caption li::before {
    content: "\2022";
    text-align: left;
    padding-right: 4px;
}

.plan .planBody .planInfo .priceInfo .price .organizationDiscountInfo {
    line-height: 19px;
    font-size: 16px;
    font-weight: normal;
    font-style: italic;
    width: 100%;
    position: absolute;
    bottom: calc(100% - 3px);
    left: 0;
    color: #fdbd39;
    color: var(--light-orange);
}

@media screen and (max-width: 1200px) and (min-width: 940px) {
    .plan .planBody .planInfo .planDetail .perMemberDetail {
        font-size: 12px;
        line-height: 14px;
    }
}

@media screen and (max-width: 940px) {
    .planContainer .caption {
        display: block;
    }
}

@media screen and (max-width: 600px) {
    .planContainer .caption {
        margin: 0 0 24px;
        padding: 0 12px;
    }

    .plan {
        padding: 24px 0;
    }

    .plan .planBody {
        -webkit-flex-direction: row;
        -webkit-align-items: flex-start;

        flex-direction: row;
        align-items: flex-start;

        max-width: 296px;
        width: 100%;
    }

    .plan .planBody img {
        width: 80px;
        margin-right: 12px;
    }

    .plan .planBody .planInfo {
        text-align: left;
    }

    .plan .planBody .planInfo h2 { 
        margin: 0 0 12px;
        line-height: 21px; 
    }

    .plan .planBody .planInfo .priceInfo {
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
        padding-left: 8px;
    }

    .plan .planBody .planInfo .priceInfo .price span {
        line-height: 38px;
        font-size: 48px;
    }
    
    .plan .planBody .planInfo .priceInfo .price::before {
        line-height: 16px;
        left: -9px;
        top: 0;
    }
    
    .plan .planBody .planInfo .priceInfo .price::after {
        top: -3px;
        line-height: 25px;
        font-size: 22px;
        margin-left: 2px;
    }
    
    .plan .planBody .planInfo .priceInfo .priceRate {
        line-height: 14px;
        font-size: 14px;
        padding-bottom: 0;
        margin-left: 0px;
    }
    
    .plan .planBody .planInfo .planDetail {
        height: 100%;
        margin: 12px 0 24px;
    }

    .plan.organization .planBody .planInfo .planDetail {
        width: calc(100% + 92px);
        position: relative;
        left: -92px;
        text-align: center;
    }
    
    .plan .planBody .planInfo .planDetail .projectCount {
        line-height: 19px;
        font-size: 16px;
    }

    .plan .planBody .planInfo .priceInfo .price .organizationDiscountInfo {
        display: none;
    }

    .recommended.planContainer {
        background-color: rgba(253, 189, 57, 0.15);
    }

    .recommended .plan button,
    .plan button {
        max-width: 296px;
        width: 100%;
    }
}
.plans {
    display: -webkit-flex;
    -webkit-align-items: center;
    -webkit-justify-content: center;

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

    margin: 0 auto;
    padding: 0 12px;
}

.plans > .planContainer {
    -webkit-flex-shrink: 1;
    flex-shrink: 1;

    width: 260px;
}

.plans .planSeparator {
    width: 60px;
}

.plans .planSeparator > div {
    width: 2px;
    height: 160px;
    margin: auto;
    border-radius: 1px;
    background-color: rgba(151, 145, 151, 0.5);
}

@media screen and (max-width: 940px) {
    .plans {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;

        -webkit-align-items: flex-start;
        align-items: flex-start;

        width: 600px;
        padding: initial;
    }

    .plans > .planContainer {
        -webkit-flex-shrink: 0;
        flex-shrink: 0;
    }

    .plans > div:nth-child(3n+1) {
        margin-right: 30px;
    }

    .plans > div:nth-child(3n) {
        margin-left: 30px;
    }

    .plans > div:first-child,
    .plans > div:nth-child(3) {
        margin-bottom: 24px;
    }

    .planSeparator {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    .plans {
        -webkit-flex-flow: column nowrap;
        flex-flow: column nowrap;
        width: 100%;
    }

    .plans > .planContainer {
        width: 100%;
    }

    .plans > div:nth-child(3n+1),
    .plans > div:nth-child(3n) {
        margin: 0;
    }
}
.plansTabView > .tabs {
    display: flex;
}

.plansTabView > .tabs .tab:first-child {
    margin-right: 24px;
}

.plansTabView > .tabs .tab span {
    display: inline-block;
    line-height: 32px;
    font-size: 24px;
    color: #554d56;
    color: var(--teflon);
    padding: 7px 24px 5px;
}

.plansTabView > .tabs .tab:active span,
.plansTabView > .tabs .tab input:checked + span {
    color: #f69833;
    color: var(--orange);
}

.plansTabView > .tabContent {
    -webkit-align-self: stretch;
    align-self: stretch;
    padding-top: 24px;
}

.plansTabView > .tabIndicator {
    opacity: 0.2;
    border-radius: 24px;
    background-color: #fdbd39;
    background-color: var(--light-orange);
}

@media screen and (max-width: 600px) {
    .plansTabView > .tabs .tab span {
        font-size: 18px;
        line-height: 24px;
        padding: 6px 16px;
    }

    .plansTabView > .tabs .tab:first-child {
        margin-right: 12px;
    }

    .plansTabView > .tabContent { 
        padding-top: 32px;
    }
}
.zeplinLove {
    position: relative;
}

.zeplinLove.hidden {
    display: none;
}

.zeplinLove::before,
.zeplinLove::after,
.tweets::before {
    content: " ";
    position: absolute;
    height: 100%;
    top: 0;
    z-index: 100;
    background-color: #fff;
}

.zeplinLove::before,
.zeplinLove::after {
    width: calc(50% - 346px);
    opacity: 0.4;
}

.zeplinLove::before {
    left: 0;
}

.zeplinLove::after {
    right: 0;
}

.zeplinLove h1 {
    font-size: 48px;
    line-height: 57px;
    font-weight: 300;
    color: #554d56;
    color: var(--teflon);

    padding: 0;
    margin: 0 auto;
    position: relative;

    width: 360px;

    cursor: pointer;
}

.zeplinLove h1 svg {
    position: absolute;
}

.zeplinLove h1 svg:first-of-type {
    width: 16px;
    height: 12px;

    fill: #c8cf2d;
    fill: var(--light-green);

    left: 100%;
    bottom: 12px;
}

.zeplinLove h1 svg:last-of-type {
    width: 26px;
    height: 19px;

    fill: #fecf33;
    fill: var(--yellow);

    left: calc(100% + 16px);
    bottom: 12px;
}

.zeplinLove .carousel {
    min-height: 200px;

    position: relative;
    left: 50%;
    overflow: hidden;
    margin: 14px 0 0 -1490px;

    z-index: 1;

    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.zeplinLove .carouselContainer {
    height: auto;
    list-style: none;
    margin: 0;
    padding: 0;

    display: -webkit-inline-flex;
    display: inline-flex;
}

.zeplinLove .tweet {
    width: 500px;

    position: relative;
    margin: 0 48px;
}

.zeplinLove .tweets {
    overflow: hidden;
    position: relative;
    max-width: 1692px;
    margin: 12px auto 0;

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

    touch-action: pan-y
}

.zeplinLove .tweets.animate + .carouselControl {
    z-index: 0;
}

.zeplinLove .tweets .tweet[data-position="2"] {
    z-index: 100;
}

.zeplinLove .carouselContainer.animate {
    -webkit-transition: -webkit-transform .5s ease;
    transition:transform .5s ease;
}

.zeplinLove .carouselContainer.animate.left {
    -webkit-transform: translate3d(596px, 0, 0);
    transform: translate3d(596px, 0, 0);
}

.zeplinLove .carouselContainer.animate.right {
    -webkit-transform: translate3d(-596px, 0, 0);
    transform: translate3d(-596px, 0, 0);
}

.zeplinLove .carouselControl {
    width: 100%;
    height: 48px;

    position: absolute;
    top: 172px;

    z-index: 10;
}

.zeplinLove .carouselControl button {
    background-color: transparent;
    box-shadow: none;
}

.zeplinLove .carouselControl button:hover {
    box-shadow: none;
}

.zeplinLove .prevTweet,
.zeplinLove .nextTweet {
    width: 24px;
    height: 48px;

    background-image: url(/static/img/pricing/icCarouselArrow.svg);

    cursor: pointer;

    position: absolute;
}

.zeplinLove .prevTweet {
    left: calc(50% - 334px);
}

.zeplinLove .nextTweet {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);

    right: calc(50% - 334px);
}

@media screen and (max-width: 768px) {
    .zeplinLove .tweets {
        max-width: 668px;
    }

    .zeplinLove::before,
    .zeplinLove::after {
        width: 0;
    }
}

@media screen and (max-width: 692px) {
    .zeplinLove .tweets {
        width: calc(100vw - 24px);
    }

    .zeplinLove .tweet {
        width: calc(100vw - 192px);
    }

    .zeplinLove .carousel {
        margin-left: calc(240px - 250vw);
    }

    .zeplinLove  .carouselContainer.animate.left {
        -webkit-transform: translate3d(calc(100vw - 96px), 0, 0);
        transform: translate3d(calc(100vw - 96px), 0, 0);
    }

    .zeplinLove .carouselContainer.animate.right {
        -webkit-transform: translate3d(calc(96px - 100vw), 0, 0);
        transform: translate3d(calc(96px - 100vw), 0, 0);
    }

    .zeplinLove .prevTweet {
        left: 12px;
    }

    .zeplinLove .nextTweet {
        right: 12px;
    }
}

@media screen and (max-width: 600px) {
    .zeplinLove h1 {
        font-size: 24px;
        line-height: 28px;
        width: 180px;
    }

    .zeplinLove h1 svg:first-of-type {
        width: 10px;
        height: 7px;
        bottom: 6px;
    }
    
    .zeplinLove h1 svg:last-of-type {
        width: 16px;
        height: 12px;
        left: calc(100% + 10px);
        bottom: 6px;
    }

    .zeplinLove .tweets {
        width: 100%;
        margin-top: 0;
        padding-bottom: 36px;
    }

    .zeplinLove .tweets::before {
        width: 100%;
        opacity: 0;
    }

    .zeplinLove::before,
    .zeplinLove::after {
        content: " ";
        position: absolute;
        height: 100%;
        width: 18px;
        top: 0;
        opacity: 0.4;
        background-color: #fff;
        pointer-events: none;
        z-index: 10000;
    }

    .zeplinLove .tweet {
        width: calc(100vw - 60px);
        margin: 0 6px;
    }

    .zeplinLove .carousel {
        margin-left: calc(-250vw + 120px);
    }

    .zeplinLove .carouselContainer.animate.left {
        -webkit-transform: translate3d(calc(100vw - 48px), 0, 0);
        transform: translate3d(calc(100vw - 48px), 0, 0);
    }

    .zeplinLove .carouselContainer.animate.right {
        -webkit-transform: translate3d(calc(48px - 100vw), 0, 0);
        transform: translate3d(calc(48px - 100vw), 0, 0);
    }

    .zeplinLove .carouselControl {
        display: none;
    }
}
.faq {
    max-width: 840px;
    width: calc(100% - 48px);
    margin: 0 auto;
}

.faq > h1 {
    line-height: 57px;
    font-size: 48px;
    font-weight: 300;
    text-align: center;
    color: #554d56;
    color: var(--teflon);
    margin-bottom: 60px;
}

.faq section {
    padding: 24px 0;
}

.faq section:last-child {
    padding-bottom: 0;
}

.faq section > h1 {
    line-height: 21px;
    font-size: 18px;
    font-weight: 500;
    color: #554d56;
    color: var(--teflon);
    position: relative;
}

.faq section > h1 paper-ripple {
    display: none;
}

.faq section p {
    line-height: 19px;
    font-size: 16px;
    color: #979197;
    color: var(--gandalf);
    margin-top: 24px;
}

.faq .separator {
    width: 100%;
    height: 1px;
    background-color: #c1bec1;
    background-color: var(--clooney);
}

@media screen and (max-width: 600px) {
    .faq {
        width: 100%;
    }

    .faq > h1 {
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 24px;
        padding-right: 19px;
    }

    .faq section {
        padding: 0;
    }

    .faq section > h1 {
        line-height: 19px;
        font-size: 16px;
        cursor: pointer;
        padding: 16px 12px;
    }

    .faq section > h1:active {
        background-color: #edeced;
        background-color: var(--karl);
    }

    .faq section > h1 paper-ripple {
        display: block;
    }

    .faq section p {
        line-height: 16px;
        font-size: 14px;
        overflow: hidden;
        transition: max-height 200ms ease-out, margin-bottom 200ms ease-out;
        max-height: 0;
        margin: 0;
        padding: 0 12px;
    }

    .faq section p.expand {
        max-height: 225px;
        margin-bottom: 16px;
    }

    .faq .separator {
        width: calc(100% - 24px);
        margin: 0 auto;
    }
}.groupCaption {
    display: -webkit-flex;
    -webkit-justify-content: center;

    display: flex;
    justify-content: center;

    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #554d56;
    color: var(--teflon);
    padding: 0 12px;
}

.groupCaption > div:first-child,
.groupCaption > div:last-child {
    -webkit-flex-shrink: 1;
    flex-shrink: 1;

    width: 260px;

    /* Minimum width of first and last plans */
    min-width: 228px;
}

.groupCaption .separator {
    width: 60px;
}

.groupCaption > div:nth-child(3) {
    -webkit-flex-shrink: 1;
    flex-shrink: 1;

    width: 520px;
    /* Minimum total width of second and third plans */
    min-width: 476px;
}

.groupCaption > div:last-child {
    padding-left: 2px;
}

.groupCaption p {
    font-weight: 500;
}

.groupCaption ul {
    display: table;
    margin: 24px auto;
}

.groupCaption li {
    display: -webkit-flex;
    display: flex;

    text-align: left;
    list-style: none;
    margin-bottom: 12px;
}

.groupCaption li::before {
    content: "\2022";
    text-align: left;
}

.groupCaption > div:nth-child(3) li::before {
    padding-right: 6px;
}

.groupCaption > div:nth-child(5) li::before {
    padding-right: 4px;
}

@media screen and (max-width: 940px) {
    .groupCaption {
        display: none;
    }
}#organizationPlan {
    color: #554d56;
    color: var(--teflon);
}

#organizationPlan h1,
#organizationPlan h2 {
    font-weight: normal;
    font-size: 30px;
    line-height: 35px;
    color: #554d56;
    color: var(--teflon);
}

#organizationPlan h1 {
    text-align: center;
}

#organizationPlan h2 {
    text-align: left;
}

#organizationPlan .container {
    display: -webkit-flex;
    -webkit-flex-direction: column;
    -webkit-justify-content: center;
    -webkit-align-items: center;

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

    padding: 0 10%;
}

#organizationPlan .content {
    width: 100%;
    max-width: 1488px;
}

#features h2 {
    margin: 72px 0 36px;
    padding: 0;
}

#features .row {
    display: -webkit-flex;
    display: flex;
}

#features .row:last-child {
    margin-top: 60px;
}

#features .row > div {
    -webkit-flex: 1;

    flex: 1;
}

#features .row > div:not(.separator) {
    max-width: 720px;
    min-width: 408px;
}

#features .row .separator {
    max-width: 48px;
    min-width: 24px;
}

#features .row div h3 {
    display: -webkit-flex;
    -webkit-align-items: center;

    display: flex;
    align-items: center;

    line-height: 21px;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
}

#features .row div p img {
    vertical-align: top;
    height: 18px;
    object-fit: contain;
}

#features .row div p {
    line-height: 19px;
    font-size: 16px;
}

#features .row div p:not(:last-of-type) {
    margin-bottom: 48px;
}

#features .row div > img {
    width: 100%;
}

#pricing {
    margin-top: 96px;
    color: #574751;
    color: var(--maroon);
}

#pricing h2 {
    display: -webkit-flex;
    -webkit-align-items: center;

    display: flex;
    align-items: center;
}

#pricing h2 img {
    margin-left: 7px;
}

#planDetails {
    display: -webkit-flex;
    -webkit-align-items: flex-start;

    display: flex;
    align-items: flex-start;
    margin-top: 36px;
}

#planDetails img {
    margin-right: 24px;
    object-fit: contain;
}

#planDetails .button.wide {
    display: none;
}

#planDetails .button {
    display: inline-block;
    line-height: 40px;
    color: #fff;
    background-color: #ee6723;
    background-color: var(--peach);
    margin-top: 18px;
}

#planDetails h3 .currentPrice::after,
#planDetails h3 .currentPrice::before,
#planDetails h3 {
    line-height: 55px;
    font-size: 24px;
    font-weight: 500;
}

#planDetails h3 .currentPrice {
    font-size: 48px;
    font-weight: 500;
}

#planDetails h3 .save15percent {
    font-style: italic;
    color: #fdbd39;
    color: var(--light-orange);
}

#planDetails h3 .currentPrice::before {
    content: "$";
}

#planDetails h3 .currentPrice:not([data-fr=""])::after {
    content: "."attr(data-fr);
}

#planDetails h4 {
    height: 19px;
    font-weight: normal;
    font-size: 16px;
}

#planDetails h4 a {
    color: #574751;
    color: var(--maroon);
    background-image: linear-gradient(transparent calc(1em + 1px), #574751 calc(1em + 1px), #574751 calc(1em + 2px), transparent calc(1em + 2px));
    background-image: linear-gradient(transparent calc(1em + 1px), var(--maroon) calc(1em + 1px), var(--maroon) calc(1em + 2px), transparent calc(1em + 2px));
    text-shadow: 1px 0 #fff, -1px 0 #fff;
}

#planDetails h4 .otherPrice::before {
    content: "$";
}

#planDetails .discountNotice {
    visibility: hidden;
}

#planDetails .discountNotice,
#planDetails .discountNotice::before {
    color: #fdbd39;
    /* color: var(--light-orange); */
    font-style: italic;
}

#planDetails .discountNotice::before {
    content: " - ";
}

#planDetails[data-period="annual"] .discountNotice {
    visibility: initial;
}

#pricingInfo {
    margin-top: 29px;
    line-height: 19px;
    font-size: 16px;
}

#youtubeVideo {
    display: -webkit-flex;
    -webkit-justify-content: center;

    display: flex;
    justify-content: center;

    margin-top: 96px;
    position: relative;
}

#youtubeVideo::before {
    content: "";
    height: 68%;
    width: 100%;
    position: absolute;
    top: 16%;
    left: 0;
    background-color: #fecf33;
    /* background-color: var(--yellow); */
    z-index: -1;
}

#videoPreview {
    display: -webkit-flex;
    -webkit-align-items: center;
    -webkit-justify-content: center;

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

    margin: 0 72px;
    position: relative;
    cursor: pointer;
}

#videoPreview::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(87, 71, 81, 0.7);
    /* background-color: var(--maroon-70pc); */
    border-radius: 4px;
}

#videoPreview img {
    width: 100%;
    max-width: 960px;
    max-height: 540px;
    border-radius: 4px;
}

#videoPreview::after,
#videoPreview img {
    -webkit-flex: 1;

    flex: 1;
}

#videoPreview button {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 3px 7px 0 rgba(87, 71, 81, 0.2);
    box-shadow: 0 3px 7px 0 var(--maroon-20pc);
    position: absolute;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    z-index: 1;
}

#videoPreview button::after {
    content: "";
    display: block;
    position: absolute;
    left: 30px;
    top: calc(50% - 13px);
    width: 20px;
    height: 26px;
    background-image: url(../img/icPlay.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

#videoPreview .youtubePlayer {
    max-width: 960px;
    width: 100%;
    max-height: 540px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

#videoPreview.playingVideo .youtubePlayer {
    z-index: 1;
}

@media screen and (max-width: 1080px) {
    #organizationPlan .container {
        padding: 0 24px;
    }

    #organizationPlan .content {
        max-width: 864px;
    }

    #features .row div p:not(:last-of-type) {
        margin-bottom: 24px;
    }
}

@media screen and (max-width: 887px) {
    #organizationPlan .content {
        max-width: 720px;
    }
    #features .row {
        -webkit-flex-direction: column;

        flex-direction: column;
    }

    #features .row div:last-child {
        margin-top: 24px;
    }

    #features .row .separator {
        min-width: 0;
        width: 0;
    }

    #features .row:last-child div:first-child {
        -webkit-order: 2;

        order: 2;
        margin-top: 24px;
    }

    #features .row:last-child div:last-child {
        -webkit-order: 1;

        order: 1;
        margin-top: 0;
    }

    #planDetails h3 {
        line-height: normal;
    }

    #planDetails .discountNotice {
        display: block;
        padding-bottom: 12px;
        line-height: 15px;
        text-indent: 6px;
    }

    #planDetails .discountNotice::before {
        content: "";
    }
    
    #youtubeVideo::before {
        height: 80%;
        top: 10%;
    }
}

@media screen and (max-width: 674px) {
    #pricing {
        margin-top: 48px;
    }

    #planDetails {
        -webkit-flex-wrap: wrap;

        flex-wrap: wrap;

        margin: 24px auto 0;
    }

    #planDetails .button:not(.wide) {
        display: none;
    }

    #planDetails .button.wide {
        display: block;
        width: 100%;
        margin-top: 14px;
    }

    #planDetails img {
        width: 80px;
        margin-right: 13px;
    }

    #planDetails h3 .currentPrice::after,
    #planDetails h3 .currentPrice::before,
    #planDetails h3 {
        line-height: 1.0;
        font-size: 16px;
    }

    #planDetails h3 .currentPrice {
        font-size: 24px;
        display: block;
        margin-bottom: 3px;
    }

    #planDetails .discountNotice {
        text-indent: initial;
        padding-bottom: 4px;
        line-height: 24px;
    }

    #planDetails h4 {
        line-height: 16px;
        font-size: 14px;
    }

    #pricingInfo {
        margin-top: 24px;
    }
}

@media screen and (max-width: 600px) {
    #organizationPlan h1,
    #organizationPlan h2 {
        line-height: 28px;
        font-size: 24px;
    }

    #organizationPlan .container {
        padding: 0 12px;
    }

    #features .row > div:not(.separator) {
        min-width: 296px;
    }

    #features .row div h3,
    #features .row div p {
        line-height: 19px;
        font-size: 16px;
    }

    #features h2 {
        margin: 48px 0 12px;
    }

    #features .row:last-child {
        margin-top: 24px;
    }

    #pricing h2 img {
        width: 24px;
    }

    #youtubeVideo {
        margin-top: 48px;
    }

    #youtubeVideo::before {
        height: 88%;
        top: 6%;
    }

    #videoPreview {
        margin: 0 12px;
    }

    #videoPreview::after {
        border-radius: 2px;
    }
}
.pricing {
    padding-top: 96px;
}

.pricing > .testimonial {
    margin-top: 160px;
}

.pricing > h1 {
    line-height: 57px;
    font-size: 48px;
    font-weight: 300;
    color: #554d56;
    color: var(--teflon);
    margin-top: 120px;
    text-align: center;
}

.pricing > .plansTabView {
    margin-top: 60px;
}

.pricing > p {
    width: 700px;
    margin: 24px auto 0;
    line-height: 21px;
    font-size: 18px;
    text-align: center;
    color: #554d56;
    color: var(--teflon);
    max-width: calc(100% - 24px);
}
  
.pricing > p a {
    color: #419bf9;
    color: var(--cornflower-blue);
}

.pricing > .groupCaption {
    margin-top: 12px;
}

.pricing > .zeplinLove,
.pricing > .faq,
.pricing > .readyToExport {
    margin-top: 200px;
}

.pricing > .readyToExport h1 {
    margin-top: 0;
}

.pricing .teamsUsingZeplin {
    margin-top: 74px;
}

.pricing.organizationPlan .teamsUsingZeplin {
    margin-top: 96px;
}

.pricing > .readyToExport {
    margin-bottom: 115px;
}
@media screen and (max-width: 940px) {
    .pricing > p {
        margin-top: 60px;
    }
}

@media screen and (max-width: 767px) {
    .pricing > .readyToExport {
        margin-bottom: 76px;
    }
}

@media screen and (max-width: 600px) {
    .pricing {
        padding-top: 84px;
    }

    .pricing > .testimonial {
        margin-top: 24px;
    }

    .pricing > h1 {
        margin-top: 72px;
        font-size: 24px;
        line-height: 28px;
        padding: 0 12px;
    }

    .pricing > .plansTabView {
        margin-top: 24px;
    }
    
    .pricing > p {
        margin-top: 12px;
        font-size: 18px;
        line-height: 19px;
    }

    .pricing > .zeplinLove,
    .pricing > .faq,
    .pricing > .readyToExport {
        margin-top: 120px;
    }

    .pricing .teamsUsingZeplin {
        margin-top: 24px;
    }

    .pricing.organizationPlan .teamsUsingZeplin {
        margin-top: 48px;
    }
}
.heading {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    margin-top: 160px;
    max-width: 840px;
    width: 100%;
    text-align: center;
}

.heading h2 {
    font-size: 24px;
    line-height: 28px;
    font-weight: 500;
    text-align: center;
    color: #554d56;
    color: var(--teflon);
}

.heading p {
    margin-top: 25px;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: normal;
    text-align: center;
    color: #979197;
    color: var(--gandalf);
}

@media screen and (max-width: 539px) {
    .heading h2 {
        font-size: 18px;
        line-height: 21px;
    }

    .heading p {
        font-size: 16px;
        line-height: 22px;
        margin-top: 12px;
    }

    .heading {
        margin-top: 24px;
    }
}.zeplinsStory {
    margin-top: 72px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;

    color: #554d56;
    color: var(--teflon);
}

.storyHeader {
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
    text-align: center;
}

.storyContentContainer table {
    width: 100%;
    margin: 36px 0 0 0;
    position: relative;
    left: -36px;
}

.storyContentContainer table tr {
    vertical-align: top;
}

.storyContentContainer table .date {
    white-space: nowrap;
    width: 50%;
    font-size: 16px;
    line-height: 19px;
    text-align: right;
    color: #ee6723;
    color: var(--peach);
}

.storyContentContainer table .event {
    width: 50%;
    font-size: 16px;
    line-height: 19px;
    text-align: left;
}

.storyContentContainer table .event img {
    width: 20px;
    height: 20px;
    vertical-align: top;
}

.storyContentContainer table td {
    padding: 1px 12px;
}

.storyContentContainer .talkToUsersContainer {
    margin: 6px 0;
}

.storyContentContainer table .event .subInfo {
    font-size: 12px;
    line-height: 14px;
}

.storyContentContainer .talkToUsers {
    display: block;
    margin: 2px 0;
    font-size: 11px;
    color: #979197;
    color: var(--gandalf);
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-2deg);
    transform-origin: left bottom;
    transform: rotate(-2deg);
    line-height: 13px;
}

.storyContentContainer .talkToUsers.talkToUsersP7 {
    opacity: 0.7;
}

.storyContentContainer .talkToUsers.talkToUsersP4 {
    opacity: 0.4;
}

@media screen and (max-width: 539px) {
    .storyHeader {
        width: 100%;
        font-size: 18px;
        line-height: 21px;
        text-align: left;
    }
    .zeplinsStory {
        margin-top: 36px;
    }

    .storyContentContainer table {
        left: 0;
        margin: 24px 0 0 0;
    }

    .storyContentContainer table .date {
        width: auto;
        padding: 1px 12px 0 0;
    }

    .storyContentContainer table .event {
        width: auto;
        padding: 1px 0;
    }
}.crew {
    margin-top: 118px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    color: #554d56;
    color: var(--teflon);
}

.crewHeader {
    font-size: 24px;
    font-weight: 500;
}

.crewPeopleContainer {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: start;
    justify-content: start;
    margin-top: 36px;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 1080px;
}

.crewCard {
    width: 192px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    margin: 24px 12px 0;
    padding-bottom: 12px 0;
    text-align: center;
}

.crewCard img {
    width: 144px;
    height: auto;
}

.crewCard h3 {
    margin: 12px 6px 0;
    font-size: 16px;
    color: #554d56;
    color: var(--teflon);
    line-height: 19px;
    font-weight: 500;
}

.crewCard p {
    margin: 4px 6px 12px;
    font-size: 14px;
    line-height: 16px;
    min-height: 32px;
    color: #979197;
    color: var(--gandalf);
}

@media screen and (max-width: 1080px) {
    .crewPeopleContainer {
        width: 648px;
    }
}

@media screen and (max-width: 648px) {
    .crewPeopleContainer {
        width: 456px;
    }
}

@media screen and (max-width: 539px) {
    .crew {
        margin-top: 104px;
        max-width: 408px;
        min-width: 320px;
        -webkit-align-items: start;
        align-items: start;
    }

    .crewHeader {
        font-size: 18px;
    }

    .crewPeopleContainer {
        padding: 0 6px;
        margin-top: 24px;
        width: 100%;
    }

    .crewCard {
        min-width: 142px;
        width: 44.375%;
        text-align: left;
        margin: 12px 6px;
        -webkit-align-items: start;
        align-items: start;
    }

    .crewCard p {
        margin-bottom: 0;
    }

    .crewHeader {
        margin: 0 12px;
    }

    .crewCard img {
        margin: 0;
        width: 75%;
        min-width: 108px;
    }
}.aboutGallery {
    width: 100%;
    max-width: 1100px;
    margin: 188px 0 0;
}

.aboutGallery .mediaContainer {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -12px;
}

.aboutGallery .mediaContainer img {
    max-width: 492px;
    width: calc(50% - 24px);
    height: auto;
    margin: 12px 12px;
}

.aboutGallery p {
    text-align: center;
    margin-top: 12px;
    line-height: 19px;
}

.aboutGallery p a {
    font-size: 16px;
    color: #419bf9;
    color: var(--cornflower-blue);
}

.aboutGallery .arrowFont {
    font-family: LucidaGrande;
}

@media screen and (max-width: 768px) {
    .aboutGallery .mediaContainer img {
        max-width: 348px;
    }
}

@media screen and (max-width: 539px) {
    .aboutGallery {
        margin: 108px 0 0;
    }

    .aboutGallery .mediaContainer {
        margin: 0;
    }

    .aboutGallery .mediaContainer img {
        width: 100%;
        max-width: none;
        margin: 6px 0;
    }
}

.aboutCareer {
    margin: 200px 0 160px;
    max-width: 552px;
    -webkit-flex-direction: column;
    flex-direction: column;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.aboutCareer h3 {
    font-size: 36px;
    font-weight: 300;
    text-align: center;
    color: #554d56;
    color: var(--teflon);
    line-height: 42px;
}

.aboutCareer .viewOpenPositions {
    margin-top: 48px;
    display: block;
    max-width: 350px;
    width: 350px;
    height: 60px;
    border-radius: 2px;
    background-color: #419bf9;
    background-color: var(--cornflower-blue);
    padding: 16px;
    line-height: 28px;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    color: #ffffff;
}

@media screen and (max-width: 539px) {
    .aboutCareer {
        margin: 108px 0 108px;
    }
    .aboutCareer h3 {
        font-size: 24px;
        font-weight: 300;
        line-height: 32px;
    }

    .aboutCareer .viewOpenPositions {
        margin-top: 22px;
        max-width: 272px;
        width: 272px;
        height: 49px;
        padding: 14px;
        line-height: 21px;
        font-size: 18px;
    }
}.aboutPage {
    display: -webkit-flex;
    -webkit-align-items: center;
    min-width: 320px;

    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    align-items: center;
    margin: 96px 0 0 0;
    padding: 0 24px;
}

.aboutPageIconContainer {
    text-align: center;
    margin-top: 72px;
    display: inherit;
    width: 492px;
    height: 142px;
}

.aboutPageIconContainer svg {
    width: 100%;
}

.emojiImage {
    width: 22px;
    height: 22px;
}

.aboutIstSvg {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.aboutHearthSvg {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.aboutSfSvg {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.aboutSfTextSvg {
    -webkit-transform: scale(1);
    transform: scale(1);
}

@media screen and (max-width: 539px) {
    .aboutPage {
        padding: 0 12px;
    }

    .aboutPageIconContainer {
        margin-top: 36px;
        width: 272px;
        height: 221px;
    }

    .emojiImage {
        width: 19px;
        height: 19px;
    }

    .aboutIstSvg {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
    }

    .aboutHearthSvg {
        -webkit-transform: scale(1.3, 1.3) translate(-112px, 35px);
        transform: scale(1.3, 1.3) translate(-112px, 35px);
    }

    .aboutSfSvg {
        -webkit-transform: scale(0.81, 0.82) translate(-163px, 126px);
        transform: scale(0.81, 0.82) translate(-163px, 126px);
    }

    .aboutSfTextSvg {
        -webkit-transform: translate(-24px, -6px) scale(1.06, 1);
        transform: translate(-24px, -6px) scale(1.06, 1);
    }
}main.customers {
    position: relative;
    padding: 96px 0 48px;
}

main.customers .zeplinLogo {
    display: none;
    position: absolute;
    left: 50%;
    top: 0;
    width: 48px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

main.customers .customer {
    display: -webkit-flex;
    -webkit-align-items: center;

    display: flex;
    align-items: center;
}

main.customers .customer:nth-of-type(even) {
    background-color: rgba(151, 145, 151, 0.1);
    background-color: var(--gandalf-10pc);
}

main.customers .customer .logo {
    width: 440px;
    padding-left: 120px;
}

main.customers .customer .logo img {
    height: 60px;
}

main.customers .customer .story {
    padding: 72px 0;
    flex-shrink: 1;
}

main.customers .customer .story p {
    max-width: 600px;
    line-height: 24px;
    font-size: 18px;
    font-style: italic;
    color: #554d56;
    color: var(--teflon);
}

main.customers .customer .story p a {
    white-space: nowrap;
    font-weight: 500;
    color: #c8cf2d;
    color: var(--light-green);
}

main.customers .customer .story .author {
    display: -webkit-flex;
    -webkit-align-items: center;

    display: flex;
    align-items: center;

    margin-top: 12px;
}

main.customers .customer .story .author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

main.customers .customer .story .author .authorInfo {
    margin-left: 16px;
}

main.customers .customer .story .author .authorName {
    line-height: 19px;
    font-size: 14px;
    font-weight: 500;
    color: #554d56;
    color: var(--teflon);
}

main.customers .customer .story .author .authorTitle {
    line-height: 19px;
    font-size: 14px;
    color: #979197;
    color: var(--gandalf);
}

main.customers a.agileBits {
    color: #007fff;
    color: var(--agile-bits);
}

main.customers a.feedly {
    color: #1fb446;
    color: var(--feedly);
}

main.customers a.intercom {
    color: #3fa2f7;
    color: var(--intercom);
}

main.customers a.pinterest {
    color: #aa262a;
    color: var(--pinterest);
}

main.customers a.prezi {
    color: #0f63cf;
    color: var(--prezi);
}

main.customers a.propeller {
    color: #76aa99;
    color: var(--propeller);
}

main.customers a.shopify {
    color: #8db849;
    color: var(--shopify);
}

main.customers a.slack {
    color: #3b434b;
    color: var(--slack);
}

main.customers a.ustwo {
    color: #333333;
    color: var(--ustwo);
}

main.customers a.zendesk {
    color: #719c40;
    color: var(--zendesk);
}

main.customers a.starbucks {
    color: #007042;
    color: var(--starbucks);
}

main.customers a.ueno {
    color: #333333;
    color: var(--ueno);
}

@media screen and (max-width: 900px) {
    main.customers .zeplinLogo {
        display: block;
    }

    main.customers .customer .logo {
        width: 400px;
        padding-left: 80px;
    }

    main.customers .customer .story {
        padding: 72px 80px 72px 0;
    }
}

@media screen and (max-width: 800px) {
    main.customers main.customers {
        padding-top: 20px;
    }

    main.customers .customer {
        -webkit-flex-direction: column;
        flex-direction: column;

        padding: 24px 20px 36px;
    }

    main.customers .customer:last-child {
        padding-bottom: 12px;
    }

    main.customers .customer .logo {
        width: initial;
        padding: 0;
    }

    main.customers .customer .logo img {
        height: 40px;
    }

    main.customers .customer .story {
        padding: 0;
    }

    main.customers .customer .story .author {
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    main.customers .customer .story .author .authorInfo {
        text-align: center;
    }

    main.customers .customer .story p {
        margin-top: 12px;
        text-align: center;
        line-height: 21px;
        font-size: 16px;
    }

    main.customers .customer .story p a {
        display: block;
        margin-top: 6px;
    }
}

@media screen and (max-width: 767px) {
    main.customers {
        padding: 84px 0 36px;
    }
}
main.customer {
    position: relative;
    padding: 120px 240px 96px;
    margin-top: 96px;
}

main.customer .border {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 20px;
}

main.customer h1 {
    line-height: 63px;
    font-size: 48px;
    font-weight: 700;
    color: #554d56;
    color: var(--teflon);
}

main.customer h2 {
    margin-top: 24px;
    line-height: 32px;
    font-size: 24px;
    font-weight: 500;
    color: #554d56;
    color: var(--teflon);
}

main.customer .companyLogo {
    width: 80px;
    height: 80px;
    position: absolute;
    top: 80px;
    right: 80px;
}

main.customer p {
    margin-top: 24px;
    line-height: 26px;
    font-size: 18px;
    color: #554d56;
    color: var(--teflon);
}

main.customer h2 + p {
    margin-top: 24px;
}

main.customer p.companyInfo {
    margin-bottom: 96px;
    color: #979197;
    color: var(--gandalf);
}

main.customer .author {
    display: -webkit-flex;
    -webkit-align-items: center;

    display: flex;
    align-items: center;

    margin-top: 24px;
}

main.customer .author img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

main.customer .author .authorInfo {
    margin-left: 36px;
    text-align: left;
}

main.customer .author .authorName {
    line-height: 24px;
    font-size: 18px;
    font-weight: 500;
    color: #554d56;
    color: var(--teflon);
}

main.customer .author .authorTitle {
    line-height: 24px;
    font-size: 18px;
    font-weight: 500;
    color: #979197;
    color: var(--gandalf);
}

main.customer .author .authorTitle a {
    font-weight: 500;
}

main.customer blockquote {
    margin-top: 36px;
    padding: 0 0 12px 24px;
    line-height: 36px;
    font-size: 24px;
    font-style: italic;
    color: #ee6723;
    color: var(--peach);
}

main.customer figure {
    margin-top: 24px;
}

main.customer figure h2 {
    margin: 0;
    font-family: Nanum, Helvetica, sans-serif;
    line-height: 41px;
    font-size: 36px;
    color: #554d56;
    color: var(--teflon);
}

main.customer figure > img {
    width: 100%;
    margin-top: 15px;
}

main.customer figcaption {
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -webkit-align-items: center;
    -webkit-justify-content: center;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

main.customer figcaption span {
    margin-bottom: 3px;
}

main.customer figcaption span:first-of-type {
    line-height: 24px;
    font-size: 16px;
    color: #979197;
    color: var(--gandalf);
}

@media screen and (max-width: 900px) {
    main.customer {
        padding: 120px 120px 36px;
    }

    main.customer .border {
        top: 20px;
        left: 0;
        height: 8px;
        width: 100%;
    }

    main.customer .companyLogo {
        top: 0;
        left: calc(50% - 24px);
        width: 48px;
        height: 48px;
    }
}

@media screen and (max-width: 863px) {
    main.customer {
        margin-bottom: 36px;
    }
}

@media screen and (max-width: 768px) {
    main.customer figcaption {
        top: -6px;
    }

    main.customer figcaption > img {
        width: 37px;
        margin-right: 8px;
        top: -6px;
    }

    main.customer figcaption span {
        margin: 0;
    }
}

@media screen and (max-width: 767px) {
    main.customer {
        margin-top: 84px;
    }
}

@media screen and (max-width: 640px) {
    main.customer {
        padding: 100px 80px 36px;
    }

    main.customer h1 {
        line-height: 32px;
        font-size: 24px;
        font-weight: 500;
    }
}

@media screen and (max-width: 480px) {
    main.customer {
        padding: 60px 20px 0;
    }

    main.customer h2 {
        margin-top: 38px;
        line-height: 26px;
        font-size: 18px;
        font-weight: 700;
    }

    main.customer p {
        margin-top: 12px;
        line-height: 26px;
        font-size: 16px;
    }

    main.customer h2 + p {
        margin-top: 12px;
    }

    main.customer .author {
        -webkit-flex-direction: column;
        -webkit-align-items: center;

        flex-direction: column;
        align-items: center;

        margin-top: 12px;
    }

    main.customer .author img {
        width: 60px;
        height: 60px;
    }

    main.customer .author .authorInfo {
        margin: 12px 0;
        text-align: center;
    }

    main.customer .author .authorTitle {
        line-height: 21px;
        font-size: 16px;
    }

    main.customer blockquote {
        margin-top: 12px;
        padding: 0;
        text-align: center;
        line-height: 32px;
        font-size: 24px;
    }

    main.customer figure h2 {
        line-height: 26px;
        font-size: 24px;
    }

    main.customer figure > img {
        margin-top: 12px;
    }

    main.customer figcaption span:first-of-type {
        line-height: 16px;
        font-size: 12px;
    }
}
.slack {
    margin-top: 96px;
}

.slack .border {
    background-image: linear-gradient(to right, #F1E4D4, #F1E4D4),
                      repeating-linear-gradient(45deg,
                                                #E92179 165px, #E92179 225px,
                                                transparent 225px, transparent 285px,
                                                #7AE2FF 285px, #7AE2FF 345px,
                                                transparent 345px, transparent 405px),
                      repeating-linear-gradient(-45deg,
                                                #49CDB0 , #49CDB0 60px,
                                                transparent 60px, transparent 120px,
                                                #F5BA3E 120px, #F5BA3E 180px,
                                                transparent 180px, transparent 240px);
    background-blend-mode: multiply;
}

.slack h1 .smiley {
    display: inline-block;
    font-weight: 700;

    -webkit-transform: rotateZ(30deg);
    -webkit-transform-origin: bottom right;

    transform: rotateZ(30deg);
    transform-origin: bottom right;
}
.pinterest .border {
    background-color: #aa262a;
    background-color: var(--pinterest);
}

.pinterest figure h2 {
    font-family: Nanum, Helvetica, sans-serif;
    line-height: 41px;
    font-size: 36px;
    color: #554d56;
    color: var(--teflon);
}

.pinterest figure > img {
    width: 100%;
    margin-top: 15px;
}

.pinterest figcaption {
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -webkit-align-items: center;
    -webkit-justify-content: center;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;

    position: relative;
    top: -20px;
}

.pinterest figcaption > img {
    position: relative;
    width: 106px;
    margin-right: 14px;
}

.pinterest figcaption span {
    margin-bottom: 3px;
}

.pinterest figcaption span:first-of-type {
    line-height: 24px;
    font-size: 16px;
    color: #979197;
    color: var(--gandalf);
}

.pinterest figcaption .openMouth {
    font-family: Nanum, Helvetica, sans-serif;
    line-height: 24px;
    font-size: 18px;
    color: #554d56;
    color: var(--teflon);
}

@media screen and (max-width: 768px) {
    .pinterest figcaption {
        top: -6px;
    }

    .pinterest figcaption > img {
        width: 37px;
        margin-right: 8px;
        top: -6px;
    }

    .pinterest figcaption span {
        margin: 0;
    }
}

@media screen and (max-width: 480px) {
    .pinterest figure h2 {
        line-height: 26px;
        font-size: 24px;
    }

    .pinterest figure > img {
        margin-top: 12px;
    }

    .pinterest figcaption span:first-of-type {
        line-height: 16px;
        font-size: 12px;
    }

    .pinterest figcaption .openMouth {
        line-height: 16px;
        font-size: 14px;
    }
}main.intercom .border {
    background-image: url(../../img/customers/borderIntercom.png), linear-gradient(#3fa2f7, #3fa2f7);
    background-size: 2px auto, 18px 100%;
    background-position: 18px 0, 0 0;
    background-repeat: repeat-y, no-repeat;
}

main.intercom p.companyInfo {
    margin-bottom: 0;
}

main.intercom .intercomBackground {
    position: relative;
    height: 312px;
}

main.intercom .intercomBackground img {
    position: absolute;
    top: -18px;
    left: -220px;
    z-index: -1;
}

main.intercom figure img {
    object-fit: contain;
}

main.intercom figure > div {
    display: -webkit-flex;
    display: flex;

    height: calc(53.8vw - 258px);
}

main.intercom figure > div > img {
    width: 50%;
    padding-left: 1px;
}

main.intercom figure > div > div {
    display: -webkit-flex;
    -webkit-flex-direction: column;

    display: flex;
    flex-direction: column;

    width: 50%;
}

main.intercom figure > div > div > img {
    width: 100%;
    padding-right: 1px;
}

main.intercom figure > div > div > img:first-child {
    padding-bottom: 1px;
}

main.intercom figure > div > div > img:last-child {
    padding-top: 1px;
}

@media screen and (-webkit-min-device-pixel-ratio: 2) {
	main.intercom .border {
        background-image: url(../../img/customers/borderIntercom@2x.png), linear-gradient(#3fa2f7, #3fa2f7);
	}
}

@media screen and (min-resolution: 2dppx) {
	main.intercom .border {
        background-image: url(../../img/customers/borderIntercom@2x.png), linear-gradient(#3fa2f7, #3fa2f7);
	}
}

@media screen and (-webkit-min-device-pixel-ratio: 3) {
	main.intercom .border {
        background-image: url(../../img/customers/borderIntercom@3x.png), linear-gradient(#3fa2f7, #3fa2f7);
	}
}

@media screen and (min-resolution: 3dppx) {
	main.intercom .border {
        background-image: url(../../img/customers/borderIntercom@3x.png), linear-gradient(#3fa2f7, #3fa2f7);
	}
}

@media screen and (max-width: 900px) {
    main.intercom .border {
        background-image: url(../../img/customers/borderIntercom_270deg.png), linear-gradient(#3fa2f7, #3fa2f7), url(../../img/customers/borderIntercom_90deg.png);
        background-size: auto 2px, 100% 4px, auto 2px;
        background-position: 0 0, 0 2px, 0 6px;
        background-repeat: repeat-x, no-repeat, repeat-x;
    }

    main.intercom .companyLogo {
        background-color: #fff;
        box-shadow: 0 0 0 6px #fff;
    }

    main.intercom .intercomBackground {
        height: 32vw;
    }

    main.intercom .intercomBackground img {
        width: 100vw;
        left: -120px;
    }

    main.intercom figure > div {
        -webkit-flex-direction: column;
        flex-direction: column;
        height: auto;
    }

    main.intercom figure > div > img {
        width: 100%;
        padding: 1px 0;
    }

    main.intercom figure > div > div {
        width: 100%;
    }

    main.intercom figure > div > div > img:last-child {
        padding: 1px 0;
    }
}

@media screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 900px) {
    main.intercom .border {
        background-image: url(../../img/customers/borderIntercom_270deg@2x.png), linear-gradient(#3fa2f7, #3fa2f7), url(../../img/customers/borderIntercom_90deg@2x.png);
    }
}

@media screen and (min-resolution: 2dppx) and (max-width: 900px) {
	main.intercom .border {
        background-image: url(../../img/customers/borderIntercom_270deg@2x.png), linear-gradient(#3fa2f7, #3fa2f7), url(../../img/customers/borderIntercom_90deg@2x.png);
	}
}

@media screen and (-webkit-min-device-pixel-ratio: 3) and (max-width: 900px) {
	main.intercom .border {
        background-image: url(../../img/customers/borderIntercom_270deg@3x.png), linear-gradient(#3fa2f7, #3fa2f7), url(../../img/customers/borderIntercom_90deg@3x.png);
	}
}

@media screen and (min-resolution: 3dppx) and (max-width: 900px) {
	main.intercom .border {
        background-image: url(../../img/customers/borderIntercom_270deg@3x.png), linear-gradient(#3fa2f7, #3fa2f7), url(../../img/customers/borderIntercom_90deg@3x.png);
	}
}

@media screen and (max-width: 640px) {
    main.intercom .intercomBackground img {
        left: -80px;
    }
}

@media screen and (max-width: 480px) {
    main.intercom .intercomBackground img {
        left: -20px;
    }
}main.starbucks {
    padding: 0 0 96px;
}

main.starbucks h1 {
    color: #fff;
}

main.starbucks p a {
    font-weight: 500;
}

main.starbucks .border {
    background-color: #007042;
    background-color: var(--starbucks);
    z-index: 1;
}

main.starbucks .headerContainer {
    min-height: 440px;
    padding: 96px 240px 0;
    position: relative;
    background: url(../../img/customers/bgStarbucks.png) center no-repeat #000;
}

main.starbucks .bodyContainer {
    padding: 0 240px;
}

main.starbucks .author {
    margin-top: 0;
    position: absolute;
    bottom: -16px;
}

main.starbucks .author .logoWrapper {
    width: 100px;
    height: 100px;
    -webkit-filter: blur(1px);
    filter: blur(1px);
    border: solid 2px #ffffff;
    border-radius: 50%;
    position: absolute;
    z-index: 0;
}

main.starbucks .author .authorName {
    color: #fff;
}

main.starbucks .author .authorTitle {
    color: rgba(255, 255, 255, 0.7);
    color: var(--white-70pc);
}

main.starbucks .headerLogoContainer {
    display: -webkit-flex;
    -webkit-justify-content: flex-end;

    display: flex;
    justify-content: flex-end;
    padding-bottom: 60px;
}

main.starbucks .headerLogoContainer .coffees {
    position: relative;
    right: -160px;
    margin: 0 0 2px;
}

main.starbucks .headerLogo {
    width: 100%;
    max-width: 672px;
    margin-bottom: 2px;
}

main.starbucks p.companyInfo {
    margin-bottom: 0;
    color: #fff;
}

main.starbucks figcaption span {
    display: -webkit-flex;
    -webkit-align-items: center;

    display: flex;
    align-items: center;
}

main.starbucks figcaption span img {
    margin-left: 4px;
    top: -1px;
    position: relative;
}

@media screen and (max-width: 900px) {
    main.starbucks {
        padding: 0 0 36px;
    }

    main.starbucks .border {
        top: 27px;
    }

    main.starbucks .headerContainer {
        padding: 120px 120px 0;
    }

    main.starbucks .bodyContainer {
        padding: 0 120px;
    }

    main.starbucks .author {
        padding: 0 120px 0 0;
    }

    main.starbucks .headerLogoContainer .coffees {
        right: 0;
    }

    main.starbucks .companyLogo {
        width: 60px;
        height: 60px;
        border: 12px solid #fff;
        border-radius: 50%;
        top: 2px;
        z-index: 1;
    }
}

@media screen and (max-width: 710px) {
    main.starbucks .author .authorInfo {
        margin-bottom: 24px;
    }

    main.starbucks .headerLogoContainer .coffees {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 640px) {
    main.starbucks {
        padding: 0;
    }

    main.starbucks .headerContainer {
        padding: 100px 80px 0;
    }

    main.starbucks .bodyContainer {
        padding: 0 80px;
    }

    main.starbucks .author {
        padding: 0 80px 0 0;
    }
}

@media screen and (max-width: 480px) {
    main.starbucks .headerContainer {
        padding: 62px 20px 0;
        background: url(../../img/customers/bgStarbucksMobile.png) center no-repeat #000;
    }

    main.starbucks .bodyContainer {
        padding: 0 20px;
    }

    main.starbucks figcaption span img {
        width: auto;
        height: 12px;
        top: 0;
    }

    main.starbucks .author {
        margin-top: 12px;
        position: relative;
        bottom: 0;
        padding: 0;
    }

    main.starbucks .headerLogoContainer {
        padding-bottom: 0;
        margin-bottom: 12px;
    }

    main.starbucks .coffees {
        -webkit-flex: 1;
        flex: 1;
    }

    main.starbucks .author .logoWrapper {
        width: 60px;
        height: 60px;
    }

    main.starbucks .author .authorInfo {
        margin-bottom: 12px;
    }
}

@media screen and (min-width: 3000px){
    main.starbucks .headerContainer {
        background-size: cover;
    }
}main.ueno .companyLogo {
    width: 256px;
    height: 60px;
}

main.ueno .border {
    background-color: #d2d2d3;
}

@media screen and (max-width: 900px) {
    main.ueno .companyLogo {
        width: 160px;
        height: 36px;

        top: 6px;
        left: calc(50% - 84px);

        box-sizing: content-box;
        padding: 0 4px;

        background-color: white;
    }
}main.ustwo .border {
    background-image: linear-gradient(#6114cc, #009cf3 33%, #ffbf02 66%, #f9615b);
}

main.ustwo .companyLogo {
    width: 210px;
    height: 60px;
}

main.ustwo .monumentValley {
    color: #554d56;
    color: var(--teflon);
}

@media screen and (max-width: 900px) {
    main.ustwo .border {
        background-image: linear-gradient(to right, #6114cc, #009cf3 20%, #ffbf02 80%, #f9615b);
    }

    main.ustwo .companyLogo {
        top: 4px;
        left: calc(50% - 71px);
        width: 142px;
        height: 36px;

        -webkit-filter: drop-shadow(-8px 0 0 #fff)
                        drop-shadow(6px 0 0 #fff)
                        drop-shadow(1px 0 0 #fff);
        filter: drop-shadow(-8px 0 0 #fff)
                drop-shadow(6px 0 0 #fff)
                drop-shadow(1px 0 0 #fff);
    }
}main.zendesk .border {
    background-image: url(../../img/customers/borderZendesk.svg);
}

main.zendesk .zenZep {
    display: -webkit-flex;
    display: flex;
    padding: 24px 0 0;
}

main.zendesk .zenZep > img {
    margin-right: 24px;
    width: 36vw;
    height: calc(36vw * 289 / 512);
}

main.zendesk .zenZep > div {
    -webkit-flex: 1;
    flex: 1;
}

main.zendesk .zenZep > div > p:first-child {
    margin-top: 0;
}

main.zendesk blockquote {
    padding: 0 0 12px;
}

main.zendesk .companyLogo {
    background-image: url(../../img/customers/logoZendesk.svg);
}

@media screen and (max-width: 900px) {
    main.zendesk .border {
        width: 8px;
        height: 100vw;

        top: calc(-50vw + 4px);
        left: calc(50vw - 4px);

        background-repeat: repeat;
        background-size: contain;

        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    main.zendesk .companyLogo {
        width: 90px;
        height: 30px;

        padding: 0 6px 0;

        border-radius: 20px;

        top: 9px;
        left: calc(50% - 45px);

        background-image: url(../../img/customers/logoZendeskMobile.svg);
    }
}

@media screen and (max-width: 1280px) {
    main.zendesk .zenZep {
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    main.zendesk .zenZep > img {
        margin-bottom: 12px;
        width: 100%;
        height: auto;
    }
}
main.feedly .border {
    background-color: #1fb446;
    background-color: var(--feedly);
}

@media screen and (max-width: 900px) {
    main.feedly .companyLogo {
        top: -1px;
    }
}main.prezi .border {
    background-image: linear-gradient(to right,
                                      #2988ff 4px,
                                      transparent 4px, transparent 8px,
                                      #0f63cf 8px, #0f63cf 12px,
                                      transparent 12px, transparent 16px,
                                      #2988ff 16px, #2988ff 20px,
                                      transparent 20px);
}


main.prezi figcaption {
    position: relative;
    top: -20px;
}

main.prezi ion > img {
    position: relative;
    width: 106px;
    margin-right: 14px;
}

main.prezi figcaption .openMouth {
    font-family: Nanum, Helvetica, sans-serif;
    line-height: 24px;
    font-size: 18px;
    color: #554d56;
    color: var(--teflon);
}

@media screen and (max-width: 900px) {
    main.prezi .border {
        background-image: linear-gradient(to bottom,
                                          #2988ff, #2988ff 2px,
                                          transparent 2px, transparent 3px,
                                          #0f63cf 3px, #0f63cf 5px,
                                          transparent 5px, transparent 6px,
                                          #2988ff 6px, #2988ff 8px);
    }
}

@media screen and (max-width: 480px) {
    main.prezi figcaption .openMouth {
        line-height: 16px;
        font-size: 14px;
    }
}body {
    background-color: #ffffff;
}