.hero__container {
    position: relative;
    z-index: 2;
    height: 500px
}

.hero__container,
.hero__headings {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.hero__headings {
    width: 50%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-left: 24px;
    z-index: 10
}

.hero__header {
    font-family: Nunito, sans-serif;
    font-size: 44px;
    font-weight: 300;
    color: #333;
    margin-bottom: 0;
    margin-top: 48px
}

.hero__subheader {
    font-size: 20px;
    line-height: 32px;
    color: #4d4d4d;
    opacity: .7;
    margin: 12px 0;
    max-width: 450px
}

.hero__image-container {
    width: 50%;
    position: relative;
    z-index: 10;
    top: 24px;
    right: 88px;
    -webkit-perspective: 6000px;
    perspective: 6000px;
    opacity: 0;
    -webkit-animation: heroImagesFadeIn 1s forwards;
    animation: heroImagesFadeIn 1s forwards;
    -webkit-animation-delay: 1s;
    animation-delay: 1s
}

@-webkit-keyframes heroImagesFadeIn {
    0% {
        opacity: 0;
        -webkit-perspective-origin: 0 50%;
        perspective-origin: 0 50%
    }
    to {
        opacity: 1;
        -webkit-perspective-origin: 50% 50%;
        perspective-origin: 50% 50%
    }
}

@keyframes heroImagesFadeIn {
    0% {
        opacity: 0;
        -webkit-perspective-origin: 0 50%;
        perspective-origin: 0 50%
    }
    to {
        opacity: 1;
        -webkit-perspective-origin: 50% 50%;
        perspective-origin: 50% 50%
    }
}

@media screen and (min-width:1800px) {
    .hero__header {
        font-size: 52px
    }
    .hero__image-container {
        top: 32px;
        right: 56px
    }
}

@media screen and (max-width:1152px) {
    .hero {
        padding-top: 8px
    }
    .hero__headings {
        padding-left: 0
    }
    .hero__header {
        font-size: 36px
    }
    .hero__subheader {
        font-size: 16px;
        line-height: 26px
    }
    .hero__image-container {
        right: 88px;
        top: 24px;
        -webkit-transform: scale(.8);
        transform: scale(.8)
    }
    .hero__image {
        width: 550px;
        height: 350px
    }
}

@media screen and (max-width:960px) {
    .hero__headings {
        width: 100%;
        height: auto
    }
    .hero__header {
        font-size: 32px
    }
    .hero__subheader {
        line-height: 24px
    }
    .hero__image-container {
        width: 100%
    }
    .hero__image {
        width: 300px;
        height: 200px
    }
    .hero__image-caption {
        display: none
    }
    .hero__image-back {
        top: 16px;
        left: 20px
    }
    .hero__image-middle {
        top: 8px;
        left: 8px
    }
}

@media screen and (max-width:832px) {
    .hero__headings {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding-left: 0;
        text-align: center
    }
    .hero__headings-line-break {
        content: ""
    }
    .hero__headings-line-break:after {
        content: " "
    }
    .hero__container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .hero__image-container {
        width: 128px;
        margin: 0 auto;
        right: 184px;
        -webkit-transform: scale(.7);
        transform: scale(.7);
        -webkit-perspective: 7000px;
        perspective: 7000px
    }
}

@media screen and (max-width:640px) {
    .hero__headings-line-break {
        content: none
    }
    .hero__subheader {
        font-size: 14px
    }
    .hero__image-container {
        -webkit-transform: scale(.5);
        transform: scale(.5);
        right: 128px
    }
}

.hero-background {
    position: absolute;
    top: 90px;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: 600px;
    -webkit-transform: skewY(-10deg);
    transform: skewY(-10deg);
    -webkit-transform-origin: 0;
    transform-origin: 0;
    z-index: 1
}

.hero-background__stripe {
    height: 150px;
    position: relative;
    opacity: 0;
    width: 100%;
    border-radius: 8px;
    -webkit-animation: stripeSlideIn .8s forwards;
    animation: stripeSlideIn .8s forwards
}

.hero-background__stripe:first-child {
    left: 60%;
    right: auto;
    background: #b5e0d3;
    -webkit-animation-delay: .2s;
    animation-delay: .2s
}

.hero-background__stripe:nth-child(2) {
    left: 66%;
    bottom: auto;
    background: #b4cee9;
    -webkit-animation-delay: .4s;
    animation-delay: .4s
}

.hero-background__stripe:nth-child(3) {
    left: 43%;
    background: #c8b6d8;
    -webkit-animation-delay: .6s;
    animation-delay: .6s
}

.hero-background__stripe:nth-child(4) {
    left: 83%;
    bottom: 0;
    background: #8fb5de;
    -webkit-animation-delay: .8s;
    animation-delay: .8s
}

@-webkit-keyframes stripeSlideIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(150px) skew(0);
        transform: translateX(150px) skew(0)
    }
    to {
        opacity: .7;
        -webkit-transform: translateX(0) skew(-12deg);
        transform: translateX(0) skew(-12deg)
    }
}

@keyframes stripeSlideIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(150px) skew(0);
        transform: translateX(150px) skew(0)
    }
    to {
        opacity: .7;
        -webkit-transform: translateX(0) skew(-12deg);
        transform: translateX(0) skew(-12deg)
    }
}

@media screen and (min-width:1800px) {
    .hero-background {
        top: 135px
    }
}

@media screen and (max-width:1152px) {
    .hero-background__stripe {
        height: 135px
    }
}

@media screen and (max-width:832px) {
    .hero-background {
        top: 330px;
        left: -198px;
        height: 400px
    }
    .hero-background__stripe {
        border-radius: 4px;
        height: 82px
    }
}

@media screen and (max-width:640px) {
    .hero-background {
        top: 300px;
        left: -146px;
        height: 300px
    }
    .hero-background__stripe {
        height: 65px
    }
}

.hero__browser {
    position: absolute;
    max-width: 700px;
    z-index: 10;
    -webkit-transition: -webkit-transform 1s;
    transition: -webkit-transform 1s;
    transition: transform 1s;
    transition: transform 1s, -webkit-transform 1s
}

.hero__browser .browser__body {
    background: #fff
}

.hero__browser-image {
    height: 393px;
    width: 700px
}

.hero__browser--transition-out .browser__body {
    -webkit-animation: heroBrowserTransitionOut .6s forwards;
    animation: heroBrowserTransitionOut .6s forwards
}

@-webkit-keyframes heroBrowserTransitionOut {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    to {
        opacity: 0;
        -webkit-transform: translateX(16px);
        transform: translateX(16px)
    }
}

@keyframes heroBrowserTransitionOut {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    to {
        opacity: 0;
        -webkit-transform: translateX(16px);
        transform: translateX(16px)
    }
}

.hero__browser--front {
    -webkit-transform: translateZ(-500px) translateY(0) translateX(0) rotate(1deg) rotateY(-8deg) rotateX(5deg);
    transform: translateZ(-500px) translateY(0) translateX(0) rotate(1deg) rotateY(-8deg) rotateX(5deg);
    z-index: 10
}

.hero__browser--front .hero__browser-image {
    opacity: 1
}

.hero__browser--middle {
    -webkit-transform: translateZ(-1250px) translateY(0) translateX(65px) rotate(1deg) rotateY(-8deg) rotateX(5deg);
    transform: translateZ(-1250px) translateY(0) translateX(65px) rotate(1deg) rotateY(-8deg) rotateX(5deg);
    z-index: 5
}

.hero__browser--middle .hero__browser-image {
    opacity: .8
}

.hero__browser--back {
    -webkit-transform: translateZ(-2000px) translateY(0) translateX(130px) rotate(1deg) rotateY(-8deg) rotateX(5deg);
    transform: translateZ(-2000px) translateY(0) translateX(130px) rotate(1deg) rotateY(-8deg) rotateX(5deg);
    z-index: 1
}

.hero__browser--back .hero__browser-image {
    opacity: .6
}

@media screen and (min-width:1800px) {
    .hero__browser {
        -webkit-transform: translateZ(0) translateY(0) translateX(0) rotate(1deg) rotateY(-8deg) rotateX(5deg);
        transform: translateZ(0) translateY(0) translateX(0) rotate(1deg) rotateY(-8deg) rotateX(5deg)
    }
    .hero__browser--middle {
        -webkit-transform: translateZ(-750px) translateY(0) translateX(65px) rotate(1deg) rotateY(-8deg) rotateX(5deg);
        transform: translateZ(-750px) translateY(0) translateX(65px) rotate(1deg) rotateY(-8deg) rotateX(5deg)
    }
    .hero__browser--back {
        -webkit-transform: translateZ(-1500px) translateY(0) translateX(130px) rotate(1deg) rotateY(-8deg) rotateX(5deg);
        transform: translateZ(-1500px) translateY(0) translateX(130px) rotate(1deg) rotateY(-8deg) rotateX(5deg)
    }
}

@media screen and (max-width:832px) {
    .hero__browser--middle {
        -webkit-transform: translateZ(-1250px) translateY(20px) translateX(80px) rotate(1deg) rotateY(-8deg) rotateX(5deg);
        transform: translateZ(-1250px) translateY(20px) translateX(80px) rotate(1deg) rotateY(-8deg) rotateX(5deg)
    }
    .hero__browser--back {
        -webkit-transform: translateZ(-2000px) translateY(40px) translateX(160px) rotate(1deg) rotateY(-8deg) rotateX(5deg);
        transform: translateZ(-2000px) translateY(40px) translateX(160px) rotate(1deg) rotateY(-8deg) rotateX(5deg)
    }
}

.looks {
    background: -webkit-gradient(linear, right top, left bottom, color-stop(-33%, #6f27b5), to(#5c6bd0));
    background: linear-gradient(to bottom left, #0084b4 -33%, #0982ae);
    position: relative;
    text-align: center;
    padding: 88px 0 496px
}

.looks__header {
    font-family: Nunito, sans-serif;
    font-weight: 300;
    color: #fff;
    font-size: 32px;
    margin: 32px auto 8px;
    max-width: 600px
}

.looks__icon {
    height: 48px;
    opacity: .3
}

.looks__sites {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    width: 2000px;
    left: 50%;
    margin-left: -1000px
}

.looks__site-column:first-of-type .looks__site:first-of-type {
    -webkit-transform: scale(.7);
    transform: scale(.7);
    opacity: .4
}

.looks__site-column:first-of-type .looks__site:nth-of-type(2) {
    -webkit-transform: scale(.85) translateY(-24px) translateX(8px);
    transform: scale(.85) translateY(-24px) translateX(8px);
    opacity: .8
}

.looks__site-column:nth-of-type(2) .looks__site:first-of-type {
    -webkit-transform: scale(1.2) translateY(80px) translateX(24px);
    transform: scale(1.2) translateY(80px) translateX(24px)
}

.looks__site-column:nth-of-type(2) .looks__site:nth-of-type(2) {
    -webkit-transform: scale(1.2) translateY(144px) translateX(48px);
    transform: scale(1.2) translateY(144px) translateX(48px);
    opacity: .7
}

.looks__site-column:nth-of-type(3) .looks__site:first-of-type {
    -webkit-transform: scale(.9) translateY(48px) translateX(64px);
    transform: scale(.9) translateY(48px) translateX(64px);
    opacity: .7
}

.looks__site-column:nth-of-type(3) .looks__site:nth-of-type(2) {
    -webkit-transform: scale(.8) translateY(32px) translateX(88px);
    transform: scale(.8) translateY(32px) translateX(88px);
    opacity: .6
}

.looks__site-column:nth-of-type(4) .looks__site:first-of-type {
    -webkit-transform: scale(.65) translateY(-48px) translateX(-32px);
    transform: scale(.65) translateY(-48px) translateX(-32px);
    opacity: .7
}

.looks__site-column:nth-of-type(4) .looks__site:nth-of-type(2) {
    -webkit-transform: scale(.6) translateY(-184px) translateX(-56px);
    transform: scale(.6) translateY(-184px) translateX(-56px);
    opacity: .4
}

.looks__site-column:nth-of-type(4) .looks__site:nth-of-type(3) {
    -webkit-transform: scale(.9) translateY(-168px) translateX(24px);
    transform: scale(.9) translateY(-168px) translateX(24px);
    opacity: .3
}

.looks__site {
    display: block;
    color: #fff;
    position: relative;
    margin: 32px 16px;
    -webkit-box-shadow: 0 2px 16px rgba(0, 0, 0, .3);
    box-shadow: 0 2px 16px rgba(0, 0, 0, .3);
    height: 250px;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
    border-radius: 4px
}

.looks__site:before {
    content: "";
    background: #fafafa;
    position: absolute;
    top: -12px;
    height: 12px;
    width: 100%;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    opacity: .8
}

.looks__site:hover {
    opacity: 1!important
}

.looks__site-image {
    width: 400px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px
}

@media screen and (max-width:960px) {
    .looks {
        padding: 56px 0 344px
    }
    .looks__sites {
        top: 120px;
        -webkit-transform: scale(.7);
        transform: scale(.7)
    }
    .looks__header {
        font-size: 28px;
        margin: 24px auto 8px
    }
    .looks__icon {
        height: 32px
    }
}

@media screen and (max-width:640px) {
    .looks__sites {
        -webkit-transform: scale(.6);
        transform: scale(.6);
        top: 80px
    }
    .looks__header {
        font-size: 18px;
        margin: 24px auto 8px
    }
    .looks__icon {
        height: 32px
    }
}

.platform-info {
    background: #f2f2f2
}

.platform-info__container {
    padding: 32px 0 48px
}

.platform-info__container,
.platform-info__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.platform-info__item {
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 25%;
    padding: 32px
}

.platform-info__item-icon {
    /*height:104px*/
}

.platform-info__item-heading {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin: 16px 0
}

.platform-info__item-text {
    color: gray;
    font-size: 14px;
    line-height: 1.5
}

@media screen and (max-width:1152px) {
    .platform-info__item {
        padding: 16px
    }
    .platform-info__item-text {
        font-size: 14px
    }
}

@media screen and (max-width:960px) {
    .platform-info__item {
        padding: 16px
    }
}

@media screen and (max-width:832px) {
    .platform-info__container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
    .platform-info__item {
        width: 100%;
        max-width: 375px;
        padding: 32px 16px
    }
}

.pricing {
    padding: 88px 0;
    position: relative;
    background: #fafafa;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, .2);
    box-shadow: 0 0 8px rgba(0, 0, 0, .2)
}

.pricing__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.pricing__comparison {
    background: #f2f2f2;
    padding: 40px 0;
    margin-top: 32px
}

.pricing__comparison-item,
.pricing__comparison-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.pricing__comparison-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 50%;
    text-align: center;
    padding: 0 32px
}

.pricing__comparison-item-heading {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #4d4d4d;
    font-size: 24px
}

.pricing__comparison-item-heading,
.pricing__comparison-item-vendor {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.pricing__comparison-item-vendor {
    margin-top: 8px
}

.pricing__comparison-item-vendor span {
    line-height: 1.5;
    font-size: 14px;
    color: gray;
    position: relative;
    top: 1px
}

.pricing__comparison-item-vendor-image {
    height: 12px;
    margin-left: 4px
}

.pricing__comparison-item-icon {
    margin-right: 8px;
    height: 24px
}

.pricing__comparison-item-description {
    color: gray;
    font-size: 14px;
    line-height: 1.5;
    max-width: 350px;
    margin-top: 16px
}

.pricing__table-wrapper {
    width: 100%;
    margin-top: 48px;
    background: #fff;
    border: 1px solid #b3b3b3;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .15);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .15)
}

.pricing__table {
    width: 100%;
    border-collapse: collapse
}

.pricing__table-header {
    padding: 40px 0 24px
}

.pricing__table-header-image {
    height: 20px
}

.pricing__table-row:nth-child(2n) {
    background: #fafafa
}

.pricing__table-cell {
    text-align: center;
    padding: 16px;
    color: #4d4d4d
}

.pricing__table-cell-note {
    position: relative;
    top: -3px;
    left: 5px;
    font-size: 14px;
    color: #999
}

.pricing__table-icon {
    height: 16px;
    width: 16px
}

.pricing__table-price-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.pricing__table-price-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-right: 8px
}

.pricing__table-price-amount {
    font-size: 40px;
    font-weight: 700;
    margin: 0
}

.pricing__table-price-amount sup {
    font-size: 24px
}

.pricing__table-price-currency {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    opacity: .4
}

.pricing__table-price-interval {
    font-weight: 500
}

.pricing__table-price-note {
    font-size: 14px;
    color: #b3b3b3
}

.pricing__cta-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 32px
}

@media screen and (max-width:832px) {
    .pricing__comparison-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .pricing__comparison-item {
        margin-bottom: 32px;
        width: 100%
    }
    .pricing__table-header {
        padding: 24px 0
    }
    .pricing__table-header-image {
        height: 10px
    }
    .pricing__table-cell {
        font-size: 12px;
        padding: 16px 8px
    }
    .pricing__table-icon {
        height: 12px;
        width: 12px
    }
    .pricing__table-price-amount {
        font-size: 18px
    }
    .pricing__table-price-amount sup {
        font-size: 11px
    }
    .pricing__table-price-currency {
        font-size: 10px
    }
    .pricing__table-price-interval {
        font-size: 9px
    }
    .pricing__table-price-note {
        margin-top: 4px;
        font-size: 10px
    }
    .pricing__table-cell-note {
        top: 3px;
        left: 0;
        font-size: 10px;
        display: block
    }
}

.top-industries {
    margin: 88px 0
}

.top-industries__heading {
    color: #333;
    font-size: 36px;
    margin: 0
}

.top-industries__grid {
    width: 100%;
    margin-top: 32px
}

.top-industries__column,
.top-industries__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.top-industries__column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 25%;
    height: 550px
}

.top-industries__grid-item,
.top-industries__grid-item--blue,
.top-industries__grid-item--green,
.top-industries__grid-item--peach,
.top-industries__grid-item--pink,
.top-industries__grid-item--purple,
.top-industries__grid-item--yellow {
    height: 100%;
    margin: 1px;
    text-align: center;
    overflow: hidden;
    -webkit-transition: background .3s ease;
    transition: background .3s ease
}

.top-industries__grid-item--blue:hover .top-industries__mock-up,
.top-industries__grid-item--blue:hover .top-industries__mock-up--desktop,
.top-industries__grid-item--green:hover .top-industries__mock-up,
.top-industries__grid-item--green:hover .top-industries__mock-up--desktop,
.top-industries__grid-item--peach:hover .top-industries__mock-up,
.top-industries__grid-item--peach:hover .top-industries__mock-up--desktop,
.top-industries__grid-item--pink:hover .top-industries__mock-up,
.top-industries__grid-item--pink:hover .top-industries__mock-up--desktop,
.top-industries__grid-item--purple:hover .top-industries__mock-up,
.top-industries__grid-item--purple:hover .top-industries__mock-up--desktop,
.top-industries__grid-item--yellow:hover .top-industries__mock-up,
.top-industries__grid-item--yellow:hover .top-industries__mock-up--desktop,
.top-industries__grid-item:hover .top-industries__mock-up,
.top-industries__grid-item:hover .top-industries__mock-up--desktop {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px)
}

.top-industries__grid-item-header {
    margin-top: 32px
}

.top-industries__grid-item-heading {
    font-family: Nunito, sans-serif;
    font-size: 24px;
    font-weight: 300;
    margin: 8px 0 0;
    color: #4d4d4d
}

.top-industries__grid-item-subheading {
    font-weight: 300;
    margin: 4px 0 8px;
    color: #999;
    font-size: 16px
}

.top-industries__mock-up,
.top-industries__mock-up--desktop {
    height: 100%;
    position: relative;
    margin-top: 24px;
    -webkit-transition: -webkit-transform .2s ease;
    transition: -webkit-transform .2s ease;
    transition: transform .2s ease;
    transition: transform .2s ease, -webkit-transform .2s ease
}

.top-industries__mock-up-image {
    width: 80%;
    margin: 0 10%
}

.top-industries__mock-up--desktop .top-industries__mock-up-image {
    width: 100%;
    margin: 0
}

.top-industries__grid-item--yellow {
    background: hsla(45, 92%, 91%, .5)
}

.top-industries__grid-item--yellow:hover {
    background: #fdf2d1
}

.top-industries__grid-item--peach {
    background: hsla(2, 100%, 92%, .5)
}

.top-industries__grid-item--peach:hover {
    background: #ffd9d8
}

.top-industries__grid-item--green {
    background: rgba(218, 239, 233, .5)
}

.top-industries__grid-item--green:hover {
    background: #daefe9
}

.top-industries__grid-item--pink {
    background: rgba(253, 218, 255, .5)
}

.top-industries__grid-item--pink:hover {
    background: #fddaff
}

.top-industries__grid-item--blue {
    background: rgba(218, 231, 244, .5)
}

.top-industries__grid-item--blue:hover {
    background: #dae7f4
}

.top-industries__grid-item--purple {
    background: rgba(227, 219, 236, .5)
}

.top-industries__grid-item--purple:hover {
    background: #e3dbec
}

@media screen and (min-width:1800px) {
    .top-industries__column {
        height: 600px
    }
}

@media screen and (max-width:1152px) {
    .top-industries__grid {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
    .top-industries__column {
        width: 50%
    }
}

@media screen and (max-width:832px) {
    .top-industries__heading {
        margin: 0
    }
    .top-industries__column {
        height: 500px
    }
}

@media screen and (max-width:640px) {
    .top-industries__heading {
        font-size: 28px
    }
    .top-industries__column {
        height: 300px
    }
    .top-industries__grid-item-header {
        margin-top: 24px
    }
    .top-industries__mock-up,
    .top-industries__mock-up--desktop {
        margin-top: 16px
    }
    .top-industries__grid-item-heading {
        font-size: 16px
    }
    .top-industries__grid-item-subheading {
        font-size: 12px
    }
}

.designs__cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    margin: 0 0 40px
}

.designs__cards-note {
    text-align: right;
    font-size: 12px;
    padding-right: 14px;
    color: #666;
    margin: 16px 0 8px
}

@media screen and (max-width:832px) {
    .designs__cards {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding-left: 0
    }
    .designs__cards-wrapper {
        width: 100%
    }
    .designs__cards-note {
        padding-right: 16px
    }
}

@media screen and (max-width:640px) {
    .designs__cards-note {
        padding-right: 12px;
        margin: 14px 0 -4px
    }
}

.design-card__wrapper {
    width: 33.3%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.design-card {
    position: relative;
    max-width: 450px;
    width: 100%;
    background: #fff;
    border-radius: 3px;
    overflow: hidden;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
    margin: 8px 12px 24px;
    -webkit-transition: -webkit-transform .2s ease, -webkit-box-shadow .2s ease;
    transition: -webkit-transform .2s ease, -webkit-box-shadow .2s ease;
    transition: transform .2s ease, box-shadow .2s ease;
    transition: transform .2s ease, box-shadow .2s ease, -webkit-transform .2s ease, -webkit-box-shadow .2s ease
}

.design-card:hover {
    -webkit-box-shadow: 0 2px 16px rgba(0, 0, 0, .1);
    box-shadow: 0 2px 16px rgba(0, 0, 0, .1);
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px)
}

.design-card__link {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2
}

.design-card__image-padding {
    padding-top: 56.85%
}

.design-card__image-wrapper {
    position: relative;
    background: #f2f2f2
}

.design-card__image {
    position: absolute;
    top: 0;
    max-width: 100%;
    background: #f2f2f2;
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    opacity: 0;
    -webkit-animation: fadeIn .8s forwards;
    animation: fadeIn .8s forwards
}

.design-card__preview-image {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    -webkit-transition: opacity .2s ease;
    transition: opacity .2s ease;
    opacity: 0;
    z-index: 1
}

.design-card__preview-image.loading {
    opacity: 1
}

.design-card__details {
    position: relative;
    z-index: 2
}

.design-card__content-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: 48px;
    padding: 4px 16px
}

.design-card__content-row:last-child {
    border-top: 1px solid #f2f2f2
}

.design-card__name {
    font-weight: 700;
    font-size: 14px;
    margin: 8px 0 0
}

.design-card__name a {
    color: #4d4d4d
}

.design-card__text-placeholder,
.design-card__text-placeholder--wide {
    position: relative;
    background: #e6e6e6;
    background-size: 100%;
    border-radius: 8px;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: fadeIn .2s forwards;
    animation: fadeIn .2s forwards;
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
    height: 13px;
    width: 80px;
    margin: 9px 0;
    -webkit-animation: fadeIn .5s forwards;
    animation: fadeIn .5s forwards;
    opacity: 0
}

.design-card__text-placeholder--wide:after,
.design-card__text-placeholder--wide:before,
.design-card__text-placeholder:after,
.design-card__text-placeholder:before {
    content: "";
    background: -webkit-gradient(linear, right top, left top, from(#e6e6e6), to(#f2f2f2));
    background: linear-gradient(270deg, #e6e6e6, #f2f2f2);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-animation: fadeOutIn 1.5s linear infinite;
    animation: fadeOutIn 1.5s linear infinite
}

.design-card__text-placeholder--wide:before,
.design-card__text-placeholder:before {
    -webkit-animation-delay: .35s;
    animation-delay: .35s;
    background: -webkit-gradient(linear, left top, right top, from(#e6e6e6), to(#f2f2f2));
    background: linear-gradient(90deg, #e6e6e6, #f2f2f2)
}

.design-card__text-placeholder--wide {
    width: 140px
}

.design-card__author {
    opacity: .5;
    font-size: 12px;
    margin-top: 4px
}

.design-card__author-name {
    font-weight: 700;
    color: #000
}

.design-card__price {
    font-weight: 700;
    font-size: 14px;
    margin: 8px 0 0;
    color: #4d4d4d
}

.design-card__price-interval {
    font-size: 12px;
    margin-top: 4px;
    color: gray
}

.design-card__icon {
    height: 20px;
    width: 20px
}

@media screen and (max-width:1152px) {
    .design-card__wrapper {
        width: 50%
    }
}

@media screen and (max-width:640px) {
    .design-card__wrapper {
        width: 100%
    }
    .design-card {
        margin: 16px 0
    }
}

.designs__section-header {
    border-bottom: 2px solid #e6e6e6;
    padding-bottom: 24px
}

.design__wrapper {
    background: #f2f2f2;
    padding: 32px 0 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.design__image {
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0
}

.design__container,
.design__preview {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.design__preview {
    width: 73%;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.design__laptop {
    position: absolute;
    height: 700px;
    width: 1270px;
    top: 50%;
    left: 50%;
    margin-top: -330px;
    margin-left: -631px
}

.design__preview-image-container {
    border: 4px solid #000;
    width: 670px;
    height: 420px;
    overflow-y: scroll;
    overflow-x: hidden;
    position: relative
}

.design__preview-image {
    width: 100%;
    min-height: 100%
}

.design__info-wrapper {
    position: relative;
    width: 27%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.design__name {
    font-weight: 300;
    font-size: 36px;
    color: #4d4d4d;
    margin: 0;
    margin-bottom: 8px
}

.design__price-box {
    margin-top: 24px
}

.design__price-box-price {
    padding: 16px 0 8px
}

@media screen and (min-width:1800px) {
    .design__preview {
        margin-top: 56px
    }
    .design__laptop {
        height: 800px;
        width: 1450px;
        margin-top: -375px;
        margin-left: -720px
    }
    .design__preview-image-container {
        width: 770px;
        height: 485px
    }
}

@media screen and (max-width:1152px) {
    .design__container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .design__laptop {
        height: 600px;
        width: 1090px;
        margin-top: -284px;
        margin-left: -543px
    }
    .design__preview-image-container {
        height: 360px;
        width: 575px
    }
    .design__preview {
        margin-top: 64px;
        width: 100%
    }
    .design__info-wrapper {
        width: 100%;
        margin-top: 88px
    }
    .design__price-box {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        max-width: none;
        width: 100%
    }
    .design__price-box,
    .design__price-box-price-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
    .design__price-box-price-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        min-width: 33vw
    }
    .design__price-box-divider {
        display: none
    }
}

@media screen and (max-width:640px) {
    .design__preview {
        margin-top: 40px
    }
    .design__name {
        font-size: 28px
    }
    .design__info-wrapper {
        margin-top: 56px
    }
    .design__price-box-divider {
        display: block
    }
    .design__price-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .design__laptop {
        height: 300px;
        width: 550px;
        margin-top: -145px;
        margin-left: -275px
    }
    .design__preview-image-container {
        height: 190px;
        width: 292px
    }
}

.designs-no-results {
    text-align: center;
    margin-bottom: 80px
}

.designs-no-results__heading {
    color: #4d4d4d;
    font-size: 24px;
    margin-top: 32px
}

.designs-no-results__subheading {
    color: gray
}

.designs-no-results__image {
    max-height: 250px
}

.design-features {
    padding: 88px 0
}

.design-features__grid {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 48px 0
}

.design-features__grid,
.design-features__grid-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.design-features__grid-item {
    width: 25%
}

.design-features__grid-item-icon {
    height: 152px;
    width: 152px
}

.design-features__grid-item-header {
    font-size: 16px;
    font-weight: 700;
    color: #4d4d4d
}

.design-features__grid-item-description {
    margin-top: 8px;
    color: gray;
    line-height: 1.5
}

@media screen and (max-width:1152px) {
    .design-features__grid-item {
        width: 50%
    }
}

@media screen and (max-width:640px) {
    .design-features {
        padding: 48px 0
    }
    .design-features__grid-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
        margin-bottom: 16px
    }
    .design-features__grid-item-icon {
        height: 80px;
        width: 80px
    }
    .design-features__grid-item-description,
    .design-features__grid-item-header {
        font-size: 12px
    }
}

.short-description {
    padding: 48px 0;
    background-color: #fafafa;
    border-bottom: 2px solid #f1f4f7
}

.short-description__container {
    -webkit-box-orient: horizontal;
    -ms-flex-direction: row;
    flex-direction: row
}

.short-description__container,
.short-description__description-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal
}

.short-description__description-wrapper {
    width: 73%;
    position: relative;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.short-description__description-content {
    padding: 0 64px;
    text-align: justify
}

.short-description__author-wrapper {
    width: 27%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-left: 2px solid #f1f4f7
}

.short-description__heading {
    font-size: 24px;
    color: #333;
    font-weight: 300;
    margin: 8px 0
}

.short-description__body {
    font-size: 14px;
    color: gray;
    line-height: 1.5;
    margin: 4px 0
}

@media screen and (max-width:1152px) {
    .short-description__description-content {
        padding: 0 24px 0 0
    }
    .short-description__author-wrapper {
        width: 40%
    }
    .short-description__description-wrapper {
        width: 60%
    }
}

@media screen and (max-width:832px) {
    .short-description__author-wrapper,
    .short-description__description-wrapper {
        width: 50%
    }
}

@media screen and (max-width:640px) {
    .short-description__container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .short-description__description-content {
        padding: 0
    }
    .short-description__author-wrapper {
        margin-top: 32px;
        width: 100%
    }
    .short-description__description-wrapper {
        width: 100%
    }
}

.design__vendor-badge {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.design__vendor-badge-text {
    font-weight: 400;
    font-size: 14px;
    color: #999;
    margin: 0
}

.design__vendor-badge-logo {
    height: 16px;
    margin-left: 4px;
    position: relative;
    top: -1px
}

.design__vendor-badge-tooltip-icon {
    opacity: .7;
    margin: 0 8px;
    -webkit-transition: opacity .2s ease;
    transition: opacity .2s ease;
    height: 16px;
    position: relative;
    top: 2px
}

.design__vendor-badge-tooltip-icon:hover {
    opacity: 1
}

.design__theme-info {
    margin: 16px 20px;
    margin-right: 0
}

.design__theme-info-text {
    font-weight: 400;
    line-height: 1.5;
    font-size: 14px;
    color: #999;
    margin: 0
}

.design__theme-info-wrapper {
    margin-top: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
}

.design__theme-info-theme-name {
    font-size: 18px;
    line-height: 1.5;
    color: #4d4d4d;
    font-weight: 400;
    margin: 0
}

.design__theme-info-link {
    font-weight: 700;
    color: gray
}

.design-video {
    background: #f2f2f2;
    padding: 64px 0
}

.design-video__container {
    max-width: 1000px;
    padding: 0
}

.design-video__wrapper {
    border-radius: 4px;
    background: #fff;
    -webkit-box-shadow: 0 15px 35px rgba(122, 0, 197, .07), 0 5px 15px rgba(0, 0, 0, .07);
    box-shadow: 0 15px 35px rgba(122, 0, 197, .07), 0 5px 15px rgba(0, 0, 0, .07);
    overflow: hidden;
    margin: 0 16px
}

.design-video__content,
.design-video__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.design-video__content {
    padding: 32px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.design-video__heading {
    font-size: 28px;
    color: #333;
    font-weight: 300;
    margin: 8px 0
}

.design-video__description {
    font-size: 16px;
    color: gray;
    line-height: 1.5;
    margin: 4px 0
}

.design-video__video-container {
    position: relative
}

.design-video__overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.design-video__overlay:hover {
    cursor: pointer
}

.design-video__overlay:hover .design-video__overlay-icon {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.design-video__overlay:hover .design-video__overlay-background {
    opacity: .8
}

.design-video__overlay-background {
    position: absolute;
    height: 100%;
    width: 100%;
    background: -webkit-gradient(linear, right top, left bottom, color-stop(-33%, #6f27b5), to(#5c6bd0));
    background: linear-gradient(to bottom left, #6f27b5 -33%, #5c6bd0);
    opacity: .6;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease
}

.design-video__overlay-icon {
    z-index: 15;
    opacity: 1;
    height: 120px;
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease
}

.design-video__iframe {
    width: 100%;
    min-width: 600px;
    height: 350px;
    margin-bottom: -3px
}

@media screen and (max-width:960px) {
    .design-video__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .design-video__iframe {
        min-width: auto
    }
}

@media screen and (max-width:640px) {
    .design-video__heading {
        font-size: 24px
    }
    .design-video__iframe {
        height: 300px
    }
}

.industry-nav {
    position: relative;
    background: #fff;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .2);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .2);
    z-index: 15
}

.industry-nav .container {
    max-width: 1148px;
    padding: 0
}

.industry-nav__container {
    overflow: hidden;
    position: relative;
    height: 54px
}

.industry-nav-list__shade {
    position: absolute;
    top: 0;
    right: 37.5px;
    width: 75px;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(hsla(0, 0%, 100%, 0)), to(#fff));
    background: linear-gradient(90deg, hsla(0, 0%, 100%, 0), #fff);
    pointer-events: none
}

.industry-nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    margin: 0;
    width: 100%;
    height: 100%;
    padding: 8px 8px 0;
    position: relative
}

.industry-nav-list .selected {
    color: #000
}

.industry-nav-list .selected:after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
}

.industry-nav-list .selected .more-link__image {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.industry-nav-list__item {
    position: relative;
    font-size: 13px;
    color: #4d4d4d;
    padding: 12px;
    text-align: center;
    white-space: nowrap
}

.industry-nav-list__item:after {
    content: "";
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: #79b530;
    bottom: -8px;
    left: 0;
    border-radius: 8px;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: -webkit-transform .2s ease;
    transition: -webkit-transform .2s ease;
    transition: transform .2s ease;
    transition: transform .2s ease, -webkit-transform .2s ease
}

.industry-nav-list__item:hover {
    color: #000
}

.industry-nav-list__item:hover:after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
}

.industry-list__link:first-child .industry-nav-list__item {
    padding: 12px;
    padding-left: 0
}

.industry-list__link:last-child .industry-nav-list__item {
    padding: 12px;
    padding-right: 0
}

.industry-nav-more__container {
    position: relative
}

.more-link {
    position: absolute;
    right: 8px;
    width: 60px
}

.more-link__image {
    height: 12px;
    width: 12px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    margin-left: 4px;
    position: relative;
    top: 2px;
    opacity: .4;
    -webkit-transition: -webkit-transform .1s ease;
    transition: -webkit-transform .1s ease;
    transition: transform .1s ease;
    transition: transform .1s ease, -webkit-transform .1s ease
}

.industry-nav-list__dropdown {
    list-style: none;
    position: absolute;
    right: -6px;
    z-index: 100;
    background-color: #fff;
    margin: 2px 0 0;
    overflow: hidden;
    padding: 5.33333px 0;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .15);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .15);
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 90% top;
    transform-origin: 90% top;
    -webkit-transition: opacity .1s cubic-bezier(.39, .575, .565, 1), -webkit-transform .15s cubic-bezier(.1, 1.26, .83, 1);
    transition: opacity .1s cubic-bezier(.39, .575, .565, 1), -webkit-transform .15s cubic-bezier(.1, 1.26, .83, 1);
    transition: opacity .1s cubic-bezier(.39, .575, .565, 1), transform .15s cubic-bezier(.1, 1.26, .83, 1);
    transition: opacity .1s cubic-bezier(.39, .575, .565, 1), transform .15s cubic-bezier(.1, 1.26, .83, 1), -webkit-transform .15s cubic-bezier(.1, 1.26, .83, 1);
    border-radius: 4px
}

.industry-nav-list__dropdown.slidedown {
    margin: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1
}

.industry-nav-list__dropdown .industry-nav-list__item {
    text-align: left
}

.industry-nav-list__dropdown .industry-nav-list__item:hover {
    color: #000
}

.industry-nav-list__dropdown .industry-nav-list__item:hover:after {
    -webkit-transform: scaleX(0);
    transform: scaleX(0)
}

@media screen and (max-width:640px) {
    .industry-nav-list__shade {
        right: 16px
    }
}

.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    list-style: none;
    padding: 0;
    margin-bottom: 80px
}

.pagination__wrapper {
    display: inline-block;
    margin-left: 4px;
    margin-right: 4px;
    font-size: 14px
}

.pagination__gap {
    width: 24px;
    color: #999;
    display: inline-block
}

.pagination__current-page,
.pagination__next-page,
.pagination__page,
.pagination__prev-page {
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    border-radius: 4px
}

.pagination__current-page:hover,
.pagination__next-page:hover,
.pagination__page:hover,
.pagination__prev-page:hover {
    text-decoration: none
}

.pagination__page {
    color: #999
}

.pagination__page:hover {
    background-color: #f2f2f2;
    cursor: pointer
}

.pagination__page:focus {
    outline: none
}

.pagination__current-page {
    color: #4d4d4d;
    background-color: #fff;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .1)
}

.pagination__next-page,
.pagination__prev-page {
    text-align: center;
    background-color: #4d4d4d
}

.pagination__next-page:hover,
.pagination__prev-page:hover {
    background-color: #333
}

.pagination__icon {
    height: 10px
}

.pagination__page--disabled {
    display: none
}

.selected-filters {
    margin-bottom: 24px
}

.selected-filters__filter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-radius: 2px;
    padding: 12px 16px;
    background: #f2f2f2;
    border: 1px solid #e6e6e6;
    margin-bottom: 8px;
    -webkit-transition: background .2s ease;
    transition: background .2s ease
}

.selected-filters__filter:hover {
    background: #e6e6e6
}

.selected-filters__filter-text {
    font-size: 14px;
    color: #333
}

.selected-filters__filter-icon {
    height: 16px;
    width: 16px
}

.selected-filters__filter-icon:hover {
    cursor: pointer
}

.filter-container {
    margin-right: 16px
}

.filter-container__header {
    border-right: 2px solid #e6e6e6;
    padding: 8px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 24px
}

.filter-container__header-icon {
    width: 20px;
    height: 20px;
    margin-right: 16px
}

.filter-container__heading {
    font-size: 16px;
    font-weight: 600;
    margin: 0
}

.filter-panel {
    border-bottom: 2px solid #e6e6e6;
    padding-bottom: 24px;
    margin-bottom: 24px
}

.filter-panel__heading {
    font-size: 18px;
    font-weight: 500;
    color: #4d4d4d;
    margin: 16px 0
}

.filter-list,
.filter-list--tags {
    max-height: 230px;
    list-style: none;
    padding: 0;
    overflow-y: auto;
    overflow-x: hidden;
    margin: 0
}

.filter-list--tags::-webkit-scrollbar,
.filter-list::-webkit-scrollbar {
    width: 8px;
    background-color: #e6e6e6
}

.filter-list--tags::-webkit-scrollbar-thumb,
.filter-list::-webkit-scrollbar-thumb {
    height: 24px;
    background-color: #b3b3b3
}

.filter-list__item {
    padding: 8px 0;
    font-size: 14px
}

.filter-list__link {
    color: #333
}

.filter-list__option {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.filter-list__option.selected .filter-list__option-box {
    background: #087096;
    border: 1px solid #087096
}

.filter-list__option.selected .filter-list__option-box:after {
    -webkit-transform: scale(1);
    transform: scale(1)
}

.filter-list__option-box {
    position: relative;
    width: 22px;
    height: 22px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid #ccc
}

.filter-list__option-box:after {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    width: 8px;
    height: 8px;
    border-radius: 12px;
    background: #fff;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform .1s ease-in-out;
    transition: -webkit-transform .1s ease-in-out;
    transition: transform .1s ease-in-out;
    transition: transform .1s ease-in-out, -webkit-transform .1s ease-in-out
}

.filter-list__option-text {
    margin-left: 8px
}

.filter-list--tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.tag {
    padding: 8px 16px;
    margin: 4px 2px;
    border-radius: 2em;
    border: 1px solid #ccc;
    background: #fff;
    font-size: 12px;
    color: #333;
    -webkit-transition: border .2s ease;
    transition: border .2s ease
}

.tag:hover {
    cursor: pointer;
    border: 1px solid gray
}

.tag.selected {
    border: 1px solid #0982ae;
    color: #075e7d
}

.cross-sell {
    margin-top: 0;
    background-color: #333;
    line-height: 1.5;
    padding-bottom: 32px;
    padding-top: 32px
}

@media screen and (min-width:640px) and (max-width:960px) {
    .cross-sell {
        margin-bottom: -1px
    }
}

.cross-sell .grid-container {
    max-width: 1004px;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: auto;
    margin-right: auto
}

.cross-sell ol,
.cross-sell ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.cross-sell figure {
    margin: 0;
    display: block
}

.cross-sell p {
    margin: 0
}

.cross-sell .t-body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 16px;
    padding: 0
}

.cross-sell .t-body.-weight-bold {
    font-weight: 700
}

.cross-sell .t-body.-size-l {
    font-size: 18px
}

.cross-sell .t-body.-color-inherit {
    color: inherit
}

.cross-sell .h-m0 {
    margin: 0
}

.cross-sell .h-mb1 {
    margin-bottom: 8px
}

.cross-sell__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media screen and (max-width:960px) {
    .cross-sell__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.cross-sell__list-item {
    background-color: #fff;
    border-radius: 5px;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    overflow: hidden;
    margin-bottom: 32px;
    margin-top: 32px;
    max-width: 320px;
    -webkit-transition: -webkit-transform .3s cubic-bezier(.68, -.55, .265, 1.55);
    transition: -webkit-transform .3s cubic-bezier(.68, -.55, .265, 1.55);
    transition: transform .3s cubic-bezier(.68, -.55, .265, 1.55);
    transition: transform .3s cubic-bezier(.68, -.55, .265, 1.55), -webkit-transform .3s cubic-bezier(.68, -.55, .265, 1.55)
}

.cross-sell__list-item:hover .cross-sell__image {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1.2" /><feFuncG type="linear" slope="1.2" /><feFuncB type="linear" slope="1.2" /></feComponentTransfer><feColorMatrix type="hueRotate" color-interpolation-filters="sRGB" values="45" /></filter></svg>#filter');
    -webkit-filter: brightness(120%) hue-rotate(45deg);
    filter: brightness(120%) hue-rotate(45deg)
}

.cross-sell__list-item:hover .cross-sell__text {
    color: #545454
}

@media screen and (max-width:960px) {
    .cross-sell__list-item {
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        width: 50%
    }
}

@media screen and (max-width:640px) {
    .cross-sell__list-item {
        width: 100%
    }
}

@media screen and (min-width:960px) {
    .cross-sell__list-item:not(:first-child) {
        margin-left: 24px
    }
}

.cross-sell__list-item:active,
.cross-sell__list-item:hover {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px)
}

.cross-sell__image {
    display: block;
    height: auto;
    width: 100%;
    -webkit-transition: -webkit-filter .3s cubic-bezier(.445, .05, .55, .95);
    transition: -webkit-filter .3s cubic-bezier(.445, .05, .55, .95);
    transition: filter .3s cubic-bezier(.445, .05, .55, .95);
    transition: filter .3s cubic-bezier(.445, .05, .55, .95), -webkit-filter .3s cubic-bezier(.445, .05, .55, .95);
    will-change: filter
}

.cross-sell__text-container {
    color: #454545;
    padding: 16px
}

.cross-sell__text {
    color: gray;
    font-weight: 500
}

.cross-sell__link {
    border-radius: 5px;
    display: inline;
    overflow: hidden
}

.cross-sell__link:link,
.cross-sell__link:visited {
    text-decoration: none
}

.global-footer {
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: auto;
    background-color: #0134ce;
    color: #fff;
    font-size: 11px;
    padding-bottom: 32px;
    padding-top: 32px
}

@media only screen and (min-device-pixel-ratio:1.3) {
    .global-footer {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale
    }
}

@media only screen and (-o-min-device-pixel-ratio:13/10) {
    .global-footer {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale
    }
}

@media only screen and (-webkit-min-device-pixel-ratio:1.25),
only screen and (min-resolution:120dpi) {
    .global-footer {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale
    }
}

.global-footer .grid-container {
    /* max-width: 1004px; */
    padding-left: 13px;
    padding-right: 13px;
    margin-left: 55px;
    margin-right: 55px;
}

.global-footer .grid-container.-layout-wide {
    /* max-width: 1152px*/
}

.global-footer ol,
.global-footer ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.global-footer__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 32px 8px 16px
}

@media screen and (max-width:960px) {
    .global-footer__container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        padding-top: 16px
    }
}

@media screen and (min-width:640px) and (max-width:960px) {
    .global-footer__container:last-child {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }
}

.global-footer__separator {
    background-color: #ccc !important;
    border: 0;
    display: block;
    height: 2px;
    margin: 0 auto;
    padding: 0
}

.global-footer__separator.h-mb4 {
    margin-bottom: 32px
}

.global-footer__separator.h-mt3 {
    margin-top: 24px
}

@media (min-width:1025px) {
    .global-footer__separator.is-hidden-desktop {
        display: none
    }
}

@media screen and (min-width:640px) {
    .global-footer__separator.is-hidden-tablet-and-above {
        display: none
    }
}

.global-footer__text-link {
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    -webkit-transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
    transition: opacity .2s cubic-bezier(.39, .575, .565, 1)
}

.global-footer__text-link:after {
    background-color: #fff;
    content: "";
    height: 1px;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
    -webkit-transition: .15s cubic-bezier(.39, .575, .565, 1);
    transition: .15s cubic-bezier(.39, .575, .565, 1);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
    width: 100%
}

.global-footer__text-link:hover:after {
    -webkit-transform: translateY(-3px) translateZ(0);
    transform: translateY(-3px) translateZ(0)
}

.global-footer__text-link:active {
    color: gray
}

.global-footer__text-link:active:after {
    -webkit-transform: translateY(1px);
    transform: translateY(1px)
}

.global-footer__text-link:link,
.global-footer__text-link:visited {
    color: rgba(255, 255, 255, 0.67);
    text-decoration: none
}

.global-footer__text-link.-opacity-full:link,
.global-footer__text-link.-opacity-full:visited,
.global-footer__text-link:active,
.global-footer__text-link:hover {
    opacity: 6;
    color: #fff;
}

.global-footer__icon-link {
    display: inline-block;
    -webkit-transition: .1s cubic-bezier(.39, .575, .565, 1);
    transition: .1s cubic-bezier(.39, .575, .565, 1);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform
}

.global-footer__icon-link:active,
.global-footer__icon-link:hover {
    opacity: .6;
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px)
}

.global-footer-info-links {
    width: 100%
}

@media screen and (max-width:960px) {
    .global-footer-info-links {
        margin-top: 32px
    }
}

@media screen and (max-width:640px) {
    .global-footer-info-links {
        margin-top: 24px
    }
}

.global-footer-info-links__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    list-style: none;
    width: 100%
}

@media screen and (max-width:960px) {
    .global-footer-info-links__list {
        max-width: 600px
    }
}

@media screen and (max-width:400px) {
    .global-footer-info-links__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.global-footer-info-links__list-item:not(:first-child) {
    margin-left: 16px
}

@media screen and (max-width:400px) {
    .global-footer-info-links__list-item:not(:first-child) {
        margin-left: 0;
        margin-top: 16px
    }
}

.global-footer-sublist {
    list-style: none;
    margin: 0;
    padding: 0
}

.global-footer-sublist:not(:first-child) {
    margin-left: 16px
}

.global-footer-sublist__item {
    display: block;
    list-style: none;
    margin-bottom: 16px;
    white-space: nowrap
}

.global-footer-sublist__item.h-p0 {
    padding: 0
}

.global-footer-sublist__item-title {
    font-weight: 700;
    height: 24px;
    margin-bottom: 16px;
    text-transform: uppercase
}

@media screen and (max-width:640px) {
    .global-footer-sublist__item-title .is-hidden-phone {
        display: none
    }
}

.global-footer-stats {
    color: gray;
    margin-left: auto;
    position: relative;
    padding-left: 41px;
    left: 115px;
    white-space: nowrap;
}

@media screen and (max-width:960px) {
    .global-footer-stats {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-left: 0;
        padding-left: 0
    }
}

@media screen and (max-width:640px) {
    .global-footer-stats {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-left: 0;
        margin-top: 0
    }
}

ul.global-footer-stats__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
}

@media screen and (max-width:960px) {
    ul.global-footer-stats__list {
        margin-left: 24px;
        margin-top: 0
    }
}

@media screen and (max-width:640px) {
    ul.global-footer-stats__list {
        margin-left: 0;
        margin-right: auto;
        margin-top: 24px
    }
}

.global-footer-stats__list-item {
    list-style: none
}

@media screen and (max-width:960px) {
    .global-footer-stats__list-item {
        margin-left: 32px
    }
}

@media screen and (max-width:640px) {
    .global-footer-stats__list-item {
        margin-left: 0
    }
}

.global-footer-stats__list-item:not(:first-child) {
    margin-left: 16px
}

@media screen and (max-width:640px) {
    .global-footer-stats__list-item:not(:first-child) {
        margin-left: 32px
    }
}

.global-footer-stats__logo {
    display: block;
    height: 20px;
    margin-bottom: 16px;
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
    width: auto
}

@media screen and (max-width:960px) {
    .global-footer-stats__logo {
        margin-bottom: 0
    }
}

.global-footer-stats__number {
    color: #fff;
    display: block;
    font-size: 16px;
    font-weight: 700
}

.global-footer-company-links {
    margin-right: 32px
}

@media screen and (max-width:960px) {
    .global-footer-company-links {
        margin-top: 8px
    }
}

@media screen and (max-width:640px) {
    .global-footer-company-links {
        margin-top: 16px;
        margin-right: 0;
        text-align: center
    }
}

.global-footer-company-links__list-item {
    display: inline-block
}

.global-footer-company-links__list-item:not(:first-child) {
    margin-left: 24px
}

.global-footer-company-links__copyright,
.global-footer-company-links__price-disclaimer {
    display: block;
    color: #999;
    font-size: inherit;
    margin-top: 12px
}

@media screen and (min-width:640px) and (max-width:960px) {
    .global-footer-company-links__copyright,
    .global-footer-company-links__price-disclaimer {
        max-width: 380px
    }
}

@media screen and (max-width:640px) {
    .global-footer-company-links__copyright,
    .global-footer-company-links__price-disclaimer {
        margin-top: 24px
    }
}

.global-footer-social {
    margin-left: auto;
    margin-top: 8px
}

@media screen and (min-width:640px) and (max-width:960px) {
    .global-footer-social {
        white-space: nowrap
    }
}

@media screen and (max-width:640px) {
    .global-footer-social {
        -ms-flex-item-align: end;
        align-self: flex-end;
        margin: 16px auto 8px
    }
}

.global-footer-social__list-item {
    display: inline-block
}

.global-footer-social__list-item:not(:first-child) {
    margin-left: 16px
}

.global-footer-social__icon {
    display: inline-block;
    height: 32px;
    width: 32px
}


/*# sourceMappingURL=application-e1a20d61dd0fada45c2580eb9a7a369f.css.map*/